blob: b15ad0ddd156613926a53264a77487a7c1559c6d [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 }
286 // Flag error if the type is not lockable.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000287 if (!RT->getDecl()->getAttr<LockableAttr>()) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000288 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
289 << Attr.getName();
290 return false;
291 }
292 return true;
293}
294
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000295/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
296/// from Sidx, resolve to a lockable object. May flag an error.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000297/// \param Sidx The attribute argument index to start checking with.
298/// \param ParamIdxOk Whether an argument can be indexing into a function
299/// parameter list.
300static bool checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
301 const AttributeList &Attr,
302 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000303 int Sidx = 0,
304 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000305 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000306 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000307
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000308 if (ArgExp->isTypeDependent()) {
309 // FIXME -- need to processs this again on template instantiation
310 Args.push_back(ArgExp);
311 continue;
312 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000313
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000314 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000315
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000316 // First see if we can just cast to record type, or point to record type.
317 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000318
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000319 // Now check if we index into a record type function param.
320 if(!RT && ParamIdxOk) {
321 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000322 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
323 if(FD && IL) {
324 unsigned int NumParams = FD->getNumParams();
325 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000326 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
327 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
328 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000329 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
330 << Attr.getName() << Idx + 1 << NumParams;
331 return false;
332 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000333 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
334 RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000335 }
336 }
337
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000338 if (!checkForLockableRecord(S, D, Attr, RT))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000339 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000340
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000341 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000342 }
343 return true;
344}
345
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000346//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000347// Attribute Implementations
348//===----------------------------------------------------------------------===//
349
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000350// FIXME: All this manual attribute parsing code is gross. At the
351// least add some helper functions to check most argument patterns (#
352// and types of args).
353
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000354static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
355 bool pointer = false) {
356 assert(!Attr.isInvalid());
357
358 if (!checkAttributeNumArgs(S, Attr, 0))
359 return;
360
361 // D must be either a member field or global (potentially shared) variable.
362 if (!mayBeSharedVariable(D)) {
363 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000364 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000365 return;
366 }
367
368 if (pointer && !checkIsPointer(S, D, Attr))
369 return;
370
371 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000372 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000373 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000374 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000375}
376
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000377static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000378 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000379 assert(!Attr.isInvalid());
380
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000381 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000382 return;
383
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000384 Expr *Arg = Attr.getArg(0);
385
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000386 // D must be either a member field or global (potentially shared) variable.
387 if (!mayBeSharedVariable(D)) {
388 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000389 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000390 return;
391 }
392
393 if (pointer && !checkIsPointer(S, D, Attr))
394 return;
395
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +0000396 if (!Arg->isTypeDependent()) {
397 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
398 return;
399 // FIXME -- semantic checks for dependent attributes
400 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000401
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000402 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000403 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000404 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000405 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000406 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000407}
408
409
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000410static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
411 bool scoped = false) {
412 assert(!Attr.isInvalid());
413
414 if (!checkAttributeNumArgs(S, Attr, 0))
415 return;
416
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000417 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000418 if (!isa<CXXRecordDecl>(D)) {
419 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
420 << Attr.getName() << ExpectedClass;
421 return;
422 }
423
424 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000425 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000426 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000427 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000428}
429
430static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
431 const AttributeList &Attr) {
432 assert(!Attr.isInvalid());
433
434 if (!checkAttributeNumArgs(S, Attr, 0))
435 return;
436
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000437 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
439 << Attr.getName() << ExpectedFunctionOrMethod;
440 return;
441 }
442
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000443 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000444 S.Context));
445}
446
Kostya Serebryany71efba02012-01-24 19:25:38 +0000447static void handleNoAddressSafetyAttr(Sema &S, Decl *D,
448 const AttributeList &Attr) {
449 assert(!Attr.isInvalid());
450
451 if (!checkAttributeNumArgs(S, Attr, 0))
452 return;
453
454 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
455 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
456 << Attr.getName() << ExpectedFunctionOrMethod;
457 return;
458 }
459
460 D->addAttr(::new (S.Context) NoAddressSafetyAnalysisAttr(Attr.getRange(),
461 S.Context));
462}
463
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000464static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
465 bool before) {
466 assert(!Attr.isInvalid());
467
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000468 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000469 return;
470
471 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000472 ValueDecl *VD = dyn_cast<ValueDecl>(D);
473 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000474 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000476 return;
477 }
478
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000479 // Check that this attribute only applies to lockable types
480 QualType QT = VD->getType();
481 if (!QT->isDependentType()) {
482 const RecordType *RT = getRecordType(QT);
483 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
484 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
485 << Attr.getName();
486 return;
487 }
488 }
489
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000490 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000491 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000492 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000493 return;
494
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000495 unsigned Size = Args.size();
496 assert(Size == Attr.getNumArgs());
497 Expr **StartArg = Size == 0 ? 0 : &Args[0];
498
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000499 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000500 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000501 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000502 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000503 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000504 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000505}
506
507static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000508 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000509 assert(!Attr.isInvalid());
510
511 // zero or more arguments ok
512
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000513 // check that the attribute is applied to a function
514 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000515 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
516 << Attr.getName() << ExpectedFunctionOrMethod;
517 return;
518 }
519
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000520 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000521 SmallVector<Expr*, 1> Args;
522 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000523 return;
524
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000525 unsigned Size = Args.size();
526 assert(Size == Attr.getNumArgs());
527 Expr **StartArg = Size == 0 ? 0 : &Args[0];
528
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000529 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000530 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000531 S.Context, StartArg,
532 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000533 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000534 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000535 S.Context, StartArg,
536 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000537}
538
539static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000540 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000541 assert(!Attr.isInvalid());
542
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000543 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000544 return;
545
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000546
547 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000548 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
549 << Attr.getName() << ExpectedFunctionOrMethod;
550 return;
551 }
552
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000553 if (!isIntOrBool(Attr.getArg(0))) {
554 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
555 << Attr.getName();
556 return;
557 }
558
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000559 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000560 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000561 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000562 return;
563
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000564 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000565 Expr **StartArg = Size == 0 ? 0 : &Args[0];
566
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000567 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000568 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000569 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000570 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000571 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000572 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000573 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000574 S.Context,
575 Attr.getArg(0),
576 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000577}
578
579static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000580 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000581 assert(!Attr.isInvalid());
582
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000583 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000584 return;
585
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000586 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000587 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
588 << Attr.getName() << ExpectedFunctionOrMethod;
589 return;
590 }
591
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000592 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000593 SmallVector<Expr*, 1> Args;
594 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000595 return;
596
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000597 unsigned Size = Args.size();
598 assert(Size == Attr.getNumArgs());
599 Expr **StartArg = Size == 0 ? 0 : &Args[0];
600
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000601 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000602 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000603 S.Context, StartArg,
604 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000605 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000606 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000607 S.Context, StartArg,
608 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000609}
610
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000611static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000612 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000613 assert(!Attr.isInvalid());
614
615 // zero or more arguments ok
616
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000617 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000618 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
619 << Attr.getName() << ExpectedFunctionOrMethod;
620 return;
621 }
622
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000623 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000624 SmallVector<Expr*, 1> Args;
625 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000626 return;
627
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000628 unsigned Size = Args.size();
629 assert(Size == Attr.getNumArgs());
630 Expr **StartArg = Size == 0 ? 0 : &Args[0];
631
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000632 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000633 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000634}
635
636static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000637 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000638 assert(!Attr.isInvalid());
639
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000640 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000641 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000642 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000643
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000644 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000645 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
646 << Attr.getName() << ExpectedFunctionOrMethod;
647 return;
648 }
649
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000650 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000651 return;
652
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000653 // check that the argument is lockable object
654 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
655 return;
656
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000657 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000658}
659
660static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000661 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000662 assert(!Attr.isInvalid());
663
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000664 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000665 return;
666
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000667 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000668 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
669 << Attr.getName() << ExpectedFunctionOrMethod;
670 return;
671 }
672
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000673 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000674 SmallVector<Expr*, 1> Args;
675 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000676 return;
677
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000678 unsigned Size = Args.size();
679 assert(Size == Attr.getNumArgs());
680 Expr **StartArg = Size == 0 ? 0 : &Args[0];
681
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000682 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000683 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000684}
685
686
Chandler Carruth1b03c872011-07-02 00:01:44 +0000687static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
688 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000689 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000690 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000691 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000692 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000693 }
Mike Stumpbf916502009-07-24 19:02:52 +0000694
Chris Lattner6b6b5372008-06-26 18:38:35 +0000695 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000696
697 Expr *sizeExpr;
698
699 // Special case where the argument is a template id.
700 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000701 CXXScopeSpec SS;
702 UnqualifiedId id;
703 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000704
705 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
706 if (Size.isInvalid())
707 return;
708
709 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000710 } else {
711 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000712 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000713 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000714
Peter Collingbourne7a730022010-11-23 20:45:58 +0000715 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000716 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000717
718 // Instantiate/Install the vector type, and let Sema build the type for us.
719 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000720 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000721 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000722 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000723 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000724
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000725 // Remember this typedef decl, we will need it later for diagnostics.
726 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000727 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000728}
729
Chandler Carruth1b03c872011-07-02 00:01:44 +0000730static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000731 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000732 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000733 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000734
Chandler Carruth87c44602011-07-01 23:49:12 +0000735 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000736 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000737 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000738 // If the alignment is less than or equal to 8 bits, the packed attribute
739 // has no effect.
740 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000741 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000742 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000743 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000744 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000745 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000746 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000747 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000748}
749
Chandler Carruth1b03c872011-07-02 00:01:44 +0000750static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000751 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000752 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000753 else
754 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
755}
756
Chandler Carruth1b03c872011-07-02 00:01:44 +0000757static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000758 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000759 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000760 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000761
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000762 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000763 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000764 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000765 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000766 return;
767 }
768
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000769 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000770}
771
Ted Kremenek2f041d02011-09-29 07:02:25 +0000772static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
773 // The IBOutlet/IBOutletCollection attributes only apply to instance
774 // variables or properties of Objective-C classes. The outlet must also
775 // have an object reference type.
776 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
777 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000778 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000779 << Attr.getName() << VD->getType() << 0;
780 return false;
781 }
782 }
783 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
784 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000785 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000786 << Attr.getName() << PD->getType() << 1;
787 return false;
788 }
789 }
790 else {
791 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
792 return false;
793 }
794
795 return true;
796}
797
Chandler Carruth1b03c872011-07-02 00:01:44 +0000798static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000799 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000800 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000801 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000802
803 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000804 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000805
Ted Kremenek2f041d02011-09-29 07:02:25 +0000806 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000807}
808
Chandler Carruth1b03c872011-07-02 00:01:44 +0000809static void handleIBOutletCollection(Sema &S, Decl *D,
810 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000811
812 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000813 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000814 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
815 return;
816 }
817
Ted Kremenek2f041d02011-09-29 07:02:25 +0000818 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000819 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000820
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000821 IdentifierInfo *II = Attr.getParameterName();
822 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000823 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000824
John McCallb3d87482010-08-24 05:47:05 +0000825 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000826 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000827 if (!TypeRep) {
828 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
829 return;
830 }
John McCallb3d87482010-08-24 05:47:05 +0000831 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000832 // Diagnose use of non-object type in iboutletcollection attribute.
833 // FIXME. Gnu attribute extension ignores use of builtin types in
834 // attributes. So, __attribute__((iboutletcollection(char))) will be
835 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000836 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000837 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
838 return;
839 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000840 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
841 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000842}
843
Chandler Carruthd309c812011-07-01 23:49:16 +0000844static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000845 if (const RecordType *UT = T->getAsUnionType())
846 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
847 RecordDecl *UD = UT->getDecl();
848 for (RecordDecl::field_iterator it = UD->field_begin(),
849 itend = UD->field_end(); it != itend; ++it) {
850 QualType QT = it->getType();
851 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
852 T = QT;
853 return;
854 }
855 }
856 }
857}
858
Chandler Carruth1b03c872011-07-02 00:01:44 +0000859static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000860 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
861 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000862 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000863 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000864 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000865 return;
866 }
Mike Stumpbf916502009-07-24 19:02:52 +0000867
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000868 // In C++ the implicit 'this' function parameter also counts, and they are
869 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000870 bool HasImplicitThisParam = isInstanceMethod(D);
871 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000872
873 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000874 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000875
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000876 for (AttributeList::arg_iterator I=Attr.arg_begin(),
877 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000878
879
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000880 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000881 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000882 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000883 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
884 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000885 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
886 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000887 return;
888 }
Mike Stumpbf916502009-07-24 19:02:52 +0000889
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000890 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000891
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000892 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000893 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000894 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000895 return;
896 }
Mike Stumpbf916502009-07-24 19:02:52 +0000897
Ted Kremenek465172f2008-07-21 22:09:15 +0000898 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000899 if (HasImplicitThisParam) {
900 if (x == 0) {
901 S.Diag(Attr.getLoc(),
902 diag::err_attribute_invalid_implicit_this_argument)
903 << "nonnull" << Ex->getSourceRange();
904 return;
905 }
906 --x;
907 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000908
909 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000910 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000911 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000912
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000913 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000914 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000915 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000916 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000917 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000918 }
Mike Stumpbf916502009-07-24 19:02:52 +0000919
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000920 NonNullArgs.push_back(x);
921 }
Mike Stumpbf916502009-07-24 19:02:52 +0000922
923 // If no arguments were specified to __attribute__((nonnull)) then all pointer
924 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000925 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000926 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
927 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000928 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000929 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000930 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000931 }
Mike Stumpbf916502009-07-24 19:02:52 +0000932
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000933 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000934 if (NonNullArgs.empty()) {
935 // Warn the trivial case only if attribute is not coming from a
936 // macro instantiation.
937 if (Attr.getLoc().isFileID())
938 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000939 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000940 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000941 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000942
943 unsigned* start = &NonNullArgs[0];
944 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000945 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000946 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000947 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000948}
949
Chandler Carruth1b03c872011-07-02 00:01:44 +0000950static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000951 // This attribute must be applied to a function declaration.
952 // The first argument to the attribute must be a string,
953 // the name of the resource, for example "malloc".
954 // The following arguments must be argument indexes, the arguments must be
955 // of integer type for Returns, otherwise of pointer type.
956 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000957 // after being held. free() should be __attribute((ownership_takes)), whereas
958 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000959
960 if (!AL.getParameterName()) {
961 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
962 << AL.getName()->getName() << 1;
963 return;
964 }
965 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000966 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000967 switch (AL.getKind()) {
968 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000969 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000970 if (AL.getNumArgs() < 1) {
971 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
972 return;
973 }
Jordy Rose2a479922010-08-12 08:54:03 +0000974 break;
975 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000976 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000977 if (AL.getNumArgs() < 1) {
978 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
979 return;
980 }
Jordy Rose2a479922010-08-12 08:54:03 +0000981 break;
982 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000983 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000984 if (AL.getNumArgs() > 1) {
985 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
986 << AL.getNumArgs() + 1;
987 return;
988 }
Jordy Rose2a479922010-08-12 08:54:03 +0000989 break;
990 default:
991 // This should never happen given how we are called.
992 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000993 }
994
Chandler Carruth87c44602011-07-01 23:49:12 +0000995 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000996 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
997 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000998 return;
999 }
1000
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001001 // In C++ the implicit 'this' function parameter also counts, and they are
1002 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00001003 bool HasImplicitThisParam = isInstanceMethod(D);
1004 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001005
Chris Lattner5f9e2722011-07-23 10:55:15 +00001006 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001007
1008 // Normalize the argument, __foo__ becomes foo.
1009 if (Module.startswith("__") && Module.endswith("__"))
1010 Module = Module.substr(2, Module.size() - 4);
1011
Chris Lattner5f9e2722011-07-23 10:55:15 +00001012 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001013
Jordy Rose2a479922010-08-12 08:54:03 +00001014 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1015 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001016
Peter Collingbourne7a730022010-11-23 20:45:58 +00001017 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001018 llvm::APSInt ArgNum(32);
1019 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1020 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1021 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1022 << AL.getName()->getName() << IdxExpr->getSourceRange();
1023 continue;
1024 }
1025
1026 unsigned x = (unsigned) ArgNum.getZExtValue();
1027
1028 if (x > NumArgs || x < 1) {
1029 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1030 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1031 continue;
1032 }
1033 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001034 if (HasImplicitThisParam) {
1035 if (x == 0) {
1036 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1037 << "ownership" << IdxExpr->getSourceRange();
1038 return;
1039 }
1040 --x;
1041 }
1042
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001043 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001044 case OwnershipAttr::Takes:
1045 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001046 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001047 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001048 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1049 // FIXME: Should also highlight argument in decl.
1050 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001051 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001052 << "pointer"
1053 << IdxExpr->getSourceRange();
1054 continue;
1055 }
1056 break;
1057 }
Sean Huntcf807c42010-08-18 23:23:40 +00001058 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001059 if (AL.getNumArgs() > 1) {
1060 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001061 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001062 llvm::APSInt ArgNum(32);
1063 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1064 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1065 S.Diag(AL.getLoc(), diag::err_ownership_type)
1066 << "ownership_returns" << "integer"
1067 << IdxExpr->getSourceRange();
1068 return;
1069 }
1070 }
1071 break;
1072 }
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001073 } // switch
1074
1075 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001076 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001077 i = D->specific_attr_begin<OwnershipAttr>(),
1078 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001079 i != e; ++i) {
1080 if ((*i)->getOwnKind() != K) {
1081 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1082 I!=E; ++I) {
1083 if (x == *I) {
1084 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1085 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001086 }
1087 }
1088 }
1089 }
1090 OwnershipArgs.push_back(x);
1091 }
1092
1093 unsigned* start = OwnershipArgs.data();
1094 unsigned size = OwnershipArgs.size();
1095 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001096
1097 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1098 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1099 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001100 }
Sean Huntcf807c42010-08-18 23:23:40 +00001101
Chandler Carruth87c44602011-07-01 23:49:12 +00001102 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001103 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001104}
1105
John McCall332bb2a2011-02-08 22:35:49 +00001106/// Whether this declaration has internal linkage for the purposes of
1107/// things that want to complain about things not have internal linkage.
1108static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1109 switch (D->getLinkage()) {
1110 case NoLinkage:
1111 case InternalLinkage:
1112 return true;
1113
1114 // Template instantiations that go from external to unique-external
1115 // shouldn't get diagnosed.
1116 case UniqueExternalLinkage:
1117 return true;
1118
1119 case ExternalLinkage:
1120 return false;
1121 }
1122 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001123}
1124
Chandler Carruth1b03c872011-07-02 00:01:44 +00001125static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001126 // Check the attribute arguments.
1127 if (Attr.getNumArgs() > 1) {
1128 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1129 return;
1130 }
1131
Chandler Carruth87c44602011-07-01 23:49:12 +00001132 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001133 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001134 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001135 return;
1136 }
1137
Chandler Carruth87c44602011-07-01 23:49:12 +00001138 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001139
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001140 // gcc rejects
1141 // class c {
1142 // static int a __attribute__((weakref ("v2")));
1143 // static int b() __attribute__((weakref ("f3")));
1144 // };
1145 // and ignores the attributes of
1146 // void f(void) {
1147 // static int a __attribute__((weakref ("v2")));
1148 // }
1149 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001150 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001151 if (!Ctx->isFileContext()) {
1152 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001153 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001154 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001155 }
1156
1157 // The GCC manual says
1158 //
1159 // At present, a declaration to which `weakref' is attached can only
1160 // be `static'.
1161 //
1162 // It also says
1163 //
1164 // Without a TARGET,
1165 // given as an argument to `weakref' or to `alias', `weakref' is
1166 // equivalent to `weak'.
1167 //
1168 // gcc 4.4.1 will accept
1169 // int a7 __attribute__((weakref));
1170 // as
1171 // int a7 __attribute__((weak));
1172 // This looks like a bug in gcc. We reject that for now. We should revisit
1173 // it if this behaviour is actually used.
1174
John McCall332bb2a2011-02-08 22:35:49 +00001175 if (!hasEffectivelyInternalLinkage(nd)) {
1176 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001177 return;
1178 }
1179
1180 // GCC rejects
1181 // static ((alias ("y"), weakref)).
1182 // Should we? How to check that weakref is before or after alias?
1183
1184 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001185 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001186 Arg = Arg->IgnoreParenCasts();
1187 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1188
Douglas Gregor5cee1192011-07-27 05:40:30 +00001189 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001190 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1191 << "weakref" << 1;
1192 return;
1193 }
1194 // GCC will accept anything as the argument of weakref. Should we
1195 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001196 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001197 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001198 }
1199
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001200 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001201}
1202
Chandler Carruth1b03c872011-07-02 00:01:44 +00001203static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001204 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001205 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001206 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001207 return;
1208 }
Mike Stumpbf916502009-07-24 19:02:52 +00001209
Peter Collingbourne7a730022010-11-23 20:45:58 +00001210 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001211 Arg = Arg->IgnoreParenCasts();
1212 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001213
Douglas Gregor5cee1192011-07-27 05:40:30 +00001214 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001215 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001216 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001217 return;
1218 }
Mike Stumpbf916502009-07-24 19:02:52 +00001219
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001220 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001221 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1222 return;
1223 }
1224
Chris Lattner6b6b5372008-06-26 18:38:35 +00001225 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001226
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001227 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001228 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001229}
1230
Chandler Carruth1b03c872011-07-02 00:01:44 +00001231static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001232 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001233 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001234 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001235
Chandler Carruth87c44602011-07-01 23:49:12 +00001236 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001237 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001238 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001239 return;
1240 }
1241
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001242 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001243}
1244
Chandler Carruth1b03c872011-07-02 00:01:44 +00001245static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1246 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001247 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001248 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001249 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1250 return;
1251 }
1252
Chandler Carruth87c44602011-07-01 23:49:12 +00001253 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001254 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001255 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001256 return;
1257 }
Mike Stumpbf916502009-07-24 19:02:52 +00001258
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001259 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001260}
1261
Chandler Carruth1b03c872011-07-02 00:01:44 +00001262static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001263 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001264 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001265 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1266 return;
1267 }
Mike Stump1eb44332009-09-09 15:08:12 +00001268
Chandler Carruth87c44602011-07-01 23:49:12 +00001269 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001270 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001271 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001272 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001273 return;
1274 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001275 }
1276
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001277 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001278}
1279
Chandler Carruth1b03c872011-07-02 00:01:44 +00001280static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001281 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001282 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001283 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001284
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001285 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001286}
1287
Chandler Carruth1b03c872011-07-02 00:01:44 +00001288static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001289 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001290 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001291 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001292 else
1293 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001294 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001295}
1296
Chandler Carruth1b03c872011-07-02 00:01:44 +00001297static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001298 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001299 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001300 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001301 else
1302 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001303 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001304}
1305
Chandler Carruth1b03c872011-07-02 00:01:44 +00001306static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001307 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001308
1309 if (S.CheckNoReturnAttr(attr)) return;
1310
Chandler Carruth87c44602011-07-01 23:49:12 +00001311 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001312 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001313 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001314 return;
1315 }
1316
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001317 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001318}
1319
1320bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001321 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001322 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1323 attr.setInvalid();
1324 return true;
1325 }
1326
1327 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001328}
1329
Chandler Carruth1b03c872011-07-02 00:01:44 +00001330static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1331 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001332
1333 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1334 // because 'analyzer_noreturn' does not impact the type.
1335
Chandler Carruth1731e202011-07-11 23:30:35 +00001336 if(!checkAttributeNumArgs(S, Attr, 0))
1337 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001338
Chandler Carruth87c44602011-07-01 23:49:12 +00001339 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1340 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001341 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1342 && !VD->getType()->isFunctionPointerType())) {
1343 S.Diag(Attr.getLoc(),
1344 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1345 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001346 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001347 return;
1348 }
1349 }
1350
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001351 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001352}
1353
John Thompson35cc9622010-08-09 21:53:52 +00001354// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001355static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001356/*
1357 Returning a Vector Class in Registers
1358
Eric Christopherf48f3672010-12-01 22:13:54 +00001359 According to the PPU ABI specifications, a class with a single member of
1360 vector type is returned in memory when used as the return value of a function.
1361 This results in inefficient code when implementing vector classes. To return
1362 the value in a single vector register, add the vecreturn attribute to the
1363 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001364
1365 Example:
1366
1367 struct Vector
1368 {
1369 __vector float xyzw;
1370 } __attribute__((vecreturn));
1371
1372 Vector Add(Vector lhs, Vector rhs)
1373 {
1374 Vector result;
1375 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1376 return result; // This will be returned in a register
1377 }
1378*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001379 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001380 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001381 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001382 return;
1383 }
1384
Chandler Carruth87c44602011-07-01 23:49:12 +00001385 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001386 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1387 return;
1388 }
1389
Chandler Carruth87c44602011-07-01 23:49:12 +00001390 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001391 int count = 0;
1392
1393 if (!isa<CXXRecordDecl>(record)) {
1394 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1395 return;
1396 }
1397
1398 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1399 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1400 return;
1401 }
1402
Eric Christopherf48f3672010-12-01 22:13:54 +00001403 for (RecordDecl::field_iterator iter = record->field_begin();
1404 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001405 if ((count == 1) || !iter->getType()->isVectorType()) {
1406 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1407 return;
1408 }
1409 count++;
1410 }
1411
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001412 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001413}
1414
Chandler Carruth1b03c872011-07-02 00:01:44 +00001415static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001416 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001417 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001418 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001419 return;
1420 }
1421 // FIXME: Actually store the attribute on the declaration
1422}
1423
Chandler Carruth1b03c872011-07-02 00:01:44 +00001424static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001425 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001426 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001427 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001428 return;
1429 }
Mike Stumpbf916502009-07-24 19:02:52 +00001430
Chandler Carruth87c44602011-07-01 23:49:12 +00001431 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1432 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001433 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001434 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001435 return;
1436 }
Mike Stumpbf916502009-07-24 19:02:52 +00001437
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001438 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001439}
1440
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001441static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1442 const AttributeList &Attr) {
1443 // check the attribute arguments.
1444 if (Attr.hasParameterOrArguments()) {
1445 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1446 return;
1447 }
1448
1449 if (!isa<FunctionDecl>(D)) {
1450 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1451 << Attr.getName() << ExpectedFunction;
1452 return;
1453 }
1454
1455 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1456}
1457
Chandler Carruth1b03c872011-07-02 00:01:44 +00001458static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001459 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001460 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001461 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1462 return;
1463 }
Mike Stumpbf916502009-07-24 19:02:52 +00001464
Chandler Carruth87c44602011-07-01 23:49:12 +00001465 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001466 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001467 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1468 return;
1469 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001470 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001471 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001472 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001473 return;
1474 }
Mike Stumpbf916502009-07-24 19:02:52 +00001475
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001476 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001477}
1478
Chandler Carruth1b03c872011-07-02 00:01:44 +00001479static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001480 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001481 if (Attr.getNumArgs() > 1) {
1482 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001483 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001484 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001485
1486 int priority = 65535; // FIXME: Do not hardcode such constants.
1487 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001488 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001489 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001490 if (E->isTypeDependent() || E->isValueDependent() ||
1491 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001492 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001493 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001494 return;
1495 }
1496 priority = Idx.getZExtValue();
1497 }
Mike Stumpbf916502009-07-24 19:02:52 +00001498
Chandler Carruth87c44602011-07-01 23:49:12 +00001499 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001500 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001501 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001502 return;
1503 }
1504
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001505 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001506 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001507}
1508
Chandler Carruth1b03c872011-07-02 00:01:44 +00001509static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001510 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001511 if (Attr.getNumArgs() > 1) {
1512 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001513 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001514 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001515
1516 int priority = 65535; // FIXME: Do not hardcode such constants.
1517 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001518 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001519 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001520 if (E->isTypeDependent() || E->isValueDependent() ||
1521 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001522 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001523 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001524 return;
1525 }
1526 priority = Idx.getZExtValue();
1527 }
Mike Stumpbf916502009-07-24 19:02:52 +00001528
Chandler Carruth87c44602011-07-01 23:49:12 +00001529 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001530 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001531 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001532 return;
1533 }
1534
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001535 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001536 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001537}
1538
Chandler Carruth1b03c872011-07-02 00:01:44 +00001539static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001540 unsigned NumArgs = Attr.getNumArgs();
1541 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001542 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001543 return;
1544 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001545
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001546 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001547 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001548 if (NumArgs == 1) {
1549 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001550 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001551 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1552 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001553 return;
1554 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001555 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001556 }
Mike Stumpbf916502009-07-24 19:02:52 +00001557
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001558 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001559}
1560
Chandler Carruth1b03c872011-07-02 00:01:44 +00001561static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001562 unsigned NumArgs = Attr.getNumArgs();
1563 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001564 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001565 return;
1566 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001567
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001568 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001569 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001570 if (NumArgs == 1) {
1571 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001572 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001573 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001574 diag::err_attribute_not_string) << "unavailable";
1575 return;
1576 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001577 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001578 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001579 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001580}
1581
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001582static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1583 const AttributeList &Attr) {
1584 unsigned NumArgs = Attr.getNumArgs();
1585 if (NumArgs > 0) {
1586 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1587 return;
1588 }
1589
1590 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001591 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001592}
1593
Ted Kremenek71207fc2012-01-05 22:47:47 +00001594static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D,
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001595 const AttributeList &Attr) {
Fariborz Jahanian341b8be2012-01-03 22:52:32 +00001596 if (!isa<ObjCInterfaceDecl>(D)) {
1597 S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis);
1598 return;
1599 }
1600
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001601 unsigned NumArgs = Attr.getNumArgs();
1602 if (NumArgs > 0) {
1603 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1604 return;
1605 }
1606
Ted Kremenek71207fc2012-01-05 22:47:47 +00001607 D->addAttr(::new (S.Context) ObjCRequiresPropertyDefsAttr(
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00001608 Attr.getRange(), S.Context));
1609}
1610
Chandler Carruth1b03c872011-07-02 00:01:44 +00001611static void handleAvailabilityAttr(Sema &S, Decl *D,
1612 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001613 IdentifierInfo *Platform = Attr.getParameterName();
1614 SourceLocation PlatformLoc = Attr.getParameterLoc();
1615
Chris Lattner5f9e2722011-07-23 10:55:15 +00001616 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001617 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1618 if (PlatformName.empty()) {
1619 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1620 << Platform;
1621
1622 PlatformName = Platform->getName();
1623 }
1624
1625 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1626 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1627 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001628 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001629
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001630 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001631 // of these steps are needed).
1632 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001633 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001634 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1635 << 1 << PlatformName << Deprecated.Version.getAsString()
1636 << 0 << Introduced.Version.getAsString();
1637 return;
1638 }
1639
1640 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001641 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001642 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1643 << 2 << PlatformName << Obsoleted.Version.getAsString()
1644 << 0 << Introduced.Version.getAsString();
1645 return;
1646 }
1647
1648 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001649 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001650 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1651 << 2 << PlatformName << Obsoleted.Version.getAsString()
1652 << 1 << Deprecated.Version.getAsString();
1653 return;
1654 }
1655
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001656 StringRef Str;
1657 const StringLiteral *SE =
1658 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1659 if (SE)
1660 Str = SE->getString();
1661
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001662 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001663 Platform,
1664 Introduced.Version,
1665 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001666 Obsoleted.Version,
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001667 IsUnavailable,
1668 Str));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001669}
1670
Chandler Carruth1b03c872011-07-02 00:01:44 +00001671static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001672 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001673 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001674 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001675
Peter Collingbourne7a730022010-11-23 20:45:58 +00001676 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001677 Arg = Arg->IgnoreParenCasts();
1678 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001679
Douglas Gregor5cee1192011-07-27 05:40:30 +00001680 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001681 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001682 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001683 return;
1684 }
Mike Stumpbf916502009-07-24 19:02:52 +00001685
Chris Lattner5f9e2722011-07-23 10:55:15 +00001686 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001687 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001688
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001689 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001690 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001691 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001692 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001693 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001694 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001695 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001696 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001697 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001698 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001699 return;
1700 }
Mike Stumpbf916502009-07-24 19:02:52 +00001701
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001702 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001703}
1704
Chandler Carruth1b03c872011-07-02 00:01:44 +00001705static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1706 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001707 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1708 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001709 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001710 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001711 return;
1712 }
1713
Chandler Carruth87c44602011-07-01 23:49:12 +00001714 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1715 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1716 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001717 << "objc_method_family" << 1;
1718 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001719 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001720 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001721 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001722 return;
1723 }
1724
Chris Lattner5f9e2722011-07-23 10:55:15 +00001725 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001726 ObjCMethodFamilyAttr::FamilyKind family;
1727 if (param == "none")
1728 family = ObjCMethodFamilyAttr::OMF_None;
1729 else if (param == "alloc")
1730 family = ObjCMethodFamilyAttr::OMF_alloc;
1731 else if (param == "copy")
1732 family = ObjCMethodFamilyAttr::OMF_copy;
1733 else if (param == "init")
1734 family = ObjCMethodFamilyAttr::OMF_init;
1735 else if (param == "mutableCopy")
1736 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1737 else if (param == "new")
1738 family = ObjCMethodFamilyAttr::OMF_new;
1739 else {
1740 // Just warn and ignore it. This is future-proof against new
1741 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001742 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001743 return;
1744 }
1745
John McCallf85e1932011-06-15 23:02:42 +00001746 if (family == ObjCMethodFamilyAttr::OMF_init &&
1747 !method->getResultType()->isObjCObjectPointerType()) {
1748 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1749 << method->getResultType();
1750 // Ignore the attribute.
1751 return;
1752 }
1753
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001754 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001755 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001756}
1757
Chandler Carruth1b03c872011-07-02 00:01:44 +00001758static void handleObjCExceptionAttr(Sema &S, Decl *D,
1759 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001760 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001761 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001762
Chris Lattner0db29ec2009-02-14 08:09:34 +00001763 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1764 if (OCI == 0) {
1765 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1766 return;
1767 }
Mike Stumpbf916502009-07-24 19:02:52 +00001768
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001769 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001770}
1771
Chandler Carruth1b03c872011-07-02 00:01:44 +00001772static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001773 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001774 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001775 return;
1776 }
Richard Smith162e1c12011-04-15 14:24:37 +00001777 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001778 QualType T = TD->getUnderlyingType();
1779 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001780 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001781 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1782 return;
1783 }
1784 }
Fariborz Jahanian6b65d4a2011-12-16 15:54:29 +00001785 else
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00001786 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001787 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001788}
1789
Mike Stumpbf916502009-07-24 19:02:52 +00001790static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001791handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001792 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001793 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001794 return;
1795 }
1796
1797 if (!isa<FunctionDecl>(D)) {
1798 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1799 return;
1800 }
1801
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001802 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001803}
1804
Chandler Carruth1b03c872011-07-02 00:01:44 +00001805static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001806 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001807 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001808 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001809 return;
1810 }
Mike Stumpbf916502009-07-24 19:02:52 +00001811
Steve Naroff9eae5762008-09-18 16:44:58 +00001812 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001813 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001814 return;
1815 }
Mike Stumpbf916502009-07-24 19:02:52 +00001816
Sean Huntcf807c42010-08-18 23:23:40 +00001817 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001818 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001819 type = BlocksAttr::ByRef;
1820 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001821 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001822 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001823 return;
1824 }
Mike Stumpbf916502009-07-24 19:02:52 +00001825
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001826 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001827}
1828
Chandler Carruth1b03c872011-07-02 00:01:44 +00001829static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001830 // check the attribute arguments.
1831 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001832 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001833 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001834 }
1835
John McCall3323fad2011-09-09 07:56:05 +00001836 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001837 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001838 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001839 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001840 if (E->isTypeDependent() || E->isValueDependent() ||
1841 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001842 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001843 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001844 return;
1845 }
Mike Stumpbf916502009-07-24 19:02:52 +00001846
John McCall3323fad2011-09-09 07:56:05 +00001847 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001848 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1849 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001850 return;
1851 }
John McCall3323fad2011-09-09 07:56:05 +00001852
1853 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001854 }
1855
John McCall3323fad2011-09-09 07:56:05 +00001856 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001857 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001858 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001859 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001860 if (E->isTypeDependent() || E->isValueDependent() ||
1861 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001862 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001863 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001864 return;
1865 }
1866 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001867
John McCall3323fad2011-09-09 07:56:05 +00001868 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001869 // FIXME: This error message could be improved, it would be nice
1870 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001871 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1872 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001873 return;
1874 }
1875 }
1876
Chandler Carruth87c44602011-07-01 23:49:12 +00001877 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001878 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001879 if (isa<FunctionNoProtoType>(FT)) {
1880 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1881 return;
1882 }
Mike Stumpbf916502009-07-24 19:02:52 +00001883
Chris Lattner897cd902009-03-17 23:03:47 +00001884 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001885 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001886 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001887 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001888 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001889 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001890 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001891 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001892 }
Eli Friedmana0b2ba12012-01-06 01:23:10 +00001893 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1894 if (!BD->isVariadic()) {
1895 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
1896 return;
1897 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001898 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001899 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001900 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001901 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001902 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001903 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001904 int m = Ty->isFunctionPointerType() ? 0 : 1;
1905 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001906 return;
1907 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001908 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001909 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001910 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001911 return;
1912 }
Anders Carlsson77091822008-10-05 18:05:59 +00001913 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001914 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001915 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001916 return;
1917 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001918 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001919 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001920}
1921
Chandler Carruth1b03c872011-07-02 00:01:44 +00001922static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001923 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001924 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001925 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001926
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001927 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001928 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001929 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001930 return;
1931 }
Mike Stumpbf916502009-07-24 19:02:52 +00001932
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001933 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1934 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1935 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001936 return;
1937 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001938 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1939 if (MD->getResultType()->isVoidType()) {
1940 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1941 << Attr.getName() << 1;
1942 return;
1943 }
1944
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001945 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001946}
1947
Chandler Carruth1b03c872011-07-02 00:01:44 +00001948static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001949 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001950 if (Attr.hasParameterOrArguments()) {
1951 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001952 return;
1953 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001954
Chandler Carruth87c44602011-07-01 23:49:12 +00001955 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001956 if (isa<CXXRecordDecl>(D)) {
1957 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1958 return;
1959 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001960 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1961 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001962 return;
1963 }
1964
Chandler Carruth87c44602011-07-01 23:49:12 +00001965 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001966
1967 // 'weak' only applies to declarations with external linkage.
1968 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001969 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001970 return;
1971 }
Mike Stumpbf916502009-07-24 19:02:52 +00001972
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001973 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001974}
1975
Chandler Carruth1b03c872011-07-02 00:01:44 +00001976static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001977 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001978 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001979 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001980
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001981
1982 // weak_import only applies to variable & function declarations.
1983 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001984 if (!D->canBeWeakImported(isDef)) {
1985 if (isDef)
1986 S.Diag(Attr.getLoc(),
1987 diag::warn_attribute_weak_import_invalid_on_definition)
1988 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001989 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001990 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00001991 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00001992 // Nothing to warn about here.
1993 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001994 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001995 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001996
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001997 return;
1998 }
1999
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002000 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00002001}
2002
Chandler Carruth1b03c872011-07-02 00:01:44 +00002003static void handleReqdWorkGroupSize(Sema &S, Decl *D,
2004 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002005 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002006 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00002007 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00002008
2009 unsigned WGSize[3];
2010 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00002011 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00002012 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002013 if (E->isTypeDependent() || E->isValueDependent() ||
2014 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00002015 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2016 << "reqd_work_group_size" << E->getSourceRange();
2017 return;
2018 }
2019 WGSize[i] = (unsigned) ArgNum.getZExtValue();
2020 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002021 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00002022 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00002023 WGSize[2]));
2024}
2025
Chandler Carruth1b03c872011-07-02 00:01:44 +00002026static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002027 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002028 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002029 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002030
2031 // Make sure that there is a string literal as the sections's single
2032 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002033 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002034 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002035 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002036 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002037 return;
2038 }
Mike Stump1eb44332009-09-09 15:08:12 +00002039
Chris Lattner797c3c42009-08-10 19:03:04 +00002040 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002041 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002042 if (!Error.empty()) {
2043 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2044 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002045 return;
2046 }
Mike Stump1eb44332009-09-09 15:08:12 +00002047
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002048 // This attribute cannot be applied to local variables.
2049 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2050 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2051 return;
2052 }
2053
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002054 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002055 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002056}
2057
Chris Lattner6b6b5372008-06-26 18:38:35 +00002058
Chandler Carruth1b03c872011-07-02 00:01:44 +00002059static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002060 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002061 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002062 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002063 return;
2064 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002065
Chandler Carruth87c44602011-07-01 23:49:12 +00002066 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002067 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002068 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002069 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002070 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002071 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002072}
2073
Chandler Carruth1b03c872011-07-02 00:01:44 +00002074static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002075 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002076 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002077 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002078 return;
2079 }
Mike Stumpbf916502009-07-24 19:02:52 +00002080
Chandler Carruth87c44602011-07-01 23:49:12 +00002081 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002082 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002083 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002084 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002085 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002086 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002087}
2088
Chandler Carruth1b03c872011-07-02 00:01:44 +00002089static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002090 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002091 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002092 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002093
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002094 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002095}
2096
Chandler Carruth1b03c872011-07-02 00:01:44 +00002097static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002098 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002099 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2100 return;
2101 }
Mike Stumpbf916502009-07-24 19:02:52 +00002102
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002103 if (Attr.getNumArgs() != 0) {
2104 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2105 return;
2106 }
Mike Stumpbf916502009-07-24 19:02:52 +00002107
Chandler Carruth87c44602011-07-01 23:49:12 +00002108 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002109
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002110 if (!VD || !VD->hasLocalStorage()) {
2111 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2112 return;
2113 }
Mike Stumpbf916502009-07-24 19:02:52 +00002114
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002115 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002116 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002117 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002118 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2119 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002120 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002121 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002122 Attr.getParameterName();
2123 return;
2124 }
Mike Stumpbf916502009-07-24 19:02:52 +00002125
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002126 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2127 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002128 S.Diag(Attr.getParameterLoc(),
2129 diag::err_attribute_cleanup_arg_not_function)
2130 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002131 return;
2132 }
2133
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002134 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002135 S.Diag(Attr.getParameterLoc(),
2136 diag::err_attribute_cleanup_func_must_take_one_arg)
2137 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002138 return;
2139 }
Mike Stumpbf916502009-07-24 19:02:52 +00002140
Anders Carlsson89941c12009-02-07 23:16:50 +00002141 // We're currently more strict than GCC about what function types we accept.
2142 // If this ever proves to be a problem it should be easy to fix.
2143 QualType Ty = S.Context.getPointerType(VD->getType());
2144 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002145 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2146 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002147 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002148 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2149 Attr.getParameterName() << ParamTy << Ty;
2150 return;
2151 }
Mike Stumpbf916502009-07-24 19:02:52 +00002152
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002153 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002154 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002155}
2156
Mike Stumpbf916502009-07-24 19:02:52 +00002157/// Handle __attribute__((format_arg((idx)))) attribute based on
2158/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002159static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002160 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002161 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002162
Chandler Carruth87c44602011-07-01 23:49:12 +00002163 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002164 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002165 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002166 return;
2167 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002168
2169 // In C++ the implicit 'this' function parameter also counts, and they are
2170 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002171 bool HasImplicitThisParam = isInstanceMethod(D);
2172 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002173 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002174
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002175 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002176 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002177 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002178 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2179 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002180 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2181 << "format" << 2 << IdxExpr->getSourceRange();
2182 return;
2183 }
Mike Stumpbf916502009-07-24 19:02:52 +00002184
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002185 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2186 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2187 << "format" << 2 << IdxExpr->getSourceRange();
2188 return;
2189 }
Mike Stumpbf916502009-07-24 19:02:52 +00002190
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002191 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002192
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002193 if (HasImplicitThisParam) {
2194 if (ArgIdx == 0) {
2195 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2196 << "format_arg" << IdxExpr->getSourceRange();
2197 return;
2198 }
2199 ArgIdx--;
2200 }
2201
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002202 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002203 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002204
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002205 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2206 if (not_nsstring_type &&
2207 !isCFStringType(Ty, S.Context) &&
2208 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002209 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002210 // FIXME: Should highlight the actual expression that has the wrong type.
2211 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002212 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002213 << IdxExpr->getSourceRange();
2214 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002215 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002216 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002217 if (!isNSStringType(Ty, S.Context) &&
2218 !isCFStringType(Ty, S.Context) &&
2219 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002220 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002221 // FIXME: Should highlight the actual expression that has the wrong type.
2222 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002223 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002224 << IdxExpr->getSourceRange();
2225 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002226 }
2227
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002228 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002229 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002230}
2231
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002232enum FormatAttrKind {
2233 CFStringFormat,
2234 NSStringFormat,
2235 StrftimeFormat,
2236 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002237 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002238 InvalidFormat
2239};
2240
2241/// getFormatAttrKind - Map from format attribute names to supported format
2242/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002243static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002244 // Check for formats that get handled specially.
2245 if (Format == "NSString")
2246 return NSStringFormat;
2247 if (Format == "CFString")
2248 return CFStringFormat;
2249 if (Format == "strftime")
2250 return StrftimeFormat;
2251
2252 // Otherwise, check for supported formats.
2253 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2254 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2255 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002256 Format == "zcmn_err" ||
2257 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002258 return SupportedFormat;
2259
Duncan Sandsbc525952010-03-23 14:44:19 +00002260 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2261 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002262 return IgnoredFormat;
2263
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002264 return InvalidFormat;
2265}
2266
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002267/// Handle __attribute__((init_priority(priority))) attributes based on
2268/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002269static void handleInitPriorityAttr(Sema &S, Decl *D,
2270 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002271 if (!S.getLangOptions().CPlusPlus) {
2272 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2273 return;
2274 }
2275
Chandler Carruth87c44602011-07-01 23:49:12 +00002276 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002277 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2278 Attr.setInvalid();
2279 return;
2280 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002281 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002282 if (S.Context.getAsArrayType(T))
2283 T = S.Context.getBaseElementType(T);
2284 if (!T->getAs<RecordType>()) {
2285 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2286 Attr.setInvalid();
2287 return;
2288 }
2289
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002290 if (Attr.getNumArgs() != 1) {
2291 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2292 Attr.setInvalid();
2293 return;
2294 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002295 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002296
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002297 llvm::APSInt priority(32);
2298 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2299 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2300 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2301 << "init_priority" << priorityExpr->getSourceRange();
2302 Attr.setInvalid();
2303 return;
2304 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002305 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002306 if (prioritynum < 101 || prioritynum > 65535) {
2307 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2308 << priorityExpr->getSourceRange();
2309 Attr.setInvalid();
2310 return;
2311 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002312 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002313 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002314}
2315
Mike Stumpbf916502009-07-24 19:02:52 +00002316/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2317/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002318static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002319
Chris Lattner545dd342008-06-28 23:36:30 +00002320 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002321 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002322 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002323 return;
2324 }
2325
Chris Lattner545dd342008-06-28 23:36:30 +00002326 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002327 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002328 return;
2329 }
2330
Chandler Carruth87c44602011-07-01 23:49:12 +00002331 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002332 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002333 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002334 return;
2335 }
2336
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002337 // In C++ the implicit 'this' function parameter also counts, and they are
2338 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002339 bool HasImplicitThisParam = isInstanceMethod(D);
2340 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002341 unsigned FirstIdx = 1;
2342
Chris Lattner5f9e2722011-07-23 10:55:15 +00002343 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002344
2345 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002346 if (Format.startswith("__") && Format.endswith("__"))
2347 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002348
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002349 // Check for supported formats.
2350 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002351
2352 if (Kind == IgnoredFormat)
2353 return;
2354
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002355 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002356 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002357 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002358 return;
2359 }
2360
2361 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002362 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002363 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002364 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2365 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002366 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002367 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002368 return;
2369 }
2370
2371 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002372 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002373 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002374 return;
2375 }
2376
2377 // FIXME: Do we need to bounds check?
2378 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002379
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002380 if (HasImplicitThisParam) {
2381 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002382 S.Diag(Attr.getLoc(),
2383 diag::err_format_attribute_implicit_this_format_string)
2384 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002385 return;
2386 }
2387 ArgIdx--;
2388 }
Mike Stump1eb44332009-09-09 15:08:12 +00002389
Chris Lattner6b6b5372008-06-26 18:38:35 +00002390 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002391 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002392
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002393 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002394 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002395 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2396 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002397 return;
2398 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002399 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002400 // FIXME: do we need to check if the type is NSString*? What are the
2401 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002402 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002403 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002404 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2405 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002406 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002407 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002408 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002409 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002410 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002411 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2412 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002413 return;
2414 }
2415
2416 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002417 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002418 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002419 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2420 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002421 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002422 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002423 return;
2424 }
2425
2426 // check if the function is variadic if the 3rd argument non-zero
2427 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002428 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002429 ++NumArgs; // +1 for ...
2430 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002431 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002432 return;
2433 }
2434 }
2435
Chris Lattner3c73c412008-11-19 08:23:25 +00002436 // strftime requires FirstArg to be 0 because it doesn't read from any
2437 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002438 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002439 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002440 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2441 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002442 return;
2443 }
2444 // if 0 it disables parameter checking (to use with e.g. va_list)
2445 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002446 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002447 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002448 return;
2449 }
2450
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002451 // Check whether we already have an equivalent format attribute.
2452 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002453 i = D->specific_attr_begin<FormatAttr>(),
2454 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002455 i != e ; ++i) {
2456 FormatAttr *f = *i;
2457 if (f->getType() == Format &&
2458 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2459 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2460 // If we don't have a valid location for this attribute, adopt the
2461 // location.
2462 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002463 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002464 return;
2465 }
2466 }
2467
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002468 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002469 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002470 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002471}
2472
Chandler Carruth1b03c872011-07-02 00:01:44 +00002473static void handleTransparentUnionAttr(Sema &S, Decl *D,
2474 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002475 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002476 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002477 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002478
Chris Lattner6b6b5372008-06-26 18:38:35 +00002479
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002480 // Try to find the underlying union declaration.
2481 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002482 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002483 if (TD && TD->getUnderlyingType()->isUnionType())
2484 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2485 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002486 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002487
2488 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002489 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002490 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002491 return;
2492 }
2493
John McCall5e1cdac2011-10-07 06:10:15 +00002494 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002495 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002496 diag::warn_transparent_union_attribute_not_definition);
2497 return;
2498 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002499
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002500 RecordDecl::field_iterator Field = RD->field_begin(),
2501 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002502 if (Field == FieldEnd) {
2503 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2504 return;
2505 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002506
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002507 FieldDecl *FirstField = *Field;
2508 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002509 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002510 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002511 diag::warn_transparent_union_attribute_floating)
2512 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002513 return;
2514 }
2515
2516 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2517 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2518 for (; Field != FieldEnd; ++Field) {
2519 QualType FieldType = Field->getType();
2520 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2521 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2522 // Warn if we drop the attribute.
2523 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002524 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002525 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002526 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002527 diag::warn_transparent_union_attribute_field_size_align)
2528 << isSize << Field->getDeclName() << FieldBits;
2529 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002530 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002531 diag::note_transparent_union_first_field_size_align)
2532 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002533 return;
2534 }
2535 }
2536
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002537 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002538}
2539
Chandler Carruth1b03c872011-07-02 00:01:44 +00002540static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002541 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002542 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002543 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002544
Peter Collingbourne7a730022010-11-23 20:45:58 +00002545 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002546 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002547
Chris Lattner6b6b5372008-06-26 18:38:35 +00002548 // Make sure that there is a string literal as the annotation's single
2549 // argument.
2550 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002551 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002552 return;
2553 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002554
2555 // Don't duplicate annotations that are already set.
2556 for (specific_attr_iterator<AnnotateAttr>
2557 i = D->specific_attr_begin<AnnotateAttr>(),
2558 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2559 if ((*i)->getAnnotation() == SE->getString())
2560 return;
2561 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002562 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002563 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002564}
2565
Chandler Carruth1b03c872011-07-02 00:01:44 +00002566static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002567 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002568 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002569 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002570 return;
2571 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002572
2573 //FIXME: The C++0x version of this attribute has more limited applicabilty
2574 // than GNU's, and should error out when it is used to specify a
2575 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002576
Chris Lattner545dd342008-06-28 23:36:30 +00002577 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002578 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002579 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002580 }
Mike Stumpbf916502009-07-24 19:02:52 +00002581
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002582 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002583}
2584
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002585void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002586 // FIXME: Handle pack-expansions here.
2587 if (DiagnoseUnexpandedParameterPack(E))
2588 return;
2589
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002590 if (E->isTypeDependent() || E->isValueDependent()) {
2591 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002592 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002593 return;
2594 }
2595
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002596 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002597 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002598 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002599 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2600 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2601 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002602 return;
2603 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002604 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002605 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2606 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002607 return;
2608 }
2609
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002610 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Sean Huntcf807c42010-08-18 23:23:40 +00002611}
2612
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002613void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002614 // FIXME: Cache the number on the Attr object if non-dependent?
2615 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002616 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002617 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002618}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002619
Chandler Carruthd309c812011-07-01 23:49:16 +00002620/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002621/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002622///
Mike Stumpbf916502009-07-24 19:02:52 +00002623/// Despite what would be logical, the mode attribute is a decl attribute, not a
2624/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2625/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002626static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002627 // This attribute isn't documented, but glibc uses it. It changes
2628 // the width of an int or unsigned int to the specified size.
2629
2630 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002631 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002632 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002633
Chris Lattnerfbf13472008-06-27 22:18:37 +00002634
2635 IdentifierInfo *Name = Attr.getParameterName();
2636 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002637 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002638 return;
2639 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002640
Chris Lattner5f9e2722011-07-23 10:55:15 +00002641 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002642
2643 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002644 if (Str.startswith("__") && Str.endswith("__"))
2645 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002646
2647 unsigned DestWidth = 0;
2648 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002649 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002650 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002651 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002652 switch (Str[0]) {
2653 case 'Q': DestWidth = 8; break;
2654 case 'H': DestWidth = 16; break;
2655 case 'S': DestWidth = 32; break;
2656 case 'D': DestWidth = 64; break;
2657 case 'X': DestWidth = 96; break;
2658 case 'T': DestWidth = 128; break;
2659 }
2660 if (Str[1] == 'F') {
2661 IntegerMode = false;
2662 } else if (Str[1] == 'C') {
2663 IntegerMode = false;
2664 ComplexMode = true;
2665 } else if (Str[1] != 'I') {
2666 DestWidth = 0;
2667 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002668 break;
2669 case 4:
2670 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2671 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002672 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002673 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002674 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002675 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002676 break;
2677 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002678 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002679 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002680 break;
2681 }
2682
2683 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002684 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002685 OldTy = TD->getUnderlyingType();
2686 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2687 OldTy = VD->getType();
2688 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002689 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002690 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002691 return;
2692 }
Eli Friedman73397492009-03-03 06:41:03 +00002693
John McCall183700f2009-09-21 23:43:11 +00002694 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002695 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2696 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002697 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002698 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2699 } else if (ComplexMode) {
2700 if (!OldTy->isComplexType())
2701 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2702 } else {
2703 if (!OldTy->isFloatingType())
2704 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2705 }
2706
Mike Stump390b4cc2009-05-16 07:39:55 +00002707 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2708 // and friends, at least with glibc.
2709 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2710 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002711 // FIXME: Make sure floating-point mappings are accurate
2712 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002713 QualType NewTy;
2714 switch (DestWidth) {
2715 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002716 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002717 return;
2718 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002719 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002720 return;
2721 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002722 if (!IntegerMode) {
2723 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2724 return;
2725 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002726 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002727 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002728 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002729 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002730 break;
2731 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002732 if (!IntegerMode) {
2733 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2734 return;
2735 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002736 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002737 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002738 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002739 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002740 break;
2741 case 32:
2742 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002743 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002744 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002745 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002746 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002747 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002748 break;
2749 case 64:
2750 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002751 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002752 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002753 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002754 NewTy = S.Context.LongTy;
2755 else
2756 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002757 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002758 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002759 NewTy = S.Context.UnsignedLongTy;
2760 else
2761 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002762 break;
Eli Friedman73397492009-03-03 06:41:03 +00002763 case 96:
2764 NewTy = S.Context.LongDoubleTy;
2765 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002766 case 128:
2767 if (!IntegerMode) {
2768 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2769 return;
2770 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002771 if (OldTy->isSignedIntegerType())
2772 NewTy = S.Context.Int128Ty;
2773 else
2774 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002775 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002776 }
2777
Eli Friedman73397492009-03-03 06:41:03 +00002778 if (ComplexMode) {
2779 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002780 }
2781
2782 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002783 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002784 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002785 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002786 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002787 cast<ValueDecl>(D)->setType(NewTy);
2788}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002789
Chandler Carruth1b03c872011-07-02 00:01:44 +00002790static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002791 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002792 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002793 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002794
Chandler Carruth87c44602011-07-01 23:49:12 +00002795 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002796 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002797 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002798 return;
2799 }
Mike Stumpbf916502009-07-24 19:02:52 +00002800
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002801 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002802}
2803
Chandler Carruth1b03c872011-07-02 00:01:44 +00002804static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002805 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002806 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002807 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002808
Mike Stumpbf916502009-07-24 19:02:52 +00002809
Chandler Carruth87c44602011-07-01 23:49:12 +00002810 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002811 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002812 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002813 return;
2814 }
Mike Stumpbf916502009-07-24 19:02:52 +00002815
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002816 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002817}
2818
Chandler Carruth1b03c872011-07-02 00:01:44 +00002819static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2820 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002821 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002822 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002823 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002824
Chris Lattner7255a2d2010-06-22 00:03:40 +00002825
Chandler Carruth87c44602011-07-01 23:49:12 +00002826 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002827 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002828 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002829 return;
2830 }
2831
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002832 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002833 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002834}
2835
Chandler Carruth1b03c872011-07-02 00:01:44 +00002836static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002837 if (S.LangOpts.CUDA) {
2838 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002839 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002840 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2841 return;
2842 }
2843
Chandler Carruth87c44602011-07-01 23:49:12 +00002844 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002845 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002846 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002847 return;
2848 }
2849
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002850 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002851 } else {
2852 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2853 }
2854}
2855
Chandler Carruth1b03c872011-07-02 00:01:44 +00002856static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002857 if (S.LangOpts.CUDA) {
2858 // check the attribute arguments.
2859 if (Attr.getNumArgs() != 0) {
2860 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2861 return;
2862 }
2863
Chandler Carruth87c44602011-07-01 23:49:12 +00002864 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002866 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002867 return;
2868 }
2869
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002870 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002871 } else {
2872 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2873 }
2874}
2875
Chandler Carruth1b03c872011-07-02 00:01:44 +00002876static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002877 if (S.LangOpts.CUDA) {
2878 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002879 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002880 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002881
Chandler Carruth87c44602011-07-01 23:49:12 +00002882 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002883 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002884 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002885 return;
2886 }
2887
Chandler Carruth87c44602011-07-01 23:49:12 +00002888 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002889 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002890 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002891 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2892 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2893 << FD->getType()
2894 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2895 "void");
2896 } else {
2897 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2898 << FD->getType();
2899 }
2900 return;
2901 }
2902
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002903 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002904 } else {
2905 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2906 }
2907}
2908
Chandler Carruth1b03c872011-07-02 00:01:44 +00002909static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002910 if (S.LangOpts.CUDA) {
2911 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002912 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002913 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002914
Peter Collingbourneced76712010-12-01 03:15:31 +00002915
Chandler Carruth87c44602011-07-01 23:49:12 +00002916 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002917 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002918 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002919 return;
2920 }
2921
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002922 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002923 } else {
2924 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2925 }
2926}
2927
Chandler Carruth1b03c872011-07-02 00:01:44 +00002928static void handleSharedAttr(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<VarDecl>(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() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002938 return;
2939 }
2940
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002941 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002942 } else {
2943 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2944 }
2945}
2946
Chandler Carruth1b03c872011-07-02 00:01:44 +00002947static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002948 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002949 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002950 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002951
Chandler Carruth87c44602011-07-01 23:49:12 +00002952 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002953 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002954 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002955 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002956 return;
2957 }
Mike Stumpbf916502009-07-24 19:02:52 +00002958
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002959 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002960 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002961 return;
2962 }
Mike Stumpbf916502009-07-24 19:02:52 +00002963
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002964 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002965}
2966
Chandler Carruth1b03c872011-07-02 00:01:44 +00002967static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002968 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002969
Chandler Carruth87c44602011-07-01 23:49:12 +00002970 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002971 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2972 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002973 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002974 return;
2975
Chandler Carruth87c44602011-07-01 23:49:12 +00002976 if (!isa<ObjCMethodDecl>(D)) {
2977 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2978 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002979 return;
2980 }
2981
Chandler Carruth87c44602011-07-01 23:49:12 +00002982 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002983 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002984 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002985 return;
2986 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002987 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002988 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002989 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002990 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002991 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002992 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002993 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002994 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002995 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002996 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002997 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002998 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002999 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003000 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003001 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003002 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003003 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00003004 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003005 return;
3006 }
3007
Chris Lattner5f9e2722011-07-23 10:55:15 +00003008 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003009 PcsAttr::PCSType PCS;
3010 if (StrRef == "aapcs")
3011 PCS = PcsAttr::AAPCS;
3012 else if (StrRef == "aapcs-vfp")
3013 PCS = PcsAttr::AAPCS_VFP;
3014 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003015 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
3016 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003017 return;
3018 }
3019
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003020 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003021 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00003022 default:
3023 llvm_unreachable("unexpected attribute kind");
Abramo Bagnarae215f722010-04-30 13:10:51 +00003024 }
3025}
3026
Chandler Carruth1b03c872011-07-02 00:01:44 +00003027static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00003028 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003029 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003030}
3031
John McCall711c52b2011-01-05 12:14:39 +00003032bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3033 if (attr.isInvalid())
3034 return true;
3035
Ted Kremenek831efae2011-04-15 05:49:29 +00003036 if ((attr.getNumArgs() != 0 &&
3037 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3038 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003039 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3040 attr.setInvalid();
3041 return true;
3042 }
3043
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003044 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3045 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003046 switch (attr.getKind()) {
3047 case AttributeList::AT_cdecl: CC = CC_C; break;
3048 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3049 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3050 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3051 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003052 case AttributeList::AT_pcs: {
3053 Expr *Arg = attr.getArg(0);
3054 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003055 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003056 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3057 << "pcs" << 1;
3058 attr.setInvalid();
3059 return true;
3060 }
3061
Chris Lattner5f9e2722011-07-23 10:55:15 +00003062 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003063 if (StrRef == "aapcs") {
3064 CC = CC_AAPCS;
3065 break;
3066 } else if (StrRef == "aapcs-vfp") {
3067 CC = CC_AAPCS_VFP;
3068 break;
3069 }
3070 // FALLS THROUGH
3071 }
David Blaikie7530c032012-01-17 06:56:22 +00003072 default: llvm_unreachable("unexpected attribute kind");
John McCall711c52b2011-01-05 12:14:39 +00003073 }
3074
3075 return false;
3076}
3077
Chandler Carruth1b03c872011-07-02 00:01:44 +00003078static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003079 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003080
3081 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003082 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003083 return;
3084
Chandler Carruth87c44602011-07-01 23:49:12 +00003085 if (!isa<ObjCMethodDecl>(D)) {
3086 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3087 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003088 return;
3089 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003090
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003091 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003092}
3093
3094/// Checks a regparm attribute, returning true if it is ill-formed and
3095/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003096bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3097 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003098 return true;
3099
Chandler Carruth87c44602011-07-01 23:49:12 +00003100 if (Attr.getNumArgs() != 1) {
3101 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3102 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003103 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003104 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003105
Chandler Carruth87c44602011-07-01 23:49:12 +00003106 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003107 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003108 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003109 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003110 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003111 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003112 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003113 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003114 }
3115
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003116 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003117 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003118 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003119 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003120 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003121 }
3122
John McCall711c52b2011-01-05 12:14:39 +00003123 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003124 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003125 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003126 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003127 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003128 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003129 }
3130
John McCall711c52b2011-01-05 12:14:39 +00003131 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003132}
3133
Chandler Carruth1b03c872011-07-02 00:01:44 +00003134static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003135 if (S.LangOpts.CUDA) {
3136 // check the attribute arguments.
3137 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003138 // FIXME: 0 is not okay.
3139 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003140 return;
3141 }
3142
Chandler Carruth87c44602011-07-01 23:49:12 +00003143 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003144 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003145 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003146 return;
3147 }
3148
3149 Expr *MaxThreadsExpr = Attr.getArg(0);
3150 llvm::APSInt MaxThreads(32);
3151 if (MaxThreadsExpr->isTypeDependent() ||
3152 MaxThreadsExpr->isValueDependent() ||
3153 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3154 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3155 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3156 return;
3157 }
3158
3159 llvm::APSInt MinBlocks(32);
3160 if (Attr.getNumArgs() > 1) {
3161 Expr *MinBlocksExpr = Attr.getArg(1);
3162 if (MinBlocksExpr->isTypeDependent() ||
3163 MinBlocksExpr->isValueDependent() ||
3164 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3165 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3166 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3167 return;
3168 }
3169 }
3170
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003171 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003172 MaxThreads.getZExtValue(),
3173 MinBlocks.getZExtValue()));
3174 } else {
3175 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3176 }
3177}
3178
Chris Lattner0744e5f2008-06-29 00:23:49 +00003179//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003180// Checker-specific attribute handlers.
3181//===----------------------------------------------------------------------===//
3182
John McCallc7ad3812011-01-25 03:31:58 +00003183static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003184 return type->isDependentType() ||
3185 type->isObjCObjectPointerType() ||
3186 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003187}
3188static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003189 return type->isDependentType() ||
3190 type->isPointerType() ||
3191 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003192}
3193
Chandler Carruth1b03c872011-07-02 00:01:44 +00003194static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003195 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003196 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003197 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003198 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003199 return;
3200 }
3201
3202 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003203 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003204 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3205 cf = false;
3206 } else {
3207 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3208 cf = true;
3209 }
3210
3211 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003212 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003213 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003214 return;
3215 }
3216
3217 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003218 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003219 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003220 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003221}
3222
Chandler Carruth1b03c872011-07-02 00:01:44 +00003223static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3224 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003225 if (!isa<ObjCMethodDecl>(D)) {
3226 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003227 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003228 return;
3229 }
3230
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003231 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003232}
3233
Chandler Carruth1b03c872011-07-02 00:01:44 +00003234static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3235 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003236
John McCallc7ad3812011-01-25 03:31:58 +00003237 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003238
Chandler Carruth87c44602011-07-01 23:49:12 +00003239 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003240 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003241 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003242 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003243 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3244 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003245 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003246 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003247 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003248 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003249 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003250 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003251 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003252 return;
3253 }
Mike Stumpbf916502009-07-24 19:02:52 +00003254
John McCallc7ad3812011-01-25 03:31:58 +00003255 bool typeOK;
3256 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003257 switch (Attr.getKind()) {
David Blaikie7530c032012-01-17 06:56:22 +00003258 default: llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003259 case AttributeList::AT_ns_returns_autoreleased:
3260 case AttributeList::AT_ns_returns_retained:
3261 case AttributeList::AT_ns_returns_not_retained:
3262 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3263 cf = false;
3264 break;
3265
3266 case AttributeList::AT_cf_returns_retained:
3267 case AttributeList::AT_cf_returns_not_retained:
3268 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3269 cf = true;
3270 break;
3271 }
3272
3273 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003274 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003275 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003276 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003277 }
Mike Stumpbf916502009-07-24 19:02:52 +00003278
Chandler Carruth87c44602011-07-01 23:49:12 +00003279 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003280 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003281 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003282 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003283 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003284 S.Context));
3285 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003286 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003287 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003288 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003289 return;
3290 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003291 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003292 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003293 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003294 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003295 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003296 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003297 return;
3298 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003299 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003300 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003301 return;
3302 };
3303}
3304
John McCalldc7c5ad2011-07-22 08:53:00 +00003305static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3306 const AttributeList &attr) {
3307 SourceLocation loc = attr.getLoc();
3308
3309 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3310
3311 if (!isa<ObjCMethodDecl>(method)) {
3312 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3313 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3314 return;
3315 }
3316
3317 // Check that the method returns a normal pointer.
3318 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003319
3320 if (!resultType->isReferenceType() &&
3321 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003322 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3323 << SourceRange(loc)
3324 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3325
3326 // Drop the attribute.
3327 return;
3328 }
3329
3330 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003331 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003332}
3333
John McCall8dfac0b2011-09-30 05:12:12 +00003334/// Handle cf_audited_transfer and cf_unknown_transfer.
3335static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3336 if (!isa<FunctionDecl>(D)) {
3337 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3338 << A.getRange() << A.getName() << 0 /*function*/;
3339 return;
3340 }
3341
3342 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3343
3344 // Check whether there's a conflicting attribute already present.
3345 Attr *Existing;
3346 if (IsAudited) {
3347 Existing = D->getAttr<CFUnknownTransferAttr>();
3348 } else {
3349 Existing = D->getAttr<CFAuditedTransferAttr>();
3350 }
3351 if (Existing) {
3352 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3353 << A.getName()
3354 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3355 << A.getRange() << Existing->getRange();
3356 return;
3357 }
3358
3359 // All clear; add the attribute.
3360 if (IsAudited) {
3361 D->addAttr(
3362 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3363 } else {
3364 D->addAttr(
3365 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3366 }
3367}
3368
John McCallfe98da02011-09-29 07:17:38 +00003369static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3370 const AttributeList &Attr) {
3371 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3372 if (!RD || RD->isUnion()) {
3373 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3374 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3375 }
3376
3377 IdentifierInfo *ParmName = Attr.getParameterName();
3378
3379 // In Objective-C, verify that the type names an Objective-C type.
3380 // We don't want to check this outside of ObjC because people sometimes
3381 // do crazy C declarations of Objective-C types.
3382 if (ParmName && S.getLangOptions().ObjC1) {
3383 // Check for an existing type with this name.
3384 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3385 Sema::LookupOrdinaryName);
3386 if (S.LookupName(R, Sc)) {
3387 NamedDecl *Target = R.getFoundDecl();
3388 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3389 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3390 S.Diag(Target->getLocStart(), diag::note_declared_at);
3391 }
3392 }
3393 }
3394
3395 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3396 ParmName));
3397}
3398
Chandler Carruth1b03c872011-07-02 00:01:44 +00003399static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3400 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003401 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003402
Chandler Carruth87c44602011-07-01 23:49:12 +00003403 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003404 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003405}
3406
Chandler Carruth1b03c872011-07-02 00:01:44 +00003407static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3408 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003409 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003410 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003411 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003412 return;
3413 }
3414
Chandler Carruth87c44602011-07-01 23:49:12 +00003415 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003416 QualType type = vd->getType();
3417
3418 if (!type->isDependentType() &&
3419 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003420 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003421 << type;
3422 return;
3423 }
3424
3425 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3426
3427 // If we have no lifetime yet, check the lifetime we're presumably
3428 // going to infer.
3429 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3430 lifetime = type->getObjCARCImplicitLifetime();
3431
3432 switch (lifetime) {
3433 case Qualifiers::OCL_None:
3434 assert(type->isDependentType() &&
3435 "didn't infer lifetime for non-dependent type?");
3436 break;
3437
3438 case Qualifiers::OCL_Weak: // meaningful
3439 case Qualifiers::OCL_Strong: // meaningful
3440 break;
3441
3442 case Qualifiers::OCL_ExplicitNone:
3443 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003444 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003445 << (lifetime == Qualifiers::OCL_Autoreleasing);
3446 break;
3447 }
3448
Chandler Carruth87c44602011-07-01 23:49:12 +00003449 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003450 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003451}
3452
Charles Davisf0122fe2010-02-16 18:27:26 +00003453static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3454 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003455 Attr.getKind() == AttributeList::AT_dllexport ||
3456 Attr.getKind() == AttributeList::AT_uuid;
3457}
3458
3459//===----------------------------------------------------------------------===//
3460// Microsoft specific attribute handlers.
3461//===----------------------------------------------------------------------===//
3462
Chandler Carruth1b03c872011-07-02 00:01:44 +00003463static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003464 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003465 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003466 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003467 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003468
Francois Pichet11542142010-12-19 06:50:37 +00003469 Expr *Arg = Attr.getArg(0);
3470 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003471 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003472 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3473 << "uuid" << 1;
3474 return;
3475 }
3476
Chris Lattner5f9e2722011-07-23 10:55:15 +00003477 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003478
3479 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3480 StrRef.back() == '}';
3481
3482 // Validate GUID length.
3483 if (IsCurly && StrRef.size() != 38) {
3484 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3485 return;
3486 }
3487 if (!IsCurly && StrRef.size() != 36) {
3488 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3489 return;
3490 }
3491
3492 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3493 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003494 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003495 if (IsCurly) // Skip the optional '{'
3496 ++I;
3497
3498 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003499 if (i == 8 || i == 13 || i == 18 || i == 23) {
3500 if (*I != '-') {
3501 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3502 return;
3503 }
3504 } else if (!isxdigit(*I)) {
3505 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3506 return;
3507 }
3508 I++;
3509 }
Francois Pichet11542142010-12-19 06:50:37 +00003510
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003511 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003512 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003513 } else
Francois Pichet11542142010-12-19 06:50:37 +00003514 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003515}
3516
Ted Kremenekb71368d2009-05-09 02:44:38 +00003517//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003518// Top Level Sema Entry Points
3519//===----------------------------------------------------------------------===//
3520
Chandler Carruth1b03c872011-07-02 00:01:44 +00003521static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3522 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003523 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003524 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3525 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3526 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003527 default:
3528 break;
3529 }
3530}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003531
Chandler Carruth1b03c872011-07-02 00:01:44 +00003532static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3533 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003534 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003535 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3536 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003537 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003538 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003539 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003540 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003541 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003542 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003543 case AttributeList::AT_neon_vector_type:
3544 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003545 // Ignore these, these are type attributes, handled by
3546 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003547 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003548 case AttributeList::AT_device:
3549 case AttributeList::AT_host:
3550 case AttributeList::AT_overloadable:
3551 // Ignore, this is a non-inheritable attribute, handled
3552 // by ProcessNonInheritableDeclAttr.
3553 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003554 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3555 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003556 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003557 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003558 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003559 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3560 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3561 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003562 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003563 handleDependencyAttr (S, D, Attr); break;
3564 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3565 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3566 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3567 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3568 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003569 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003570 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003571 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003572 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3573 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3574 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3575 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003576 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003577 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003578 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003579 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3580 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3581 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3582 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3583 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003584 case AttributeList::AT_ownership_returns:
3585 case AttributeList::AT_ownership_takes:
3586 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003587 handleOwnershipAttr (S, D, Attr); break;
3588 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3589 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3590 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3591 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3592 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003593
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003594 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003595 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003596 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003597 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003598
John McCalldc7c5ad2011-07-22 08:53:00 +00003599 case AttributeList::AT_objc_returns_inner_pointer:
3600 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3601
John McCallfe98da02011-09-29 07:17:38 +00003602 case AttributeList::AT_ns_bridged:
3603 handleNSBridgedAttr(S, scope, D, Attr); break;
3604
John McCall8dfac0b2011-09-30 05:12:12 +00003605 case AttributeList::AT_cf_audited_transfer:
3606 case AttributeList::AT_cf_unknown_transfer:
3607 handleCFTransferAttr(S, D, Attr); break;
3608
Ted Kremenekb71368d2009-05-09 02:44:38 +00003609 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003610 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003611 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003612 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003613 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003614
3615 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003616 case AttributeList::AT_ns_returns_not_retained:
3617 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003618 case AttributeList::AT_ns_returns_retained:
3619 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003620 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003621
Nate Begeman6f3d8382009-06-26 06:32:41 +00003622 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003623 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003624
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003625 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003626 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003627
Chandler Carruth1b03c872011-07-02 00:01:44 +00003628 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3629 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3630 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3631 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003632 case AttributeList::AT_arc_weakref_unavailable:
3633 handleArcWeakrefUnavailableAttr (S, D, Attr);
3634 break;
Ted Kremenek71207fc2012-01-05 22:47:47 +00003635 case AttributeList::AT_objc_requires_property_definitions:
3636 handleObjCRequiresPropertyDefsAttr (S, D, Attr);
Fariborz Jahaniane23dcf32012-01-03 18:45:41 +00003637 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003638 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003639 case AttributeList::AT_returns_twice:
3640 handleReturnsTwiceAttr(S, D, Attr);
3641 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003642 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3643 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3644 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003645 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003646 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3647 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3648 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003649 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003650 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003651 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003652 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003653 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003654 break;
John McCalld5313b02011-03-02 11:33:24 +00003655 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003656 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003657 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003658 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3659 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3660 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3661 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3662 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3663 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3664 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3665 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3666 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003667 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003668 // Just ignore
3669 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003670 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003671 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003672 break;
John McCall04a67a62010-02-05 21:31:56 +00003673 case AttributeList::AT_stdcall:
3674 case AttributeList::AT_cdecl:
3675 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003676 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003677 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003678 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003679 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003680 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003681 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003682 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003683 break;
Francois Pichet11542142010-12-19 06:50:37 +00003684 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003685 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003686 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003687
3688 // Thread safety attributes:
3689 case AttributeList::AT_guarded_var:
3690 handleGuardedVarAttr(S, D, Attr);
3691 break;
3692 case AttributeList::AT_pt_guarded_var:
3693 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3694 break;
3695 case AttributeList::AT_scoped_lockable:
3696 handleLockableAttr(S, D, Attr, /*scoped = */true);
3697 break;
Kostya Serebryany71efba02012-01-24 19:25:38 +00003698 case AttributeList::AT_no_address_safety_analysis:
3699 handleNoAddressSafetyAttr(S, D, Attr);
3700 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003701 case AttributeList::AT_no_thread_safety_analysis:
3702 handleNoThreadSafetyAttr(S, D, Attr);
3703 break;
3704 case AttributeList::AT_lockable:
3705 handleLockableAttr(S, D, Attr);
3706 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003707 case AttributeList::AT_guarded_by:
3708 handleGuardedByAttr(S, D, Attr);
3709 break;
3710 case AttributeList::AT_pt_guarded_by:
3711 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3712 break;
3713 case AttributeList::AT_exclusive_lock_function:
3714 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3715 break;
3716 case AttributeList::AT_exclusive_locks_required:
3717 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3718 break;
3719 case AttributeList::AT_exclusive_trylock_function:
3720 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3721 break;
3722 case AttributeList::AT_lock_returned:
3723 handleLockReturnedAttr(S, D, Attr);
3724 break;
3725 case AttributeList::AT_locks_excluded:
3726 handleLocksExcludedAttr(S, D, Attr);
3727 break;
3728 case AttributeList::AT_shared_lock_function:
3729 handleLockFunAttr(S, D, Attr);
3730 break;
3731 case AttributeList::AT_shared_locks_required:
3732 handleLocksRequiredAttr(S, D, Attr);
3733 break;
3734 case AttributeList::AT_shared_trylock_function:
3735 handleTrylockFunAttr(S, D, Attr);
3736 break;
3737 case AttributeList::AT_unlock_function:
3738 handleUnlockFunAttr(S, D, Attr);
3739 break;
3740 case AttributeList::AT_acquired_before:
3741 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3742 break;
3743 case AttributeList::AT_acquired_after:
3744 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3745 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003746
Chris Lattner803d0802008-06-29 00:43:07 +00003747 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003748 // Ask target about the attribute.
3749 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3750 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003751 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3752 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003753 break;
3754 }
3755}
3756
Peter Collingbourne60700392011-01-21 02:08:45 +00003757/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3758/// the attribute applies to decls. If the attribute is a type attribute, just
3759/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3760/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003761static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3762 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003763 bool NonInheritable, bool Inheritable) {
3764 if (Attr.isInvalid())
3765 return;
3766
3767 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3768 // FIXME: Try to deal with other __declspec attributes!
3769 return;
3770
3771 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003772 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003773
3774 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003775 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003776}
3777
Chris Lattner803d0802008-06-29 00:43:07 +00003778/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3779/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003780void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003781 const AttributeList *AttrList,
3782 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003783 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003784 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003785 }
3786
3787 // GCC accepts
3788 // static int a9 __attribute__((weakref));
3789 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003790 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003791 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003792 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003793 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003794 }
3795}
3796
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003797// Annotation attributes are the only attributes allowed after an access
3798// specifier.
3799bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3800 const AttributeList *AttrList) {
3801 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3802 if (l->getKind() == AttributeList::AT_annotate) {
3803 handleAnnotateAttr(*this, ASDecl, *l);
3804 } else {
3805 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3806 return true;
3807 }
3808 }
3809
3810 return false;
3811}
3812
John McCalle82247a2011-10-01 05:17:03 +00003813/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3814/// contains any decl attributes that we should warn about.
3815static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3816 for ( ; A; A = A->getNext()) {
3817 // Only warn if the attribute is an unignored, non-type attribute.
3818 if (A->isUsedAsTypeAttr()) continue;
3819 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3820
3821 if (A->getKind() == AttributeList::UnknownAttribute) {
3822 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3823 << A->getName() << A->getRange();
3824 } else {
3825 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3826 << A->getName() << A->getRange();
3827 }
3828 }
3829}
3830
3831/// checkUnusedDeclAttributes - Given a declarator which is not being
3832/// used to build a declaration, complain about any decl attributes
3833/// which might be lying around on it.
3834void Sema::checkUnusedDeclAttributes(Declarator &D) {
3835 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3836 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3837 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3838 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3839}
3840
Ryan Flynne25ff832009-07-30 03:15:39 +00003841/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3842/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003843NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3844 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003845 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003846 NamedDecl *NewD = 0;
3847 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003848 FunctionDecl *NewFD;
3849 // FIXME: Missing call to CheckFunctionDeclaration().
3850 // FIXME: Mangling?
3851 // FIXME: Is the qualifier info correct?
3852 // FIXME: Is the DeclContext correct?
3853 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3854 Loc, Loc, DeclarationName(II),
3855 FD->getType(), FD->getTypeSourceInfo(),
3856 SC_None, SC_None,
3857 false/*isInlineSpecified*/,
3858 FD->hasPrototype(),
3859 false/*isConstexprSpecified*/);
3860 NewD = NewFD;
3861
3862 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003863 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003864
3865 // Fake up parameter variables; they are declared as if this were
3866 // a typedef.
3867 QualType FDTy = FD->getType();
3868 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3869 SmallVector<ParmVarDecl*, 16> Params;
3870 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3871 AE = FT->arg_type_end(); AI != AE; ++AI) {
3872 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3873 Param->setScopeInfo(0, Params.size());
3874 Params.push_back(Param);
3875 }
David Blaikie4278c652011-09-21 18:16:56 +00003876 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003877 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003878 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3879 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003880 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003881 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003882 VD->getStorageClass(),
3883 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003884 if (VD->getQualifier()) {
3885 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003886 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003887 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003888 }
3889 return NewD;
3890}
3891
3892/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3893/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003894void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003895 if (W.getUsed()) return; // only do this once
3896 W.setUsed(true);
3897 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3898 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003899 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003900 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3901 NDId->getName()));
3902 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003903 WeakTopLevelDecl.push_back(NewD);
3904 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3905 // to insert Decl at TU scope, sorry.
3906 DeclContext *SavedContext = CurContext;
3907 CurContext = Context.getTranslationUnitDecl();
3908 PushOnScopeChains(NewD, S);
3909 CurContext = SavedContext;
3910 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003911 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003912 }
3913}
3914
Chris Lattner0744e5f2008-06-29 00:23:49 +00003915/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3916/// it, apply them to D. This is a bit tricky because PD can have attributes
3917/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003918void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3919 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003920 // It's valid to "forward-declare" #pragma weak, in which case we
3921 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003922 if (Inheritable) {
3923 LoadExternalWeakUndeclaredIdentifiers();
3924 if (!WeakUndeclaredIdentifiers.empty()) {
3925 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3926 if (IdentifierInfo *Id = ND->getIdentifier()) {
3927 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3928 = WeakUndeclaredIdentifiers.find(Id);
3929 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3930 WeakInfo W = I->second;
3931 DeclApplyPragmaWeak(S, ND, W);
3932 WeakUndeclaredIdentifiers[Id] = W;
3933 }
John McCalld4aff0e2010-10-27 00:59:00 +00003934 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003935 }
3936 }
3937 }
3938
Chris Lattner0744e5f2008-06-29 00:23:49 +00003939 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003940 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003941 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003942
Chris Lattner0744e5f2008-06-29 00:23:49 +00003943 // Walk the declarator structure, applying decl attributes that were in a type
3944 // position to the decl itself. This handles cases like:
3945 // int *__attr__(x)** D;
3946 // when X is a decl attribute.
3947 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3948 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003949 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003950
Chris Lattner0744e5f2008-06-29 00:23:49 +00003951 // Finally, apply any attributes on the decl itself.
3952 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003953 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003954}
John McCall54abf7d2009-11-04 02:18:39 +00003955
John McCallf85e1932011-06-15 23:02:42 +00003956/// Is the given declaration allowed to use a forbidden type?
3957static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3958 // Private ivars are always okay. Unfortunately, people don't
3959 // always properly make their ivars private, even in system headers.
3960 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00003961 // Function declarations in sys headers will be marked unavailable.
3962 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3963 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00003964 return false;
3965
3966 // Require it to be declared in a system header.
3967 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3968}
3969
3970/// Handle a delayed forbidden-type diagnostic.
3971static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3972 Decl *decl) {
3973 if (decl && isForbiddenTypeAllowed(S, decl)) {
3974 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3975 "this system declaration uses an unsupported type"));
3976 return;
3977 }
Fariborz Jahanian175fb102011-10-03 22:11:57 +00003978 if (S.getLangOptions().ObjCAutoRefCount)
3979 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
3980 // FIXME. we may want to supress diagnostics for all
3981 // kind of forbidden type messages on unavailable functions.
3982 if (FD->hasAttr<UnavailableAttr>() &&
3983 diag.getForbiddenTypeDiagnostic() ==
3984 diag::err_arc_array_param_no_ownership) {
3985 diag.Triggered = true;
3986 return;
3987 }
3988 }
John McCallf85e1932011-06-15 23:02:42 +00003989
3990 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3991 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3992 diag.Triggered = true;
3993}
3994
John McCalleee1d542011-02-14 07:13:47 +00003995// This duplicates a vector push_back but hides the need to know the
3996// size of the type.
3997void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3998 assert(StackSize <= StackCapacity);
3999
4000 // Grow the stack if necessary.
4001 if (StackSize == StackCapacity) {
4002 unsigned newCapacity = 2 * StackCapacity + 2;
4003 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
4004 const char *oldBuffer = (const char*) Stack;
4005
4006 if (StackCapacity)
4007 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
4008
4009 delete[] oldBuffer;
4010 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
4011 StackCapacity = newCapacity;
4012 }
4013
4014 assert(StackSize < StackCapacity);
4015 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00004016}
4017
John McCalleee1d542011-02-14 07:13:47 +00004018void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
4019 Decl *decl) {
4020 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00004021
John McCalleee1d542011-02-14 07:13:47 +00004022 // Check the invariants.
4023 assert(DD.StackSize >= state.SavedStackSize);
4024 assert(state.SavedStackSize >= DD.ActiveStackBase);
4025 assert(DD.ParsingDepth > 0);
4026
4027 // Drop the parsing depth.
4028 DD.ParsingDepth--;
4029
4030 // If there are no active diagnostics, we're done.
4031 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00004032 return;
4033
John McCall2f514482010-01-27 03:50:35 +00004034 // We only want to actually emit delayed diagnostics when we
4035 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00004036 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00004037 // We emit all the active diagnostics, not just those starting
4038 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00004039 // decl spec and another for each declarator; in a decl group like:
4040 // deprecated_typedef foo, *bar, baz();
4041 // only the declarator pops will be passed decls. This is correct;
4042 // we really do need to consider delayed diagnostics from the decl spec
4043 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00004044 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4045 DelayedDiagnostic &diag = DD.Stack[i];
4046 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004047 continue;
4048
John McCalleee1d542011-02-14 07:13:47 +00004049 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004050 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00004051 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004052 break;
4053
4054 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00004055 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004056 break;
John McCallf85e1932011-06-15 23:02:42 +00004057
4058 case DelayedDiagnostic::ForbiddenType:
4059 handleDelayedForbiddenType(S, diag, decl);
4060 break;
John McCall2f514482010-01-27 03:50:35 +00004061 }
4062 }
4063 }
4064
John McCall58e6f342010-03-16 05:22:47 +00004065 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00004066 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00004067 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00004068
John McCalleee1d542011-02-14 07:13:47 +00004069 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00004070}
4071
4072static bool isDeclDeprecated(Decl *D) {
4073 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004074 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004075 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004076 // A category implicitly has the availability of the interface.
4077 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4078 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004079 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4080 return false;
4081}
4082
John McCall9c3087b2010-08-26 02:13:20 +00004083void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004084 Decl *Ctx) {
4085 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004086 return;
4087
John McCall2f514482010-01-27 03:50:35 +00004088 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004089 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004090 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004091 << DD.getDeprecationDecl()->getDeclName()
4092 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004093 else
4094 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004095 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004096}
4097
Chris Lattner5f9e2722011-07-23 10:55:15 +00004098void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004099 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004100 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004101 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004102 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
4103 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00004104 return;
4105 }
4106
4107 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004108 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004109 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004110 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004111 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4112 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004113 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004114 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004115 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004116 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004117 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004118 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4119 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004120 }
John McCall54abf7d2009-11-04 02:18:39 +00004121}