blob: 1626bf14b604e1788f07ee20ed2ca27fed0269d9 [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
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000396 if (Arg->isTypeDependent())
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000397 // FIXME: handle attributes with dependent types
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000398 return;
399
400 // check that the argument is lockable object
401 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000402 return;
403
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000404 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000405 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000406 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000407 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000408 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000409}
410
411
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000412static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
413 bool scoped = false) {
414 assert(!Attr.isInvalid());
415
416 if (!checkAttributeNumArgs(S, Attr, 0))
417 return;
418
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000419 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000420 if (!isa<CXXRecordDecl>(D)) {
421 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
422 << Attr.getName() << ExpectedClass;
423 return;
424 }
425
426 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000427 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000428 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000429 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000430}
431
432static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
433 const AttributeList &Attr) {
434 assert(!Attr.isInvalid());
435
436 if (!checkAttributeNumArgs(S, Attr, 0))
437 return;
438
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000439 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000440 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
441 << Attr.getName() << ExpectedFunctionOrMethod;
442 return;
443 }
444
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000445 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000446 S.Context));
447}
448
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000449static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
450 bool before) {
451 assert(!Attr.isInvalid());
452
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000453 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000454 return;
455
456 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000457 ValueDecl *VD = dyn_cast<ValueDecl>(D);
458 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000459 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000460 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000461 return;
462 }
463
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000464 // Check that this attribute only applies to lockable types
465 QualType QT = VD->getType();
466 if (!QT->isDependentType()) {
467 const RecordType *RT = getRecordType(QT);
468 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
469 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
470 << Attr.getName();
471 return;
472 }
473 }
474
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000475 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000477 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000478 return;
479
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000480 unsigned Size = Args.size();
481 assert(Size == Attr.getNumArgs());
482 Expr **StartArg = Size == 0 ? 0 : &Args[0];
483
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000484 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000485 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000486 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000487 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000488 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000489 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000490}
491
492static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000493 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000494 assert(!Attr.isInvalid());
495
496 // zero or more arguments ok
497
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000498 // check that the attribute is applied to a function
499 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000500 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
501 << Attr.getName() << ExpectedFunctionOrMethod;
502 return;
503 }
504
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000505 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000506 SmallVector<Expr*, 1> Args;
507 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000508 return;
509
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000510 unsigned Size = Args.size();
511 assert(Size == Attr.getNumArgs());
512 Expr **StartArg = Size == 0 ? 0 : &Args[0];
513
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000514 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000515 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000516 S.Context, StartArg,
517 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000518 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000519 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000520 S.Context, StartArg,
521 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000522}
523
524static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000525 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000526 assert(!Attr.isInvalid());
527
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000528 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000529 return;
530
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000531
532 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000533 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
534 << Attr.getName() << ExpectedFunctionOrMethod;
535 return;
536 }
537
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000538 if (!isIntOrBool(Attr.getArg(0))) {
539 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
540 << Attr.getName();
541 return;
542 }
543
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000544 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000545 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000546 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000547 return;
548
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000549 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000550 Expr **StartArg = Size == 0 ? 0 : &Args[0];
551
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000552 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000553 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000554 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000555 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000556 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000557 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000558 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000559 S.Context,
560 Attr.getArg(0),
561 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000562}
563
564static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000565 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000566 assert(!Attr.isInvalid());
567
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000568 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000569 return;
570
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000571 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000572 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
573 << Attr.getName() << ExpectedFunctionOrMethod;
574 return;
575 }
576
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000577 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000578 SmallVector<Expr*, 1> Args;
579 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000580 return;
581
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000582 unsigned Size = Args.size();
583 assert(Size == Attr.getNumArgs());
584 Expr **StartArg = Size == 0 ? 0 : &Args[0];
585
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000586 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000587 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000588 S.Context, StartArg,
589 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000590 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000591 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000592 S.Context, StartArg,
593 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000594}
595
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000596static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000597 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000598 assert(!Attr.isInvalid());
599
600 // zero or more arguments ok
601
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000602 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000603 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
604 << Attr.getName() << ExpectedFunctionOrMethod;
605 return;
606 }
607
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000608 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000609 SmallVector<Expr*, 1> Args;
610 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000611 return;
612
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000613 unsigned Size = Args.size();
614 assert(Size == Attr.getNumArgs());
615 Expr **StartArg = Size == 0 ? 0 : &Args[0];
616
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000617 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000618 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000619}
620
621static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000622 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000623 assert(!Attr.isInvalid());
624
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000625 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000626 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000627 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000628
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000629 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000630 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
631 << Attr.getName() << ExpectedFunctionOrMethod;
632 return;
633 }
634
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000635 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000636 return;
637
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000638 // check that the argument is lockable object
639 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
640 return;
641
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000642 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000643}
644
645static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000646 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000647 assert(!Attr.isInvalid());
648
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000649 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000650 return;
651
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000652 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000653 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
654 << Attr.getName() << ExpectedFunctionOrMethod;
655 return;
656 }
657
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000658 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000659 SmallVector<Expr*, 1> Args;
660 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000661 return;
662
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000663 unsigned Size = Args.size();
664 assert(Size == Attr.getNumArgs());
665 Expr **StartArg = Size == 0 ? 0 : &Args[0];
666
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000667 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000668 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000669}
670
671
Chandler Carruth1b03c872011-07-02 00:01:44 +0000672static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
673 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000674 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000675 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000676 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000677 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000678 }
Mike Stumpbf916502009-07-24 19:02:52 +0000679
Chris Lattner6b6b5372008-06-26 18:38:35 +0000680 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000681
682 Expr *sizeExpr;
683
684 // Special case where the argument is a template id.
685 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000686 CXXScopeSpec SS;
687 UnqualifiedId id;
688 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000689
690 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
691 if (Size.isInvalid())
692 return;
693
694 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000695 } else {
696 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000697 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000698 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000699
Peter Collingbourne7a730022010-11-23 20:45:58 +0000700 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000701 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000702
703 // Instantiate/Install the vector type, and let Sema build the type for us.
704 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000705 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000706 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000707 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000708 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000709
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000710 // Remember this typedef decl, we will need it later for diagnostics.
711 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000712 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000713}
714
Chandler Carruth1b03c872011-07-02 00:01:44 +0000715static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000716 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000717 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000718 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000719
Chandler Carruth87c44602011-07-01 23:49:12 +0000720 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000721 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000722 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000723 // If the alignment is less than or equal to 8 bits, the packed attribute
724 // has no effect.
725 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000726 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000727 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000728 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000729 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000730 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000731 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000732 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000733}
734
Chandler Carruth1b03c872011-07-02 00:01:44 +0000735static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000736 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000737 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000738 else
739 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
740}
741
Chandler Carruth1b03c872011-07-02 00:01:44 +0000742static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000743 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000744 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000745 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000746
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000747 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000748 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000749 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000750 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000751 return;
752 }
753
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000754 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000755}
756
Ted Kremenek2f041d02011-09-29 07:02:25 +0000757static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) {
758 // The IBOutlet/IBOutletCollection attributes only apply to instance
759 // variables or properties of Objective-C classes. The outlet must also
760 // have an object reference type.
761 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) {
762 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000763 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000764 << Attr.getName() << VD->getType() << 0;
765 return false;
766 }
767 }
768 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) {
769 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
Ted Kremenek0bfaf062011-11-01 18:08:35 +0000770 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type)
Ted Kremenek2f041d02011-09-29 07:02:25 +0000771 << Attr.getName() << PD->getType() << 1;
772 return false;
773 }
774 }
775 else {
776 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
777 return false;
778 }
779
780 return true;
781}
782
Chandler Carruth1b03c872011-07-02 00:01:44 +0000783static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000784 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000785 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000786 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000787
788 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000789 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000790
Ted Kremenek2f041d02011-09-29 07:02:25 +0000791 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek96329d42008-07-15 22:26:48 +0000792}
793
Chandler Carruth1b03c872011-07-02 00:01:44 +0000794static void handleIBOutletCollection(Sema &S, Decl *D,
795 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000796
797 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000798 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000799 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
800 return;
801 }
802
Ted Kremenek2f041d02011-09-29 07:02:25 +0000803 if (!checkIBOutletCommon(S, D, Attr))
Ted Kremenek857e9182010-05-19 17:38:06 +0000804 return;
Ted Kremenek2f041d02011-09-29 07:02:25 +0000805
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000806 IdentifierInfo *II = Attr.getParameterName();
807 if (!II)
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000808 II = &S.Context.Idents.get("NSObject");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000809
John McCallb3d87482010-08-24 05:47:05 +0000810 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000811 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000812 if (!TypeRep) {
813 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
814 return;
815 }
John McCallb3d87482010-08-24 05:47:05 +0000816 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000817 // Diagnose use of non-object type in iboutletcollection attribute.
818 // FIXME. Gnu attribute extension ignores use of builtin types in
819 // attributes. So, __attribute__((iboutletcollection(char))) will be
820 // treated as __attribute__((iboutletcollection())).
Fariborz Jahanianf4072ae2011-10-18 19:54:31 +0000821 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000822 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
823 return;
824 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000825 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
826 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000827}
828
Chandler Carruthd309c812011-07-01 23:49:16 +0000829static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000830 if (const RecordType *UT = T->getAsUnionType())
831 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
832 RecordDecl *UD = UT->getDecl();
833 for (RecordDecl::field_iterator it = UD->field_begin(),
834 itend = UD->field_end(); it != itend; ++it) {
835 QualType QT = it->getType();
836 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
837 T = QT;
838 return;
839 }
840 }
841 }
842}
843
Chandler Carruth1b03c872011-07-02 00:01:44 +0000844static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000845 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
846 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000847 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000848 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000849 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000850 return;
851 }
Mike Stumpbf916502009-07-24 19:02:52 +0000852
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000853 // In C++ the implicit 'this' function parameter also counts, and they are
854 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000855 bool HasImplicitThisParam = isInstanceMethod(D);
856 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000857
858 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000859 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000860
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000861 for (AttributeList::arg_iterator I=Attr.arg_begin(),
862 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000863
864
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000865 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000866 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000867 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000868 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
869 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000870 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
871 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000872 return;
873 }
Mike Stumpbf916502009-07-24 19:02:52 +0000874
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000875 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000876
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000877 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000878 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000879 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000880 return;
881 }
Mike Stumpbf916502009-07-24 19:02:52 +0000882
Ted Kremenek465172f2008-07-21 22:09:15 +0000883 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000884 if (HasImplicitThisParam) {
885 if (x == 0) {
886 S.Diag(Attr.getLoc(),
887 diag::err_attribute_invalid_implicit_this_argument)
888 << "nonnull" << Ex->getSourceRange();
889 return;
890 }
891 --x;
892 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000893
894 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000895 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000896 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000897
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000898 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000899 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000900 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000901 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000902 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000903 }
Mike Stumpbf916502009-07-24 19:02:52 +0000904
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000905 NonNullArgs.push_back(x);
906 }
Mike Stumpbf916502009-07-24 19:02:52 +0000907
908 // If no arguments were specified to __attribute__((nonnull)) then all pointer
909 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000910 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000911 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
912 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000913 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000914 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000915 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000916 }
Mike Stumpbf916502009-07-24 19:02:52 +0000917
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000918 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000919 if (NonNullArgs.empty()) {
920 // Warn the trivial case only if attribute is not coming from a
921 // macro instantiation.
922 if (Attr.getLoc().isFileID())
923 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000924 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000925 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000926 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000927
928 unsigned* start = &NonNullArgs[0];
929 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000930 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000931 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000932 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000933}
934
Chandler Carruth1b03c872011-07-02 00:01:44 +0000935static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000936 // This attribute must be applied to a function declaration.
937 // The first argument to the attribute must be a string,
938 // the name of the resource, for example "malloc".
939 // The following arguments must be argument indexes, the arguments must be
940 // of integer type for Returns, otherwise of pointer type.
941 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000942 // after being held. free() should be __attribute((ownership_takes)), whereas
943 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000944
945 if (!AL.getParameterName()) {
946 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
947 << AL.getName()->getName() << 1;
948 return;
949 }
950 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000951 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000952 switch (AL.getKind()) {
953 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000954 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000955 if (AL.getNumArgs() < 1) {
956 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
957 return;
958 }
Jordy Rose2a479922010-08-12 08:54:03 +0000959 break;
960 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000961 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000962 if (AL.getNumArgs() < 1) {
963 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
964 return;
965 }
Jordy Rose2a479922010-08-12 08:54:03 +0000966 break;
967 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000968 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000969 if (AL.getNumArgs() > 1) {
970 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
971 << AL.getNumArgs() + 1;
972 return;
973 }
Jordy Rose2a479922010-08-12 08:54:03 +0000974 break;
975 default:
976 // This should never happen given how we are called.
977 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000978 }
979
Chandler Carruth87c44602011-07-01 23:49:12 +0000980 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000981 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
982 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000983 return;
984 }
985
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000986 // In C++ the implicit 'this' function parameter also counts, and they are
987 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000988 bool HasImplicitThisParam = isInstanceMethod(D);
989 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000990
Chris Lattner5f9e2722011-07-23 10:55:15 +0000991 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000992
993 // Normalize the argument, __foo__ becomes foo.
994 if (Module.startswith("__") && Module.endswith("__"))
995 Module = Module.substr(2, Module.size() - 4);
996
Chris Lattner5f9e2722011-07-23 10:55:15 +0000997 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000998
Jordy Rose2a479922010-08-12 08:54:03 +0000999 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1000 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001001
Peter Collingbourne7a730022010-11-23 20:45:58 +00001002 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001003 llvm::APSInt ArgNum(32);
1004 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1005 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1006 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1007 << AL.getName()->getName() << IdxExpr->getSourceRange();
1008 continue;
1009 }
1010
1011 unsigned x = (unsigned) ArgNum.getZExtValue();
1012
1013 if (x > NumArgs || x < 1) {
1014 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1015 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1016 continue;
1017 }
1018 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001019 if (HasImplicitThisParam) {
1020 if (x == 0) {
1021 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1022 << "ownership" << IdxExpr->getSourceRange();
1023 return;
1024 }
1025 --x;
1026 }
1027
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001028 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001029 case OwnershipAttr::Takes:
1030 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001031 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001032 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001033 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1034 // FIXME: Should also highlight argument in decl.
1035 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001036 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001037 << "pointer"
1038 << IdxExpr->getSourceRange();
1039 continue;
1040 }
1041 break;
1042 }
Sean Huntcf807c42010-08-18 23:23:40 +00001043 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001044 if (AL.getNumArgs() > 1) {
1045 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001046 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001047 llvm::APSInt ArgNum(32);
1048 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1049 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1050 S.Diag(AL.getLoc(), diag::err_ownership_type)
1051 << "ownership_returns" << "integer"
1052 << IdxExpr->getSourceRange();
1053 return;
1054 }
1055 }
1056 break;
1057 }
Jordy Rose2a479922010-08-12 08:54:03 +00001058 default:
1059 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001060 } // switch
1061
1062 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001063 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001064 i = D->specific_attr_begin<OwnershipAttr>(),
1065 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001066 i != e; ++i) {
1067 if ((*i)->getOwnKind() != K) {
1068 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1069 I!=E; ++I) {
1070 if (x == *I) {
1071 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1072 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001073 }
1074 }
1075 }
1076 }
1077 OwnershipArgs.push_back(x);
1078 }
1079
1080 unsigned* start = OwnershipArgs.data();
1081 unsigned size = OwnershipArgs.size();
1082 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001083
1084 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1085 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1086 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001087 }
Sean Huntcf807c42010-08-18 23:23:40 +00001088
Chandler Carruth87c44602011-07-01 23:49:12 +00001089 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001090 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001091}
1092
John McCall332bb2a2011-02-08 22:35:49 +00001093/// Whether this declaration has internal linkage for the purposes of
1094/// things that want to complain about things not have internal linkage.
1095static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1096 switch (D->getLinkage()) {
1097 case NoLinkage:
1098 case InternalLinkage:
1099 return true;
1100
1101 // Template instantiations that go from external to unique-external
1102 // shouldn't get diagnosed.
1103 case UniqueExternalLinkage:
1104 return true;
1105
1106 case ExternalLinkage:
1107 return false;
1108 }
1109 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001110 return false;
1111}
1112
Chandler Carruth1b03c872011-07-02 00:01:44 +00001113static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001114 // Check the attribute arguments.
1115 if (Attr.getNumArgs() > 1) {
1116 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1117 return;
1118 }
1119
Chandler Carruth87c44602011-07-01 23:49:12 +00001120 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001121 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001122 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001123 return;
1124 }
1125
Chandler Carruth87c44602011-07-01 23:49:12 +00001126 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001127
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001128 // gcc rejects
1129 // class c {
1130 // static int a __attribute__((weakref ("v2")));
1131 // static int b() __attribute__((weakref ("f3")));
1132 // };
1133 // and ignores the attributes of
1134 // void f(void) {
1135 // static int a __attribute__((weakref ("v2")));
1136 // }
1137 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001138 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001139 if (!Ctx->isFileContext()) {
1140 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001141 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001142 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001143 }
1144
1145 // The GCC manual says
1146 //
1147 // At present, a declaration to which `weakref' is attached can only
1148 // be `static'.
1149 //
1150 // It also says
1151 //
1152 // Without a TARGET,
1153 // given as an argument to `weakref' or to `alias', `weakref' is
1154 // equivalent to `weak'.
1155 //
1156 // gcc 4.4.1 will accept
1157 // int a7 __attribute__((weakref));
1158 // as
1159 // int a7 __attribute__((weak));
1160 // This looks like a bug in gcc. We reject that for now. We should revisit
1161 // it if this behaviour is actually used.
1162
John McCall332bb2a2011-02-08 22:35:49 +00001163 if (!hasEffectivelyInternalLinkage(nd)) {
1164 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001165 return;
1166 }
1167
1168 // GCC rejects
1169 // static ((alias ("y"), weakref)).
1170 // Should we? How to check that weakref is before or after alias?
1171
1172 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001173 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001174 Arg = Arg->IgnoreParenCasts();
1175 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1176
Douglas Gregor5cee1192011-07-27 05:40:30 +00001177 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001178 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1179 << "weakref" << 1;
1180 return;
1181 }
1182 // GCC will accept anything as the argument of weakref. Should we
1183 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001184 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001185 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001186 }
1187
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001188 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001189}
1190
Chandler Carruth1b03c872011-07-02 00:01:44 +00001191static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001192 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001193 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001194 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001195 return;
1196 }
Mike Stumpbf916502009-07-24 19:02:52 +00001197
Peter Collingbourne7a730022010-11-23 20:45:58 +00001198 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001199 Arg = Arg->IgnoreParenCasts();
1200 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001201
Douglas Gregor5cee1192011-07-27 05:40:30 +00001202 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001203 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001204 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001205 return;
1206 }
Mike Stumpbf916502009-07-24 19:02:52 +00001207
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001208 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001209 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1210 return;
1211 }
1212
Chris Lattner6b6b5372008-06-26 18:38:35 +00001213 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001214
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001215 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001216 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001217}
1218
Chandler Carruth1b03c872011-07-02 00:01:44 +00001219static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001220 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001221 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001222 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001223
Chandler Carruth87c44602011-07-01 23:49:12 +00001224 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001225 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001226 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001227 return;
1228 }
1229
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001230 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001231}
1232
Chandler Carruth1b03c872011-07-02 00:01:44 +00001233static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1234 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001235 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001236 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001237 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1238 return;
1239 }
1240
Chandler Carruth87c44602011-07-01 23:49:12 +00001241 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001242 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001243 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001244 return;
1245 }
Mike Stumpbf916502009-07-24 19:02:52 +00001246
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001247 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001248}
1249
Chandler Carruth1b03c872011-07-02 00:01:44 +00001250static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001251 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001252 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001253 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1254 return;
1255 }
Mike Stump1eb44332009-09-09 15:08:12 +00001256
Chandler Carruth87c44602011-07-01 23:49:12 +00001257 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001258 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001259 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001260 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001261 return;
1262 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001263 }
1264
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001265 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001266}
1267
Chandler Carruth1b03c872011-07-02 00:01:44 +00001268static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001269 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001270 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001271 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001272
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001273 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001274}
1275
Chandler Carruth1b03c872011-07-02 00:01:44 +00001276static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001277 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001278 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001279 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001280 else
1281 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001282 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001283}
1284
Chandler Carruth1b03c872011-07-02 00:01:44 +00001285static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001286 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001287 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001288 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001289 else
1290 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001291 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001292}
1293
Chandler Carruth1b03c872011-07-02 00:01:44 +00001294static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001295 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001296
1297 if (S.CheckNoReturnAttr(attr)) return;
1298
Chandler Carruth87c44602011-07-01 23:49:12 +00001299 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001300 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001301 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001302 return;
1303 }
1304
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001305 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001306}
1307
1308bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001309 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001310 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1311 attr.setInvalid();
1312 return true;
1313 }
1314
1315 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001316}
1317
Chandler Carruth1b03c872011-07-02 00:01:44 +00001318static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1319 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001320
1321 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1322 // because 'analyzer_noreturn' does not impact the type.
1323
Chandler Carruth1731e202011-07-11 23:30:35 +00001324 if(!checkAttributeNumArgs(S, Attr, 0))
1325 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001326
Chandler Carruth87c44602011-07-01 23:49:12 +00001327 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1328 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001329 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1330 && !VD->getType()->isFunctionPointerType())) {
1331 S.Diag(Attr.getLoc(),
1332 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1333 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001334 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001335 return;
1336 }
1337 }
1338
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001339 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001340}
1341
John Thompson35cc9622010-08-09 21:53:52 +00001342// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001343static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001344/*
1345 Returning a Vector Class in Registers
1346
Eric Christopherf48f3672010-12-01 22:13:54 +00001347 According to the PPU ABI specifications, a class with a single member of
1348 vector type is returned in memory when used as the return value of a function.
1349 This results in inefficient code when implementing vector classes. To return
1350 the value in a single vector register, add the vecreturn attribute to the
1351 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001352
1353 Example:
1354
1355 struct Vector
1356 {
1357 __vector float xyzw;
1358 } __attribute__((vecreturn));
1359
1360 Vector Add(Vector lhs, Vector rhs)
1361 {
1362 Vector result;
1363 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1364 return result; // This will be returned in a register
1365 }
1366*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001367 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001368 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001369 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001370 return;
1371 }
1372
Chandler Carruth87c44602011-07-01 23:49:12 +00001373 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001374 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1375 return;
1376 }
1377
Chandler Carruth87c44602011-07-01 23:49:12 +00001378 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001379 int count = 0;
1380
1381 if (!isa<CXXRecordDecl>(record)) {
1382 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1383 return;
1384 }
1385
1386 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1387 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1388 return;
1389 }
1390
Eric Christopherf48f3672010-12-01 22:13:54 +00001391 for (RecordDecl::field_iterator iter = record->field_begin();
1392 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001393 if ((count == 1) || !iter->getType()->isVectorType()) {
1394 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1395 return;
1396 }
1397 count++;
1398 }
1399
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001400 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001401}
1402
Chandler Carruth1b03c872011-07-02 00:01:44 +00001403static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001404 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001405 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001406 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001407 return;
1408 }
1409 // FIXME: Actually store the attribute on the declaration
1410}
1411
Chandler Carruth1b03c872011-07-02 00:01:44 +00001412static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001413 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001414 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001415 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001416 return;
1417 }
Mike Stumpbf916502009-07-24 19:02:52 +00001418
Chandler Carruth87c44602011-07-01 23:49:12 +00001419 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1420 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001421 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001422 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001423 return;
1424 }
Mike Stumpbf916502009-07-24 19:02:52 +00001425
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001426 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001427}
1428
Rafael Espindolaf87cced2011-10-03 14:59:42 +00001429static void handleReturnsTwiceAttr(Sema &S, Decl *D,
1430 const AttributeList &Attr) {
1431 // check the attribute arguments.
1432 if (Attr.hasParameterOrArguments()) {
1433 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1434 return;
1435 }
1436
1437 if (!isa<FunctionDecl>(D)) {
1438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1439 << Attr.getName() << ExpectedFunction;
1440 return;
1441 }
1442
1443 D->addAttr(::new (S.Context) ReturnsTwiceAttr(Attr.getRange(), S.Context));
1444}
1445
Chandler Carruth1b03c872011-07-02 00:01:44 +00001446static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001447 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001448 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001449 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1450 return;
1451 }
Mike Stumpbf916502009-07-24 19:02:52 +00001452
Chandler Carruth87c44602011-07-01 23:49:12 +00001453 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001454 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001455 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1456 return;
1457 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001458 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001459 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001460 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001461 return;
1462 }
Mike Stumpbf916502009-07-24 19:02:52 +00001463
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001464 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001465}
1466
Chandler Carruth1b03c872011-07-02 00:01:44 +00001467static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001468 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001469 if (Attr.getNumArgs() > 1) {
1470 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001471 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001472 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001473
1474 int priority = 65535; // FIXME: Do not hardcode such constants.
1475 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001476 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001477 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001478 if (E->isTypeDependent() || E->isValueDependent() ||
1479 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001480 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001481 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001482 return;
1483 }
1484 priority = Idx.getZExtValue();
1485 }
Mike Stumpbf916502009-07-24 19:02:52 +00001486
Chandler Carruth87c44602011-07-01 23:49:12 +00001487 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001488 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001489 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001490 return;
1491 }
1492
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001493 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001494 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001495}
1496
Chandler Carruth1b03c872011-07-02 00:01:44 +00001497static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001498 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001499 if (Attr.getNumArgs() > 1) {
1500 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001501 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001502 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001503
1504 int priority = 65535; // FIXME: Do not hardcode such constants.
1505 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001506 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001507 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001508 if (E->isTypeDependent() || E->isValueDependent() ||
1509 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001510 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001511 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001512 return;
1513 }
1514 priority = Idx.getZExtValue();
1515 }
Mike Stumpbf916502009-07-24 19:02:52 +00001516
Chandler Carruth87c44602011-07-01 23:49:12 +00001517 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001518 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001519 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001520 return;
1521 }
1522
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001523 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001524 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001525}
1526
Chandler Carruth1b03c872011-07-02 00:01:44 +00001527static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001528 unsigned NumArgs = Attr.getNumArgs();
1529 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001530 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001531 return;
1532 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001533
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001534 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001535 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001536 if (NumArgs == 1) {
1537 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001538 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001539 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1540 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001541 return;
1542 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001543 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001544 }
Mike Stumpbf916502009-07-24 19:02:52 +00001545
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001546 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001547}
1548
Chandler Carruth1b03c872011-07-02 00:01:44 +00001549static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001550 unsigned NumArgs = Attr.getNumArgs();
1551 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001552 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001553 return;
1554 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001555
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001556 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001557 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001558 if (NumArgs == 1) {
1559 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001560 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001561 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001562 diag::err_attribute_not_string) << "unavailable";
1563 return;
1564 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001565 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001566 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001567 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001568}
1569
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001570static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1571 const AttributeList &Attr) {
1572 unsigned NumArgs = Attr.getNumArgs();
1573 if (NumArgs > 0) {
1574 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1575 return;
1576 }
1577
1578 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001579 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001580}
1581
Chandler Carruth1b03c872011-07-02 00:01:44 +00001582static void handleAvailabilityAttr(Sema &S, Decl *D,
1583 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001584 IdentifierInfo *Platform = Attr.getParameterName();
1585 SourceLocation PlatformLoc = Attr.getParameterLoc();
1586
Chris Lattner5f9e2722011-07-23 10:55:15 +00001587 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001588 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1589 if (PlatformName.empty()) {
1590 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1591 << Platform;
1592
1593 PlatformName = Platform->getName();
1594 }
1595
1596 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1597 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1598 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001599 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001600
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001601 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001602 // of these steps are needed).
1603 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001604 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001605 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1606 << 1 << PlatformName << Deprecated.Version.getAsString()
1607 << 0 << Introduced.Version.getAsString();
1608 return;
1609 }
1610
1611 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001612 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001613 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1614 << 2 << PlatformName << Obsoleted.Version.getAsString()
1615 << 0 << Introduced.Version.getAsString();
1616 return;
1617 }
1618
1619 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001620 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001621 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1622 << 2 << PlatformName << Obsoleted.Version.getAsString()
1623 << 1 << Deprecated.Version.getAsString();
1624 return;
1625 }
1626
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001627 StringRef Str;
1628 const StringLiteral *SE =
1629 dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr());
1630 if (SE)
1631 Str = SE->getString();
1632
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001633 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001634 Platform,
1635 Introduced.Version,
1636 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001637 Obsoleted.Version,
Fariborz Jahanian006e42f2011-12-10 00:28:41 +00001638 IsUnavailable,
1639 Str));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001640}
1641
Chandler Carruth1b03c872011-07-02 00:01:44 +00001642static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001643 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001644 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001645 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001646
Peter Collingbourne7a730022010-11-23 20:45:58 +00001647 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001648 Arg = Arg->IgnoreParenCasts();
1649 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001650
Douglas Gregor5cee1192011-07-27 05:40:30 +00001651 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001652 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001653 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001654 return;
1655 }
Mike Stumpbf916502009-07-24 19:02:52 +00001656
Chris Lattner5f9e2722011-07-23 10:55:15 +00001657 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001658 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001659
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001660 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001661 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001662 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001663 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001664 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001665 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001666 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001667 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001668 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001669 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001670 return;
1671 }
Mike Stumpbf916502009-07-24 19:02:52 +00001672
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001673 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001674}
1675
Chandler Carruth1b03c872011-07-02 00:01:44 +00001676static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1677 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001678 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1679 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001680 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001681 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001682 return;
1683 }
1684
Chandler Carruth87c44602011-07-01 23:49:12 +00001685 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1686 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1687 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001688 << "objc_method_family" << 1;
1689 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001690 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001691 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001692 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001693 return;
1694 }
1695
Chris Lattner5f9e2722011-07-23 10:55:15 +00001696 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001697 ObjCMethodFamilyAttr::FamilyKind family;
1698 if (param == "none")
1699 family = ObjCMethodFamilyAttr::OMF_None;
1700 else if (param == "alloc")
1701 family = ObjCMethodFamilyAttr::OMF_alloc;
1702 else if (param == "copy")
1703 family = ObjCMethodFamilyAttr::OMF_copy;
1704 else if (param == "init")
1705 family = ObjCMethodFamilyAttr::OMF_init;
1706 else if (param == "mutableCopy")
1707 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1708 else if (param == "new")
1709 family = ObjCMethodFamilyAttr::OMF_new;
1710 else {
1711 // Just warn and ignore it. This is future-proof against new
1712 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001713 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001714 return;
1715 }
1716
John McCallf85e1932011-06-15 23:02:42 +00001717 if (family == ObjCMethodFamilyAttr::OMF_init &&
1718 !method->getResultType()->isObjCObjectPointerType()) {
1719 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1720 << method->getResultType();
1721 // Ignore the attribute.
1722 return;
1723 }
1724
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001725 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001726 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001727}
1728
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729static void handleObjCExceptionAttr(Sema &S, Decl *D,
1730 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001731 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001732 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001733
Chris Lattner0db29ec2009-02-14 08:09:34 +00001734 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1735 if (OCI == 0) {
1736 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1737 return;
1738 }
Mike Stumpbf916502009-07-24 19:02:52 +00001739
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001740 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001741}
1742
Chandler Carruth1b03c872011-07-02 00:01:44 +00001743static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001744 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001745 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001746 return;
1747 }
Richard Smith162e1c12011-04-15 14:24:37 +00001748 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001749 QualType T = TD->getUnderlyingType();
1750 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001751 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001752 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1753 return;
1754 }
1755 }
Fariborz Jahanian6b65d4a2011-12-16 15:54:29 +00001756 else
Fariborz Jahanian9b2eb7b2011-11-29 01:48:40 +00001757 S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001758 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001759}
1760
Mike Stumpbf916502009-07-24 19:02:52 +00001761static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001762handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001763 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001764 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001765 return;
1766 }
1767
1768 if (!isa<FunctionDecl>(D)) {
1769 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1770 return;
1771 }
1772
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001773 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001774}
1775
Chandler Carruth1b03c872011-07-02 00:01:44 +00001776static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001777 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001778 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001779 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001780 return;
1781 }
Mike Stumpbf916502009-07-24 19:02:52 +00001782
Steve Naroff9eae5762008-09-18 16:44:58 +00001783 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001784 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001785 return;
1786 }
Mike Stumpbf916502009-07-24 19:02:52 +00001787
Sean Huntcf807c42010-08-18 23:23:40 +00001788 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001789 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001790 type = BlocksAttr::ByRef;
1791 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001792 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001793 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001794 return;
1795 }
Mike Stumpbf916502009-07-24 19:02:52 +00001796
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001797 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001798}
1799
Chandler Carruth1b03c872011-07-02 00:01:44 +00001800static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001801 // check the attribute arguments.
1802 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001803 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001804 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001805 }
1806
John McCall3323fad2011-09-09 07:56:05 +00001807 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001808 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001809 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001810 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001811 if (E->isTypeDependent() || E->isValueDependent() ||
1812 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001813 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001814 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001815 return;
1816 }
Mike Stumpbf916502009-07-24 19:02:52 +00001817
John McCall3323fad2011-09-09 07:56:05 +00001818 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001819 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1820 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001821 return;
1822 }
John McCall3323fad2011-09-09 07:56:05 +00001823
1824 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001825 }
1826
John McCall3323fad2011-09-09 07:56:05 +00001827 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001828 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001829 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001830 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001831 if (E->isTypeDependent() || E->isValueDependent() ||
1832 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001833 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001834 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001835 return;
1836 }
1837 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001838
John McCall3323fad2011-09-09 07:56:05 +00001839 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001840 // FIXME: This error message could be improved, it would be nice
1841 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001842 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1843 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001844 return;
1845 }
1846 }
1847
Chandler Carruth87c44602011-07-01 23:49:12 +00001848 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001849 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001850 if (isa<FunctionNoProtoType>(FT)) {
1851 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1852 return;
1853 }
Mike Stumpbf916502009-07-24 19:02:52 +00001854
Chris Lattner897cd902009-03-17 23:03:47 +00001855 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001856 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001857 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001858 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001859 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001860 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001861 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001862 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001863 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001864 } else if (isa<BlockDecl>(D)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001865 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1866 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001867 ;
Chandler Carruth87c44602011-07-01 23:49:12 +00001868 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001869 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001870 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001871 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001872 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001873 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001874 int m = Ty->isFunctionPointerType() ? 0 : 1;
1875 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001876 return;
1877 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001878 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001879 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001880 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001881 return;
1882 }
Anders Carlsson77091822008-10-05 18:05:59 +00001883 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001884 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001885 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001886 return;
1887 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001888 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001889 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001890}
1891
Chandler Carruth1b03c872011-07-02 00:01:44 +00001892static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001893 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001894 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001895 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001896
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001897 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001898 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001899 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001900 return;
1901 }
Mike Stumpbf916502009-07-24 19:02:52 +00001902
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001903 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1904 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1905 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001906 return;
1907 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001908 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1909 if (MD->getResultType()->isVoidType()) {
1910 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1911 << Attr.getName() << 1;
1912 return;
1913 }
1914
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001915 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001916}
1917
Chandler Carruth1b03c872011-07-02 00:01:44 +00001918static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001919 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001920 if (Attr.hasParameterOrArguments()) {
1921 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001922 return;
1923 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001924
Chandler Carruth87c44602011-07-01 23:49:12 +00001925 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +00001926 if (isa<CXXRecordDecl>(D)) {
1927 D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
1928 return;
1929 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001930 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1931 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001932 return;
1933 }
1934
Chandler Carruth87c44602011-07-01 23:49:12 +00001935 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001936
1937 // 'weak' only applies to declarations with external linkage.
1938 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001939 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001940 return;
1941 }
Mike Stumpbf916502009-07-24 19:02:52 +00001942
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001943 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001944}
1945
Chandler Carruth1b03c872011-07-02 00:01:44 +00001946static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001947 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001948 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001949 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001950
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001951
1952 // weak_import only applies to variable & function declarations.
1953 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001954 if (!D->canBeWeakImported(isDef)) {
1955 if (isDef)
1956 S.Diag(Attr.getLoc(),
1957 diag::warn_attribute_weak_import_invalid_on_definition)
1958 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001959 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001960 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Fariborz Jahanian90eed212011-10-26 23:59:12 +00001961 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
Douglas Gregordef86312011-03-23 13:27:51 +00001962 // Nothing to warn about here.
1963 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001964 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001965 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001966
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001967 return;
1968 }
1969
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001970 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001971}
1972
Chandler Carruth1b03c872011-07-02 00:01:44 +00001973static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1974 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001975 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001976 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00001977 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001978
1979 unsigned WGSize[3];
1980 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001981 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001982 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001983 if (E->isTypeDependent() || E->isValueDependent() ||
1984 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001985 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1986 << "reqd_work_group_size" << E->getSourceRange();
1987 return;
1988 }
1989 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1990 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001991 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00001992 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001993 WGSize[2]));
1994}
1995
Chandler Carruth1b03c872011-07-02 00:01:44 +00001996static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001997 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001998 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001999 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002000
2001 // Make sure that there is a string literal as the sections's single
2002 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00002003 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002004 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002005 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002006 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002007 return;
2008 }
Mike Stump1eb44332009-09-09 15:08:12 +00002009
Chris Lattner797c3c42009-08-10 19:03:04 +00002010 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002011 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002012 if (!Error.empty()) {
2013 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
2014 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00002015 return;
2016 }
Mike Stump1eb44332009-09-09 15:08:12 +00002017
Chris Lattnera1e1dc72010-01-12 20:58:53 +00002018 // This attribute cannot be applied to local variables.
2019 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
2020 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
2021 return;
2022 }
2023
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002024 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002025 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00002026}
2027
Chris Lattner6b6b5372008-06-26 18:38:35 +00002028
Chandler Carruth1b03c872011-07-02 00:01:44 +00002029static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002030 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002031 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002032 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002033 return;
2034 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002035
Chandler Carruth87c44602011-07-01 23:49:12 +00002036 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002037 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002038 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002039 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002040 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002041 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002042}
2043
Chandler Carruth1b03c872011-07-02 00:01:44 +00002044static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002045 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002046 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002047 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002048 return;
2049 }
Mike Stumpbf916502009-07-24 19:02:52 +00002050
Chandler Carruth87c44602011-07-01 23:49:12 +00002051 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002052 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002053 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002054 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002055 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002056 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002057}
2058
Chandler Carruth1b03c872011-07-02 00:01:44 +00002059static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002060 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002061 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002062 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002063
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002064 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002065}
2066
Chandler Carruth1b03c872011-07-02 00:01:44 +00002067static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002068 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002069 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2070 return;
2071 }
Mike Stumpbf916502009-07-24 19:02:52 +00002072
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002073 if (Attr.getNumArgs() != 0) {
2074 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2075 return;
2076 }
Mike Stumpbf916502009-07-24 19:02:52 +00002077
Chandler Carruth87c44602011-07-01 23:49:12 +00002078 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002079
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002080 if (!VD || !VD->hasLocalStorage()) {
2081 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2082 return;
2083 }
Mike Stumpbf916502009-07-24 19:02:52 +00002084
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002085 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002086 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002087 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002088 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2089 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002090 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002091 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002092 Attr.getParameterName();
2093 return;
2094 }
Mike Stumpbf916502009-07-24 19:02:52 +00002095
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002096 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2097 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002098 S.Diag(Attr.getParameterLoc(),
2099 diag::err_attribute_cleanup_arg_not_function)
2100 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002101 return;
2102 }
2103
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002104 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002105 S.Diag(Attr.getParameterLoc(),
2106 diag::err_attribute_cleanup_func_must_take_one_arg)
2107 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002108 return;
2109 }
Mike Stumpbf916502009-07-24 19:02:52 +00002110
Anders Carlsson89941c12009-02-07 23:16:50 +00002111 // We're currently more strict than GCC about what function types we accept.
2112 // If this ever proves to be a problem it should be easy to fix.
2113 QualType Ty = S.Context.getPointerType(VD->getType());
2114 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002115 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2116 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002117 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002118 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2119 Attr.getParameterName() << ParamTy << Ty;
2120 return;
2121 }
Mike Stumpbf916502009-07-24 19:02:52 +00002122
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002123 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002124 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002125}
2126
Mike Stumpbf916502009-07-24 19:02:52 +00002127/// Handle __attribute__((format_arg((idx)))) attribute based on
2128/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002129static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002130 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002131 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002132
Chandler Carruth87c44602011-07-01 23:49:12 +00002133 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002134 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002135 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002136 return;
2137 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002138
2139 // In C++ the implicit 'this' function parameter also counts, and they are
2140 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002141 bool HasImplicitThisParam = isInstanceMethod(D);
2142 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002143 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002144
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002145 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002146 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002147 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002148 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2149 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002150 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2151 << "format" << 2 << IdxExpr->getSourceRange();
2152 return;
2153 }
Mike Stumpbf916502009-07-24 19:02:52 +00002154
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002155 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2156 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2157 << "format" << 2 << IdxExpr->getSourceRange();
2158 return;
2159 }
Mike Stumpbf916502009-07-24 19:02:52 +00002160
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002161 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002162
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002163 if (HasImplicitThisParam) {
2164 if (ArgIdx == 0) {
2165 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2166 << "format_arg" << IdxExpr->getSourceRange();
2167 return;
2168 }
2169 ArgIdx--;
2170 }
2171
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002172 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002173 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002174
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002175 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2176 if (not_nsstring_type &&
2177 !isCFStringType(Ty, S.Context) &&
2178 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002179 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002180 // FIXME: Should highlight the actual expression that has the wrong type.
2181 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002182 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002183 << IdxExpr->getSourceRange();
2184 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002185 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002186 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002187 if (!isNSStringType(Ty, S.Context) &&
2188 !isCFStringType(Ty, S.Context) &&
2189 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002190 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002191 // FIXME: Should highlight the actual expression that has the wrong type.
2192 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002193 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002194 << IdxExpr->getSourceRange();
2195 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002196 }
2197
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002198 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002199 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002200}
2201
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002202enum FormatAttrKind {
2203 CFStringFormat,
2204 NSStringFormat,
2205 StrftimeFormat,
2206 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002207 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002208 InvalidFormat
2209};
2210
2211/// getFormatAttrKind - Map from format attribute names to supported format
2212/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002213static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002214 // Check for formats that get handled specially.
2215 if (Format == "NSString")
2216 return NSStringFormat;
2217 if (Format == "CFString")
2218 return CFStringFormat;
2219 if (Format == "strftime")
2220 return StrftimeFormat;
2221
2222 // Otherwise, check for supported formats.
2223 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2224 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2225 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002226 Format == "zcmn_err" ||
2227 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002228 return SupportedFormat;
2229
Duncan Sandsbc525952010-03-23 14:44:19 +00002230 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2231 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002232 return IgnoredFormat;
2233
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002234 return InvalidFormat;
2235}
2236
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002237/// Handle __attribute__((init_priority(priority))) attributes based on
2238/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002239static void handleInitPriorityAttr(Sema &S, Decl *D,
2240 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002241 if (!S.getLangOptions().CPlusPlus) {
2242 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2243 return;
2244 }
2245
Chandler Carruth87c44602011-07-01 23:49:12 +00002246 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002247 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2248 Attr.setInvalid();
2249 return;
2250 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002251 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002252 if (S.Context.getAsArrayType(T))
2253 T = S.Context.getBaseElementType(T);
2254 if (!T->getAs<RecordType>()) {
2255 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2256 Attr.setInvalid();
2257 return;
2258 }
2259
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002260 if (Attr.getNumArgs() != 1) {
2261 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2262 Attr.setInvalid();
2263 return;
2264 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002265 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002266
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002267 llvm::APSInt priority(32);
2268 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2269 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2270 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2271 << "init_priority" << priorityExpr->getSourceRange();
2272 Attr.setInvalid();
2273 return;
2274 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002275 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002276 if (prioritynum < 101 || prioritynum > 65535) {
2277 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2278 << priorityExpr->getSourceRange();
2279 Attr.setInvalid();
2280 return;
2281 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002282 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002283 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002284}
2285
Mike Stumpbf916502009-07-24 19:02:52 +00002286/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2287/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002288static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002289
Chris Lattner545dd342008-06-28 23:36:30 +00002290 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002291 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002292 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002293 return;
2294 }
2295
Chris Lattner545dd342008-06-28 23:36:30 +00002296 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002297 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002298 return;
2299 }
2300
Chandler Carruth87c44602011-07-01 23:49:12 +00002301 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002302 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002303 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002304 return;
2305 }
2306
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002307 // In C++ the implicit 'this' function parameter also counts, and they are
2308 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002309 bool HasImplicitThisParam = isInstanceMethod(D);
2310 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002311 unsigned FirstIdx = 1;
2312
Chris Lattner5f9e2722011-07-23 10:55:15 +00002313 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002314
2315 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002316 if (Format.startswith("__") && Format.endswith("__"))
2317 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002318
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002319 // Check for supported formats.
2320 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002321
2322 if (Kind == IgnoredFormat)
2323 return;
2324
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002325 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002326 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002327 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002328 return;
2329 }
2330
2331 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002332 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002333 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002334 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2335 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002336 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002337 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002338 return;
2339 }
2340
2341 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002342 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002343 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002344 return;
2345 }
2346
2347 // FIXME: Do we need to bounds check?
2348 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002349
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002350 if (HasImplicitThisParam) {
2351 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002352 S.Diag(Attr.getLoc(),
2353 diag::err_format_attribute_implicit_this_format_string)
2354 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002355 return;
2356 }
2357 ArgIdx--;
2358 }
Mike Stump1eb44332009-09-09 15:08:12 +00002359
Chris Lattner6b6b5372008-06-26 18:38:35 +00002360 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002361 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002362
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002363 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002364 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002365 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2366 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002367 return;
2368 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002369 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002370 // FIXME: do we need to check if the type is NSString*? What are the
2371 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002372 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002373 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002374 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2375 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002376 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002377 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002378 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002379 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002380 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002381 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2382 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002383 return;
2384 }
2385
2386 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002387 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002388 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002389 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2390 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002391 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002392 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002393 return;
2394 }
2395
2396 // check if the function is variadic if the 3rd argument non-zero
2397 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002398 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002399 ++NumArgs; // +1 for ...
2400 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002401 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002402 return;
2403 }
2404 }
2405
Chris Lattner3c73c412008-11-19 08:23:25 +00002406 // strftime requires FirstArg to be 0 because it doesn't read from any
2407 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002408 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002409 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002410 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2411 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002412 return;
2413 }
2414 // if 0 it disables parameter checking (to use with e.g. va_list)
2415 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002416 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002417 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002418 return;
2419 }
2420
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002421 // Check whether we already have an equivalent format attribute.
2422 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002423 i = D->specific_attr_begin<FormatAttr>(),
2424 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002425 i != e ; ++i) {
2426 FormatAttr *f = *i;
2427 if (f->getType() == Format &&
2428 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2429 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2430 // If we don't have a valid location for this attribute, adopt the
2431 // location.
2432 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002433 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002434 return;
2435 }
2436 }
2437
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002438 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002439 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002440 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002441}
2442
Chandler Carruth1b03c872011-07-02 00:01:44 +00002443static void handleTransparentUnionAttr(Sema &S, Decl *D,
2444 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002445 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002446 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002447 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002448
Chris Lattner6b6b5372008-06-26 18:38:35 +00002449
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002450 // Try to find the underlying union declaration.
2451 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002452 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002453 if (TD && TD->getUnderlyingType()->isUnionType())
2454 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2455 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002456 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002457
2458 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002459 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002460 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002461 return;
2462 }
2463
John McCall5e1cdac2011-10-07 06:10:15 +00002464 if (!RD->isCompleteDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002465 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002466 diag::warn_transparent_union_attribute_not_definition);
2467 return;
2468 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002469
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002470 RecordDecl::field_iterator Field = RD->field_begin(),
2471 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002472 if (Field == FieldEnd) {
2473 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2474 return;
2475 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002476
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002477 FieldDecl *FirstField = *Field;
2478 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002479 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002480 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002481 diag::warn_transparent_union_attribute_floating)
2482 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002483 return;
2484 }
2485
2486 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2487 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2488 for (; Field != FieldEnd; ++Field) {
2489 QualType FieldType = Field->getType();
2490 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2491 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2492 // Warn if we drop the attribute.
2493 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002494 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002495 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002496 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002497 diag::warn_transparent_union_attribute_field_size_align)
2498 << isSize << Field->getDeclName() << FieldBits;
2499 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002500 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002501 diag::note_transparent_union_first_field_size_align)
2502 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002503 return;
2504 }
2505 }
2506
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002507 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002508}
2509
Chandler Carruth1b03c872011-07-02 00:01:44 +00002510static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002511 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002512 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002513 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002514
Peter Collingbourne7a730022010-11-23 20:45:58 +00002515 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002516 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002517
Chris Lattner6b6b5372008-06-26 18:38:35 +00002518 // Make sure that there is a string literal as the annotation's single
2519 // argument.
2520 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002521 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002522 return;
2523 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002524
2525 // Don't duplicate annotations that are already set.
2526 for (specific_attr_iterator<AnnotateAttr>
2527 i = D->specific_attr_begin<AnnotateAttr>(),
2528 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2529 if ((*i)->getAnnotation() == SE->getString())
2530 return;
2531 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002532 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002533 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002534}
2535
Chandler Carruth1b03c872011-07-02 00:01:44 +00002536static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002537 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002538 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002539 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002540 return;
2541 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002542
2543 //FIXME: The C++0x version of this attribute has more limited applicabilty
2544 // than GNU's, and should error out when it is used to specify a
2545 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002546
Chris Lattner545dd342008-06-28 23:36:30 +00002547 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002548 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002549 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002550 }
Mike Stumpbf916502009-07-24 19:02:52 +00002551
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002552 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002553}
2554
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002555void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Peter Collingbourne0b64ba92011-10-23 20:07:52 +00002556 // FIXME: Handle pack-expansions here.
2557 if (DiagnoseUnexpandedParameterPack(E))
2558 return;
2559
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002560 if (E->isTypeDependent() || E->isValueDependent()) {
2561 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002562 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002563 return;
2564 }
2565
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002566 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002567 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002568 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002569 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2570 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2571 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002572 return;
2573 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002574 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002575 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2576 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002577 return;
2578 }
2579
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002580 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Sean Huntcf807c42010-08-18 23:23:40 +00002581}
2582
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002583void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002584 // FIXME: Cache the number on the Attr object if non-dependent?
2585 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002586 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002587 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002588}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002589
Chandler Carruthd309c812011-07-01 23:49:16 +00002590/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002591/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002592///
Mike Stumpbf916502009-07-24 19:02:52 +00002593/// Despite what would be logical, the mode attribute is a decl attribute, not a
2594/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2595/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002596static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002597 // This attribute isn't documented, but glibc uses it. It changes
2598 // the width of an int or unsigned int to the specified size.
2599
2600 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002601 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002602 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002603
Chris Lattnerfbf13472008-06-27 22:18:37 +00002604
2605 IdentifierInfo *Name = Attr.getParameterName();
2606 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002607 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002608 return;
2609 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002610
Chris Lattner5f9e2722011-07-23 10:55:15 +00002611 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002612
2613 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002614 if (Str.startswith("__") && Str.endswith("__"))
2615 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002616
2617 unsigned DestWidth = 0;
2618 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002619 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002620 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002621 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002622 switch (Str[0]) {
2623 case 'Q': DestWidth = 8; break;
2624 case 'H': DestWidth = 16; break;
2625 case 'S': DestWidth = 32; break;
2626 case 'D': DestWidth = 64; break;
2627 case 'X': DestWidth = 96; break;
2628 case 'T': DestWidth = 128; break;
2629 }
2630 if (Str[1] == 'F') {
2631 IntegerMode = false;
2632 } else if (Str[1] == 'C') {
2633 IntegerMode = false;
2634 ComplexMode = true;
2635 } else if (Str[1] != 'I') {
2636 DestWidth = 0;
2637 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002638 break;
2639 case 4:
2640 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2641 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002642 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002643 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002644 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002645 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002646 break;
2647 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002648 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002649 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002650 break;
2651 }
2652
2653 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002654 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002655 OldTy = TD->getUnderlyingType();
2656 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2657 OldTy = VD->getType();
2658 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002659 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002660 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002661 return;
2662 }
Eli Friedman73397492009-03-03 06:41:03 +00002663
John McCall183700f2009-09-21 23:43:11 +00002664 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002665 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2666 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002667 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002668 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2669 } else if (ComplexMode) {
2670 if (!OldTy->isComplexType())
2671 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2672 } else {
2673 if (!OldTy->isFloatingType())
2674 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2675 }
2676
Mike Stump390b4cc2009-05-16 07:39:55 +00002677 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2678 // and friends, at least with glibc.
2679 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2680 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002681 // FIXME: Make sure floating-point mappings are accurate
2682 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002683 QualType NewTy;
2684 switch (DestWidth) {
2685 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002686 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002687 return;
2688 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002689 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002690 return;
2691 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002692 if (!IntegerMode) {
2693 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2694 return;
2695 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002696 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002697 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002698 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002699 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002700 break;
2701 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002702 if (!IntegerMode) {
2703 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2704 return;
2705 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002706 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002707 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002708 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002709 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002710 break;
2711 case 32:
2712 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002713 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002714 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002715 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002716 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002717 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002718 break;
2719 case 64:
2720 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002721 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002722 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002723 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002724 NewTy = S.Context.LongTy;
2725 else
2726 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002727 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002728 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002729 NewTy = S.Context.UnsignedLongTy;
2730 else
2731 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002732 break;
Eli Friedman73397492009-03-03 06:41:03 +00002733 case 96:
2734 NewTy = S.Context.LongDoubleTy;
2735 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002736 case 128:
2737 if (!IntegerMode) {
2738 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2739 return;
2740 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002741 if (OldTy->isSignedIntegerType())
2742 NewTy = S.Context.Int128Ty;
2743 else
2744 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002745 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002746 }
2747
Eli Friedman73397492009-03-03 06:41:03 +00002748 if (ComplexMode) {
2749 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002750 }
2751
2752 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002753 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002754 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002755 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002756 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002757 cast<ValueDecl>(D)->setType(NewTy);
2758}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002759
Chandler Carruth1b03c872011-07-02 00:01:44 +00002760static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002761 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002762 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002763 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002764
Chandler Carruth87c44602011-07-01 23:49:12 +00002765 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002766 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002767 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002768 return;
2769 }
Mike Stumpbf916502009-07-24 19:02:52 +00002770
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002771 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002772}
2773
Chandler Carruth1b03c872011-07-02 00:01:44 +00002774static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002775 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002776 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002777 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002778
Mike Stumpbf916502009-07-24 19:02:52 +00002779
Chandler Carruth87c44602011-07-01 23:49:12 +00002780 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002781 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002782 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002783 return;
2784 }
Mike Stumpbf916502009-07-24 19:02:52 +00002785
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002786 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002787}
2788
Chandler Carruth1b03c872011-07-02 00:01:44 +00002789static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2790 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002791 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002792 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002793 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002794
Chris Lattner7255a2d2010-06-22 00:03:40 +00002795
Chandler Carruth87c44602011-07-01 23:49:12 +00002796 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002797 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002798 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002799 return;
2800 }
2801
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002802 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002803 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002804}
2805
Chandler Carruth1b03c872011-07-02 00:01:44 +00002806static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002807 if (S.LangOpts.CUDA) {
2808 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002809 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002810 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2811 return;
2812 }
2813
Chandler Carruth87c44602011-07-01 23:49:12 +00002814 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002815 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002816 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002817 return;
2818 }
2819
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002820 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002821 } else {
2822 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2823 }
2824}
2825
Chandler Carruth1b03c872011-07-02 00:01:44 +00002826static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002827 if (S.LangOpts.CUDA) {
2828 // check the attribute arguments.
2829 if (Attr.getNumArgs() != 0) {
2830 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2831 return;
2832 }
2833
Chandler Carruth87c44602011-07-01 23:49:12 +00002834 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002835 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002836 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002837 return;
2838 }
2839
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002840 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002841 } else {
2842 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2843 }
2844}
2845
Chandler Carruth1b03c872011-07-02 00:01:44 +00002846static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002847 if (S.LangOpts.CUDA) {
2848 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002849 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002850 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002851
Chandler Carruth87c44602011-07-01 23:49:12 +00002852 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002853 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002854 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002855 return;
2856 }
2857
Chandler Carruth87c44602011-07-01 23:49:12 +00002858 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002859 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002860 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002861 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2862 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2863 << FD->getType()
2864 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2865 "void");
2866 } else {
2867 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2868 << FD->getType();
2869 }
2870 return;
2871 }
2872
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002873 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002874 } else {
2875 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2876 }
2877}
2878
Chandler Carruth1b03c872011-07-02 00:01:44 +00002879static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002880 if (S.LangOpts.CUDA) {
2881 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002882 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002883 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002884
Peter Collingbourneced76712010-12-01 03:15:31 +00002885
Chandler Carruth87c44602011-07-01 23:49:12 +00002886 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002887 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002888 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002889 return;
2890 }
2891
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002892 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002893 } else {
2894 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2895 }
2896}
2897
Chandler Carruth1b03c872011-07-02 00:01:44 +00002898static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002899 if (S.LangOpts.CUDA) {
2900 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002901 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002902 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002903
Peter Collingbourneced76712010-12-01 03:15:31 +00002904
Chandler Carruth87c44602011-07-01 23:49:12 +00002905 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002906 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002907 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002908 return;
2909 }
2910
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002911 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002912 } else {
2913 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2914 }
2915}
2916
Chandler Carruth1b03c872011-07-02 00:01:44 +00002917static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002918 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002919 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002920 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002921
Chandler Carruth87c44602011-07-01 23:49:12 +00002922 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002923 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002924 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002925 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002926 return;
2927 }
Mike Stumpbf916502009-07-24 19:02:52 +00002928
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002929 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002930 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002931 return;
2932 }
Mike Stumpbf916502009-07-24 19:02:52 +00002933
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002934 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002935}
2936
Chandler Carruth1b03c872011-07-02 00:01:44 +00002937static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002938 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002939
Chandler Carruth87c44602011-07-01 23:49:12 +00002940 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002941 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2942 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002943 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002944 return;
2945
Chandler Carruth87c44602011-07-01 23:49:12 +00002946 if (!isa<ObjCMethodDecl>(D)) {
2947 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2948 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002949 return;
2950 }
2951
Chandler Carruth87c44602011-07-01 23:49:12 +00002952 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002953 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002954 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002955 return;
2956 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002957 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002958 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002959 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002960 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002961 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002962 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002963 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002964 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002965 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002966 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002967 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002968 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002969 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002970 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002971 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002972 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002973 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002974 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002975 return;
2976 }
2977
Chris Lattner5f9e2722011-07-23 10:55:15 +00002978 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002979 PcsAttr::PCSType PCS;
2980 if (StrRef == "aapcs")
2981 PCS = PcsAttr::AAPCS;
2982 else if (StrRef == "aapcs-vfp")
2983 PCS = PcsAttr::AAPCS_VFP;
2984 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002985 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2986 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002987 return;
2988 }
2989
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002990 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002991 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002992 default:
2993 llvm_unreachable("unexpected attribute kind");
2994 return;
2995 }
2996}
2997
Chandler Carruth1b03c872011-07-02 00:01:44 +00002998static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002999 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003000 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00003001}
3002
John McCall711c52b2011-01-05 12:14:39 +00003003bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
3004 if (attr.isInvalid())
3005 return true;
3006
Ted Kremenek831efae2011-04-15 05:49:29 +00003007 if ((attr.getNumArgs() != 0 &&
3008 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
3009 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00003010 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
3011 attr.setInvalid();
3012 return true;
3013 }
3014
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003015 // TODO: diagnose uses of these conventions on the wrong target. Or, better
3016 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00003017 switch (attr.getKind()) {
3018 case AttributeList::AT_cdecl: CC = CC_C; break;
3019 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
3020 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
3021 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
3022 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003023 case AttributeList::AT_pcs: {
3024 Expr *Arg = attr.getArg(0);
3025 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003026 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003027 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
3028 << "pcs" << 1;
3029 attr.setInvalid();
3030 return true;
3031 }
3032
Chris Lattner5f9e2722011-07-23 10:55:15 +00003033 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003034 if (StrRef == "aapcs") {
3035 CC = CC_AAPCS;
3036 break;
3037 } else if (StrRef == "aapcs-vfp") {
3038 CC = CC_AAPCS_VFP;
3039 break;
3040 }
3041 // FALLS THROUGH
3042 }
John McCall711c52b2011-01-05 12:14:39 +00003043 default: llvm_unreachable("unexpected attribute kind"); return true;
3044 }
3045
3046 return false;
3047}
3048
Chandler Carruth1b03c872011-07-02 00:01:44 +00003049static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003050 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003051
3052 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003053 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003054 return;
3055
Chandler Carruth87c44602011-07-01 23:49:12 +00003056 if (!isa<ObjCMethodDecl>(D)) {
3057 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3058 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003059 return;
3060 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003061
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003062 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003063}
3064
3065/// Checks a regparm attribute, returning true if it is ill-formed and
3066/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003067bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3068 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003069 return true;
3070
Chandler Carruth87c44602011-07-01 23:49:12 +00003071 if (Attr.getNumArgs() != 1) {
3072 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3073 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003074 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003075 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003076
Chandler Carruth87c44602011-07-01 23:49:12 +00003077 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003078 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003079 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003080 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003081 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003082 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003083 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003084 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003085 }
3086
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003087 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003088 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003089 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003090 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003091 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003092 }
3093
John McCall711c52b2011-01-05 12:14:39 +00003094 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003095 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003096 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003097 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003098 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003099 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003100 }
3101
John McCall711c52b2011-01-05 12:14:39 +00003102 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003103}
3104
Chandler Carruth1b03c872011-07-02 00:01:44 +00003105static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003106 if (S.LangOpts.CUDA) {
3107 // check the attribute arguments.
3108 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003109 // FIXME: 0 is not okay.
3110 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003111 return;
3112 }
3113
Chandler Carruth87c44602011-07-01 23:49:12 +00003114 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003115 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003116 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003117 return;
3118 }
3119
3120 Expr *MaxThreadsExpr = Attr.getArg(0);
3121 llvm::APSInt MaxThreads(32);
3122 if (MaxThreadsExpr->isTypeDependent() ||
3123 MaxThreadsExpr->isValueDependent() ||
3124 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3125 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3126 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3127 return;
3128 }
3129
3130 llvm::APSInt MinBlocks(32);
3131 if (Attr.getNumArgs() > 1) {
3132 Expr *MinBlocksExpr = Attr.getArg(1);
3133 if (MinBlocksExpr->isTypeDependent() ||
3134 MinBlocksExpr->isValueDependent() ||
3135 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3136 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3137 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3138 return;
3139 }
3140 }
3141
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003142 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003143 MaxThreads.getZExtValue(),
3144 MinBlocks.getZExtValue()));
3145 } else {
3146 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3147 }
3148}
3149
Chris Lattner0744e5f2008-06-29 00:23:49 +00003150//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003151// Checker-specific attribute handlers.
3152//===----------------------------------------------------------------------===//
3153
John McCallc7ad3812011-01-25 03:31:58 +00003154static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003155 return type->isDependentType() ||
3156 type->isObjCObjectPointerType() ||
3157 S.Context.isObjCNSObjectType(type);
John McCallc7ad3812011-01-25 03:31:58 +00003158}
3159static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
Douglas Gregor6c73a292011-10-09 22:26:49 +00003160 return type->isDependentType() ||
3161 type->isPointerType() ||
3162 isValidSubjectOfNSAttribute(S, type);
John McCallc7ad3812011-01-25 03:31:58 +00003163}
3164
Chandler Carruth1b03c872011-07-02 00:01:44 +00003165static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003166 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003167 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003168 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003169 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003170 return;
3171 }
3172
3173 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003174 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003175 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3176 cf = false;
3177 } else {
3178 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3179 cf = true;
3180 }
3181
3182 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003183 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003184 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003185 return;
3186 }
3187
3188 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003189 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003190 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003191 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003192}
3193
Chandler Carruth1b03c872011-07-02 00:01:44 +00003194static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3195 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003196 if (!isa<ObjCMethodDecl>(D)) {
3197 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003198 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003199 return;
3200 }
3201
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003202 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003203}
3204
Chandler Carruth1b03c872011-07-02 00:01:44 +00003205static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3206 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003207
John McCallc7ad3812011-01-25 03:31:58 +00003208 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003209
Chandler Carruth87c44602011-07-01 23:49:12 +00003210 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003211 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003212 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003213 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003214 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3215 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003216 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003217 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003218 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003219 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003220 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003221 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003222 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003223 return;
3224 }
Mike Stumpbf916502009-07-24 19:02:52 +00003225
John McCallc7ad3812011-01-25 03:31:58 +00003226 bool typeOK;
3227 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003228 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003229 default: llvm_unreachable("invalid ownership attribute"); return;
3230 case AttributeList::AT_ns_returns_autoreleased:
3231 case AttributeList::AT_ns_returns_retained:
3232 case AttributeList::AT_ns_returns_not_retained:
3233 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3234 cf = false;
3235 break;
3236
3237 case AttributeList::AT_cf_returns_retained:
3238 case AttributeList::AT_cf_returns_not_retained:
3239 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3240 cf = true;
3241 break;
3242 }
3243
3244 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003245 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003246 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003247 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003248 }
Mike Stumpbf916502009-07-24 19:02:52 +00003249
Chandler Carruth87c44602011-07-01 23:49:12 +00003250 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003251 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003252 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003253 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003254 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003255 S.Context));
3256 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003257 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003258 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003259 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003260 return;
3261 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003262 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003263 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003264 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003265 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003266 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003267 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003268 return;
3269 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003270 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003271 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003272 return;
3273 };
3274}
3275
John McCalldc7c5ad2011-07-22 08:53:00 +00003276static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3277 const AttributeList &attr) {
3278 SourceLocation loc = attr.getLoc();
3279
3280 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3281
3282 if (!isa<ObjCMethodDecl>(method)) {
3283 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3284 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3285 return;
3286 }
3287
3288 // Check that the method returns a normal pointer.
3289 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003290
3291 if (!resultType->isReferenceType() &&
3292 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003293 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3294 << SourceRange(loc)
3295 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3296
3297 // Drop the attribute.
3298 return;
3299 }
3300
3301 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003302 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003303}
3304
John McCall8dfac0b2011-09-30 05:12:12 +00003305/// Handle cf_audited_transfer and cf_unknown_transfer.
3306static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3307 if (!isa<FunctionDecl>(D)) {
3308 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3309 << A.getRange() << A.getName() << 0 /*function*/;
3310 return;
3311 }
3312
3313 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3314
3315 // Check whether there's a conflicting attribute already present.
3316 Attr *Existing;
3317 if (IsAudited) {
3318 Existing = D->getAttr<CFUnknownTransferAttr>();
3319 } else {
3320 Existing = D->getAttr<CFAuditedTransferAttr>();
3321 }
3322 if (Existing) {
3323 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3324 << A.getName()
3325 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3326 << A.getRange() << Existing->getRange();
3327 return;
3328 }
3329
3330 // All clear; add the attribute.
3331 if (IsAudited) {
3332 D->addAttr(
3333 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3334 } else {
3335 D->addAttr(
3336 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3337 }
3338}
3339
John McCallfe98da02011-09-29 07:17:38 +00003340static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3341 const AttributeList &Attr) {
3342 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3343 if (!RD || RD->isUnion()) {
3344 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3345 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3346 }
3347
3348 IdentifierInfo *ParmName = Attr.getParameterName();
3349
3350 // In Objective-C, verify that the type names an Objective-C type.
3351 // We don't want to check this outside of ObjC because people sometimes
3352 // do crazy C declarations of Objective-C types.
3353 if (ParmName && S.getLangOptions().ObjC1) {
3354 // Check for an existing type with this name.
3355 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3356 Sema::LookupOrdinaryName);
3357 if (S.LookupName(R, Sc)) {
3358 NamedDecl *Target = R.getFoundDecl();
3359 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3360 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3361 S.Diag(Target->getLocStart(), diag::note_declared_at);
3362 }
3363 }
3364 }
3365
3366 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3367 ParmName));
3368}
3369
Chandler Carruth1b03c872011-07-02 00:01:44 +00003370static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3371 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003372 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003373
Chandler Carruth87c44602011-07-01 23:49:12 +00003374 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003375 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003376}
3377
Chandler Carruth1b03c872011-07-02 00:01:44 +00003378static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3379 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003380 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003381 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003382 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003383 return;
3384 }
3385
Chandler Carruth87c44602011-07-01 23:49:12 +00003386 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003387 QualType type = vd->getType();
3388
3389 if (!type->isDependentType() &&
3390 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003391 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003392 << type;
3393 return;
3394 }
3395
3396 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3397
3398 // If we have no lifetime yet, check the lifetime we're presumably
3399 // going to infer.
3400 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3401 lifetime = type->getObjCARCImplicitLifetime();
3402
3403 switch (lifetime) {
3404 case Qualifiers::OCL_None:
3405 assert(type->isDependentType() &&
3406 "didn't infer lifetime for non-dependent type?");
3407 break;
3408
3409 case Qualifiers::OCL_Weak: // meaningful
3410 case Qualifiers::OCL_Strong: // meaningful
3411 break;
3412
3413 case Qualifiers::OCL_ExplicitNone:
3414 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003415 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003416 << (lifetime == Qualifiers::OCL_Autoreleasing);
3417 break;
3418 }
3419
Chandler Carruth87c44602011-07-01 23:49:12 +00003420 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003421 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003422}
3423
Charles Davisf0122fe2010-02-16 18:27:26 +00003424static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3425 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003426 Attr.getKind() == AttributeList::AT_dllexport ||
3427 Attr.getKind() == AttributeList::AT_uuid;
3428}
3429
3430//===----------------------------------------------------------------------===//
3431// Microsoft specific attribute handlers.
3432//===----------------------------------------------------------------------===//
3433
Chandler Carruth1b03c872011-07-02 00:01:44 +00003434static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003435 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003436 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003437 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003438 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003439
Francois Pichet11542142010-12-19 06:50:37 +00003440 Expr *Arg = Attr.getArg(0);
3441 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003442 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003443 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3444 << "uuid" << 1;
3445 return;
3446 }
3447
Chris Lattner5f9e2722011-07-23 10:55:15 +00003448 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003449
3450 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3451 StrRef.back() == '}';
3452
3453 // Validate GUID length.
3454 if (IsCurly && StrRef.size() != 38) {
3455 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3456 return;
3457 }
3458 if (!IsCurly && StrRef.size() != 36) {
3459 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3460 return;
3461 }
3462
3463 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3464 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003465 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003466 if (IsCurly) // Skip the optional '{'
3467 ++I;
3468
3469 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003470 if (i == 8 || i == 13 || i == 18 || i == 23) {
3471 if (*I != '-') {
3472 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3473 return;
3474 }
3475 } else if (!isxdigit(*I)) {
3476 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3477 return;
3478 }
3479 I++;
3480 }
Francois Pichet11542142010-12-19 06:50:37 +00003481
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003482 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003483 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003484 } else
Francois Pichet11542142010-12-19 06:50:37 +00003485 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003486}
3487
Ted Kremenekb71368d2009-05-09 02:44:38 +00003488//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003489// Top Level Sema Entry Points
3490//===----------------------------------------------------------------------===//
3491
Chandler Carruth1b03c872011-07-02 00:01:44 +00003492static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3493 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003494 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003495 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3496 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3497 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003498 default:
3499 break;
3500 }
3501}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003502
Chandler Carruth1b03c872011-07-02 00:01:44 +00003503static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3504 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003505 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003506 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3507 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003508 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003509 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003510 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003511 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003512 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003513 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003514 case AttributeList::AT_neon_vector_type:
3515 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003516 // Ignore these, these are type attributes, handled by
3517 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003518 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003519 case AttributeList::AT_device:
3520 case AttributeList::AT_host:
3521 case AttributeList::AT_overloadable:
3522 // Ignore, this is a non-inheritable attribute, handled
3523 // by ProcessNonInheritableDeclAttr.
3524 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003525 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3526 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003527 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003528 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003529 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003530 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3531 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3532 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003533 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003534 handleDependencyAttr (S, D, Attr); break;
3535 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3536 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3537 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3538 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3539 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003540 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003541 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003542 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003543 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3544 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3545 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3546 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003547 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003548 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003549 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003550 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3551 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3552 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3553 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3554 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003555 case AttributeList::AT_ownership_returns:
3556 case AttributeList::AT_ownership_takes:
3557 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003558 handleOwnershipAttr (S, D, Attr); break;
3559 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3560 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3561 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3562 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3563 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003564
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003565 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003566 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003567 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003568 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003569
John McCalldc7c5ad2011-07-22 08:53:00 +00003570 case AttributeList::AT_objc_returns_inner_pointer:
3571 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3572
John McCallfe98da02011-09-29 07:17:38 +00003573 case AttributeList::AT_ns_bridged:
3574 handleNSBridgedAttr(S, scope, D, Attr); break;
3575
John McCall8dfac0b2011-09-30 05:12:12 +00003576 case AttributeList::AT_cf_audited_transfer:
3577 case AttributeList::AT_cf_unknown_transfer:
3578 handleCFTransferAttr(S, D, Attr); break;
3579
Ted Kremenekb71368d2009-05-09 02:44:38 +00003580 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003581 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003582 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003583 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003584 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003585
3586 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003587 case AttributeList::AT_ns_returns_not_retained:
3588 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003589 case AttributeList::AT_ns_returns_retained:
3590 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003591 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003592
Nate Begeman6f3d8382009-06-26 06:32:41 +00003593 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003594 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003595
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003596 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003597 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003598
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3600 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3601 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3602 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003603 case AttributeList::AT_arc_weakref_unavailable:
3604 handleArcWeakrefUnavailableAttr (S, D, Attr);
3605 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003606 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
Rafael Espindolaf87cced2011-10-03 14:59:42 +00003607 case AttributeList::AT_returns_twice:
3608 handleReturnsTwiceAttr(S, D, Attr);
3609 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003610 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3611 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3612 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003613 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003614 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3615 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3616 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003617 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003618 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003619 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003620 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003621 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003622 break;
John McCalld5313b02011-03-02 11:33:24 +00003623 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003624 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003625 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003626 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3627 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3628 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3629 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3630 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3631 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3632 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3633 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3634 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003635 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003636 // Just ignore
3637 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003638 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003639 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003640 break;
John McCall04a67a62010-02-05 21:31:56 +00003641 case AttributeList::AT_stdcall:
3642 case AttributeList::AT_cdecl:
3643 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003644 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003645 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003646 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003647 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003648 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003649 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003650 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003651 break;
Francois Pichet11542142010-12-19 06:50:37 +00003652 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003653 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003654 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003655
3656 // Thread safety attributes:
3657 case AttributeList::AT_guarded_var:
3658 handleGuardedVarAttr(S, D, Attr);
3659 break;
3660 case AttributeList::AT_pt_guarded_var:
3661 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3662 break;
3663 case AttributeList::AT_scoped_lockable:
3664 handleLockableAttr(S, D, Attr, /*scoped = */true);
3665 break;
3666 case AttributeList::AT_no_thread_safety_analysis:
3667 handleNoThreadSafetyAttr(S, D, Attr);
3668 break;
3669 case AttributeList::AT_lockable:
3670 handleLockableAttr(S, D, Attr);
3671 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003672 case AttributeList::AT_guarded_by:
3673 handleGuardedByAttr(S, D, Attr);
3674 break;
3675 case AttributeList::AT_pt_guarded_by:
3676 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3677 break;
3678 case AttributeList::AT_exclusive_lock_function:
3679 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3680 break;
3681 case AttributeList::AT_exclusive_locks_required:
3682 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3683 break;
3684 case AttributeList::AT_exclusive_trylock_function:
3685 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3686 break;
3687 case AttributeList::AT_lock_returned:
3688 handleLockReturnedAttr(S, D, Attr);
3689 break;
3690 case AttributeList::AT_locks_excluded:
3691 handleLocksExcludedAttr(S, D, Attr);
3692 break;
3693 case AttributeList::AT_shared_lock_function:
3694 handleLockFunAttr(S, D, Attr);
3695 break;
3696 case AttributeList::AT_shared_locks_required:
3697 handleLocksRequiredAttr(S, D, Attr);
3698 break;
3699 case AttributeList::AT_shared_trylock_function:
3700 handleTrylockFunAttr(S, D, Attr);
3701 break;
3702 case AttributeList::AT_unlock_function:
3703 handleUnlockFunAttr(S, D, Attr);
3704 break;
3705 case AttributeList::AT_acquired_before:
3706 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3707 break;
3708 case AttributeList::AT_acquired_after:
3709 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3710 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003711
Chris Lattner803d0802008-06-29 00:43:07 +00003712 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003713 // Ask target about the attribute.
3714 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3715 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003716 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3717 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003718 break;
3719 }
3720}
3721
Peter Collingbourne60700392011-01-21 02:08:45 +00003722/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3723/// the attribute applies to decls. If the attribute is a type attribute, just
3724/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3725/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003726static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3727 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003728 bool NonInheritable, bool Inheritable) {
3729 if (Attr.isInvalid())
3730 return;
3731
3732 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3733 // FIXME: Try to deal with other __declspec attributes!
3734 return;
3735
3736 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003737 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003738
3739 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003740 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003741}
3742
Chris Lattner803d0802008-06-29 00:43:07 +00003743/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3744/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003745void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003746 const AttributeList *AttrList,
3747 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003748 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003749 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003750 }
3751
3752 // GCC accepts
3753 // static int a9 __attribute__((weakref));
3754 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003755 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003756 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003757 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003758 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003759 }
3760}
3761
Erik Verbruggen5f1c8222011-10-13 09:41:32 +00003762// Annotation attributes are the only attributes allowed after an access
3763// specifier.
3764bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl,
3765 const AttributeList *AttrList) {
3766 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
3767 if (l->getKind() == AttributeList::AT_annotate) {
3768 handleAnnotateAttr(*this, ASDecl, *l);
3769 } else {
3770 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec);
3771 return true;
3772 }
3773 }
3774
3775 return false;
3776}
3777
John McCalle82247a2011-10-01 05:17:03 +00003778/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3779/// contains any decl attributes that we should warn about.
3780static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3781 for ( ; A; A = A->getNext()) {
3782 // Only warn if the attribute is an unignored, non-type attribute.
3783 if (A->isUsedAsTypeAttr()) continue;
3784 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3785
3786 if (A->getKind() == AttributeList::UnknownAttribute) {
3787 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3788 << A->getName() << A->getRange();
3789 } else {
3790 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3791 << A->getName() << A->getRange();
3792 }
3793 }
3794}
3795
3796/// checkUnusedDeclAttributes - Given a declarator which is not being
3797/// used to build a declaration, complain about any decl attributes
3798/// which might be lying around on it.
3799void Sema::checkUnusedDeclAttributes(Declarator &D) {
3800 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3801 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3802 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3803 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3804}
3805
Ryan Flynne25ff832009-07-30 03:15:39 +00003806/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3807/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003808NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3809 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003810 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003811 NamedDecl *NewD = 0;
3812 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003813 FunctionDecl *NewFD;
3814 // FIXME: Missing call to CheckFunctionDeclaration().
3815 // FIXME: Mangling?
3816 // FIXME: Is the qualifier info correct?
3817 // FIXME: Is the DeclContext correct?
3818 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3819 Loc, Loc, DeclarationName(II),
3820 FD->getType(), FD->getTypeSourceInfo(),
3821 SC_None, SC_None,
3822 false/*isInlineSpecified*/,
3823 FD->hasPrototype(),
3824 false/*isConstexprSpecified*/);
3825 NewD = NewFD;
3826
3827 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003828 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003829
3830 // Fake up parameter variables; they are declared as if this were
3831 // a typedef.
3832 QualType FDTy = FD->getType();
3833 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3834 SmallVector<ParmVarDecl*, 16> Params;
3835 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3836 AE = FT->arg_type_end(); AI != AE; ++AI) {
3837 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3838 Param->setScopeInfo(0, Params.size());
3839 Params.push_back(Param);
3840 }
David Blaikie4278c652011-09-21 18:16:56 +00003841 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003842 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003843 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3844 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003845 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003846 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003847 VD->getStorageClass(),
3848 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003849 if (VD->getQualifier()) {
3850 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003851 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003852 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003853 }
3854 return NewD;
3855}
3856
3857/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3858/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003859void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003860 if (W.getUsed()) return; // only do this once
3861 W.setUsed(true);
3862 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3863 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003864 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003865 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3866 NDId->getName()));
3867 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003868 WeakTopLevelDecl.push_back(NewD);
3869 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3870 // to insert Decl at TU scope, sorry.
3871 DeclContext *SavedContext = CurContext;
3872 CurContext = Context.getTranslationUnitDecl();
3873 PushOnScopeChains(NewD, S);
3874 CurContext = SavedContext;
3875 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003876 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003877 }
3878}
3879
Chris Lattner0744e5f2008-06-29 00:23:49 +00003880/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3881/// it, apply them to D. This is a bit tricky because PD can have attributes
3882/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003883void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3884 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003885 // It's valid to "forward-declare" #pragma weak, in which case we
3886 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003887 if (Inheritable) {
3888 LoadExternalWeakUndeclaredIdentifiers();
3889 if (!WeakUndeclaredIdentifiers.empty()) {
3890 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3891 if (IdentifierInfo *Id = ND->getIdentifier()) {
3892 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3893 = WeakUndeclaredIdentifiers.find(Id);
3894 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3895 WeakInfo W = I->second;
3896 DeclApplyPragmaWeak(S, ND, W);
3897 WeakUndeclaredIdentifiers[Id] = W;
3898 }
John McCalld4aff0e2010-10-27 00:59:00 +00003899 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003900 }
3901 }
3902 }
3903
Chris Lattner0744e5f2008-06-29 00:23:49 +00003904 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003905 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003906 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003907
Chris Lattner0744e5f2008-06-29 00:23:49 +00003908 // Walk the declarator structure, applying decl attributes that were in a type
3909 // position to the decl itself. This handles cases like:
3910 // int *__attr__(x)** D;
3911 // when X is a decl attribute.
3912 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3913 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003914 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003915
Chris Lattner0744e5f2008-06-29 00:23:49 +00003916 // Finally, apply any attributes on the decl itself.
3917 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003918 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003919}
John McCall54abf7d2009-11-04 02:18:39 +00003920
John McCallf85e1932011-06-15 23:02:42 +00003921/// Is the given declaration allowed to use a forbidden type?
3922static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3923 // Private ivars are always okay. Unfortunately, people don't
3924 // always properly make their ivars private, even in system headers.
3925 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00003926 // Function declarations in sys headers will be marked unavailable.
3927 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3928 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00003929 return false;
3930
3931 // Require it to be declared in a system header.
3932 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3933}
3934
3935/// Handle a delayed forbidden-type diagnostic.
3936static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3937 Decl *decl) {
3938 if (decl && isForbiddenTypeAllowed(S, decl)) {
3939 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3940 "this system declaration uses an unsupported type"));
3941 return;
3942 }
Fariborz Jahanian175fb102011-10-03 22:11:57 +00003943 if (S.getLangOptions().ObjCAutoRefCount)
3944 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) {
3945 // FIXME. we may want to supress diagnostics for all
3946 // kind of forbidden type messages on unavailable functions.
3947 if (FD->hasAttr<UnavailableAttr>() &&
3948 diag.getForbiddenTypeDiagnostic() ==
3949 diag::err_arc_array_param_no_ownership) {
3950 diag.Triggered = true;
3951 return;
3952 }
3953 }
John McCallf85e1932011-06-15 23:02:42 +00003954
3955 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3956 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3957 diag.Triggered = true;
3958}
3959
John McCalleee1d542011-02-14 07:13:47 +00003960// This duplicates a vector push_back but hides the need to know the
3961// size of the type.
3962void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3963 assert(StackSize <= StackCapacity);
3964
3965 // Grow the stack if necessary.
3966 if (StackSize == StackCapacity) {
3967 unsigned newCapacity = 2 * StackCapacity + 2;
3968 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3969 const char *oldBuffer = (const char*) Stack;
3970
3971 if (StackCapacity)
3972 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3973
3974 delete[] oldBuffer;
3975 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3976 StackCapacity = newCapacity;
3977 }
3978
3979 assert(StackSize < StackCapacity);
3980 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003981}
3982
John McCalleee1d542011-02-14 07:13:47 +00003983void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3984 Decl *decl) {
3985 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003986
John McCalleee1d542011-02-14 07:13:47 +00003987 // Check the invariants.
3988 assert(DD.StackSize >= state.SavedStackSize);
3989 assert(state.SavedStackSize >= DD.ActiveStackBase);
3990 assert(DD.ParsingDepth > 0);
3991
3992 // Drop the parsing depth.
3993 DD.ParsingDepth--;
3994
3995 // If there are no active diagnostics, we're done.
3996 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003997 return;
3998
John McCall2f514482010-01-27 03:50:35 +00003999 // We only want to actually emit delayed diagnostics when we
4000 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00004001 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00004002 // We emit all the active diagnostics, not just those starting
4003 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00004004 // decl spec and another for each declarator; in a decl group like:
4005 // deprecated_typedef foo, *bar, baz();
4006 // only the declarator pops will be passed decls. This is correct;
4007 // we really do need to consider delayed diagnostics from the decl spec
4008 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00004009 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
4010 DelayedDiagnostic &diag = DD.Stack[i];
4011 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00004012 continue;
4013
John McCalleee1d542011-02-14 07:13:47 +00004014 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00004015 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00004016 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004017 break;
4018
4019 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00004020 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00004021 break;
John McCallf85e1932011-06-15 23:02:42 +00004022
4023 case DelayedDiagnostic::ForbiddenType:
4024 handleDelayedForbiddenType(S, diag, decl);
4025 break;
John McCall2f514482010-01-27 03:50:35 +00004026 }
4027 }
4028 }
4029
John McCall58e6f342010-03-16 05:22:47 +00004030 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00004031 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00004032 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00004033
John McCalleee1d542011-02-14 07:13:47 +00004034 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00004035}
4036
4037static bool isDeclDeprecated(Decl *D) {
4038 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00004039 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00004040 return true;
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +00004041 // A category implicitly has the availability of the interface.
4042 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D))
4043 return CatD->getClassInterface()->isDeprecated();
John McCall54abf7d2009-11-04 02:18:39 +00004044 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
4045 return false;
4046}
4047
John McCall9c3087b2010-08-26 02:13:20 +00004048void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00004049 Decl *Ctx) {
4050 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00004051 return;
4052
John McCall2f514482010-01-27 03:50:35 +00004053 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004054 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004055 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004056 << DD.getDeprecationDecl()->getDeclName()
4057 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004058 else
4059 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004060 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00004061}
4062
Chris Lattner5f9e2722011-07-23 10:55:15 +00004063void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004064 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004065 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00004066 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00004067 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
4068 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00004069 return;
4070 }
4071
4072 // Otherwise, don't warn if our current context is deprecated.
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +00004073 if (isDeclDeprecated(cast<Decl>(getCurLexicalContext())))
John McCall54abf7d2009-11-04 02:18:39 +00004074 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004075 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004076 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4077 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004078 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004079 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004080 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004081 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004082 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004083 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4084 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004085 }
John McCall54abf7d2009-11-04 02:18:39 +00004086}