blob: d9e4df058da66c42936f2baa3b8e7f9762828deb [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>()) {
763 S.Diag(Attr.getLoc(), diag::err_iboutlet_object_type)
764 << 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>()) {
770 S.Diag(Attr.getLoc(), diag::err_iboutlet_object_type)
771 << 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)
808 II = &S.Context.Idents.get("id");
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())).
821 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
822 !QT->isObjCObjectType()) {
823 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
824 return;
825 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000826 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
827 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000828}
829
Chandler Carruthd309c812011-07-01 23:49:16 +0000830static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000831 if (const RecordType *UT = T->getAsUnionType())
832 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
833 RecordDecl *UD = UT->getDecl();
834 for (RecordDecl::field_iterator it = UD->field_begin(),
835 itend = UD->field_end(); it != itend; ++it) {
836 QualType QT = it->getType();
837 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
838 T = QT;
839 return;
840 }
841 }
842 }
843}
844
Chandler Carruth1b03c872011-07-02 00:01:44 +0000845static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000846 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
847 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000848 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000849 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000850 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000851 return;
852 }
Mike Stumpbf916502009-07-24 19:02:52 +0000853
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000854 // In C++ the implicit 'this' function parameter also counts, and they are
855 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000856 bool HasImplicitThisParam = isInstanceMethod(D);
857 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000858
859 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000860 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000861
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000862 for (AttributeList::arg_iterator I=Attr.arg_begin(),
863 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000864
865
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000866 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000867 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000868 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000869 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
870 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000871 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
872 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000873 return;
874 }
Mike Stumpbf916502009-07-24 19:02:52 +0000875
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000876 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000877
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000878 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000879 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000880 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000881 return;
882 }
Mike Stumpbf916502009-07-24 19:02:52 +0000883
Ted Kremenek465172f2008-07-21 22:09:15 +0000884 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000885 if (HasImplicitThisParam) {
886 if (x == 0) {
887 S.Diag(Attr.getLoc(),
888 diag::err_attribute_invalid_implicit_this_argument)
889 << "nonnull" << Ex->getSourceRange();
890 return;
891 }
892 --x;
893 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000894
895 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000896 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000897 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000898
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000899 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000900 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000901 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000902 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000903 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000904 }
Mike Stumpbf916502009-07-24 19:02:52 +0000905
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000906 NonNullArgs.push_back(x);
907 }
Mike Stumpbf916502009-07-24 19:02:52 +0000908
909 // If no arguments were specified to __attribute__((nonnull)) then all pointer
910 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000911 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000912 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
913 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000914 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000915 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000916 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000917 }
Mike Stumpbf916502009-07-24 19:02:52 +0000918
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000919 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000920 if (NonNullArgs.empty()) {
921 // Warn the trivial case only if attribute is not coming from a
922 // macro instantiation.
923 if (Attr.getLoc().isFileID())
924 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000925 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000926 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000927 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000928
929 unsigned* start = &NonNullArgs[0];
930 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000931 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000932 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000933 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000934}
935
Chandler Carruth1b03c872011-07-02 00:01:44 +0000936static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000937 // This attribute must be applied to a function declaration.
938 // The first argument to the attribute must be a string,
939 // the name of the resource, for example "malloc".
940 // The following arguments must be argument indexes, the arguments must be
941 // of integer type for Returns, otherwise of pointer type.
942 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000943 // after being held. free() should be __attribute((ownership_takes)), whereas
944 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000945
946 if (!AL.getParameterName()) {
947 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
948 << AL.getName()->getName() << 1;
949 return;
950 }
951 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000952 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000953 switch (AL.getKind()) {
954 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000955 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000956 if (AL.getNumArgs() < 1) {
957 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
958 return;
959 }
Jordy Rose2a479922010-08-12 08:54:03 +0000960 break;
961 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000962 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000963 if (AL.getNumArgs() < 1) {
964 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
965 return;
966 }
Jordy Rose2a479922010-08-12 08:54:03 +0000967 break;
968 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000969 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000970 if (AL.getNumArgs() > 1) {
971 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
972 << AL.getNumArgs() + 1;
973 return;
974 }
Jordy Rose2a479922010-08-12 08:54:03 +0000975 break;
976 default:
977 // This should never happen given how we are called.
978 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000979 }
980
Chandler Carruth87c44602011-07-01 23:49:12 +0000981 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000982 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
983 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000984 return;
985 }
986
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000987 // In C++ the implicit 'this' function parameter also counts, and they are
988 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000989 bool HasImplicitThisParam = isInstanceMethod(D);
990 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000991
Chris Lattner5f9e2722011-07-23 10:55:15 +0000992 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000993
994 // Normalize the argument, __foo__ becomes foo.
995 if (Module.startswith("__") && Module.endswith("__"))
996 Module = Module.substr(2, Module.size() - 4);
997
Chris Lattner5f9e2722011-07-23 10:55:15 +0000998 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000999
Jordy Rose2a479922010-08-12 08:54:03 +00001000 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
1001 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001002
Peter Collingbourne7a730022010-11-23 20:45:58 +00001003 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001004 llvm::APSInt ArgNum(32);
1005 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1006 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1007 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1008 << AL.getName()->getName() << IdxExpr->getSourceRange();
1009 continue;
1010 }
1011
1012 unsigned x = (unsigned) ArgNum.getZExtValue();
1013
1014 if (x > NumArgs || x < 1) {
1015 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1016 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1017 continue;
1018 }
1019 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001020 if (HasImplicitThisParam) {
1021 if (x == 0) {
1022 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1023 << "ownership" << IdxExpr->getSourceRange();
1024 return;
1025 }
1026 --x;
1027 }
1028
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001029 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001030 case OwnershipAttr::Takes:
1031 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001032 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001033 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001034 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1035 // FIXME: Should also highlight argument in decl.
1036 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001037 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001038 << "pointer"
1039 << IdxExpr->getSourceRange();
1040 continue;
1041 }
1042 break;
1043 }
Sean Huntcf807c42010-08-18 23:23:40 +00001044 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001045 if (AL.getNumArgs() > 1) {
1046 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001047 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001048 llvm::APSInt ArgNum(32);
1049 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1050 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1051 S.Diag(AL.getLoc(), diag::err_ownership_type)
1052 << "ownership_returns" << "integer"
1053 << IdxExpr->getSourceRange();
1054 return;
1055 }
1056 }
1057 break;
1058 }
Jordy Rose2a479922010-08-12 08:54:03 +00001059 default:
1060 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001061 } // switch
1062
1063 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001064 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001065 i = D->specific_attr_begin<OwnershipAttr>(),
1066 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001067 i != e; ++i) {
1068 if ((*i)->getOwnKind() != K) {
1069 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1070 I!=E; ++I) {
1071 if (x == *I) {
1072 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1073 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001074 }
1075 }
1076 }
1077 }
1078 OwnershipArgs.push_back(x);
1079 }
1080
1081 unsigned* start = OwnershipArgs.data();
1082 unsigned size = OwnershipArgs.size();
1083 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001084
1085 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1086 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1087 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001088 }
Sean Huntcf807c42010-08-18 23:23:40 +00001089
Chandler Carruth87c44602011-07-01 23:49:12 +00001090 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001091 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001092}
1093
John McCall332bb2a2011-02-08 22:35:49 +00001094/// Whether this declaration has internal linkage for the purposes of
1095/// things that want to complain about things not have internal linkage.
1096static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1097 switch (D->getLinkage()) {
1098 case NoLinkage:
1099 case InternalLinkage:
1100 return true;
1101
1102 // Template instantiations that go from external to unique-external
1103 // shouldn't get diagnosed.
1104 case UniqueExternalLinkage:
1105 return true;
1106
1107 case ExternalLinkage:
1108 return false;
1109 }
1110 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001111 return false;
1112}
1113
Chandler Carruth1b03c872011-07-02 00:01:44 +00001114static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001115 // Check the attribute arguments.
1116 if (Attr.getNumArgs() > 1) {
1117 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1118 return;
1119 }
1120
Chandler Carruth87c44602011-07-01 23:49:12 +00001121 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001122 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001123 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001124 return;
1125 }
1126
Chandler Carruth87c44602011-07-01 23:49:12 +00001127 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001128
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001129 // gcc rejects
1130 // class c {
1131 // static int a __attribute__((weakref ("v2")));
1132 // static int b() __attribute__((weakref ("f3")));
1133 // };
1134 // and ignores the attributes of
1135 // void f(void) {
1136 // static int a __attribute__((weakref ("v2")));
1137 // }
1138 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001139 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001140 if (!Ctx->isFileContext()) {
1141 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001142 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001143 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001144 }
1145
1146 // The GCC manual says
1147 //
1148 // At present, a declaration to which `weakref' is attached can only
1149 // be `static'.
1150 //
1151 // It also says
1152 //
1153 // Without a TARGET,
1154 // given as an argument to `weakref' or to `alias', `weakref' is
1155 // equivalent to `weak'.
1156 //
1157 // gcc 4.4.1 will accept
1158 // int a7 __attribute__((weakref));
1159 // as
1160 // int a7 __attribute__((weak));
1161 // This looks like a bug in gcc. We reject that for now. We should revisit
1162 // it if this behaviour is actually used.
1163
John McCall332bb2a2011-02-08 22:35:49 +00001164 if (!hasEffectivelyInternalLinkage(nd)) {
1165 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001166 return;
1167 }
1168
1169 // GCC rejects
1170 // static ((alias ("y"), weakref)).
1171 // Should we? How to check that weakref is before or after alias?
1172
1173 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001174 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001175 Arg = Arg->IgnoreParenCasts();
1176 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1177
Douglas Gregor5cee1192011-07-27 05:40:30 +00001178 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001179 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1180 << "weakref" << 1;
1181 return;
1182 }
1183 // GCC will accept anything as the argument of weakref. Should we
1184 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001185 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001186 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001187 }
1188
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001189 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001190}
1191
Chandler Carruth1b03c872011-07-02 00:01:44 +00001192static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001193 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001194 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001195 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001196 return;
1197 }
Mike Stumpbf916502009-07-24 19:02:52 +00001198
Peter Collingbourne7a730022010-11-23 20:45:58 +00001199 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001200 Arg = Arg->IgnoreParenCasts();
1201 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001202
Douglas Gregor5cee1192011-07-27 05:40:30 +00001203 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001204 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001205 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001206 return;
1207 }
Mike Stumpbf916502009-07-24 19:02:52 +00001208
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001209 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001210 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1211 return;
1212 }
1213
Chris Lattner6b6b5372008-06-26 18:38:35 +00001214 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001215
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001216 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001217 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001218}
1219
Chandler Carruth1b03c872011-07-02 00:01:44 +00001220static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001221 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001222 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001223 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001224
Chandler Carruth87c44602011-07-01 23:49:12 +00001225 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001226 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001227 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001228 return;
1229 }
1230
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001231 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001232}
1233
Chandler Carruth1b03c872011-07-02 00:01:44 +00001234static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1235 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001236 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001237 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001238 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1239 return;
1240 }
1241
Chandler Carruth87c44602011-07-01 23:49:12 +00001242 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001243 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001244 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001245 return;
1246 }
Mike Stumpbf916502009-07-24 19:02:52 +00001247
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001248 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001249}
1250
Chandler Carruth1b03c872011-07-02 00:01:44 +00001251static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001252 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001253 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001254 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1255 return;
1256 }
Mike Stump1eb44332009-09-09 15:08:12 +00001257
Chandler Carruth87c44602011-07-01 23:49:12 +00001258 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001259 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001260 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001261 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001262 return;
1263 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001264 }
1265
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001266 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001267}
1268
Chandler Carruth1b03c872011-07-02 00:01:44 +00001269static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001270 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001271 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001272 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001273
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001274 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001275}
1276
Chandler Carruth1b03c872011-07-02 00:01:44 +00001277static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001278 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001279 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001280 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001281 else
1282 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001283 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001284}
1285
Chandler Carruth1b03c872011-07-02 00:01:44 +00001286static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001287 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001288 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001289 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001290 else
1291 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001292 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001293}
1294
Chandler Carruth1b03c872011-07-02 00:01:44 +00001295static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001296 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001297
1298 if (S.CheckNoReturnAttr(attr)) return;
1299
Chandler Carruth87c44602011-07-01 23:49:12 +00001300 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001301 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001302 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001303 return;
1304 }
1305
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001306 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001307}
1308
1309bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001310 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001311 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1312 attr.setInvalid();
1313 return true;
1314 }
1315
1316 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001317}
1318
Chandler Carruth1b03c872011-07-02 00:01:44 +00001319static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1320 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001321
1322 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1323 // because 'analyzer_noreturn' does not impact the type.
1324
Chandler Carruth1731e202011-07-11 23:30:35 +00001325 if(!checkAttributeNumArgs(S, Attr, 0))
1326 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001327
Chandler Carruth87c44602011-07-01 23:49:12 +00001328 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1329 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001330 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1331 && !VD->getType()->isFunctionPointerType())) {
1332 S.Diag(Attr.getLoc(),
1333 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1334 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001335 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001336 return;
1337 }
1338 }
1339
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001340 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001341}
1342
John Thompson35cc9622010-08-09 21:53:52 +00001343// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001344static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001345/*
1346 Returning a Vector Class in Registers
1347
Eric Christopherf48f3672010-12-01 22:13:54 +00001348 According to the PPU ABI specifications, a class with a single member of
1349 vector type is returned in memory when used as the return value of a function.
1350 This results in inefficient code when implementing vector classes. To return
1351 the value in a single vector register, add the vecreturn attribute to the
1352 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001353
1354 Example:
1355
1356 struct Vector
1357 {
1358 __vector float xyzw;
1359 } __attribute__((vecreturn));
1360
1361 Vector Add(Vector lhs, Vector rhs)
1362 {
1363 Vector result;
1364 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1365 return result; // This will be returned in a register
1366 }
1367*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001368 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001369 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001370 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001371 return;
1372 }
1373
Chandler Carruth87c44602011-07-01 23:49:12 +00001374 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001375 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1376 return;
1377 }
1378
Chandler Carruth87c44602011-07-01 23:49:12 +00001379 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001380 int count = 0;
1381
1382 if (!isa<CXXRecordDecl>(record)) {
1383 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1384 return;
1385 }
1386
1387 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1388 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1389 return;
1390 }
1391
Eric Christopherf48f3672010-12-01 22:13:54 +00001392 for (RecordDecl::field_iterator iter = record->field_begin();
1393 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001394 if ((count == 1) || !iter->getType()->isVectorType()) {
1395 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1396 return;
1397 }
1398 count++;
1399 }
1400
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001401 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001402}
1403
Chandler Carruth1b03c872011-07-02 00:01:44 +00001404static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001405 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001406 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001407 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001408 return;
1409 }
1410 // FIXME: Actually store the attribute on the declaration
1411}
1412
Chandler Carruth1b03c872011-07-02 00:01:44 +00001413static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001414 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001415 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001416 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001417 return;
1418 }
Mike Stumpbf916502009-07-24 19:02:52 +00001419
Chandler Carruth87c44602011-07-01 23:49:12 +00001420 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1421 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001422 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001423 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001424 return;
1425 }
Mike Stumpbf916502009-07-24 19:02:52 +00001426
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001427 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001428}
1429
Chandler Carruth1b03c872011-07-02 00:01:44 +00001430static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001431 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001432 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001433 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1434 return;
1435 }
Mike Stumpbf916502009-07-24 19:02:52 +00001436
Chandler Carruth87c44602011-07-01 23:49:12 +00001437 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001438 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001439 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1440 return;
1441 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001442 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001443 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001444 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001445 return;
1446 }
Mike Stumpbf916502009-07-24 19:02:52 +00001447
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001448 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001449}
1450
Chandler Carruth1b03c872011-07-02 00:01:44 +00001451static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001452 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001453 if (Attr.getNumArgs() > 1) {
1454 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001455 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001456 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001457
1458 int priority = 65535; // FIXME: Do not hardcode such constants.
1459 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001460 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001461 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001462 if (E->isTypeDependent() || E->isValueDependent() ||
1463 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001464 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001465 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001466 return;
1467 }
1468 priority = Idx.getZExtValue();
1469 }
Mike Stumpbf916502009-07-24 19:02:52 +00001470
Chandler Carruth87c44602011-07-01 23:49:12 +00001471 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001472 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001473 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001474 return;
1475 }
1476
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001477 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001478 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001479}
1480
Chandler Carruth1b03c872011-07-02 00:01:44 +00001481static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001482 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001483 if (Attr.getNumArgs() > 1) {
1484 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001485 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001486 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001487
1488 int priority = 65535; // FIXME: Do not hardcode such constants.
1489 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001490 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001491 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001492 if (E->isTypeDependent() || E->isValueDependent() ||
1493 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001494 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001495 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001496 return;
1497 }
1498 priority = Idx.getZExtValue();
1499 }
Mike Stumpbf916502009-07-24 19:02:52 +00001500
Chandler Carruth87c44602011-07-01 23:49:12 +00001501 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001502 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001503 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001504 return;
1505 }
1506
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001507 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001508 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001509}
1510
Chandler Carruth1b03c872011-07-02 00:01:44 +00001511static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001512 unsigned NumArgs = Attr.getNumArgs();
1513 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001514 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001515 return;
1516 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001517
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001518 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001519 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001520 if (NumArgs == 1) {
1521 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001522 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001523 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1524 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001525 return;
1526 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001527 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001528 }
Mike Stumpbf916502009-07-24 19:02:52 +00001529
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001530 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001531}
1532
Chandler Carruth1b03c872011-07-02 00:01:44 +00001533static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001534 unsigned NumArgs = Attr.getNumArgs();
1535 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001536 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001537 return;
1538 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001539
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001540 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001541 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001542 if (NumArgs == 1) {
1543 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001544 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001545 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001546 diag::err_attribute_not_string) << "unavailable";
1547 return;
1548 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001549 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001550 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001551 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001552}
1553
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001554static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1555 const AttributeList &Attr) {
1556 unsigned NumArgs = Attr.getNumArgs();
1557 if (NumArgs > 0) {
1558 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1559 return;
1560 }
1561
1562 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001563 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001564}
1565
Chandler Carruth1b03c872011-07-02 00:01:44 +00001566static void handleAvailabilityAttr(Sema &S, Decl *D,
1567 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001568 IdentifierInfo *Platform = Attr.getParameterName();
1569 SourceLocation PlatformLoc = Attr.getParameterLoc();
1570
Chris Lattner5f9e2722011-07-23 10:55:15 +00001571 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001572 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1573 if (PlatformName.empty()) {
1574 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1575 << Platform;
1576
1577 PlatformName = Platform->getName();
1578 }
1579
1580 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1581 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1582 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001583 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001584
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001585 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001586 // of these steps are needed).
1587 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001588 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001589 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1590 << 1 << PlatformName << Deprecated.Version.getAsString()
1591 << 0 << Introduced.Version.getAsString();
1592 return;
1593 }
1594
1595 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001596 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001597 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1598 << 2 << PlatformName << Obsoleted.Version.getAsString()
1599 << 0 << Introduced.Version.getAsString();
1600 return;
1601 }
1602
1603 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001604 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001605 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1606 << 2 << PlatformName << Obsoleted.Version.getAsString()
1607 << 1 << Deprecated.Version.getAsString();
1608 return;
1609 }
1610
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001611 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001612 Platform,
1613 Introduced.Version,
1614 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001615 Obsoleted.Version,
1616 IsUnavailable));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001617}
1618
Chandler Carruth1b03c872011-07-02 00:01:44 +00001619static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001620 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001621 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001622 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001623
Peter Collingbourne7a730022010-11-23 20:45:58 +00001624 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001625 Arg = Arg->IgnoreParenCasts();
1626 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001627
Douglas Gregor5cee1192011-07-27 05:40:30 +00001628 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001629 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001630 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001631 return;
1632 }
Mike Stumpbf916502009-07-24 19:02:52 +00001633
Chris Lattner5f9e2722011-07-23 10:55:15 +00001634 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001635 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001636
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001637 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001638 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001639 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001640 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001641 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001642 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001643 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001644 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001645 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001646 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001647 return;
1648 }
Mike Stumpbf916502009-07-24 19:02:52 +00001649
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001650 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001651}
1652
Chandler Carruth1b03c872011-07-02 00:01:44 +00001653static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1654 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001655 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1656 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001657 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001658 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001659 return;
1660 }
1661
Chandler Carruth87c44602011-07-01 23:49:12 +00001662 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1663 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1664 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001665 << "objc_method_family" << 1;
1666 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001667 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001668 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001669 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001670 return;
1671 }
1672
Chris Lattner5f9e2722011-07-23 10:55:15 +00001673 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001674 ObjCMethodFamilyAttr::FamilyKind family;
1675 if (param == "none")
1676 family = ObjCMethodFamilyAttr::OMF_None;
1677 else if (param == "alloc")
1678 family = ObjCMethodFamilyAttr::OMF_alloc;
1679 else if (param == "copy")
1680 family = ObjCMethodFamilyAttr::OMF_copy;
1681 else if (param == "init")
1682 family = ObjCMethodFamilyAttr::OMF_init;
1683 else if (param == "mutableCopy")
1684 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1685 else if (param == "new")
1686 family = ObjCMethodFamilyAttr::OMF_new;
1687 else {
1688 // Just warn and ignore it. This is future-proof against new
1689 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001690 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001691 return;
1692 }
1693
John McCallf85e1932011-06-15 23:02:42 +00001694 if (family == ObjCMethodFamilyAttr::OMF_init &&
1695 !method->getResultType()->isObjCObjectPointerType()) {
1696 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1697 << method->getResultType();
1698 // Ignore the attribute.
1699 return;
1700 }
1701
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001702 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001703 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001704}
1705
Chandler Carruth1b03c872011-07-02 00:01:44 +00001706static void handleObjCExceptionAttr(Sema &S, Decl *D,
1707 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001708 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001709 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001710
Chris Lattner0db29ec2009-02-14 08:09:34 +00001711 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1712 if (OCI == 0) {
1713 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1714 return;
1715 }
Mike Stumpbf916502009-07-24 19:02:52 +00001716
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001717 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001718}
1719
Chandler Carruth1b03c872011-07-02 00:01:44 +00001720static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001721 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001722 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001723 return;
1724 }
Richard Smith162e1c12011-04-15 14:24:37 +00001725 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001726 QualType T = TD->getUnderlyingType();
1727 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001728 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001729 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1730 return;
1731 }
1732 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001733 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001734}
1735
Mike Stumpbf916502009-07-24 19:02:52 +00001736static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001737handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001738 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001739 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001740 return;
1741 }
1742
1743 if (!isa<FunctionDecl>(D)) {
1744 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1745 return;
1746 }
1747
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001748 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001749}
1750
Chandler Carruth1b03c872011-07-02 00:01:44 +00001751static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001752 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001753 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001754 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001755 return;
1756 }
Mike Stumpbf916502009-07-24 19:02:52 +00001757
Steve Naroff9eae5762008-09-18 16:44:58 +00001758 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001759 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001760 return;
1761 }
Mike Stumpbf916502009-07-24 19:02:52 +00001762
Sean Huntcf807c42010-08-18 23:23:40 +00001763 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001764 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001765 type = BlocksAttr::ByRef;
1766 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001767 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001768 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001769 return;
1770 }
Mike Stumpbf916502009-07-24 19:02:52 +00001771
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001772 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001773}
1774
Chandler Carruth1b03c872011-07-02 00:01:44 +00001775static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001776 // check the attribute arguments.
1777 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001778 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001779 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001780 }
1781
John McCall3323fad2011-09-09 07:56:05 +00001782 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001783 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001784 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001785 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001786 if (E->isTypeDependent() || E->isValueDependent() ||
1787 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001788 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001789 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001790 return;
1791 }
Mike Stumpbf916502009-07-24 19:02:52 +00001792
John McCall3323fad2011-09-09 07:56:05 +00001793 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001794 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1795 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001796 return;
1797 }
John McCall3323fad2011-09-09 07:56:05 +00001798
1799 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001800 }
1801
John McCall3323fad2011-09-09 07:56:05 +00001802 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001803 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001804 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001805 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001806 if (E->isTypeDependent() || E->isValueDependent() ||
1807 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001808 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001809 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001810 return;
1811 }
1812 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001813
John McCall3323fad2011-09-09 07:56:05 +00001814 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001815 // FIXME: This error message could be improved, it would be nice
1816 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001817 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1818 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001819 return;
1820 }
1821 }
1822
Chandler Carruth87c44602011-07-01 23:49:12 +00001823 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001824 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001825 if (isa<FunctionNoProtoType>(FT)) {
1826 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1827 return;
1828 }
Mike Stumpbf916502009-07-24 19:02:52 +00001829
Chris Lattner897cd902009-03-17 23:03:47 +00001830 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001831 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001832 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001833 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001834 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001835 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001836 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001837 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001838 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001839 } else if (isa<BlockDecl>(D)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001840 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1841 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001842 ;
Chandler Carruth87c44602011-07-01 23:49:12 +00001843 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001844 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001845 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001846 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001847 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001848 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001849 int m = Ty->isFunctionPointerType() ? 0 : 1;
1850 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001851 return;
1852 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001853 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001854 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001855 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001856 return;
1857 }
Anders Carlsson77091822008-10-05 18:05:59 +00001858 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001859 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001860 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001861 return;
1862 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001863 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001864 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001865}
1866
Chandler Carruth1b03c872011-07-02 00:01:44 +00001867static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001868 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001869 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001870 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001871
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001872 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001873 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001874 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001875 return;
1876 }
Mike Stumpbf916502009-07-24 19:02:52 +00001877
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001878 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1879 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1880 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001881 return;
1882 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001883 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1884 if (MD->getResultType()->isVoidType()) {
1885 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1886 << Attr.getName() << 1;
1887 return;
1888 }
1889
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001890 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001891}
1892
Chandler Carruth1b03c872011-07-02 00:01:44 +00001893static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001894 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001895 if (Attr.hasParameterOrArguments()) {
1896 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001897 return;
1898 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001899
Chandler Carruth87c44602011-07-01 23:49:12 +00001900 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
1901 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1902 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001903 return;
1904 }
1905
Chandler Carruth87c44602011-07-01 23:49:12 +00001906 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001907
1908 // 'weak' only applies to declarations with external linkage.
1909 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001910 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001911 return;
1912 }
Mike Stumpbf916502009-07-24 19:02:52 +00001913
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001914 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001915}
1916
Chandler Carruth1b03c872011-07-02 00:01:44 +00001917static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001918 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001919 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001920 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001921
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001922
1923 // weak_import only applies to variable & function declarations.
1924 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001925 if (!D->canBeWeakImported(isDef)) {
1926 if (isDef)
1927 S.Diag(Attr.getLoc(),
1928 diag::warn_attribute_weak_import_invalid_on_definition)
1929 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001930 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001931 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Douglas Gregordef86312011-03-23 13:27:51 +00001932 isa<ObjCInterfaceDecl>(D))) {
1933 // Nothing to warn about here.
1934 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001935 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001936 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001937
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001938 return;
1939 }
1940
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001941 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001942}
1943
Chandler Carruth1b03c872011-07-02 00:01:44 +00001944static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1945 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001946 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001947 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00001948 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001949
1950 unsigned WGSize[3];
1951 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001952 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001953 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001954 if (E->isTypeDependent() || E->isValueDependent() ||
1955 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001956 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1957 << "reqd_work_group_size" << E->getSourceRange();
1958 return;
1959 }
1960 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1961 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001962 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00001963 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001964 WGSize[2]));
1965}
1966
Chandler Carruth1b03c872011-07-02 00:01:44 +00001967static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001968 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001969 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001970 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001971
1972 // Make sure that there is a string literal as the sections's single
1973 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001974 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001975 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001976 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001977 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001978 return;
1979 }
Mike Stump1eb44332009-09-09 15:08:12 +00001980
Chris Lattner797c3c42009-08-10 19:03:04 +00001981 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001982 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001983 if (!Error.empty()) {
1984 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1985 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001986 return;
1987 }
Mike Stump1eb44332009-09-09 15:08:12 +00001988
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001989 // This attribute cannot be applied to local variables.
1990 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1991 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1992 return;
1993 }
1994
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001995 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001996 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001997}
1998
Chris Lattner6b6b5372008-06-26 18:38:35 +00001999
Chandler Carruth1b03c872011-07-02 00:01:44 +00002000static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002001 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002002 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002003 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002004 return;
2005 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002006
Chandler Carruth87c44602011-07-01 23:49:12 +00002007 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002008 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002009 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002010 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002011 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002012 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002013}
2014
Chandler Carruth1b03c872011-07-02 00:01:44 +00002015static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002016 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002017 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002018 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002019 return;
2020 }
Mike Stumpbf916502009-07-24 19:02:52 +00002021
Chandler Carruth87c44602011-07-01 23:49:12 +00002022 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002023 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002024 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002025 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002026 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002027 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002028}
2029
Chandler Carruth1b03c872011-07-02 00:01:44 +00002030static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002031 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002032 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002033 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002034
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002035 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002036}
2037
Chandler Carruth1b03c872011-07-02 00:01:44 +00002038static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002039 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002040 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2041 return;
2042 }
Mike Stumpbf916502009-07-24 19:02:52 +00002043
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002044 if (Attr.getNumArgs() != 0) {
2045 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2046 return;
2047 }
Mike Stumpbf916502009-07-24 19:02:52 +00002048
Chandler Carruth87c44602011-07-01 23:49:12 +00002049 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002050
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002051 if (!VD || !VD->hasLocalStorage()) {
2052 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2053 return;
2054 }
Mike Stumpbf916502009-07-24 19:02:52 +00002055
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002056 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002057 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002058 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002059 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2060 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002061 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002062 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002063 Attr.getParameterName();
2064 return;
2065 }
Mike Stumpbf916502009-07-24 19:02:52 +00002066
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002067 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2068 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002069 S.Diag(Attr.getParameterLoc(),
2070 diag::err_attribute_cleanup_arg_not_function)
2071 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002072 return;
2073 }
2074
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002075 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002076 S.Diag(Attr.getParameterLoc(),
2077 diag::err_attribute_cleanup_func_must_take_one_arg)
2078 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002079 return;
2080 }
Mike Stumpbf916502009-07-24 19:02:52 +00002081
Anders Carlsson89941c12009-02-07 23:16:50 +00002082 // We're currently more strict than GCC about what function types we accept.
2083 // If this ever proves to be a problem it should be easy to fix.
2084 QualType Ty = S.Context.getPointerType(VD->getType());
2085 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002086 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2087 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002088 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002089 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2090 Attr.getParameterName() << ParamTy << Ty;
2091 return;
2092 }
Mike Stumpbf916502009-07-24 19:02:52 +00002093
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002094 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002095 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002096}
2097
Mike Stumpbf916502009-07-24 19:02:52 +00002098/// Handle __attribute__((format_arg((idx)))) attribute based on
2099/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002100static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002101 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002102 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002103
Chandler Carruth87c44602011-07-01 23:49:12 +00002104 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002105 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002106 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002107 return;
2108 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002109
2110 // In C++ the implicit 'this' function parameter also counts, and they are
2111 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002112 bool HasImplicitThisParam = isInstanceMethod(D);
2113 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002114 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002115
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002116 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002117 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002118 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002119 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2120 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002121 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2122 << "format" << 2 << IdxExpr->getSourceRange();
2123 return;
2124 }
Mike Stumpbf916502009-07-24 19:02:52 +00002125
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002126 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2127 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2128 << "format" << 2 << IdxExpr->getSourceRange();
2129 return;
2130 }
Mike Stumpbf916502009-07-24 19:02:52 +00002131
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002132 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002133
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002134 if (HasImplicitThisParam) {
2135 if (ArgIdx == 0) {
2136 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2137 << "format_arg" << IdxExpr->getSourceRange();
2138 return;
2139 }
2140 ArgIdx--;
2141 }
2142
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002143 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002144 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002145
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002146 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2147 if (not_nsstring_type &&
2148 !isCFStringType(Ty, S.Context) &&
2149 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002150 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002151 // FIXME: Should highlight the actual expression that has the wrong type.
2152 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002153 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002154 << IdxExpr->getSourceRange();
2155 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002156 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002157 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002158 if (!isNSStringType(Ty, S.Context) &&
2159 !isCFStringType(Ty, S.Context) &&
2160 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002161 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002162 // FIXME: Should highlight the actual expression that has the wrong type.
2163 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002164 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002165 << IdxExpr->getSourceRange();
2166 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002167 }
2168
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002169 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002170 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002171}
2172
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002173enum FormatAttrKind {
2174 CFStringFormat,
2175 NSStringFormat,
2176 StrftimeFormat,
2177 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002178 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002179 InvalidFormat
2180};
2181
2182/// getFormatAttrKind - Map from format attribute names to supported format
2183/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002184static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002185 // Check for formats that get handled specially.
2186 if (Format == "NSString")
2187 return NSStringFormat;
2188 if (Format == "CFString")
2189 return CFStringFormat;
2190 if (Format == "strftime")
2191 return StrftimeFormat;
2192
2193 // Otherwise, check for supported formats.
2194 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2195 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2196 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002197 Format == "zcmn_err" ||
2198 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002199 return SupportedFormat;
2200
Duncan Sandsbc525952010-03-23 14:44:19 +00002201 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2202 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002203 return IgnoredFormat;
2204
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002205 return InvalidFormat;
2206}
2207
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002208/// Handle __attribute__((init_priority(priority))) attributes based on
2209/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002210static void handleInitPriorityAttr(Sema &S, Decl *D,
2211 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002212 if (!S.getLangOptions().CPlusPlus) {
2213 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2214 return;
2215 }
2216
Chandler Carruth87c44602011-07-01 23:49:12 +00002217 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002218 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2219 Attr.setInvalid();
2220 return;
2221 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002222 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002223 if (S.Context.getAsArrayType(T))
2224 T = S.Context.getBaseElementType(T);
2225 if (!T->getAs<RecordType>()) {
2226 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2227 Attr.setInvalid();
2228 return;
2229 }
2230
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002231 if (Attr.getNumArgs() != 1) {
2232 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2233 Attr.setInvalid();
2234 return;
2235 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002236 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002237
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002238 llvm::APSInt priority(32);
2239 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2240 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2241 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2242 << "init_priority" << priorityExpr->getSourceRange();
2243 Attr.setInvalid();
2244 return;
2245 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002246 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002247 if (prioritynum < 101 || prioritynum > 65535) {
2248 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2249 << priorityExpr->getSourceRange();
2250 Attr.setInvalid();
2251 return;
2252 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002253 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002254 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002255}
2256
Mike Stumpbf916502009-07-24 19:02:52 +00002257/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2258/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002259static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002260
Chris Lattner545dd342008-06-28 23:36:30 +00002261 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002262 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002263 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002264 return;
2265 }
2266
Chris Lattner545dd342008-06-28 23:36:30 +00002267 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002268 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002269 return;
2270 }
2271
Chandler Carruth87c44602011-07-01 23:49:12 +00002272 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002273 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002274 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002275 return;
2276 }
2277
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002278 // In C++ the implicit 'this' function parameter also counts, and they are
2279 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002280 bool HasImplicitThisParam = isInstanceMethod(D);
2281 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002282 unsigned FirstIdx = 1;
2283
Chris Lattner5f9e2722011-07-23 10:55:15 +00002284 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002285
2286 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002287 if (Format.startswith("__") && Format.endswith("__"))
2288 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002289
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002290 // Check for supported formats.
2291 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002292
2293 if (Kind == IgnoredFormat)
2294 return;
2295
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002296 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002297 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002298 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002299 return;
2300 }
2301
2302 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002303 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002304 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002305 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2306 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002307 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002308 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002309 return;
2310 }
2311
2312 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002313 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002314 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002315 return;
2316 }
2317
2318 // FIXME: Do we need to bounds check?
2319 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002320
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002321 if (HasImplicitThisParam) {
2322 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002323 S.Diag(Attr.getLoc(),
2324 diag::err_format_attribute_implicit_this_format_string)
2325 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002326 return;
2327 }
2328 ArgIdx--;
2329 }
Mike Stump1eb44332009-09-09 15:08:12 +00002330
Chris Lattner6b6b5372008-06-26 18:38:35 +00002331 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002332 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002333
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002334 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002335 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002336 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2337 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002338 return;
2339 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002340 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002341 // FIXME: do we need to check if the type is NSString*? What are the
2342 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002343 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002344 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002345 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2346 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002347 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002348 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002349 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002350 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002351 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002352 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2353 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002354 return;
2355 }
2356
2357 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002358 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002359 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002360 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2361 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002362 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002363 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002364 return;
2365 }
2366
2367 // check if the function is variadic if the 3rd argument non-zero
2368 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002369 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002370 ++NumArgs; // +1 for ...
2371 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002372 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002373 return;
2374 }
2375 }
2376
Chris Lattner3c73c412008-11-19 08:23:25 +00002377 // strftime requires FirstArg to be 0 because it doesn't read from any
2378 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002379 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002380 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002381 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2382 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002383 return;
2384 }
2385 // if 0 it disables parameter checking (to use with e.g. va_list)
2386 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002387 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002388 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002389 return;
2390 }
2391
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002392 // Check whether we already have an equivalent format attribute.
2393 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002394 i = D->specific_attr_begin<FormatAttr>(),
2395 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002396 i != e ; ++i) {
2397 FormatAttr *f = *i;
2398 if (f->getType() == Format &&
2399 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2400 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2401 // If we don't have a valid location for this attribute, adopt the
2402 // location.
2403 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002404 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002405 return;
2406 }
2407 }
2408
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002409 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002410 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002411 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002412}
2413
Chandler Carruth1b03c872011-07-02 00:01:44 +00002414static void handleTransparentUnionAttr(Sema &S, Decl *D,
2415 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002416 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002417 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002418 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002419
Chris Lattner6b6b5372008-06-26 18:38:35 +00002420
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002421 // Try to find the underlying union declaration.
2422 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002423 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002424 if (TD && TD->getUnderlyingType()->isUnionType())
2425 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2426 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002427 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002428
2429 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002430 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002431 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002432 return;
2433 }
2434
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002435 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002436 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002437 diag::warn_transparent_union_attribute_not_definition);
2438 return;
2439 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002440
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002441 RecordDecl::field_iterator Field = RD->field_begin(),
2442 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002443 if (Field == FieldEnd) {
2444 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2445 return;
2446 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002447
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002448 FieldDecl *FirstField = *Field;
2449 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002450 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002451 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002452 diag::warn_transparent_union_attribute_floating)
2453 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002454 return;
2455 }
2456
2457 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2458 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2459 for (; Field != FieldEnd; ++Field) {
2460 QualType FieldType = Field->getType();
2461 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2462 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2463 // Warn if we drop the attribute.
2464 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002465 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002466 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002467 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002468 diag::warn_transparent_union_attribute_field_size_align)
2469 << isSize << Field->getDeclName() << FieldBits;
2470 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002471 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002472 diag::note_transparent_union_first_field_size_align)
2473 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002474 return;
2475 }
2476 }
2477
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002478 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002479}
2480
Chandler Carruth1b03c872011-07-02 00:01:44 +00002481static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002482 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002483 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002484 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002485
Peter Collingbourne7a730022010-11-23 20:45:58 +00002486 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002487 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002488
Chris Lattner6b6b5372008-06-26 18:38:35 +00002489 // Make sure that there is a string literal as the annotation's single
2490 // argument.
2491 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002492 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002493 return;
2494 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002495
2496 // Don't duplicate annotations that are already set.
2497 for (specific_attr_iterator<AnnotateAttr>
2498 i = D->specific_attr_begin<AnnotateAttr>(),
2499 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2500 if ((*i)->getAnnotation() == SE->getString())
2501 return;
2502 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002503 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002504 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002505}
2506
Chandler Carruth1b03c872011-07-02 00:01:44 +00002507static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002508 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002509 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002510 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002511 return;
2512 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002513
2514 //FIXME: The C++0x version of this attribute has more limited applicabilty
2515 // than GNU's, and should error out when it is used to specify a
2516 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002517
Chris Lattner545dd342008-06-28 23:36:30 +00002518 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002519 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002520 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002521 }
Mike Stumpbf916502009-07-24 19:02:52 +00002522
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002523 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002524}
2525
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002526void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002527 if (E->isTypeDependent() || E->isValueDependent()) {
2528 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002529 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002530 return;
2531 }
2532
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002533 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002534 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002535 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002536 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2537 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2538 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002539 return;
2540 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002541 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002542 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2543 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002544 return;
2545 }
2546
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002547 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Sean Huntcf807c42010-08-18 23:23:40 +00002548}
2549
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002550void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002551 // FIXME: Cache the number on the Attr object if non-dependent?
2552 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002553 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002554 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002555}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002556
Chandler Carruthd309c812011-07-01 23:49:16 +00002557/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002558/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002559///
Mike Stumpbf916502009-07-24 19:02:52 +00002560/// Despite what would be logical, the mode attribute is a decl attribute, not a
2561/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2562/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002563static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002564 // This attribute isn't documented, but glibc uses it. It changes
2565 // the width of an int or unsigned int to the specified size.
2566
2567 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002568 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002569 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002570
Chris Lattnerfbf13472008-06-27 22:18:37 +00002571
2572 IdentifierInfo *Name = Attr.getParameterName();
2573 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002574 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002575 return;
2576 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002577
Chris Lattner5f9e2722011-07-23 10:55:15 +00002578 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002579
2580 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002581 if (Str.startswith("__") && Str.endswith("__"))
2582 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002583
2584 unsigned DestWidth = 0;
2585 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002586 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002587 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002588 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002589 switch (Str[0]) {
2590 case 'Q': DestWidth = 8; break;
2591 case 'H': DestWidth = 16; break;
2592 case 'S': DestWidth = 32; break;
2593 case 'D': DestWidth = 64; break;
2594 case 'X': DestWidth = 96; break;
2595 case 'T': DestWidth = 128; break;
2596 }
2597 if (Str[1] == 'F') {
2598 IntegerMode = false;
2599 } else if (Str[1] == 'C') {
2600 IntegerMode = false;
2601 ComplexMode = true;
2602 } else if (Str[1] != 'I') {
2603 DestWidth = 0;
2604 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002605 break;
2606 case 4:
2607 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2608 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002609 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002610 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002611 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002612 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002613 break;
2614 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002615 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002616 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002617 break;
2618 }
2619
2620 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002621 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002622 OldTy = TD->getUnderlyingType();
2623 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2624 OldTy = VD->getType();
2625 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002626 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002627 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002628 return;
2629 }
Eli Friedman73397492009-03-03 06:41:03 +00002630
John McCall183700f2009-09-21 23:43:11 +00002631 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002632 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2633 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002634 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002635 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2636 } else if (ComplexMode) {
2637 if (!OldTy->isComplexType())
2638 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2639 } else {
2640 if (!OldTy->isFloatingType())
2641 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2642 }
2643
Mike Stump390b4cc2009-05-16 07:39:55 +00002644 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2645 // and friends, at least with glibc.
2646 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2647 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002648 // FIXME: Make sure floating-point mappings are accurate
2649 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002650 QualType NewTy;
2651 switch (DestWidth) {
2652 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002653 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002654 return;
2655 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002656 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002657 return;
2658 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002659 if (!IntegerMode) {
2660 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2661 return;
2662 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002663 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002664 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002665 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002666 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002667 break;
2668 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002669 if (!IntegerMode) {
2670 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2671 return;
2672 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002673 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002674 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002675 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002676 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002677 break;
2678 case 32:
2679 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002680 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002681 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002682 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002683 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002684 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002685 break;
2686 case 64:
2687 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002688 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002689 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002690 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002691 NewTy = S.Context.LongTy;
2692 else
2693 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002694 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002695 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002696 NewTy = S.Context.UnsignedLongTy;
2697 else
2698 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002699 break;
Eli Friedman73397492009-03-03 06:41:03 +00002700 case 96:
2701 NewTy = S.Context.LongDoubleTy;
2702 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002703 case 128:
2704 if (!IntegerMode) {
2705 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2706 return;
2707 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002708 if (OldTy->isSignedIntegerType())
2709 NewTy = S.Context.Int128Ty;
2710 else
2711 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002712 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002713 }
2714
Eli Friedman73397492009-03-03 06:41:03 +00002715 if (ComplexMode) {
2716 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002717 }
2718
2719 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002720 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002721 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002722 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002723 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002724 cast<ValueDecl>(D)->setType(NewTy);
2725}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002726
Chandler Carruth1b03c872011-07-02 00:01:44 +00002727static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002728 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002729 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002730 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002731
Chandler Carruth87c44602011-07-01 23:49:12 +00002732 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002733 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002734 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002735 return;
2736 }
Mike Stumpbf916502009-07-24 19:02:52 +00002737
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002738 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002739}
2740
Chandler Carruth1b03c872011-07-02 00:01:44 +00002741static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002742 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002743 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002744 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002745
Mike Stumpbf916502009-07-24 19:02:52 +00002746
Chandler Carruth87c44602011-07-01 23:49:12 +00002747 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002748 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002749 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002750 return;
2751 }
Mike Stumpbf916502009-07-24 19:02:52 +00002752
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002753 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002754}
2755
Chandler Carruth1b03c872011-07-02 00:01:44 +00002756static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2757 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002758 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002759 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002760 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002761
Chris Lattner7255a2d2010-06-22 00:03:40 +00002762
Chandler Carruth87c44602011-07-01 23:49:12 +00002763 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002764 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002765 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002766 return;
2767 }
2768
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002769 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002770 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002771}
2772
Chandler Carruth1b03c872011-07-02 00:01:44 +00002773static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002774 if (S.LangOpts.CUDA) {
2775 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002776 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002777 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2778 return;
2779 }
2780
Chandler Carruth87c44602011-07-01 23:49:12 +00002781 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002782 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002783 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002784 return;
2785 }
2786
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002787 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002788 } else {
2789 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2790 }
2791}
2792
Chandler Carruth1b03c872011-07-02 00:01:44 +00002793static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002794 if (S.LangOpts.CUDA) {
2795 // check the attribute arguments.
2796 if (Attr.getNumArgs() != 0) {
2797 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2798 return;
2799 }
2800
Chandler Carruth87c44602011-07-01 23:49:12 +00002801 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002802 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002803 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002804 return;
2805 }
2806
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002807 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002808 } else {
2809 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2810 }
2811}
2812
Chandler Carruth1b03c872011-07-02 00:01:44 +00002813static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002814 if (S.LangOpts.CUDA) {
2815 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002816 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002817 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002818
Chandler Carruth87c44602011-07-01 23:49:12 +00002819 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002820 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002821 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002822 return;
2823 }
2824
Chandler Carruth87c44602011-07-01 23:49:12 +00002825 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002826 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002827 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002828 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2829 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2830 << FD->getType()
2831 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2832 "void");
2833 } else {
2834 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2835 << FD->getType();
2836 }
2837 return;
2838 }
2839
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002840 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002841 } else {
2842 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2843 }
2844}
2845
Chandler Carruth1b03c872011-07-02 00:01:44 +00002846static void handleHostAttr(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;
Chandler Carruth1731e202011-07-11 23:30:35 +00002851
Peter Collingbourneced76712010-12-01 03:15:31 +00002852
Chandler Carruth87c44602011-07-01 23:49:12 +00002853 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002854 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002855 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002856 return;
2857 }
2858
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002859 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002860 } else {
2861 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2862 }
2863}
2864
Chandler Carruth1b03c872011-07-02 00:01:44 +00002865static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002866 if (S.LangOpts.CUDA) {
2867 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002868 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002869 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002870
Peter Collingbourneced76712010-12-01 03:15:31 +00002871
Chandler Carruth87c44602011-07-01 23:49:12 +00002872 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002873 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002874 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002875 return;
2876 }
2877
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002878 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002879 } else {
2880 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2881 }
2882}
2883
Chandler Carruth1b03c872011-07-02 00:01:44 +00002884static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002885 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002886 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002887 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002888
Chandler Carruth87c44602011-07-01 23:49:12 +00002889 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002890 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002891 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002892 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002893 return;
2894 }
Mike Stumpbf916502009-07-24 19:02:52 +00002895
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002896 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002897 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002898 return;
2899 }
Mike Stumpbf916502009-07-24 19:02:52 +00002900
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002901 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002902}
2903
Chandler Carruth1b03c872011-07-02 00:01:44 +00002904static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002905 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002906
Chandler Carruth87c44602011-07-01 23:49:12 +00002907 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002908 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2909 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002910 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002911 return;
2912
Chandler Carruth87c44602011-07-01 23:49:12 +00002913 if (!isa<ObjCMethodDecl>(D)) {
2914 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2915 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002916 return;
2917 }
2918
Chandler Carruth87c44602011-07-01 23:49:12 +00002919 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002920 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002921 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002922 return;
2923 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002924 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002925 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002926 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002927 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002928 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002929 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002930 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002931 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002932 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002933 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002934 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002935 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002936 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002937 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002938 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002939 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002940 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002941 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002942 return;
2943 }
2944
Chris Lattner5f9e2722011-07-23 10:55:15 +00002945 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002946 PcsAttr::PCSType PCS;
2947 if (StrRef == "aapcs")
2948 PCS = PcsAttr::AAPCS;
2949 else if (StrRef == "aapcs-vfp")
2950 PCS = PcsAttr::AAPCS_VFP;
2951 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002952 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2953 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002954 return;
2955 }
2956
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002957 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002958 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002959 default:
2960 llvm_unreachable("unexpected attribute kind");
2961 return;
2962 }
2963}
2964
Chandler Carruth1b03c872011-07-02 00:01:44 +00002965static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002966 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002967 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00002968}
2969
John McCall711c52b2011-01-05 12:14:39 +00002970bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2971 if (attr.isInvalid())
2972 return true;
2973
Ted Kremenek831efae2011-04-15 05:49:29 +00002974 if ((attr.getNumArgs() != 0 &&
2975 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
2976 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00002977 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2978 attr.setInvalid();
2979 return true;
2980 }
2981
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002982 // TODO: diagnose uses of these conventions on the wrong target. Or, better
2983 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00002984 switch (attr.getKind()) {
2985 case AttributeList::AT_cdecl: CC = CC_C; break;
2986 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2987 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2988 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2989 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002990 case AttributeList::AT_pcs: {
2991 Expr *Arg = attr.getArg(0);
2992 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002993 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002994 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
2995 << "pcs" << 1;
2996 attr.setInvalid();
2997 return true;
2998 }
2999
Chris Lattner5f9e2722011-07-23 10:55:15 +00003000 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003001 if (StrRef == "aapcs") {
3002 CC = CC_AAPCS;
3003 break;
3004 } else if (StrRef == "aapcs-vfp") {
3005 CC = CC_AAPCS_VFP;
3006 break;
3007 }
3008 // FALLS THROUGH
3009 }
John McCall711c52b2011-01-05 12:14:39 +00003010 default: llvm_unreachable("unexpected attribute kind"); return true;
3011 }
3012
3013 return false;
3014}
3015
Chandler Carruth1b03c872011-07-02 00:01:44 +00003016static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003017 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003018
3019 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003020 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003021 return;
3022
Chandler Carruth87c44602011-07-01 23:49:12 +00003023 if (!isa<ObjCMethodDecl>(D)) {
3024 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3025 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003026 return;
3027 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003028
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003029 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003030}
3031
3032/// Checks a regparm attribute, returning true if it is ill-formed and
3033/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003034bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3035 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003036 return true;
3037
Chandler Carruth87c44602011-07-01 23:49:12 +00003038 if (Attr.getNumArgs() != 1) {
3039 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3040 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003041 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003042 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003043
Chandler Carruth87c44602011-07-01 23:49:12 +00003044 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003045 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003046 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003047 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003048 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003049 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003050 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003051 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003052 }
3053
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003054 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003055 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003056 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003057 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003058 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003059 }
3060
John McCall711c52b2011-01-05 12:14:39 +00003061 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003062 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003063 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003064 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003065 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003066 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003067 }
3068
John McCall711c52b2011-01-05 12:14:39 +00003069 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003070}
3071
Chandler Carruth1b03c872011-07-02 00:01:44 +00003072static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003073 if (S.LangOpts.CUDA) {
3074 // check the attribute arguments.
3075 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003076 // FIXME: 0 is not okay.
3077 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003078 return;
3079 }
3080
Chandler Carruth87c44602011-07-01 23:49:12 +00003081 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003082 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003083 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003084 return;
3085 }
3086
3087 Expr *MaxThreadsExpr = Attr.getArg(0);
3088 llvm::APSInt MaxThreads(32);
3089 if (MaxThreadsExpr->isTypeDependent() ||
3090 MaxThreadsExpr->isValueDependent() ||
3091 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3092 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3093 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3094 return;
3095 }
3096
3097 llvm::APSInt MinBlocks(32);
3098 if (Attr.getNumArgs() > 1) {
3099 Expr *MinBlocksExpr = Attr.getArg(1);
3100 if (MinBlocksExpr->isTypeDependent() ||
3101 MinBlocksExpr->isValueDependent() ||
3102 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3103 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3104 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3105 return;
3106 }
3107 }
3108
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003109 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003110 MaxThreads.getZExtValue(),
3111 MinBlocks.getZExtValue()));
3112 } else {
3113 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3114 }
3115}
3116
Chris Lattner0744e5f2008-06-29 00:23:49 +00003117//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003118// Checker-specific attribute handlers.
3119//===----------------------------------------------------------------------===//
3120
John McCallc7ad3812011-01-25 03:31:58 +00003121static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3122 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
3123}
3124static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3125 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
3126}
3127
Chandler Carruth1b03c872011-07-02 00:01:44 +00003128static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003129 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003130 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003131 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003132 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003133 return;
3134 }
3135
3136 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003137 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003138 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3139 cf = false;
3140 } else {
3141 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3142 cf = true;
3143 }
3144
3145 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003146 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003147 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003148 return;
3149 }
3150
3151 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003152 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003153 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003154 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003155}
3156
Chandler Carruth1b03c872011-07-02 00:01:44 +00003157static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3158 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003159 if (!isa<ObjCMethodDecl>(D)) {
3160 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003161 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003162 return;
3163 }
3164
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003165 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003166}
3167
Chandler Carruth1b03c872011-07-02 00:01:44 +00003168static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3169 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003170
John McCallc7ad3812011-01-25 03:31:58 +00003171 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003172
Chandler Carruth87c44602011-07-01 23:49:12 +00003173 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003174 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003175 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003176 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003177 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3178 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003179 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003180 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003181 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003182 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003183 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003184 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003185 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003186 return;
3187 }
Mike Stumpbf916502009-07-24 19:02:52 +00003188
John McCallc7ad3812011-01-25 03:31:58 +00003189 bool typeOK;
3190 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003191 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003192 default: llvm_unreachable("invalid ownership attribute"); return;
3193 case AttributeList::AT_ns_returns_autoreleased:
3194 case AttributeList::AT_ns_returns_retained:
3195 case AttributeList::AT_ns_returns_not_retained:
3196 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3197 cf = false;
3198 break;
3199
3200 case AttributeList::AT_cf_returns_retained:
3201 case AttributeList::AT_cf_returns_not_retained:
3202 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3203 cf = true;
3204 break;
3205 }
3206
3207 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003208 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003209 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003210 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003211 }
Mike Stumpbf916502009-07-24 19:02:52 +00003212
Chandler Carruth87c44602011-07-01 23:49:12 +00003213 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003214 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00003215 llvm_unreachable("invalid ownership attribute");
John McCallc7ad3812011-01-25 03:31:58 +00003216 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003217 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003218 S.Context));
3219 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003220 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003221 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003222 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003223 return;
3224 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003225 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003226 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003227 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003228 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003229 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003230 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003231 return;
3232 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003233 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003234 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003235 return;
3236 };
3237}
3238
John McCalldc7c5ad2011-07-22 08:53:00 +00003239static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3240 const AttributeList &attr) {
3241 SourceLocation loc = attr.getLoc();
3242
3243 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3244
3245 if (!isa<ObjCMethodDecl>(method)) {
3246 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3247 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3248 return;
3249 }
3250
3251 // Check that the method returns a normal pointer.
3252 QualType resultType = method->getResultType();
Fariborz Jahanianf2e59452011-09-30 20:50:23 +00003253
3254 if (!resultType->isReferenceType() &&
3255 (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
John McCalldc7c5ad2011-07-22 08:53:00 +00003256 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3257 << SourceRange(loc)
3258 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3259
3260 // Drop the attribute.
3261 return;
3262 }
3263
3264 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003265 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003266}
3267
John McCall8dfac0b2011-09-30 05:12:12 +00003268/// Handle cf_audited_transfer and cf_unknown_transfer.
3269static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) {
3270 if (!isa<FunctionDecl>(D)) {
3271 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3272 << A.getRange() << A.getName() << 0 /*function*/;
3273 return;
3274 }
3275
3276 bool IsAudited = (A.getKind() == AttributeList::AT_cf_audited_transfer);
3277
3278 // Check whether there's a conflicting attribute already present.
3279 Attr *Existing;
3280 if (IsAudited) {
3281 Existing = D->getAttr<CFUnknownTransferAttr>();
3282 } else {
3283 Existing = D->getAttr<CFAuditedTransferAttr>();
3284 }
3285 if (Existing) {
3286 S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible)
3287 << A.getName()
3288 << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer")
3289 << A.getRange() << Existing->getRange();
3290 return;
3291 }
3292
3293 // All clear; add the attribute.
3294 if (IsAudited) {
3295 D->addAttr(
3296 ::new (S.Context) CFAuditedTransferAttr(A.getRange(), S.Context));
3297 } else {
3298 D->addAttr(
3299 ::new (S.Context) CFUnknownTransferAttr(A.getRange(), S.Context));
3300 }
3301}
3302
John McCallfe98da02011-09-29 07:17:38 +00003303static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D,
3304 const AttributeList &Attr) {
3305 RecordDecl *RD = dyn_cast<RecordDecl>(D);
3306 if (!RD || RD->isUnion()) {
3307 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3308 << Attr.getRange() << Attr.getName() << 14 /*struct */;
3309 }
3310
3311 IdentifierInfo *ParmName = Attr.getParameterName();
3312
3313 // In Objective-C, verify that the type names an Objective-C type.
3314 // We don't want to check this outside of ObjC because people sometimes
3315 // do crazy C declarations of Objective-C types.
3316 if (ParmName && S.getLangOptions().ObjC1) {
3317 // Check for an existing type with this name.
3318 LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(),
3319 Sema::LookupOrdinaryName);
3320 if (S.LookupName(R, Sc)) {
3321 NamedDecl *Target = R.getFoundDecl();
3322 if (Target && !isa<ObjCInterfaceDecl>(Target)) {
3323 S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface);
3324 S.Diag(Target->getLocStart(), diag::note_declared_at);
3325 }
3326 }
3327 }
3328
3329 D->addAttr(::new (S.Context) NSBridgedAttr(Attr.getRange(), S.Context,
3330 ParmName));
3331}
3332
Chandler Carruth1b03c872011-07-02 00:01:44 +00003333static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3334 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003335 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003336
Chandler Carruth87c44602011-07-01 23:49:12 +00003337 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003338 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003339}
3340
Chandler Carruth1b03c872011-07-02 00:01:44 +00003341static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3342 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003343 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003344 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003345 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003346 return;
3347 }
3348
Chandler Carruth87c44602011-07-01 23:49:12 +00003349 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003350 QualType type = vd->getType();
3351
3352 if (!type->isDependentType() &&
3353 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003354 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003355 << type;
3356 return;
3357 }
3358
3359 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3360
3361 // If we have no lifetime yet, check the lifetime we're presumably
3362 // going to infer.
3363 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3364 lifetime = type->getObjCARCImplicitLifetime();
3365
3366 switch (lifetime) {
3367 case Qualifiers::OCL_None:
3368 assert(type->isDependentType() &&
3369 "didn't infer lifetime for non-dependent type?");
3370 break;
3371
3372 case Qualifiers::OCL_Weak: // meaningful
3373 case Qualifiers::OCL_Strong: // meaningful
3374 break;
3375
3376 case Qualifiers::OCL_ExplicitNone:
3377 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003378 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003379 << (lifetime == Qualifiers::OCL_Autoreleasing);
3380 break;
3381 }
3382
Chandler Carruth87c44602011-07-01 23:49:12 +00003383 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003384 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003385}
3386
Charles Davisf0122fe2010-02-16 18:27:26 +00003387static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3388 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003389 Attr.getKind() == AttributeList::AT_dllexport ||
3390 Attr.getKind() == AttributeList::AT_uuid;
3391}
3392
3393//===----------------------------------------------------------------------===//
3394// Microsoft specific attribute handlers.
3395//===----------------------------------------------------------------------===//
3396
Chandler Carruth1b03c872011-07-02 00:01:44 +00003397static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet62ec1f22011-09-17 17:15:52 +00003398 if (S.LangOpts.MicrosoftExt || S.LangOpts.Borland) {
Francois Pichet11542142010-12-19 06:50:37 +00003399 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003400 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003401 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003402
Francois Pichet11542142010-12-19 06:50:37 +00003403 Expr *Arg = Attr.getArg(0);
3404 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003405 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003406 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3407 << "uuid" << 1;
3408 return;
3409 }
3410
Chris Lattner5f9e2722011-07-23 10:55:15 +00003411 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003412
3413 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3414 StrRef.back() == '}';
3415
3416 // Validate GUID length.
3417 if (IsCurly && StrRef.size() != 38) {
3418 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3419 return;
3420 }
3421 if (!IsCurly && StrRef.size() != 36) {
3422 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3423 return;
3424 }
3425
3426 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3427 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003428 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003429 if (IsCurly) // Skip the optional '{'
3430 ++I;
3431
3432 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003433 if (i == 8 || i == 13 || i == 18 || i == 23) {
3434 if (*I != '-') {
3435 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3436 return;
3437 }
3438 } else if (!isxdigit(*I)) {
3439 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3440 return;
3441 }
3442 I++;
3443 }
Francois Pichet11542142010-12-19 06:50:37 +00003444
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003445 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003446 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003447 } else
Francois Pichet11542142010-12-19 06:50:37 +00003448 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003449}
3450
Ted Kremenekb71368d2009-05-09 02:44:38 +00003451//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003452// Top Level Sema Entry Points
3453//===----------------------------------------------------------------------===//
3454
Chandler Carruth1b03c872011-07-02 00:01:44 +00003455static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3456 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003457 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003458 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3459 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3460 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003461 default:
3462 break;
3463 }
3464}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003465
Chandler Carruth1b03c872011-07-02 00:01:44 +00003466static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3467 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003468 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003469 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3470 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003471 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003472 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003473 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003474 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003475 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003476 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003477 case AttributeList::AT_neon_vector_type:
3478 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003479 // Ignore these, these are type attributes, handled by
3480 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003481 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003482 case AttributeList::AT_device:
3483 case AttributeList::AT_host:
3484 case AttributeList::AT_overloadable:
3485 // Ignore, this is a non-inheritable attribute, handled
3486 // by ProcessNonInheritableDeclAttr.
3487 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003488 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3489 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003490 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003491 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003492 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003493 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3494 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3495 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003496 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003497 handleDependencyAttr (S, D, Attr); break;
3498 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3499 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3500 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3501 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3502 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003503 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003504 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003505 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003506 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3507 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3508 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3509 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003510 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003511 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003512 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003513 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3514 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3515 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3516 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3517 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003518 case AttributeList::AT_ownership_returns:
3519 case AttributeList::AT_ownership_takes:
3520 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003521 handleOwnershipAttr (S, D, Attr); break;
3522 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3523 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3524 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3525 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3526 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003527
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003528 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003529 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003530 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003531 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003532
John McCalldc7c5ad2011-07-22 08:53:00 +00003533 case AttributeList::AT_objc_returns_inner_pointer:
3534 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3535
John McCallfe98da02011-09-29 07:17:38 +00003536 case AttributeList::AT_ns_bridged:
3537 handleNSBridgedAttr(S, scope, D, Attr); break;
3538
John McCall8dfac0b2011-09-30 05:12:12 +00003539 case AttributeList::AT_cf_audited_transfer:
3540 case AttributeList::AT_cf_unknown_transfer:
3541 handleCFTransferAttr(S, D, Attr); break;
3542
Ted Kremenekb71368d2009-05-09 02:44:38 +00003543 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003544 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003545 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003546 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003547 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003548
3549 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003550 case AttributeList::AT_ns_returns_not_retained:
3551 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003552 case AttributeList::AT_ns_returns_retained:
3553 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003554 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003555
Nate Begeman6f3d8382009-06-26 06:32:41 +00003556 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003557 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003558
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003559 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003560 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003561
Chandler Carruth1b03c872011-07-02 00:01:44 +00003562 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3563 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3564 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3565 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003566 case AttributeList::AT_arc_weakref_unavailable:
3567 handleArcWeakrefUnavailableAttr (S, D, Attr);
3568 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003569 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
3570 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3571 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3572 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003573 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003574 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3575 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3576 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003577 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003578 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003579 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003580 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003581 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003582 break;
John McCalld5313b02011-03-02 11:33:24 +00003583 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003584 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003585 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003586 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3587 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3588 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3589 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3590 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3591 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3592 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3593 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3594 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003595 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003596 // Just ignore
3597 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003598 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003600 break;
John McCall04a67a62010-02-05 21:31:56 +00003601 case AttributeList::AT_stdcall:
3602 case AttributeList::AT_cdecl:
3603 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003604 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003605 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003606 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003607 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003608 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003609 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003610 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003611 break;
Francois Pichet11542142010-12-19 06:50:37 +00003612 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003613 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003614 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003615
3616 // Thread safety attributes:
3617 case AttributeList::AT_guarded_var:
3618 handleGuardedVarAttr(S, D, Attr);
3619 break;
3620 case AttributeList::AT_pt_guarded_var:
3621 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3622 break;
3623 case AttributeList::AT_scoped_lockable:
3624 handleLockableAttr(S, D, Attr, /*scoped = */true);
3625 break;
3626 case AttributeList::AT_no_thread_safety_analysis:
3627 handleNoThreadSafetyAttr(S, D, Attr);
3628 break;
3629 case AttributeList::AT_lockable:
3630 handleLockableAttr(S, D, Attr);
3631 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003632 case AttributeList::AT_guarded_by:
3633 handleGuardedByAttr(S, D, Attr);
3634 break;
3635 case AttributeList::AT_pt_guarded_by:
3636 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3637 break;
3638 case AttributeList::AT_exclusive_lock_function:
3639 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3640 break;
3641 case AttributeList::AT_exclusive_locks_required:
3642 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3643 break;
3644 case AttributeList::AT_exclusive_trylock_function:
3645 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3646 break;
3647 case AttributeList::AT_lock_returned:
3648 handleLockReturnedAttr(S, D, Attr);
3649 break;
3650 case AttributeList::AT_locks_excluded:
3651 handleLocksExcludedAttr(S, D, Attr);
3652 break;
3653 case AttributeList::AT_shared_lock_function:
3654 handleLockFunAttr(S, D, Attr);
3655 break;
3656 case AttributeList::AT_shared_locks_required:
3657 handleLocksRequiredAttr(S, D, Attr);
3658 break;
3659 case AttributeList::AT_shared_trylock_function:
3660 handleTrylockFunAttr(S, D, Attr);
3661 break;
3662 case AttributeList::AT_unlock_function:
3663 handleUnlockFunAttr(S, D, Attr);
3664 break;
3665 case AttributeList::AT_acquired_before:
3666 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3667 break;
3668 case AttributeList::AT_acquired_after:
3669 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3670 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003671
Chris Lattner803d0802008-06-29 00:43:07 +00003672 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003673 // Ask target about the attribute.
3674 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3675 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003676 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3677 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003678 break;
3679 }
3680}
3681
Peter Collingbourne60700392011-01-21 02:08:45 +00003682/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3683/// the attribute applies to decls. If the attribute is a type attribute, just
3684/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3685/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003686static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3687 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003688 bool NonInheritable, bool Inheritable) {
3689 if (Attr.isInvalid())
3690 return;
3691
3692 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3693 // FIXME: Try to deal with other __declspec attributes!
3694 return;
3695
3696 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003697 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003698
3699 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003700 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003701}
3702
Chris Lattner803d0802008-06-29 00:43:07 +00003703/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3704/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003705void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003706 const AttributeList *AttrList,
3707 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003708 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003709 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003710 }
3711
3712 // GCC accepts
3713 // static int a9 __attribute__((weakref));
3714 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003715 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003716 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003717 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003718 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003719 }
3720}
3721
John McCalle82247a2011-10-01 05:17:03 +00003722/// checkUnusedDeclAttributes - Check a list of attributes to see if it
3723/// contains any decl attributes that we should warn about.
3724static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) {
3725 for ( ; A; A = A->getNext()) {
3726 // Only warn if the attribute is an unignored, non-type attribute.
3727 if (A->isUsedAsTypeAttr()) continue;
3728 if (A->getKind() == AttributeList::IgnoredAttribute) continue;
3729
3730 if (A->getKind() == AttributeList::UnknownAttribute) {
3731 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored)
3732 << A->getName() << A->getRange();
3733 } else {
3734 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl)
3735 << A->getName() << A->getRange();
3736 }
3737 }
3738}
3739
3740/// checkUnusedDeclAttributes - Given a declarator which is not being
3741/// used to build a declaration, complain about any decl attributes
3742/// which might be lying around on it.
3743void Sema::checkUnusedDeclAttributes(Declarator &D) {
3744 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList());
3745 ::checkUnusedDeclAttributes(*this, D.getAttributes());
3746 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
3747 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
3748}
3749
Ryan Flynne25ff832009-07-30 03:15:39 +00003750/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3751/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003752NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3753 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003754 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003755 NamedDecl *NewD = 0;
3756 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003757 FunctionDecl *NewFD;
3758 // FIXME: Missing call to CheckFunctionDeclaration().
3759 // FIXME: Mangling?
3760 // FIXME: Is the qualifier info correct?
3761 // FIXME: Is the DeclContext correct?
3762 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3763 Loc, Loc, DeclarationName(II),
3764 FD->getType(), FD->getTypeSourceInfo(),
3765 SC_None, SC_None,
3766 false/*isInlineSpecified*/,
3767 FD->hasPrototype(),
3768 false/*isConstexprSpecified*/);
3769 NewD = NewFD;
3770
3771 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003772 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003773
3774 // Fake up parameter variables; they are declared as if this were
3775 // a typedef.
3776 QualType FDTy = FD->getType();
3777 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3778 SmallVector<ParmVarDecl*, 16> Params;
3779 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3780 AE = FT->arg_type_end(); AI != AE; ++AI) {
3781 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3782 Param->setScopeInfo(0, Params.size());
3783 Params.push_back(Param);
3784 }
David Blaikie4278c652011-09-21 18:16:56 +00003785 NewFD->setParams(Params);
John McCallb6217662010-03-15 10:12:16 +00003786 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003787 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3788 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003789 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003790 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003791 VD->getStorageClass(),
3792 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003793 if (VD->getQualifier()) {
3794 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003795 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003796 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003797 }
3798 return NewD;
3799}
3800
3801/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3802/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003803void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003804 if (W.getUsed()) return; // only do this once
3805 W.setUsed(true);
3806 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3807 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003808 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003809 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3810 NDId->getName()));
3811 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003812 WeakTopLevelDecl.push_back(NewD);
3813 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3814 // to insert Decl at TU scope, sorry.
3815 DeclContext *SavedContext = CurContext;
3816 CurContext = Context.getTranslationUnitDecl();
3817 PushOnScopeChains(NewD, S);
3818 CurContext = SavedContext;
3819 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003820 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003821 }
3822}
3823
Chris Lattner0744e5f2008-06-29 00:23:49 +00003824/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3825/// it, apply them to D. This is a bit tricky because PD can have attributes
3826/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003827void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3828 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003829 // It's valid to "forward-declare" #pragma weak, in which case we
3830 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003831 if (Inheritable) {
3832 LoadExternalWeakUndeclaredIdentifiers();
3833 if (!WeakUndeclaredIdentifiers.empty()) {
3834 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3835 if (IdentifierInfo *Id = ND->getIdentifier()) {
3836 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3837 = WeakUndeclaredIdentifiers.find(Id);
3838 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3839 WeakInfo W = I->second;
3840 DeclApplyPragmaWeak(S, ND, W);
3841 WeakUndeclaredIdentifiers[Id] = W;
3842 }
John McCalld4aff0e2010-10-27 00:59:00 +00003843 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003844 }
3845 }
3846 }
3847
Chris Lattner0744e5f2008-06-29 00:23:49 +00003848 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003849 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003850 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003851
Chris Lattner0744e5f2008-06-29 00:23:49 +00003852 // Walk the declarator structure, applying decl attributes that were in a type
3853 // position to the decl itself. This handles cases like:
3854 // int *__attr__(x)** D;
3855 // when X is a decl attribute.
3856 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3857 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003858 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003859
Chris Lattner0744e5f2008-06-29 00:23:49 +00003860 // Finally, apply any attributes on the decl itself.
3861 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003862 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003863}
John McCall54abf7d2009-11-04 02:18:39 +00003864
John McCallf85e1932011-06-15 23:02:42 +00003865/// Is the given declaration allowed to use a forbidden type?
3866static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3867 // Private ivars are always okay. Unfortunately, people don't
3868 // always properly make their ivars private, even in system headers.
3869 // Plus we need to make fields okay, too.
Fariborz Jahaniana6b33802011-09-26 21:23:35 +00003870 // Function declarations in sys headers will be marked unavailable.
3871 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) &&
3872 !isa<FunctionDecl>(decl))
John McCallf85e1932011-06-15 23:02:42 +00003873 return false;
3874
3875 // Require it to be declared in a system header.
3876 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3877}
3878
3879/// Handle a delayed forbidden-type diagnostic.
3880static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3881 Decl *decl) {
3882 if (decl && isForbiddenTypeAllowed(S, decl)) {
3883 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3884 "this system declaration uses an unsupported type"));
3885 return;
3886 }
3887
3888 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3889 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3890 diag.Triggered = true;
3891}
3892
John McCalleee1d542011-02-14 07:13:47 +00003893// This duplicates a vector push_back but hides the need to know the
3894// size of the type.
3895void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3896 assert(StackSize <= StackCapacity);
3897
3898 // Grow the stack if necessary.
3899 if (StackSize == StackCapacity) {
3900 unsigned newCapacity = 2 * StackCapacity + 2;
3901 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3902 const char *oldBuffer = (const char*) Stack;
3903
3904 if (StackCapacity)
3905 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3906
3907 delete[] oldBuffer;
3908 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3909 StackCapacity = newCapacity;
3910 }
3911
3912 assert(StackSize < StackCapacity);
3913 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003914}
3915
John McCalleee1d542011-02-14 07:13:47 +00003916void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3917 Decl *decl) {
3918 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003919
John McCalleee1d542011-02-14 07:13:47 +00003920 // Check the invariants.
3921 assert(DD.StackSize >= state.SavedStackSize);
3922 assert(state.SavedStackSize >= DD.ActiveStackBase);
3923 assert(DD.ParsingDepth > 0);
3924
3925 // Drop the parsing depth.
3926 DD.ParsingDepth--;
3927
3928 // If there are no active diagnostics, we're done.
3929 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003930 return;
3931
John McCall2f514482010-01-27 03:50:35 +00003932 // We only want to actually emit delayed diagnostics when we
3933 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00003934 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00003935 // We emit all the active diagnostics, not just those starting
3936 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003937 // decl spec and another for each declarator; in a decl group like:
3938 // deprecated_typedef foo, *bar, baz();
3939 // only the declarator pops will be passed decls. This is correct;
3940 // we really do need to consider delayed diagnostics from the decl spec
3941 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003942 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3943 DelayedDiagnostic &diag = DD.Stack[i];
3944 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003945 continue;
3946
John McCalleee1d542011-02-14 07:13:47 +00003947 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003948 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003949 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003950 break;
3951
3952 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003953 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003954 break;
John McCallf85e1932011-06-15 23:02:42 +00003955
3956 case DelayedDiagnostic::ForbiddenType:
3957 handleDelayedForbiddenType(S, diag, decl);
3958 break;
John McCall2f514482010-01-27 03:50:35 +00003959 }
3960 }
3961 }
3962
John McCall58e6f342010-03-16 05:22:47 +00003963 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003964 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00003965 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00003966
John McCalleee1d542011-02-14 07:13:47 +00003967 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003968}
3969
3970static bool isDeclDeprecated(Decl *D) {
3971 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003972 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00003973 return true;
3974 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3975 return false;
3976}
3977
John McCall9c3087b2010-08-26 02:13:20 +00003978void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003979 Decl *Ctx) {
3980 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003981 return;
3982
John McCall2f514482010-01-27 03:50:35 +00003983 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003984 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003985 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003986 << DD.getDeprecationDecl()->getDeclName()
3987 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003988 else
3989 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003990 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003991}
3992
Chris Lattner5f9e2722011-07-23 10:55:15 +00003993void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003994 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003995 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003996 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003997 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3998 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003999 return;
4000 }
4001
4002 // Otherwise, don't warn if our current context is deprecated.
4003 if (isDeclDeprecated(cast<Decl>(CurContext)))
4004 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00004005 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00004006 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
4007 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004008 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00004009 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004010 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004011 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004012 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00004013 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
4014 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00004015 }
John McCall54abf7d2009-11-04 02:18:39 +00004016}