blob: f987a5d5942ffdb925a30c2650548af86bff541f [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"
Chris Lattner797c3c42009-08-10 19:03:04 +000025#include "llvm/ADT/StringExtras.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000026using namespace clang;
John McCall9c3087b2010-08-26 02:13:20 +000027using namespace sema;
Chris Lattner6b6b5372008-06-26 18:38:35 +000028
John McCall883cc2c2011-03-02 12:29:23 +000029/// These constants match the enumerated choices of
30/// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +000031enum AttributeDeclKind {
John McCall883cc2c2011-03-02 12:29:23 +000032 ExpectedFunction,
33 ExpectedUnion,
34 ExpectedVariableOrFunction,
35 ExpectedFunctionOrMethod,
36 ExpectedParameter,
37 ExpectedParameterOrMethod,
38 ExpectedFunctionMethodOrBlock,
39 ExpectedClassOrVirtualMethod,
40 ExpectedFunctionMethodOrParameter,
41 ExpectedClass,
42 ExpectedVirtualMethod,
43 ExpectedClassMember,
44 ExpectedVariable,
45 ExpectedMethod,
Caitlin Sadowskidb33e142011-07-28 20:12:35 +000046 ExpectedVariableFunctionOrLabel,
47 ExpectedFieldOrGlobalVar
John McCall883cc2c2011-03-02 12:29:23 +000048};
49
Chris Lattnere5c5ee12008-06-29 00:16:31 +000050//===----------------------------------------------------------------------===//
51// Helper functions
52//===----------------------------------------------------------------------===//
53
Chandler Carruth87c44602011-07-01 23:49:12 +000054static const FunctionType *getFunctionType(const Decl *D,
Ted Kremeneka18d7d82009-08-14 20:49:40 +000055 bool blocksToo = true) {
Chris Lattner6b6b5372008-06-26 18:38:35 +000056 QualType Ty;
Chandler Carruth87c44602011-07-01 23:49:12 +000057 if (const ValueDecl *decl = dyn_cast<ValueDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000058 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000059 else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000060 Ty = decl->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +000061 else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D))
Chris Lattner6b6b5372008-06-26 18:38:35 +000062 Ty = decl->getUnderlyingType();
63 else
64 return 0;
Mike Stumpbf916502009-07-24 19:02:52 +000065
Chris Lattner6b6b5372008-06-26 18:38:35 +000066 if (Ty->isFunctionPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000067 Ty = Ty->getAs<PointerType>()->getPointeeType();
Fariborz Jahanian755f9d22009-05-18 17:39:25 +000068 else if (blocksToo && Ty->isBlockPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +000069 Ty = Ty->getAs<BlockPointerType>()->getPointeeType();
Daniel Dunbard3f2c102008-10-19 02:04:16 +000070
John McCall183700f2009-09-21 23:43:11 +000071 return Ty->getAs<FunctionType>();
Chris Lattner6b6b5372008-06-26 18:38:35 +000072}
73
Daniel Dunbar35682492008-09-26 04:12:28 +000074// FIXME: We should provide an abstraction around a method or function
75// to provide the following bits of information.
76
Nuno Lopesd20254f2009-12-20 23:11:08 +000077/// isFunction - Return true if the given decl has function
Ted Kremeneka18d7d82009-08-14 20:49:40 +000078/// type (function or function-typed variable).
Chandler Carruth87c44602011-07-01 23:49:12 +000079static bool isFunction(const Decl *D) {
80 return getFunctionType(D, false) != NULL;
Ted Kremeneka18d7d82009-08-14 20:49:40 +000081}
82
83/// isFunctionOrMethod - Return true if the given decl has function
Daniel Dunbard3f2c102008-10-19 02:04:16 +000084/// type (function or function-typed variable) or an Objective-C
85/// method.
Chandler Carruth87c44602011-07-01 23:49:12 +000086static bool isFunctionOrMethod(const Decl *D) {
87 return isFunction(D)|| isa<ObjCMethodDecl>(D);
Daniel Dunbar35682492008-09-26 04:12:28 +000088}
89
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000090/// isFunctionOrMethodOrBlock - Return true if the given decl has function
91/// type (function or function-typed variable) or an Objective-C
92/// method or a block.
Chandler Carruth87c44602011-07-01 23:49:12 +000093static bool isFunctionOrMethodOrBlock(const Decl *D) {
94 if (isFunctionOrMethod(D))
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000095 return true;
96 // check for block is more involved.
Chandler Carruth87c44602011-07-01 23:49:12 +000097 if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian620d89c2009-05-15 23:15:03 +000098 QualType Ty = V->getType();
99 return Ty->isBlockPointerType();
100 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000101 return isa<BlockDecl>(D);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000102}
103
John McCall711c52b2011-01-05 12:14:39 +0000104/// Return true if the given decl has a declarator that should have
105/// been processed by Sema::GetTypeForDeclarator.
Chandler Carruth87c44602011-07-01 23:49:12 +0000106static bool hasDeclarator(const Decl *D) {
John McCallf85e1932011-06-15 23:02:42 +0000107 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
Chandler Carruth87c44602011-07-01 23:49:12 +0000108 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
109 isa<ObjCPropertyDecl>(D);
John McCall711c52b2011-01-05 12:14:39 +0000110}
111
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000112/// hasFunctionProto - Return true if the given decl has a argument
113/// information. This decl should have already passed
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000114/// isFunctionOrMethod or isFunctionOrMethodOrBlock.
Chandler Carruth87c44602011-07-01 23:49:12 +0000115static bool hasFunctionProto(const Decl *D) {
116 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000117 return isa<FunctionProtoType>(FnTy);
Fariborz Jahanian620d89c2009-05-15 23:15:03 +0000118 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000119 assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D));
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000120 return true;
121 }
122}
123
124/// getFunctionOrMethodNumArgs - Return number of function or method
125/// arguments. It is an error to call this on a K&R function (use
126/// hasFunctionProto first).
Chandler Carruth87c44602011-07-01 23:49:12 +0000127static unsigned getFunctionOrMethodNumArgs(const Decl *D) {
128 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000129 return cast<FunctionProtoType>(FnTy)->getNumArgs();
Chandler Carruth87c44602011-07-01 23:49:12 +0000130 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000131 return BD->getNumParams();
Chandler Carruth87c44602011-07-01 23:49:12 +0000132 return cast<ObjCMethodDecl>(D)->param_size();
Daniel Dunbar35682492008-09-26 04:12:28 +0000133}
134
Chandler Carruth87c44602011-07-01 23:49:12 +0000135static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) {
136 if (const FunctionType *FnTy = getFunctionType(D))
Douglas Gregor72564e72009-02-26 23:50:07 +0000137 return cast<FunctionProtoType>(FnTy)->getArgType(Idx);
Chandler Carruth87c44602011-07-01 23:49:12 +0000138 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000139 return BD->getParamDecl(Idx)->getType();
Mike Stumpbf916502009-07-24 19:02:52 +0000140
Chandler Carruth87c44602011-07-01 23:49:12 +0000141 return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType();
Daniel Dunbar35682492008-09-26 04:12:28 +0000142}
143
Chandler Carruth87c44602011-07-01 23:49:12 +0000144static QualType getFunctionOrMethodResultType(const Decl *D) {
145 if (const FunctionType *FnTy = getFunctionType(D))
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000146 return cast<FunctionProtoType>(FnTy)->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +0000147 return cast<ObjCMethodDecl>(D)->getResultType();
Fariborz Jahanian5b160922009-05-20 17:41:43 +0000148}
149
Chandler Carruth87c44602011-07-01 23:49:12 +0000150static bool isFunctionOrMethodVariadic(const Decl *D) {
151 if (const FunctionType *FnTy = getFunctionType(D)) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000152 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy);
Daniel Dunbar35682492008-09-26 04:12:28 +0000153 return proto->isVariadic();
Chandler Carruth87c44602011-07-01 23:49:12 +0000154 } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D))
Ted Kremenekdb9a0ae2010-04-29 16:48:58 +0000155 return BD->isVariadic();
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +0000156 else {
Chandler Carruth87c44602011-07-01 23:49:12 +0000157 return cast<ObjCMethodDecl>(D)->isVariadic();
Daniel Dunbar35682492008-09-26 04:12:28 +0000158 }
159}
160
Chandler Carruth87c44602011-07-01 23:49:12 +0000161static bool isInstanceMethod(const Decl *D) {
162 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D))
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000163 return MethodDecl->isInstance();
164 return false;
165}
166
Chris Lattner6b6b5372008-06-26 18:38:35 +0000167static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
John McCall183700f2009-09-21 23:43:11 +0000168 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>();
Chris Lattnerb77792e2008-07-26 22:17:49 +0000169 if (!PT)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000170 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000171
John McCall506b57e2010-05-17 21:00:27 +0000172 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
173 if (!Cls)
Chris Lattner6b6b5372008-06-26 18:38:35 +0000174 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000175
John McCall506b57e2010-05-17 21:00:27 +0000176 IdentifierInfo* ClsName = Cls->getIdentifier();
Mike Stumpbf916502009-07-24 19:02:52 +0000177
Chris Lattner6b6b5372008-06-26 18:38:35 +0000178 // FIXME: Should we walk the chain of classes?
179 return ClsName == &Ctx.Idents.get("NSString") ||
180 ClsName == &Ctx.Idents.get("NSMutableString");
181}
182
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000183static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
Ted Kremenek6217b802009-07-29 21:53:49 +0000184 const PointerType *PT = T->getAs<PointerType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000185 if (!PT)
186 return false;
187
Ted Kremenek6217b802009-07-29 21:53:49 +0000188 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>();
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000189 if (!RT)
190 return false;
Mike Stumpbf916502009-07-24 19:02:52 +0000191
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000192 const RecordDecl *RD = RT->getDecl();
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000193 if (RD->getTagKind() != TTK_Struct)
Daniel Dunbar085e8f72008-09-26 03:32:58 +0000194 return false;
195
196 return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
197}
198
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000199/// \brief Check if the attribute has exactly as many args as Num. May
200/// output an error.
Chandler Carruth1731e202011-07-11 23:30:35 +0000201static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
202 unsigned int Num) {
203 if (Attr.getNumArgs() != Num) {
204 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num;
205 return false;
206 }
207
208 return true;
209}
210
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000211
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000212/// \brief Check if the attribute has at least as many args as Num. May
213/// output an error.
214static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
215 unsigned int Num) {
216 if (Attr.getNumArgs() < Num) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000217 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
218 return false;
219 }
220
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000221 return true;
222}
223
224///
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000225/// \brief Check if passed in Decl is a field or potentially shared global var
226/// \return true if the Decl is a field or potentially shared global variable
227///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000228static bool mayBeSharedVariable(const Decl *D) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000229 if (isa<FieldDecl>(D))
230 return true;
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000231 if (const VarDecl *vd = dyn_cast<VarDecl>(D))
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000232 return (vd->hasGlobalStorage() && !(vd->isThreadSpecified()));
233
234 return false;
235}
236
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000237/// \brief Check if the passed-in expression is of type int or bool.
238static bool isIntOrBool(Expr *Exp) {
239 QualType QT = Exp->getType();
240 return QT->isBooleanType() || QT->isIntegerType();
241}
242
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000243///
244/// \brief Check if passed in Decl is a pointer type.
245/// Note that this function may produce an error message.
246/// \return true if the Decl is a pointer type; false otherwise
247///
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000248static bool checkIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) {
249 if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000250 QualType QT = vd->getType();
Benjamin Kramer39997fc2011-08-02 04:50:49 +0000251 if (QT->isAnyPointerType())
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000252 return true;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000253 S.Diag(Attr.getLoc(), diag::warn_pointer_attribute_wrong_type)
254 << Attr.getName()->getName() << QT;
255 } else {
256 S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl)
257 << Attr.getName();
258 }
259 return false;
260}
261
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000262/// \brief Checks that the passed in QualType either is of RecordType or points
263/// to RecordType. Returns the relevant RecordType, null if it does not exit.
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000264static const RecordType *getRecordType(QualType QT) {
265 if (const RecordType *RT = QT->getAs<RecordType>())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000266 return RT;
Benjamin Kramer7d23b4a2011-08-19 04:18:11 +0000267
268 // Now check if we point to record type.
269 if (const PointerType *PT = QT->getAs<PointerType>())
270 return PT->getPointeeType()->getAs<RecordType>();
271
272 return 0;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000273}
274
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000275/// \brief Thread Safety Analysis: Checks that the passed in RecordType
276/// resolves to a lockable object. May flag an error.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000277static bool checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr,
278 const RecordType *RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000279 // Flag error if could not get record type for this argument.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000280 if (!RT) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000281 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_class)
282 << Attr.getName();
283 return false;
284 }
285 // Flag error if the type is not lockable.
Benjamin Kramerd77ba892011-09-03 03:30:59 +0000286 if (!RT->getDecl()->getAttr<LockableAttr>()) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000287 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_lockable)
288 << Attr.getName();
289 return false;
290 }
291 return true;
292}
293
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000294/// \brief Thread Safety Analysis: Checks that all attribute arguments, starting
295/// from Sidx, resolve to a lockable object. May flag an error.
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000296/// \param Sidx The attribute argument index to start checking with.
297/// \param ParamIdxOk Whether an argument can be indexing into a function
298/// parameter list.
299static bool checkAttrArgsAreLockableObjs(Sema &S, Decl *D,
300 const AttributeList &Attr,
301 SmallVectorImpl<Expr*> &Args,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000302 int Sidx = 0,
303 bool ParamIdxOk = false) {
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000304 for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000305 Expr *ArgExp = Attr.getArg(Idx);
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000306
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000307 if (ArgExp->isTypeDependent()) {
308 // FIXME -- need to processs this again on template instantiation
309 Args.push_back(ArgExp);
310 continue;
311 }
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000312
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000313 QualType ArgTy = ArgExp->getType();
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000314
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000315 // First see if we can just cast to record type, or point to record type.
316 const RecordType *RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000317
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000318 // Now check if we index into a record type function param.
319 if(!RT && ParamIdxOk) {
320 FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000321 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp);
322 if(FD && IL) {
323 unsigned int NumParams = FD->getNumParams();
324 llvm::APInt ArgValue = IL->getValue();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000325 uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
326 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
327 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000328 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range)
329 << Attr.getName() << Idx + 1 << NumParams;
330 return false;
331 }
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000332 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
333 RT = getRecordType(ArgTy);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000334 }
335 }
336
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000337 if (!checkForLockableRecord(S, D, Attr, RT))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000338 return false;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000339
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000340 Args.push_back(ArgExp);
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000341 }
342 return true;
343}
344
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000345//===----------------------------------------------------------------------===//
Chris Lattnere5c5ee12008-06-29 00:16:31 +0000346// Attribute Implementations
347//===----------------------------------------------------------------------===//
348
Daniel Dunbar3068ae02008-07-31 22:40:48 +0000349// FIXME: All this manual attribute parsing code is gross. At the
350// least add some helper functions to check most argument patterns (#
351// and types of args).
352
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000353static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr,
354 bool pointer = false) {
355 assert(!Attr.isInvalid());
356
357 if (!checkAttributeNumArgs(S, Attr, 0))
358 return;
359
360 // D must be either a member field or global (potentially shared) variable.
361 if (!mayBeSharedVariable(D)) {
362 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000363 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000364 return;
365 }
366
367 if (pointer && !checkIsPointer(S, D, Attr))
368 return;
369
370 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000371 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000372 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000373 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000374}
375
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000376static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000377 bool pointer = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000378 assert(!Attr.isInvalid());
379
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000380 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000381 return;
382
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000383 Expr *Arg = Attr.getArg(0);
384
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000385 // D must be either a member field or global (potentially shared) variable.
386 if (!mayBeSharedVariable(D)) {
387 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000388 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000389 return;
390 }
391
392 if (pointer && !checkIsPointer(S, D, Attr))
393 return;
394
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000395 if (Arg->isTypeDependent())
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000396 // FIXME: handle attributes with dependent types
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000397 return;
398
399 // check that the argument is lockable object
400 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000401 return;
402
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000403 if (pointer)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000404 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000405 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000406 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000407 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000408}
409
410
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000411static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr,
412 bool scoped = false) {
413 assert(!Attr.isInvalid());
414
415 if (!checkAttributeNumArgs(S, Attr, 0))
416 return;
417
Caitlin Sadowski1748b122011-09-16 00:35:54 +0000418 // FIXME: Lockable structs for C code.
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000419 if (!isa<CXXRecordDecl>(D)) {
420 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
421 << Attr.getName() << ExpectedClass;
422 return;
423 }
424
425 if (scoped)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000426 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000427 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000428 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000429}
430
431static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
432 const AttributeList &Attr) {
433 assert(!Attr.isInvalid());
434
435 if (!checkAttributeNumArgs(S, Attr, 0))
436 return;
437
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000438 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000439 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
440 << Attr.getName() << ExpectedFunctionOrMethod;
441 return;
442 }
443
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000444 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000445 S.Context));
446}
447
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000448static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
449 bool before) {
450 assert(!Attr.isInvalid());
451
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000452 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000453 return;
454
455 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000456 ValueDecl *VD = dyn_cast<ValueDecl>(D);
457 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000458 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000459 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000460 return;
461 }
462
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000463 // Check that this attribute only applies to lockable types
464 QualType QT = VD->getType();
465 if (!QT->isDependentType()) {
466 const RecordType *RT = getRecordType(QT);
467 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
468 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
469 << Attr.getName();
470 return;
471 }
472 }
473
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000474 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000475 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000476 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000477 return;
478
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000479 unsigned Size = Args.size();
480 assert(Size == Attr.getNumArgs());
481 Expr **StartArg = Size == 0 ? 0 : &Args[0];
482
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000483 if (before)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000484 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000485 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000486 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000487 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000488 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000489}
490
491static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000492 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000493 assert(!Attr.isInvalid());
494
495 // zero or more arguments ok
496
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000497 // check that the attribute is applied to a function
498 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000499 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
500 << Attr.getName() << ExpectedFunctionOrMethod;
501 return;
502 }
503
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000504 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000505 SmallVector<Expr*, 1> Args;
506 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000507 return;
508
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000509 unsigned Size = Args.size();
510 assert(Size == Attr.getNumArgs());
511 Expr **StartArg = Size == 0 ? 0 : &Args[0];
512
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000513 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000514 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000515 S.Context, StartArg,
516 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000517 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000518 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000519 S.Context, StartArg,
520 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000521}
522
523static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000524 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000525 assert(!Attr.isInvalid());
526
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000527 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000528 return;
529
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000530
531 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000532 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
533 << Attr.getName() << ExpectedFunctionOrMethod;
534 return;
535 }
536
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000537 if (!isIntOrBool(Attr.getArg(0))) {
538 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
539 << Attr.getName();
540 return;
541 }
542
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000543 SmallVector<Expr*, 2> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000544 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000545 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000546 return;
547
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000548 unsigned Size = Args.size();
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000549 Expr **StartArg = Size == 0 ? 0 : &Args[0];
550
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000551 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000552 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000553 S.Context,
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000554 Attr.getArg(0),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000555 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000556 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000557 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getRange(),
Caitlin Sadowski69f5d142011-09-15 17:50:19 +0000558 S.Context,
559 Attr.getArg(0),
560 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000561}
562
563static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000564 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000565 assert(!Attr.isInvalid());
566
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000567 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000568 return;
569
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000570 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000571 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
572 << Attr.getName() << ExpectedFunctionOrMethod;
573 return;
574 }
575
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000576 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000577 SmallVector<Expr*, 1> Args;
578 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000579 return;
580
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000581 unsigned Size = Args.size();
582 assert(Size == Attr.getNumArgs());
583 Expr **StartArg = Size == 0 ? 0 : &Args[0];
584
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000585 if (exclusive)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000586 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000587 S.Context, StartArg,
588 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000589 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000590 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getRange(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000591 S.Context, StartArg,
592 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000593}
594
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000595static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000596 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000597 assert(!Attr.isInvalid());
598
599 // zero or more arguments ok
600
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000601 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000602 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
603 << Attr.getName() << ExpectedFunctionOrMethod;
604 return;
605 }
606
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000607 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000608 SmallVector<Expr*, 1> Args;
609 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000610 return;
611
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000612 unsigned Size = Args.size();
613 assert(Size == Attr.getNumArgs());
614 Expr **StartArg = Size == 0 ? 0 : &Args[0];
615
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000616 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000617 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000618}
619
620static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000621 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000622 assert(!Attr.isInvalid());
623
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000624 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000625 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000626 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000627
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000628 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000629 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
630 << Attr.getName() << ExpectedFunctionOrMethod;
631 return;
632 }
633
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000634 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000635 return;
636
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000637 // check that the argument is lockable object
638 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
639 return;
640
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000641 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getRange(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000642}
643
644static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000645 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000646 assert(!Attr.isInvalid());
647
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000648 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000649 return;
650
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000651 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000652 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
653 << Attr.getName() << ExpectedFunctionOrMethod;
654 return;
655 }
656
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000657 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000658 SmallVector<Expr*, 1> Args;
659 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000660 return;
661
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000662 unsigned Size = Args.size();
663 assert(Size == Attr.getNumArgs());
664 Expr **StartArg = Size == 0 ? 0 : &Args[0];
665
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000666 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getRange(), S.Context,
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000667 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000668}
669
670
Chandler Carruth1b03c872011-07-02 00:01:44 +0000671static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
672 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000673 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000674 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000675 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000676 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000677 }
Mike Stumpbf916502009-07-24 19:02:52 +0000678
Chris Lattner6b6b5372008-06-26 18:38:35 +0000679 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000680
681 Expr *sizeExpr;
682
683 // Special case where the argument is a template id.
684 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000685 CXXScopeSpec SS;
686 UnqualifiedId id;
687 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000688
689 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
690 if (Size.isInvalid())
691 return;
692
693 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000694 } else {
695 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000696 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000697 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000698
Peter Collingbourne7a730022010-11-23 20:45:58 +0000699 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000700 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000701
702 // Instantiate/Install the vector type, and let Sema build the type for us.
703 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000704 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000705 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000706 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000707 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000708
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000709 // Remember this typedef decl, we will need it later for diagnostics.
710 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000711 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000712}
713
Chandler Carruth1b03c872011-07-02 00:01:44 +0000714static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000715 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000716 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000717 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000718
Chandler Carruth87c44602011-07-01 23:49:12 +0000719 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000720 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000721 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000722 // If the alignment is less than or equal to 8 bits, the packed attribute
723 // has no effect.
724 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000725 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000726 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000727 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000728 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000729 FD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000730 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000731 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000732}
733
Chandler Carruth1b03c872011-07-02 00:01:44 +0000734static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000735 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000736 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getRange(), S.Context));
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000737 else
738 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
739}
740
Chandler Carruth1b03c872011-07-02 00:01:44 +0000741static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000742 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000743 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000744 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000745
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000746 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000747 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000748 if (MD->isInstanceMethod()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000749 D->addAttr(::new (S.Context) IBActionAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000750 return;
751 }
752
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000753 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000754}
755
Chandler Carruth1b03c872011-07-02 00:01:44 +0000756static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000757 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000758 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000759 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000760
761 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000762 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000763 if (isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D)) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000764 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getRange(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000765 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000766 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000767
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000768 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000769}
770
Chandler Carruth1b03c872011-07-02 00:01:44 +0000771static void handleIBOutletCollection(Sema &S, Decl *D,
772 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000773
774 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000775 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000776 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
777 return;
778 }
779
780 // The IBOutletCollection attributes only apply to instance variables of
781 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000782 if (!(isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000783 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek857e9182010-05-19 17:38:06 +0000784 return;
785 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000786 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000787 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
788 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
789 << VD->getType() << 0;
790 return;
791 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000792 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000793 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
794 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
795 << PD->getType() << 1;
796 return;
797 }
798
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000799 IdentifierInfo *II = Attr.getParameterName();
800 if (!II)
801 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000802
John McCallb3d87482010-08-24 05:47:05 +0000803 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000804 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000805 if (!TypeRep) {
806 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
807 return;
808 }
John McCallb3d87482010-08-24 05:47:05 +0000809 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000810 // Diagnose use of non-object type in iboutletcollection attribute.
811 // FIXME. Gnu attribute extension ignores use of builtin types in
812 // attributes. So, __attribute__((iboutletcollection(char))) will be
813 // treated as __attribute__((iboutletcollection())).
814 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
815 !QT->isObjCObjectType()) {
816 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
817 return;
818 }
Argyrios Kyrtzidisf1e7af32011-09-13 18:41:59 +0000819 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getRange(),S.Context,
820 QT, Attr.getParameterLoc()));
Ted Kremenek857e9182010-05-19 17:38:06 +0000821}
822
Chandler Carruthd309c812011-07-01 23:49:16 +0000823static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000824 if (const RecordType *UT = T->getAsUnionType())
825 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
826 RecordDecl *UD = UT->getDecl();
827 for (RecordDecl::field_iterator it = UD->field_begin(),
828 itend = UD->field_end(); it != itend; ++it) {
829 QualType QT = it->getType();
830 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
831 T = QT;
832 return;
833 }
834 }
835 }
836}
837
Chandler Carruth1b03c872011-07-02 00:01:44 +0000838static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000839 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
840 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000841 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000842 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000843 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000844 return;
845 }
Mike Stumpbf916502009-07-24 19:02:52 +0000846
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000847 // In C++ the implicit 'this' function parameter also counts, and they are
848 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000849 bool HasImplicitThisParam = isInstanceMethod(D);
850 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000851
852 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000853 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000854
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000855 for (AttributeList::arg_iterator I=Attr.arg_begin(),
856 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000857
858
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000859 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000860 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000861 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000862 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
863 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000864 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
865 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000866 return;
867 }
Mike Stumpbf916502009-07-24 19:02:52 +0000868
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000869 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000870
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000871 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000872 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000873 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000874 return;
875 }
Mike Stumpbf916502009-07-24 19:02:52 +0000876
Ted Kremenek465172f2008-07-21 22:09:15 +0000877 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000878 if (HasImplicitThisParam) {
879 if (x == 0) {
880 S.Diag(Attr.getLoc(),
881 diag::err_attribute_invalid_implicit_this_argument)
882 << "nonnull" << Ex->getSourceRange();
883 return;
884 }
885 --x;
886 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000887
888 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000889 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000890 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000891
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000892 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000893 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000894 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000895 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000896 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000897 }
Mike Stumpbf916502009-07-24 19:02:52 +0000898
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000899 NonNullArgs.push_back(x);
900 }
Mike Stumpbf916502009-07-24 19:02:52 +0000901
902 // If no arguments were specified to __attribute__((nonnull)) then all pointer
903 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000904 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000905 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
906 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000907 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000908 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000909 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000910 }
Mike Stumpbf916502009-07-24 19:02:52 +0000911
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000912 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000913 if (NonNullArgs.empty()) {
914 // Warn the trivial case only if attribute is not coming from a
915 // macro instantiation.
916 if (Attr.getLoc().isFileID())
917 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000918 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000919 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000920 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000921
922 unsigned* start = &NonNullArgs[0];
923 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000924 llvm::array_pod_sort(start, start + size);
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +0000925 D->addAttr(::new (S.Context) NonNullAttr(Attr.getRange(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000926 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000927}
928
Chandler Carruth1b03c872011-07-02 00:01:44 +0000929static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000930 // This attribute must be applied to a function declaration.
931 // The first argument to the attribute must be a string,
932 // the name of the resource, for example "malloc".
933 // The following arguments must be argument indexes, the arguments must be
934 // of integer type for Returns, otherwise of pointer type.
935 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000936 // after being held. free() should be __attribute((ownership_takes)), whereas
937 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000938
939 if (!AL.getParameterName()) {
940 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
941 << AL.getName()->getName() << 1;
942 return;
943 }
944 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000945 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000946 switch (AL.getKind()) {
947 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000948 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000949 if (AL.getNumArgs() < 1) {
950 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
951 return;
952 }
Jordy Rose2a479922010-08-12 08:54:03 +0000953 break;
954 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000955 K = OwnershipAttr::Holds;
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_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000962 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000963 if (AL.getNumArgs() > 1) {
964 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
965 << AL.getNumArgs() + 1;
966 return;
967 }
Jordy Rose2a479922010-08-12 08:54:03 +0000968 break;
969 default:
970 // This should never happen given how we are called.
971 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000972 }
973
Chandler Carruth87c44602011-07-01 23:49:12 +0000974 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000975 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
976 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000977 return;
978 }
979
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000980 // In C++ the implicit 'this' function parameter also counts, and they are
981 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000982 bool HasImplicitThisParam = isInstanceMethod(D);
983 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000984
Chris Lattner5f9e2722011-07-23 10:55:15 +0000985 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000986
987 // Normalize the argument, __foo__ becomes foo.
988 if (Module.startswith("__") && Module.endswith("__"))
989 Module = Module.substr(2, Module.size() - 4);
990
Chris Lattner5f9e2722011-07-23 10:55:15 +0000991 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000992
Jordy Rose2a479922010-08-12 08:54:03 +0000993 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
994 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000995
Peter Collingbourne7a730022010-11-23 20:45:58 +0000996 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000997 llvm::APSInt ArgNum(32);
998 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
999 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1000 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1001 << AL.getName()->getName() << IdxExpr->getSourceRange();
1002 continue;
1003 }
1004
1005 unsigned x = (unsigned) ArgNum.getZExtValue();
1006
1007 if (x > NumArgs || x < 1) {
1008 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1009 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1010 continue;
1011 }
1012 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001013 if (HasImplicitThisParam) {
1014 if (x == 0) {
1015 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1016 << "ownership" << IdxExpr->getSourceRange();
1017 return;
1018 }
1019 --x;
1020 }
1021
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001022 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001023 case OwnershipAttr::Takes:
1024 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001025 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001026 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001027 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1028 // FIXME: Should also highlight argument in decl.
1029 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001030 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001031 << "pointer"
1032 << IdxExpr->getSourceRange();
1033 continue;
1034 }
1035 break;
1036 }
Sean Huntcf807c42010-08-18 23:23:40 +00001037 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001038 if (AL.getNumArgs() > 1) {
1039 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001040 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001041 llvm::APSInt ArgNum(32);
1042 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1043 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1044 S.Diag(AL.getLoc(), diag::err_ownership_type)
1045 << "ownership_returns" << "integer"
1046 << IdxExpr->getSourceRange();
1047 return;
1048 }
1049 }
1050 break;
1051 }
Jordy Rose2a479922010-08-12 08:54:03 +00001052 default:
1053 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001054 } // switch
1055
1056 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001057 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001058 i = D->specific_attr_begin<OwnershipAttr>(),
1059 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001060 i != e; ++i) {
1061 if ((*i)->getOwnKind() != K) {
1062 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1063 I!=E; ++I) {
1064 if (x == *I) {
1065 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1066 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001067 }
1068 }
1069 }
1070 }
1071 OwnershipArgs.push_back(x);
1072 }
1073
1074 unsigned* start = OwnershipArgs.data();
1075 unsigned size = OwnershipArgs.size();
1076 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001077
1078 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1079 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1080 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001081 }
Sean Huntcf807c42010-08-18 23:23:40 +00001082
Chandler Carruth87c44602011-07-01 23:49:12 +00001083 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001084 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001085}
1086
John McCall332bb2a2011-02-08 22:35:49 +00001087/// Whether this declaration has internal linkage for the purposes of
1088/// things that want to complain about things not have internal linkage.
1089static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1090 switch (D->getLinkage()) {
1091 case NoLinkage:
1092 case InternalLinkage:
1093 return true;
1094
1095 // Template instantiations that go from external to unique-external
1096 // shouldn't get diagnosed.
1097 case UniqueExternalLinkage:
1098 return true;
1099
1100 case ExternalLinkage:
1101 return false;
1102 }
1103 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001104 return false;
1105}
1106
Chandler Carruth1b03c872011-07-02 00:01:44 +00001107static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001108 // Check the attribute arguments.
1109 if (Attr.getNumArgs() > 1) {
1110 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1111 return;
1112 }
1113
Chandler Carruth87c44602011-07-01 23:49:12 +00001114 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001115 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001116 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001117 return;
1118 }
1119
Chandler Carruth87c44602011-07-01 23:49:12 +00001120 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001121
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001122 // gcc rejects
1123 // class c {
1124 // static int a __attribute__((weakref ("v2")));
1125 // static int b() __attribute__((weakref ("f3")));
1126 // };
1127 // and ignores the attributes of
1128 // void f(void) {
1129 // static int a __attribute__((weakref ("v2")));
1130 // }
1131 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001132 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001133 if (!Ctx->isFileContext()) {
1134 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001135 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001136 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001137 }
1138
1139 // The GCC manual says
1140 //
1141 // At present, a declaration to which `weakref' is attached can only
1142 // be `static'.
1143 //
1144 // It also says
1145 //
1146 // Without a TARGET,
1147 // given as an argument to `weakref' or to `alias', `weakref' is
1148 // equivalent to `weak'.
1149 //
1150 // gcc 4.4.1 will accept
1151 // int a7 __attribute__((weakref));
1152 // as
1153 // int a7 __attribute__((weak));
1154 // This looks like a bug in gcc. We reject that for now. We should revisit
1155 // it if this behaviour is actually used.
1156
John McCall332bb2a2011-02-08 22:35:49 +00001157 if (!hasEffectivelyInternalLinkage(nd)) {
1158 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001159 return;
1160 }
1161
1162 // GCC rejects
1163 // static ((alias ("y"), weakref)).
1164 // Should we? How to check that weakref is before or after alias?
1165
1166 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001167 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001168 Arg = Arg->IgnoreParenCasts();
1169 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1170
Douglas Gregor5cee1192011-07-27 05:40:30 +00001171 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001172 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1173 << "weakref" << 1;
1174 return;
1175 }
1176 // GCC will accept anything as the argument of weakref. Should we
1177 // check for an existing decl?
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001178 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001179 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001180 }
1181
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001182 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getRange(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001183}
1184
Chandler Carruth1b03c872011-07-02 00:01:44 +00001185static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001186 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001187 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001188 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001189 return;
1190 }
Mike Stumpbf916502009-07-24 19:02:52 +00001191
Peter Collingbourne7a730022010-11-23 20:45:58 +00001192 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001193 Arg = Arg->IgnoreParenCasts();
1194 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001195
Douglas Gregor5cee1192011-07-27 05:40:30 +00001196 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001197 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001198 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001199 return;
1200 }
Mike Stumpbf916502009-07-24 19:02:52 +00001201
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001202 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001203 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1204 return;
1205 }
1206
Chris Lattner6b6b5372008-06-26 18:38:35 +00001207 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001208
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001209 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001210 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001211}
1212
Chandler Carruth1b03c872011-07-02 00:01:44 +00001213static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001214 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001215 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001216 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001217
Chandler Carruth87c44602011-07-01 23:49:12 +00001218 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001219 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001220 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001221 return;
1222 }
1223
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001224 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001225}
1226
Chandler Carruth1b03c872011-07-02 00:01:44 +00001227static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1228 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001229 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001230 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001231 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1232 return;
1233 }
1234
Chandler Carruth87c44602011-07-01 23:49:12 +00001235 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001236 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001237 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001238 return;
1239 }
Mike Stumpbf916502009-07-24 19:02:52 +00001240
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001241 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getRange(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001242}
1243
Chandler Carruth1b03c872011-07-02 00:01:44 +00001244static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001245 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001246 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001247 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1248 return;
1249 }
Mike Stump1eb44332009-09-09 15:08:12 +00001250
Chandler Carruth87c44602011-07-01 23:49:12 +00001251 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001252 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001253 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001254 D->addAttr(::new (S.Context) MallocAttr(Attr.getRange(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001255 return;
1256 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001257 }
1258
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001259 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001260}
1261
Chandler Carruth1b03c872011-07-02 00:01:44 +00001262static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001263 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001264 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001265 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001266
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001267 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getRange(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001268}
1269
Chandler Carruth1b03c872011-07-02 00:01:44 +00001270static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001271 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001272 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001273 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001274 else
1275 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001276 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001277}
1278
Chandler Carruth1b03c872011-07-02 00:01:44 +00001279static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001280 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001281 if (isa<VarDecl>(D))
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001282 D->addAttr(::new (S.Context) CommonAttr(Attr.getRange(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001283 else
1284 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001285 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001286}
1287
Chandler Carruth1b03c872011-07-02 00:01:44 +00001288static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001289 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001290
1291 if (S.CheckNoReturnAttr(attr)) return;
1292
Chandler Carruth87c44602011-07-01 23:49:12 +00001293 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001294 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001295 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001296 return;
1297 }
1298
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001299 D->addAttr(::new (S.Context) NoReturnAttr(attr.getRange(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001300}
1301
1302bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001303 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001304 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1305 attr.setInvalid();
1306 return true;
1307 }
1308
1309 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001310}
1311
Chandler Carruth1b03c872011-07-02 00:01:44 +00001312static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1313 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001314
1315 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1316 // because 'analyzer_noreturn' does not impact the type.
1317
Chandler Carruth1731e202011-07-11 23:30:35 +00001318 if(!checkAttributeNumArgs(S, Attr, 0))
1319 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001320
Chandler Carruth87c44602011-07-01 23:49:12 +00001321 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1322 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001323 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1324 && !VD->getType()->isFunctionPointerType())) {
1325 S.Diag(Attr.getLoc(),
1326 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1327 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001328 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001329 return;
1330 }
1331 }
1332
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001333 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001334}
1335
John Thompson35cc9622010-08-09 21:53:52 +00001336// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001337static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001338/*
1339 Returning a Vector Class in Registers
1340
Eric Christopherf48f3672010-12-01 22:13:54 +00001341 According to the PPU ABI specifications, a class with a single member of
1342 vector type is returned in memory when used as the return value of a function.
1343 This results in inefficient code when implementing vector classes. To return
1344 the value in a single vector register, add the vecreturn attribute to the
1345 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001346
1347 Example:
1348
1349 struct Vector
1350 {
1351 __vector float xyzw;
1352 } __attribute__((vecreturn));
1353
1354 Vector Add(Vector lhs, Vector rhs)
1355 {
1356 Vector result;
1357 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1358 return result; // This will be returned in a register
1359 }
1360*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001361 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001362 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001363 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001364 return;
1365 }
1366
Chandler Carruth87c44602011-07-01 23:49:12 +00001367 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001368 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1369 return;
1370 }
1371
Chandler Carruth87c44602011-07-01 23:49:12 +00001372 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001373 int count = 0;
1374
1375 if (!isa<CXXRecordDecl>(record)) {
1376 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1377 return;
1378 }
1379
1380 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1381 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1382 return;
1383 }
1384
Eric Christopherf48f3672010-12-01 22:13:54 +00001385 for (RecordDecl::field_iterator iter = record->field_begin();
1386 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001387 if ((count == 1) || !iter->getType()->isVectorType()) {
1388 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1389 return;
1390 }
1391 count++;
1392 }
1393
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001394 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getRange(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001395}
1396
Chandler Carruth1b03c872011-07-02 00:01:44 +00001397static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001398 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001399 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001400 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001401 return;
1402 }
1403 // FIXME: Actually store the attribute on the declaration
1404}
1405
Chandler Carruth1b03c872011-07-02 00:01:44 +00001406static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001407 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001408 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001409 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001410 return;
1411 }
Mike Stumpbf916502009-07-24 19:02:52 +00001412
Chandler Carruth87c44602011-07-01 23:49:12 +00001413 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1414 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001415 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001416 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001417 return;
1418 }
Mike Stumpbf916502009-07-24 19:02:52 +00001419
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001420 D->addAttr(::new (S.Context) UnusedAttr(Attr.getRange(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001421}
1422
Chandler Carruth1b03c872011-07-02 00:01:44 +00001423static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001424 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001425 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001426 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1427 return;
1428 }
Mike Stumpbf916502009-07-24 19:02:52 +00001429
Chandler Carruth87c44602011-07-01 23:49:12 +00001430 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001431 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001432 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1433 return;
1434 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001435 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001436 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001437 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001438 return;
1439 }
Mike Stumpbf916502009-07-24 19:02:52 +00001440
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001441 D->addAttr(::new (S.Context) UsedAttr(Attr.getRange(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001442}
1443
Chandler Carruth1b03c872011-07-02 00:01:44 +00001444static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001445 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001446 if (Attr.getNumArgs() > 1) {
1447 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001448 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001449 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001450
1451 int priority = 65535; // FIXME: Do not hardcode such constants.
1452 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001453 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001454 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001455 if (E->isTypeDependent() || E->isValueDependent() ||
1456 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001457 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001458 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001459 return;
1460 }
1461 priority = Idx.getZExtValue();
1462 }
Mike Stumpbf916502009-07-24 19:02:52 +00001463
Chandler Carruth87c44602011-07-01 23:49:12 +00001464 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001465 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001466 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001467 return;
1468 }
1469
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001470 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001471 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001472}
1473
Chandler Carruth1b03c872011-07-02 00:01:44 +00001474static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001475 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001476 if (Attr.getNumArgs() > 1) {
1477 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001478 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001479 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001480
1481 int priority = 65535; // FIXME: Do not hardcode such constants.
1482 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001483 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001484 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001485 if (E->isTypeDependent() || E->isValueDependent() ||
1486 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001487 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001488 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001489 return;
1490 }
1491 priority = Idx.getZExtValue();
1492 }
Mike Stumpbf916502009-07-24 19:02:52 +00001493
Chandler Carruth87c44602011-07-01 23:49:12 +00001494 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001495 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001496 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001497 return;
1498 }
1499
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001500 D->addAttr(::new (S.Context) DestructorAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001501 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001502}
1503
Chandler Carruth1b03c872011-07-02 00:01:44 +00001504static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001505 unsigned NumArgs = Attr.getNumArgs();
1506 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001507 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001508 return;
1509 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001510
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001511 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001512 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001513 if (NumArgs == 1) {
1514 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001515 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001516 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1517 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001518 return;
1519 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001520 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001521 }
Mike Stumpbf916502009-07-24 19:02:52 +00001522
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001523 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getRange(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001524}
1525
Chandler Carruth1b03c872011-07-02 00:01:44 +00001526static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001527 unsigned NumArgs = Attr.getNumArgs();
1528 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001529 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001530 return;
1531 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001532
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001533 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001534 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001535 if (NumArgs == 1) {
1536 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001537 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001538 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001539 diag::err_attribute_not_string) << "unavailable";
1540 return;
1541 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001542 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001543 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001544 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getRange(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001545}
1546
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001547static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1548 const AttributeList &Attr) {
1549 unsigned NumArgs = Attr.getNumArgs();
1550 if (NumArgs > 0) {
1551 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1552 return;
1553 }
1554
1555 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001556 Attr.getRange(), S.Context));
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001557}
1558
Chandler Carruth1b03c872011-07-02 00:01:44 +00001559static void handleAvailabilityAttr(Sema &S, Decl *D,
1560 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001561 IdentifierInfo *Platform = Attr.getParameterName();
1562 SourceLocation PlatformLoc = Attr.getParameterLoc();
1563
Chris Lattner5f9e2722011-07-23 10:55:15 +00001564 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001565 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1566 if (PlatformName.empty()) {
1567 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1568 << Platform;
1569
1570 PlatformName = Platform->getName();
1571 }
1572
1573 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1574 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1575 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001576 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001577
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001578 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001579 // of these steps are needed).
1580 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001581 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001582 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1583 << 1 << PlatformName << Deprecated.Version.getAsString()
1584 << 0 << Introduced.Version.getAsString();
1585 return;
1586 }
1587
1588 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001589 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001590 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1591 << 2 << PlatformName << Obsoleted.Version.getAsString()
1592 << 0 << Introduced.Version.getAsString();
1593 return;
1594 }
1595
1596 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001597 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001598 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1599 << 2 << PlatformName << Obsoleted.Version.getAsString()
1600 << 1 << Deprecated.Version.getAsString();
1601 return;
1602 }
1603
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001604 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getRange(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001605 Platform,
1606 Introduced.Version,
1607 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001608 Obsoleted.Version,
1609 IsUnavailable));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001610}
1611
Chandler Carruth1b03c872011-07-02 00:01:44 +00001612static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001613 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001614 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001615 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001616
Peter Collingbourne7a730022010-11-23 20:45:58 +00001617 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001618 Arg = Arg->IgnoreParenCasts();
1619 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001620
Douglas Gregor5cee1192011-07-27 05:40:30 +00001621 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001622 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001623 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001624 return;
1625 }
Mike Stumpbf916502009-07-24 19:02:52 +00001626
Chris Lattner5f9e2722011-07-23 10:55:15 +00001627 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001628 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001629
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001630 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001631 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001632 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001633 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001634 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001635 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001636 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001637 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001638 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001639 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001640 return;
1641 }
Mike Stumpbf916502009-07-24 19:02:52 +00001642
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001643 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getRange(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001644}
1645
Chandler Carruth1b03c872011-07-02 00:01:44 +00001646static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1647 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001648 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1649 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001650 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001651 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001652 return;
1653 }
1654
Chandler Carruth87c44602011-07-01 23:49:12 +00001655 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1656 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1657 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001658 << "objc_method_family" << 1;
1659 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001660 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001661 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001662 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001663 return;
1664 }
1665
Chris Lattner5f9e2722011-07-23 10:55:15 +00001666 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001667 ObjCMethodFamilyAttr::FamilyKind family;
1668 if (param == "none")
1669 family = ObjCMethodFamilyAttr::OMF_None;
1670 else if (param == "alloc")
1671 family = ObjCMethodFamilyAttr::OMF_alloc;
1672 else if (param == "copy")
1673 family = ObjCMethodFamilyAttr::OMF_copy;
1674 else if (param == "init")
1675 family = ObjCMethodFamilyAttr::OMF_init;
1676 else if (param == "mutableCopy")
1677 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1678 else if (param == "new")
1679 family = ObjCMethodFamilyAttr::OMF_new;
1680 else {
1681 // Just warn and ignore it. This is future-proof against new
1682 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001683 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001684 return;
1685 }
1686
John McCallf85e1932011-06-15 23:02:42 +00001687 if (family == ObjCMethodFamilyAttr::OMF_init &&
1688 !method->getResultType()->isObjCObjectPointerType()) {
1689 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1690 << method->getResultType();
1691 // Ignore the attribute.
1692 return;
1693 }
1694
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001695 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(),
John McCallf85e1932011-06-15 23:02:42 +00001696 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001697}
1698
Chandler Carruth1b03c872011-07-02 00:01:44 +00001699static void handleObjCExceptionAttr(Sema &S, Decl *D,
1700 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001701 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001702 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001703
Chris Lattner0db29ec2009-02-14 08:09:34 +00001704 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1705 if (OCI == 0) {
1706 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1707 return;
1708 }
Mike Stumpbf916502009-07-24 19:02:52 +00001709
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001710 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getRange(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001711}
1712
Chandler Carruth1b03c872011-07-02 00:01:44 +00001713static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001714 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001715 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001716 return;
1717 }
Richard Smith162e1c12011-04-15 14:24:37 +00001718 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001719 QualType T = TD->getUnderlyingType();
1720 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001721 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001722 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1723 return;
1724 }
1725 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001726 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getRange(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001727}
1728
Mike Stumpbf916502009-07-24 19:02:52 +00001729static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001730handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001731 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001732 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001733 return;
1734 }
1735
1736 if (!isa<FunctionDecl>(D)) {
1737 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1738 return;
1739 }
1740
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001741 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getRange(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001742}
1743
Chandler Carruth1b03c872011-07-02 00:01:44 +00001744static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001745 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001746 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001747 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001748 return;
1749 }
Mike Stumpbf916502009-07-24 19:02:52 +00001750
Steve Naroff9eae5762008-09-18 16:44:58 +00001751 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001752 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001753 return;
1754 }
Mike Stumpbf916502009-07-24 19:02:52 +00001755
Sean Huntcf807c42010-08-18 23:23:40 +00001756 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001757 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001758 type = BlocksAttr::ByRef;
1759 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001760 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001761 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001762 return;
1763 }
Mike Stumpbf916502009-07-24 19:02:52 +00001764
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001765 D->addAttr(::new (S.Context) BlocksAttr(Attr.getRange(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001766}
1767
Chandler Carruth1b03c872011-07-02 00:01:44 +00001768static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001769 // check the attribute arguments.
1770 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001771 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001772 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001773 }
1774
John McCall3323fad2011-09-09 07:56:05 +00001775 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001776 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001777 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001778 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001779 if (E->isTypeDependent() || E->isValueDependent() ||
1780 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001781 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001782 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001783 return;
1784 }
Mike Stumpbf916502009-07-24 19:02:52 +00001785
John McCall3323fad2011-09-09 07:56:05 +00001786 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001787 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1788 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001789 return;
1790 }
John McCall3323fad2011-09-09 07:56:05 +00001791
1792 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001793 }
1794
John McCall3323fad2011-09-09 07:56:05 +00001795 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001796 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001797 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001798 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001799 if (E->isTypeDependent() || E->isValueDependent() ||
1800 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001801 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001802 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001803 return;
1804 }
1805 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001806
John McCall3323fad2011-09-09 07:56:05 +00001807 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001808 // FIXME: This error message could be improved, it would be nice
1809 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001810 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1811 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001812 return;
1813 }
1814 }
1815
Chandler Carruth87c44602011-07-01 23:49:12 +00001816 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001817 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001818 if (isa<FunctionNoProtoType>(FT)) {
1819 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1820 return;
1821 }
Mike Stumpbf916502009-07-24 19:02:52 +00001822
Chris Lattner897cd902009-03-17 23:03:47 +00001823 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001824 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001825 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001826 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001827 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001828 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001829 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001830 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001831 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001832 } else if (isa<BlockDecl>(D)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001833 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1834 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001835 ;
Chandler Carruth87c44602011-07-01 23:49:12 +00001836 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001837 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001838 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001839 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001840 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001841 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001842 int m = Ty->isFunctionPointerType() ? 0 : 1;
1843 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001844 return;
1845 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001846 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001847 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001848 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001849 return;
1850 }
Anders Carlsson77091822008-10-05 18:05:59 +00001851 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001852 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001853 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001854 return;
1855 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001856 D->addAttr(::new (S.Context) SentinelAttr(Attr.getRange(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001857 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001858}
1859
Chandler Carruth1b03c872011-07-02 00:01:44 +00001860static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001861 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001862 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001863 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001864
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001865 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001866 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001867 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001868 return;
1869 }
Mike Stumpbf916502009-07-24 19:02:52 +00001870
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001871 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1872 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1873 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001874 return;
1875 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001876 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1877 if (MD->getResultType()->isVoidType()) {
1878 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1879 << Attr.getName() << 1;
1880 return;
1881 }
1882
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001883 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getRange(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001884}
1885
Chandler Carruth1b03c872011-07-02 00:01:44 +00001886static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001887 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001888 if (Attr.hasParameterOrArguments()) {
1889 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001890 return;
1891 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001892
Chandler Carruth87c44602011-07-01 23:49:12 +00001893 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
1894 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1895 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001896 return;
1897 }
1898
Chandler Carruth87c44602011-07-01 23:49:12 +00001899 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001900
1901 // 'weak' only applies to declarations with external linkage.
1902 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001903 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001904 return;
1905 }
Mike Stumpbf916502009-07-24 19:02:52 +00001906
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001907 nd->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001908}
1909
Chandler Carruth1b03c872011-07-02 00:01:44 +00001910static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001911 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001912 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001913 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001914
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001915
1916 // weak_import only applies to variable & function declarations.
1917 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001918 if (!D->canBeWeakImported(isDef)) {
1919 if (isDef)
1920 S.Diag(Attr.getLoc(),
1921 diag::warn_attribute_weak_import_invalid_on_definition)
1922 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001923 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001924 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Douglas Gregordef86312011-03-23 13:27:51 +00001925 isa<ObjCInterfaceDecl>(D))) {
1926 // Nothing to warn about here.
1927 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001928 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001929 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001930
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001931 return;
1932 }
1933
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001934 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getRange(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001935}
1936
Chandler Carruth1b03c872011-07-02 00:01:44 +00001937static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1938 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001939 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001940 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00001941 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001942
1943 unsigned WGSize[3];
1944 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001945 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001946 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001947 if (E->isTypeDependent() || E->isValueDependent() ||
1948 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001949 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1950 << "reqd_work_group_size" << E->getSourceRange();
1951 return;
1952 }
1953 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1954 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001955 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +00001956 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001957 WGSize[2]));
1958}
1959
Chandler Carruth1b03c872011-07-02 00:01:44 +00001960static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001961 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001962 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001963 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001964
1965 // Make sure that there is a string literal as the sections's single
1966 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001967 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001968 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001969 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001970 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001971 return;
1972 }
Mike Stump1eb44332009-09-09 15:08:12 +00001973
Chris Lattner797c3c42009-08-10 19:03:04 +00001974 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001975 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001976 if (!Error.empty()) {
1977 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1978 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001979 return;
1980 }
Mike Stump1eb44332009-09-09 15:08:12 +00001981
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001982 // This attribute cannot be applied to local variables.
1983 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1984 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1985 return;
1986 }
1987
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001988 D->addAttr(::new (S.Context) SectionAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001989 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001990}
1991
Chris Lattner6b6b5372008-06-26 18:38:35 +00001992
Chandler Carruth1b03c872011-07-02 00:01:44 +00001993static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001994 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001995 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001996 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001997 return;
1998 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001999
Chandler Carruth87c44602011-07-01 23:49:12 +00002000 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002001 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002002 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002003 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002004 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002005 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002006}
2007
Chandler Carruth1b03c872011-07-02 00:01:44 +00002008static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002009 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002010 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002011 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002012 return;
2013 }
Mike Stumpbf916502009-07-24 19:02:52 +00002014
Chandler Carruth87c44602011-07-01 23:49:12 +00002015 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002016 if (Existing->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002017 Existing->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002018 } else {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002019 D->addAttr(::new (S.Context) ConstAttr(Attr.getRange(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002020 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002021}
2022
Chandler Carruth1b03c872011-07-02 00:01:44 +00002023static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002024 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002025 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002026 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002027
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002028 D->addAttr(::new (S.Context) PureAttr(Attr.getRange(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002029}
2030
Chandler Carruth1b03c872011-07-02 00:01:44 +00002031static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002032 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002033 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2034 return;
2035 }
Mike Stumpbf916502009-07-24 19:02:52 +00002036
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002037 if (Attr.getNumArgs() != 0) {
2038 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2039 return;
2040 }
Mike Stumpbf916502009-07-24 19:02:52 +00002041
Chandler Carruth87c44602011-07-01 23:49:12 +00002042 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002043
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002044 if (!VD || !VD->hasLocalStorage()) {
2045 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2046 return;
2047 }
Mike Stumpbf916502009-07-24 19:02:52 +00002048
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002049 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002050 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002051 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002052 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2053 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002054 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002055 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002056 Attr.getParameterName();
2057 return;
2058 }
Mike Stumpbf916502009-07-24 19:02:52 +00002059
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002060 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2061 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002062 S.Diag(Attr.getParameterLoc(),
2063 diag::err_attribute_cleanup_arg_not_function)
2064 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002065 return;
2066 }
2067
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002068 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002069 S.Diag(Attr.getParameterLoc(),
2070 diag::err_attribute_cleanup_func_must_take_one_arg)
2071 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002072 return;
2073 }
Mike Stumpbf916502009-07-24 19:02:52 +00002074
Anders Carlsson89941c12009-02-07 23:16:50 +00002075 // We're currently more strict than GCC about what function types we accept.
2076 // If this ever proves to be a problem it should be easy to fix.
2077 QualType Ty = S.Context.getPointerType(VD->getType());
2078 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002079 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2080 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002081 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002082 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2083 Attr.getParameterName() << ParamTy << Ty;
2084 return;
2085 }
Mike Stumpbf916502009-07-24 19:02:52 +00002086
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002087 D->addAttr(::new (S.Context) CleanupAttr(Attr.getRange(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002088 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002089}
2090
Mike Stumpbf916502009-07-24 19:02:52 +00002091/// Handle __attribute__((format_arg((idx)))) attribute based on
2092/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002093static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002094 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002095 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002096
Chandler Carruth87c44602011-07-01 23:49:12 +00002097 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002098 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002099 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002100 return;
2101 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002102
2103 // In C++ the implicit 'this' function parameter also counts, and they are
2104 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002105 bool HasImplicitThisParam = isInstanceMethod(D);
2106 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002107 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002108
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002109 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002110 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002111 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002112 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2113 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002114 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2115 << "format" << 2 << IdxExpr->getSourceRange();
2116 return;
2117 }
Mike Stumpbf916502009-07-24 19:02:52 +00002118
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002119 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2120 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2121 << "format" << 2 << IdxExpr->getSourceRange();
2122 return;
2123 }
Mike Stumpbf916502009-07-24 19:02:52 +00002124
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002125 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002126
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002127 if (HasImplicitThisParam) {
2128 if (ArgIdx == 0) {
2129 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2130 << "format_arg" << IdxExpr->getSourceRange();
2131 return;
2132 }
2133 ArgIdx--;
2134 }
2135
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002136 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002137 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002138
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002139 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2140 if (not_nsstring_type &&
2141 !isCFStringType(Ty, S.Context) &&
2142 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002143 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002144 // FIXME: Should highlight the actual expression that has the wrong type.
2145 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002146 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002147 << IdxExpr->getSourceRange();
2148 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002149 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002150 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002151 if (!isNSStringType(Ty, S.Context) &&
2152 !isCFStringType(Ty, S.Context) &&
2153 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002154 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002155 // FIXME: Should highlight the actual expression that has the wrong type.
2156 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002157 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002158 << IdxExpr->getSourceRange();
2159 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002160 }
2161
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002162 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getRange(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002163 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002164}
2165
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002166enum FormatAttrKind {
2167 CFStringFormat,
2168 NSStringFormat,
2169 StrftimeFormat,
2170 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002171 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002172 InvalidFormat
2173};
2174
2175/// getFormatAttrKind - Map from format attribute names to supported format
2176/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002177static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002178 // Check for formats that get handled specially.
2179 if (Format == "NSString")
2180 return NSStringFormat;
2181 if (Format == "CFString")
2182 return CFStringFormat;
2183 if (Format == "strftime")
2184 return StrftimeFormat;
2185
2186 // Otherwise, check for supported formats.
2187 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2188 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2189 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002190 Format == "zcmn_err" ||
2191 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002192 return SupportedFormat;
2193
Duncan Sandsbc525952010-03-23 14:44:19 +00002194 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2195 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002196 return IgnoredFormat;
2197
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002198 return InvalidFormat;
2199}
2200
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002201/// Handle __attribute__((init_priority(priority))) attributes based on
2202/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002203static void handleInitPriorityAttr(Sema &S, Decl *D,
2204 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002205 if (!S.getLangOptions().CPlusPlus) {
2206 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2207 return;
2208 }
2209
Chandler Carruth87c44602011-07-01 23:49:12 +00002210 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002211 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2212 Attr.setInvalid();
2213 return;
2214 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002215 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002216 if (S.Context.getAsArrayType(T))
2217 T = S.Context.getBaseElementType(T);
2218 if (!T->getAs<RecordType>()) {
2219 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2220 Attr.setInvalid();
2221 return;
2222 }
2223
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002224 if (Attr.getNumArgs() != 1) {
2225 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2226 Attr.setInvalid();
2227 return;
2228 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002229 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002230
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002231 llvm::APSInt priority(32);
2232 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2233 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2234 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2235 << "init_priority" << priorityExpr->getSourceRange();
2236 Attr.setInvalid();
2237 return;
2238 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002239 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002240 if (prioritynum < 101 || prioritynum > 65535) {
2241 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2242 << priorityExpr->getSourceRange();
2243 Attr.setInvalid();
2244 return;
2245 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002246 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002247 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002248}
2249
Mike Stumpbf916502009-07-24 19:02:52 +00002250/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2251/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002252static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002253
Chris Lattner545dd342008-06-28 23:36:30 +00002254 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002255 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002256 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002257 return;
2258 }
2259
Chris Lattner545dd342008-06-28 23:36:30 +00002260 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002261 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002262 return;
2263 }
2264
Chandler Carruth87c44602011-07-01 23:49:12 +00002265 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002266 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002267 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002268 return;
2269 }
2270
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002271 // In C++ the implicit 'this' function parameter also counts, and they are
2272 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002273 bool HasImplicitThisParam = isInstanceMethod(D);
2274 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002275 unsigned FirstIdx = 1;
2276
Chris Lattner5f9e2722011-07-23 10:55:15 +00002277 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002278
2279 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002280 if (Format.startswith("__") && Format.endswith("__"))
2281 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002282
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002283 // Check for supported formats.
2284 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002285
2286 if (Kind == IgnoredFormat)
2287 return;
2288
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002289 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002290 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002291 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002292 return;
2293 }
2294
2295 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002296 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002297 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002298 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2299 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002300 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002301 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002302 return;
2303 }
2304
2305 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002306 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002307 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002308 return;
2309 }
2310
2311 // FIXME: Do we need to bounds check?
2312 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002313
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002314 if (HasImplicitThisParam) {
2315 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002316 S.Diag(Attr.getLoc(),
2317 diag::err_format_attribute_implicit_this_format_string)
2318 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002319 return;
2320 }
2321 ArgIdx--;
2322 }
Mike Stump1eb44332009-09-09 15:08:12 +00002323
Chris Lattner6b6b5372008-06-26 18:38:35 +00002324 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002325 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002326
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002327 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002328 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002329 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2330 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002331 return;
2332 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002333 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002334 // FIXME: do we need to check if the type is NSString*? What are the
2335 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002336 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002337 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002338 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2339 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002340 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002341 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002342 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002343 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
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 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002347 return;
2348 }
2349
2350 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002351 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002352 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002353 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2354 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002355 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002356 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002357 return;
2358 }
2359
2360 // check if the function is variadic if the 3rd argument non-zero
2361 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002362 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002363 ++NumArgs; // +1 for ...
2364 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002365 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002366 return;
2367 }
2368 }
2369
Chris Lattner3c73c412008-11-19 08:23:25 +00002370 // strftime requires FirstArg to be 0 because it doesn't read from any
2371 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002372 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002373 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002374 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2375 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002376 return;
2377 }
2378 // if 0 it disables parameter checking (to use with e.g. va_list)
2379 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002380 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002381 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002382 return;
2383 }
2384
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002385 // Check whether we already have an equivalent format attribute.
2386 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002387 i = D->specific_attr_begin<FormatAttr>(),
2388 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002389 i != e ; ++i) {
2390 FormatAttr *f = *i;
2391 if (f->getType() == Format &&
2392 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2393 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2394 // If we don't have a valid location for this attribute, adopt the
2395 // location.
2396 if (f->getLocation().isInvalid())
Argyrios Kyrtzidisffcc3102011-09-13 16:05:53 +00002397 f->setRange(Attr.getRange());
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002398 return;
2399 }
2400 }
2401
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002402 D->addAttr(::new (S.Context) FormatAttr(Attr.getRange(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002403 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002404 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002405}
2406
Chandler Carruth1b03c872011-07-02 00:01:44 +00002407static void handleTransparentUnionAttr(Sema &S, Decl *D,
2408 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002409 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002410 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002411 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002412
Chris Lattner6b6b5372008-06-26 18:38:35 +00002413
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002414 // Try to find the underlying union declaration.
2415 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002416 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002417 if (TD && TD->getUnderlyingType()->isUnionType())
2418 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2419 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002420 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002421
2422 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002423 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002424 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002425 return;
2426 }
2427
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002428 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002429 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002430 diag::warn_transparent_union_attribute_not_definition);
2431 return;
2432 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002433
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002434 RecordDecl::field_iterator Field = RD->field_begin(),
2435 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002436 if (Field == FieldEnd) {
2437 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2438 return;
2439 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002440
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002441 FieldDecl *FirstField = *Field;
2442 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002443 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002444 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002445 diag::warn_transparent_union_attribute_floating)
2446 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002447 return;
2448 }
2449
2450 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2451 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2452 for (; Field != FieldEnd; ++Field) {
2453 QualType FieldType = Field->getType();
2454 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2455 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2456 // Warn if we drop the attribute.
2457 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002458 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002459 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002460 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002461 diag::warn_transparent_union_attribute_field_size_align)
2462 << isSize << Field->getDeclName() << FieldBits;
2463 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002464 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002465 diag::note_transparent_union_first_field_size_align)
2466 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002467 return;
2468 }
2469 }
2470
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002471 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getRange(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002472}
2473
Chandler Carruth1b03c872011-07-02 00:01:44 +00002474static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002475 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002476 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002477 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002478
Peter Collingbourne7a730022010-11-23 20:45:58 +00002479 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002480 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002481
Chris Lattner6b6b5372008-06-26 18:38:35 +00002482 // Make sure that there is a string literal as the annotation's single
2483 // argument.
2484 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002485 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002486 return;
2487 }
Julien Lerouge77f68bb2011-09-09 22:41:49 +00002488
2489 // Don't duplicate annotations that are already set.
2490 for (specific_attr_iterator<AnnotateAttr>
2491 i = D->specific_attr_begin<AnnotateAttr>(),
2492 e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) {
2493 if ((*i)->getAnnotation() == SE->getString())
2494 return;
2495 }
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002496 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getRange(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002497 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002498}
2499
Chandler Carruth1b03c872011-07-02 00:01:44 +00002500static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002501 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002502 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002503 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002504 return;
2505 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002506
2507 //FIXME: The C++0x version of this attribute has more limited applicabilty
2508 // than GNU's, and should error out when it is used to specify a
2509 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002510
Chris Lattner545dd342008-06-28 23:36:30 +00002511 if (Attr.getNumArgs() == 0) {
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002512 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002513 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002514 }
Mike Stumpbf916502009-07-24 19:02:52 +00002515
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002516 S.AddAlignedAttr(Attr.getRange(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002517}
2518
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002519void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002520 if (E->isTypeDependent() || E->isValueDependent()) {
2521 // Save dependent expressions in the AST to be instantiated.
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002522 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002523 return;
2524 }
2525
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002526 SourceLocation AttrLoc = AttrRange.getBegin();
Sean Huntcf807c42010-08-18 23:23:40 +00002527 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002528 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002529 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2530 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2531 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002532 return;
2533 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002534 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002535 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2536 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002537 return;
2538 }
2539
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002540 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, true, E));
Sean Huntcf807c42010-08-18 23:23:40 +00002541}
2542
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002543void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS) {
Sean Huntcf807c42010-08-18 23:23:40 +00002544 // FIXME: Cache the number on the Attr object if non-dependent?
2545 // FIXME: Perform checking of type validity
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002546 D->addAttr(::new (Context) AlignedAttr(AttrRange, Context, false, TS));
Sean Huntcf807c42010-08-18 23:23:40 +00002547 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002548}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002549
Chandler Carruthd309c812011-07-01 23:49:16 +00002550/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002551/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002552///
Mike Stumpbf916502009-07-24 19:02:52 +00002553/// Despite what would be logical, the mode attribute is a decl attribute, not a
2554/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2555/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002556static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002557 // This attribute isn't documented, but glibc uses it. It changes
2558 // the width of an int or unsigned int to the specified size.
2559
2560 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002561 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002562 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002563
Chris Lattnerfbf13472008-06-27 22:18:37 +00002564
2565 IdentifierInfo *Name = Attr.getParameterName();
2566 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002567 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002568 return;
2569 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002570
Chris Lattner5f9e2722011-07-23 10:55:15 +00002571 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002572
2573 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002574 if (Str.startswith("__") && Str.endswith("__"))
2575 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002576
2577 unsigned DestWidth = 0;
2578 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002579 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002580 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002581 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002582 switch (Str[0]) {
2583 case 'Q': DestWidth = 8; break;
2584 case 'H': DestWidth = 16; break;
2585 case 'S': DestWidth = 32; break;
2586 case 'D': DestWidth = 64; break;
2587 case 'X': DestWidth = 96; break;
2588 case 'T': DestWidth = 128; break;
2589 }
2590 if (Str[1] == 'F') {
2591 IntegerMode = false;
2592 } else if (Str[1] == 'C') {
2593 IntegerMode = false;
2594 ComplexMode = true;
2595 } else if (Str[1] != 'I') {
2596 DestWidth = 0;
2597 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002598 break;
2599 case 4:
2600 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2601 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002602 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002603 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002604 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002605 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002606 break;
2607 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002608 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002609 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002610 break;
2611 }
2612
2613 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002614 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002615 OldTy = TD->getUnderlyingType();
2616 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2617 OldTy = VD->getType();
2618 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002619 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002620 << "mode" << Attr.getRange();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002621 return;
2622 }
Eli Friedman73397492009-03-03 06:41:03 +00002623
John McCall183700f2009-09-21 23:43:11 +00002624 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002625 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2626 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002627 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002628 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2629 } else if (ComplexMode) {
2630 if (!OldTy->isComplexType())
2631 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2632 } else {
2633 if (!OldTy->isFloatingType())
2634 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2635 }
2636
Mike Stump390b4cc2009-05-16 07:39:55 +00002637 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2638 // and friends, at least with glibc.
2639 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2640 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002641 // FIXME: Make sure floating-point mappings are accurate
2642 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002643 QualType NewTy;
2644 switch (DestWidth) {
2645 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002646 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002647 return;
2648 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002649 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002650 return;
2651 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002652 if (!IntegerMode) {
2653 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2654 return;
2655 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002656 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002657 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002658 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002659 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002660 break;
2661 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002662 if (!IntegerMode) {
2663 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2664 return;
2665 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002666 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002667 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002668 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002669 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002670 break;
2671 case 32:
2672 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002673 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002674 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002675 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002676 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002677 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002678 break;
2679 case 64:
2680 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002681 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002682 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002683 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002684 NewTy = S.Context.LongTy;
2685 else
2686 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002687 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002688 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002689 NewTy = S.Context.UnsignedLongTy;
2690 else
2691 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002692 break;
Eli Friedman73397492009-03-03 06:41:03 +00002693 case 96:
2694 NewTy = S.Context.LongDoubleTy;
2695 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002696 case 128:
2697 if (!IntegerMode) {
2698 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2699 return;
2700 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002701 if (OldTy->isSignedIntegerType())
2702 NewTy = S.Context.Int128Ty;
2703 else
2704 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002705 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002706 }
2707
Eli Friedman73397492009-03-03 06:41:03 +00002708 if (ComplexMode) {
2709 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002710 }
2711
2712 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002713 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002714 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002715 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002716 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002717 cast<ValueDecl>(D)->setType(NewTy);
2718}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002719
Chandler Carruth1b03c872011-07-02 00:01:44 +00002720static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002721 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002722 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002723 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002724
Chandler Carruth87c44602011-07-01 23:49:12 +00002725 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002726 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002727 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002728 return;
2729 }
Mike Stumpbf916502009-07-24 19:02:52 +00002730
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002731 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getRange(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002732}
2733
Chandler Carruth1b03c872011-07-02 00:01:44 +00002734static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002735 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002736 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002737 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002738
Mike Stumpbf916502009-07-24 19:02:52 +00002739
Chandler Carruth87c44602011-07-01 23:49:12 +00002740 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002741 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002742 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002743 return;
2744 }
Mike Stumpbf916502009-07-24 19:02:52 +00002745
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002746 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getRange(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002747}
2748
Chandler Carruth1b03c872011-07-02 00:01:44 +00002749static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2750 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002751 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002752 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002753 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002754
Chris Lattner7255a2d2010-06-22 00:03:40 +00002755
Chandler Carruth87c44602011-07-01 23:49:12 +00002756 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002757 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002758 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002759 return;
2760 }
2761
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002762 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002763 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002764}
2765
Chandler Carruth1b03c872011-07-02 00:01:44 +00002766static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002767 if (S.LangOpts.CUDA) {
2768 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002769 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002770 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2771 return;
2772 }
2773
Chandler Carruth87c44602011-07-01 23:49:12 +00002774 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002775 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002776 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002777 return;
2778 }
2779
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002780 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002781 } else {
2782 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2783 }
2784}
2785
Chandler Carruth1b03c872011-07-02 00:01:44 +00002786static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002787 if (S.LangOpts.CUDA) {
2788 // check the attribute arguments.
2789 if (Attr.getNumArgs() != 0) {
2790 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2791 return;
2792 }
2793
Chandler Carruth87c44602011-07-01 23:49:12 +00002794 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002795 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002796 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002797 return;
2798 }
2799
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002800 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002801 } else {
2802 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2803 }
2804}
2805
Chandler Carruth1b03c872011-07-02 00:01:44 +00002806static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002807 if (S.LangOpts.CUDA) {
2808 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002809 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002810 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002811
Chandler Carruth87c44602011-07-01 23:49:12 +00002812 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002813 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002814 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002815 return;
2816 }
2817
Chandler Carruth87c44602011-07-01 23:49:12 +00002818 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002819 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002820 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002821 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2822 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2823 << FD->getType()
2824 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2825 "void");
2826 } else {
2827 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2828 << FD->getType();
2829 }
2830 return;
2831 }
2832
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002833 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002834 } else {
2835 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2836 }
2837}
2838
Chandler Carruth1b03c872011-07-02 00:01:44 +00002839static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002840 if (S.LangOpts.CUDA) {
2841 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002842 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002843 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002844
Peter Collingbourneced76712010-12-01 03:15:31 +00002845
Chandler Carruth87c44602011-07-01 23:49:12 +00002846 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002847 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002848 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002849 return;
2850 }
2851
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002852 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002853 } else {
2854 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2855 }
2856}
2857
Chandler Carruth1b03c872011-07-02 00:01:44 +00002858static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002859 if (S.LangOpts.CUDA) {
2860 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002861 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002862 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002863
Peter Collingbourneced76712010-12-01 03:15:31 +00002864
Chandler Carruth87c44602011-07-01 23:49:12 +00002865 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002866 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002867 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002868 return;
2869 }
2870
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002871 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getRange(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002872 } else {
2873 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2874 }
2875}
2876
Chandler Carruth1b03c872011-07-02 00:01:44 +00002877static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002878 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002879 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002880 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002881
Chandler Carruth87c44602011-07-01 23:49:12 +00002882 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002883 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002884 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002885 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002886 return;
2887 }
Mike Stumpbf916502009-07-24 19:02:52 +00002888
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002889 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002890 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002891 return;
2892 }
Mike Stumpbf916502009-07-24 19:02:52 +00002893
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002894 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getRange(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002895}
2896
Chandler Carruth1b03c872011-07-02 00:01:44 +00002897static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002898 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002899
Chandler Carruth87c44602011-07-01 23:49:12 +00002900 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002901 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2902 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002903 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002904 return;
2905
Chandler Carruth87c44602011-07-01 23:49:12 +00002906 if (!isa<ObjCMethodDecl>(D)) {
2907 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2908 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002909 return;
2910 }
2911
Chandler Carruth87c44602011-07-01 23:49:12 +00002912 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002913 case AttributeList::AT_fastcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002914 D->addAttr(::new (S.Context) FastCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002915 return;
2916 case AttributeList::AT_stdcall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002917 D->addAttr(::new (S.Context) StdCallAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002918 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002919 case AttributeList::AT_thiscall:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002920 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getRange(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002921 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002922 case AttributeList::AT_cdecl:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002923 D->addAttr(::new (S.Context) CDeclAttr(Attr.getRange(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002924 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002925 case AttributeList::AT_pascal:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002926 D->addAttr(::new (S.Context) PascalAttr(Attr.getRange(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002927 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002928 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002929 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002930 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002931 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002932 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002933 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002934 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002935 return;
2936 }
2937
Chris Lattner5f9e2722011-07-23 10:55:15 +00002938 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002939 PcsAttr::PCSType PCS;
2940 if (StrRef == "aapcs")
2941 PCS = PcsAttr::AAPCS;
2942 else if (StrRef == "aapcs-vfp")
2943 PCS = PcsAttr::AAPCS_VFP;
2944 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002945 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2946 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002947 return;
2948 }
2949
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002950 D->addAttr(::new (S.Context) PcsAttr(Attr.getRange(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002951 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002952 default:
2953 llvm_unreachable("unexpected attribute kind");
2954 return;
2955 }
2956}
2957
Chandler Carruth1b03c872011-07-02 00:01:44 +00002958static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002959 assert(!Attr.isInvalid());
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00002960 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00002961}
2962
John McCall711c52b2011-01-05 12:14:39 +00002963bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2964 if (attr.isInvalid())
2965 return true;
2966
Ted Kremenek831efae2011-04-15 05:49:29 +00002967 if ((attr.getNumArgs() != 0 &&
2968 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
2969 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00002970 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2971 attr.setInvalid();
2972 return true;
2973 }
2974
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002975 // TODO: diagnose uses of these conventions on the wrong target. Or, better
2976 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00002977 switch (attr.getKind()) {
2978 case AttributeList::AT_cdecl: CC = CC_C; break;
2979 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2980 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2981 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2982 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002983 case AttributeList::AT_pcs: {
2984 Expr *Arg = attr.getArg(0);
2985 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002986 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002987 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
2988 << "pcs" << 1;
2989 attr.setInvalid();
2990 return true;
2991 }
2992
Chris Lattner5f9e2722011-07-23 10:55:15 +00002993 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002994 if (StrRef == "aapcs") {
2995 CC = CC_AAPCS;
2996 break;
2997 } else if (StrRef == "aapcs-vfp") {
2998 CC = CC_AAPCS_VFP;
2999 break;
3000 }
3001 // FALLS THROUGH
3002 }
John McCall711c52b2011-01-05 12:14:39 +00003003 default: llvm_unreachable("unexpected attribute kind"); return true;
3004 }
3005
3006 return false;
3007}
3008
Chandler Carruth1b03c872011-07-02 00:01:44 +00003009static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003010 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003011
3012 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003013 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003014 return;
3015
Chandler Carruth87c44602011-07-01 23:49:12 +00003016 if (!isa<ObjCMethodDecl>(D)) {
3017 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3018 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003019 return;
3020 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003021
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003022 D->addAttr(::new (S.Context) RegparmAttr(Attr.getRange(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003023}
3024
3025/// Checks a regparm attribute, returning true if it is ill-formed and
3026/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003027bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3028 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003029 return true;
3030
Chandler Carruth87c44602011-07-01 23:49:12 +00003031 if (Attr.getNumArgs() != 1) {
3032 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3033 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003034 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003035 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003036
Chandler Carruth87c44602011-07-01 23:49:12 +00003037 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003038 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003039 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003040 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003041 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003042 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003043 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003044 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003045 }
3046
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003047 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003048 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003049 << 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
John McCall711c52b2011-01-05 12:14:39 +00003054 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003055 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003056 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003057 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003058 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003059 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003060 }
3061
John McCall711c52b2011-01-05 12:14:39 +00003062 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003063}
3064
Chandler Carruth1b03c872011-07-02 00:01:44 +00003065static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003066 if (S.LangOpts.CUDA) {
3067 // check the attribute arguments.
3068 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003069 // FIXME: 0 is not okay.
3070 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003071 return;
3072 }
3073
Chandler Carruth87c44602011-07-01 23:49:12 +00003074 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003075 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003076 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003077 return;
3078 }
3079
3080 Expr *MaxThreadsExpr = Attr.getArg(0);
3081 llvm::APSInt MaxThreads(32);
3082 if (MaxThreadsExpr->isTypeDependent() ||
3083 MaxThreadsExpr->isValueDependent() ||
3084 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3085 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3086 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3087 return;
3088 }
3089
3090 llvm::APSInt MinBlocks(32);
3091 if (Attr.getNumArgs() > 1) {
3092 Expr *MinBlocksExpr = Attr.getArg(1);
3093 if (MinBlocksExpr->isTypeDependent() ||
3094 MinBlocksExpr->isValueDependent() ||
3095 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3096 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3097 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3098 return;
3099 }
3100 }
3101
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003102 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getRange(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003103 MaxThreads.getZExtValue(),
3104 MinBlocks.getZExtValue()));
3105 } else {
3106 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3107 }
3108}
3109
Chris Lattner0744e5f2008-06-29 00:23:49 +00003110//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003111// Checker-specific attribute handlers.
3112//===----------------------------------------------------------------------===//
3113
John McCallc7ad3812011-01-25 03:31:58 +00003114static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3115 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
3116}
3117static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3118 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
3119}
3120
Chandler Carruth1b03c872011-07-02 00:01:44 +00003121static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003122 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003123 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003124 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003125 << Attr.getRange() << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003126 return;
3127 }
3128
3129 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003130 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003131 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3132 cf = false;
3133 } else {
3134 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3135 cf = true;
3136 }
3137
3138 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003139 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003140 << Attr.getRange() << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003141 return;
3142 }
3143
3144 if (cf)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003145 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003146 else
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003147 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003148}
3149
Chandler Carruth1b03c872011-07-02 00:01:44 +00003150static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3151 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003152 if (!isa<ObjCMethodDecl>(D)) {
3153 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003154 << Attr.getRange() << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003155 return;
3156 }
3157
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003158 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getRange(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003159}
3160
Chandler Carruth1b03c872011-07-02 00:01:44 +00003161static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3162 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003163
John McCallc7ad3812011-01-25 03:31:58 +00003164 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003165
Chandler Carruth87c44602011-07-01 23:49:12 +00003166 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003167 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003168 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003169 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003170 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3171 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003172 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003173 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003174 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003175 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003176 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003177 << Attr.getRange() << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003178 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003179 return;
3180 }
Mike Stumpbf916502009-07-24 19:02:52 +00003181
John McCallc7ad3812011-01-25 03:31:58 +00003182 bool typeOK;
3183 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003184 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003185 default: llvm_unreachable("invalid ownership attribute"); return;
3186 case AttributeList::AT_ns_returns_autoreleased:
3187 case AttributeList::AT_ns_returns_retained:
3188 case AttributeList::AT_ns_returns_not_retained:
3189 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3190 cf = false;
3191 break;
3192
3193 case AttributeList::AT_cf_returns_retained:
3194 case AttributeList::AT_cf_returns_not_retained:
3195 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3196 cf = true;
3197 break;
3198 }
3199
3200 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003201 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003202 << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003203 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003204 }
Mike Stumpbf916502009-07-24 19:02:52 +00003205
Chandler Carruth87c44602011-07-01 23:49:12 +00003206 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003207 default:
3208 assert(0 && "invalid ownership attribute");
3209 return;
John McCallc7ad3812011-01-25 03:31:58 +00003210 case AttributeList::AT_ns_returns_autoreleased:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003211 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getRange(),
John McCallc7ad3812011-01-25 03:31:58 +00003212 S.Context));
3213 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003214 case AttributeList::AT_cf_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003215 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003216 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003217 return;
3218 case AttributeList::AT_ns_returns_not_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003219 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003220 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003221 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003222 case AttributeList::AT_cf_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003223 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003224 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003225 return;
3226 case AttributeList::AT_ns_returns_retained:
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003227 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getRange(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003228 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003229 return;
3230 };
3231}
3232
John McCalldc7c5ad2011-07-22 08:53:00 +00003233static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3234 const AttributeList &attr) {
3235 SourceLocation loc = attr.getLoc();
3236
3237 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3238
3239 if (!isa<ObjCMethodDecl>(method)) {
3240 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3241 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3242 return;
3243 }
3244
3245 // Check that the method returns a normal pointer.
3246 QualType resultType = method->getResultType();
3247 if (!resultType->isPointerType() || resultType->isObjCRetainableType()) {
3248 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3249 << SourceRange(loc)
3250 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3251
3252 // Drop the attribute.
3253 return;
3254 }
3255
3256 method->addAttr(
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003257 ::new (S.Context) ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context));
John McCalldc7c5ad2011-07-22 08:53:00 +00003258}
3259
Chandler Carruth1b03c872011-07-02 00:01:44 +00003260static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3261 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003262 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003263
Chandler Carruth87c44602011-07-01 23:49:12 +00003264 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003265 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003266}
3267
Chandler Carruth1b03c872011-07-02 00:01:44 +00003268static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3269 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003270 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003271 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003272 << Attr.getRange() << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003273 return;
3274 }
3275
Chandler Carruth87c44602011-07-01 23:49:12 +00003276 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003277 QualType type = vd->getType();
3278
3279 if (!type->isDependentType() &&
3280 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003281 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003282 << type;
3283 return;
3284 }
3285
3286 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3287
3288 // If we have no lifetime yet, check the lifetime we're presumably
3289 // going to infer.
3290 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3291 lifetime = type->getObjCARCImplicitLifetime();
3292
3293 switch (lifetime) {
3294 case Qualifiers::OCL_None:
3295 assert(type->isDependentType() &&
3296 "didn't infer lifetime for non-dependent type?");
3297 break;
3298
3299 case Qualifiers::OCL_Weak: // meaningful
3300 case Qualifiers::OCL_Strong: // meaningful
3301 break;
3302
3303 case Qualifiers::OCL_ExplicitNone:
3304 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003305 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003306 << (lifetime == Qualifiers::OCL_Autoreleasing);
3307 break;
3308 }
3309
Chandler Carruth87c44602011-07-01 23:49:12 +00003310 D->addAttr(::new (S.Context)
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003311 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003312}
3313
Charles Davisf0122fe2010-02-16 18:27:26 +00003314static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3315 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003316 Attr.getKind() == AttributeList::AT_dllexport ||
3317 Attr.getKind() == AttributeList::AT_uuid;
3318}
3319
3320//===----------------------------------------------------------------------===//
3321// Microsoft specific attribute handlers.
3322//===----------------------------------------------------------------------===//
3323
Chandler Carruth1b03c872011-07-02 00:01:44 +00003324static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet11542142010-12-19 06:50:37 +00003325 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
3326 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003327 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003328 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003329
Francois Pichet11542142010-12-19 06:50:37 +00003330 Expr *Arg = Attr.getArg(0);
3331 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003332 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003333 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3334 << "uuid" << 1;
3335 return;
3336 }
3337
Chris Lattner5f9e2722011-07-23 10:55:15 +00003338 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003339
3340 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3341 StrRef.back() == '}';
3342
3343 // Validate GUID length.
3344 if (IsCurly && StrRef.size() != 38) {
3345 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3346 return;
3347 }
3348 if (!IsCurly && StrRef.size() != 36) {
3349 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3350 return;
3351 }
3352
3353 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3354 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003355 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003356 if (IsCurly) // Skip the optional '{'
3357 ++I;
3358
3359 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003360 if (i == 8 || i == 13 || i == 18 || i == 23) {
3361 if (*I != '-') {
3362 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3363 return;
3364 }
3365 } else if (!isxdigit(*I)) {
3366 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3367 return;
3368 }
3369 I++;
3370 }
Francois Pichet11542142010-12-19 06:50:37 +00003371
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003372 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003373 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003374 } else
Francois Pichet11542142010-12-19 06:50:37 +00003375 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003376}
3377
Ted Kremenekb71368d2009-05-09 02:44:38 +00003378//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003379// Top Level Sema Entry Points
3380//===----------------------------------------------------------------------===//
3381
Chandler Carruth1b03c872011-07-02 00:01:44 +00003382static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3383 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003384 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003385 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3386 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3387 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003388 default:
3389 break;
3390 }
3391}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003392
Chandler Carruth1b03c872011-07-02 00:01:44 +00003393static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3394 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003395 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003396 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3397 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003398 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003399 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003400 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003401 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003402 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003403 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003404 case AttributeList::AT_neon_vector_type:
3405 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003406 // Ignore these, these are type attributes, handled by
3407 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003408 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003409 case AttributeList::AT_device:
3410 case AttributeList::AT_host:
3411 case AttributeList::AT_overloadable:
3412 // Ignore, this is a non-inheritable attribute, handled
3413 // by ProcessNonInheritableDeclAttr.
3414 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003415 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3416 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003417 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003418 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003419 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003420 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3421 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3422 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003423 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003424 handleDependencyAttr (S, D, Attr); break;
3425 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3426 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3427 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3428 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3429 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003430 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003431 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003432 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003433 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3434 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3435 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3436 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003437 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003438 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003439 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003440 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3441 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3442 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3443 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3444 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003445 case AttributeList::AT_ownership_returns:
3446 case AttributeList::AT_ownership_takes:
3447 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003448 handleOwnershipAttr (S, D, Attr); break;
3449 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3450 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3451 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3452 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3453 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003454
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003455 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003456 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003457 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003458 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003459
John McCalldc7c5ad2011-07-22 08:53:00 +00003460 case AttributeList::AT_objc_returns_inner_pointer:
3461 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3462
Ted Kremenekb71368d2009-05-09 02:44:38 +00003463 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003464 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003465 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003466 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003467 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003468
3469 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003470 case AttributeList::AT_ns_returns_not_retained:
3471 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003472 case AttributeList::AT_ns_returns_retained:
3473 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003474 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003475
Nate Begeman6f3d8382009-06-26 06:32:41 +00003476 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003477 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003478
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003479 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003480 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003481
Chandler Carruth1b03c872011-07-02 00:01:44 +00003482 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3483 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3484 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3485 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003486 case AttributeList::AT_arc_weakref_unavailable:
3487 handleArcWeakrefUnavailableAttr (S, D, Attr);
3488 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003489 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
3490 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3491 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3492 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003493 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003494 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3495 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3496 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003497 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003498 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003499 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003500 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003501 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003502 break;
John McCalld5313b02011-03-02 11:33:24 +00003503 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003504 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003505 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003506 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3507 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3508 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3509 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3510 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3511 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3512 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3513 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3514 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003515 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003516 // Just ignore
3517 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003518 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003519 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003520 break;
John McCall04a67a62010-02-05 21:31:56 +00003521 case AttributeList::AT_stdcall:
3522 case AttributeList::AT_cdecl:
3523 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003524 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003525 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003526 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003527 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003528 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003529 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003530 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003531 break;
Francois Pichet11542142010-12-19 06:50:37 +00003532 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003533 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003534 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003535
3536 // Thread safety attributes:
3537 case AttributeList::AT_guarded_var:
3538 handleGuardedVarAttr(S, D, Attr);
3539 break;
3540 case AttributeList::AT_pt_guarded_var:
3541 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3542 break;
3543 case AttributeList::AT_scoped_lockable:
3544 handleLockableAttr(S, D, Attr, /*scoped = */true);
3545 break;
3546 case AttributeList::AT_no_thread_safety_analysis:
3547 handleNoThreadSafetyAttr(S, D, Attr);
3548 break;
3549 case AttributeList::AT_lockable:
3550 handleLockableAttr(S, D, Attr);
3551 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003552 case AttributeList::AT_guarded_by:
3553 handleGuardedByAttr(S, D, Attr);
3554 break;
3555 case AttributeList::AT_pt_guarded_by:
3556 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3557 break;
3558 case AttributeList::AT_exclusive_lock_function:
3559 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3560 break;
3561 case AttributeList::AT_exclusive_locks_required:
3562 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3563 break;
3564 case AttributeList::AT_exclusive_trylock_function:
3565 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3566 break;
3567 case AttributeList::AT_lock_returned:
3568 handleLockReturnedAttr(S, D, Attr);
3569 break;
3570 case AttributeList::AT_locks_excluded:
3571 handleLocksExcludedAttr(S, D, Attr);
3572 break;
3573 case AttributeList::AT_shared_lock_function:
3574 handleLockFunAttr(S, D, Attr);
3575 break;
3576 case AttributeList::AT_shared_locks_required:
3577 handleLocksRequiredAttr(S, D, Attr);
3578 break;
3579 case AttributeList::AT_shared_trylock_function:
3580 handleTrylockFunAttr(S, D, Attr);
3581 break;
3582 case AttributeList::AT_unlock_function:
3583 handleUnlockFunAttr(S, D, Attr);
3584 break;
3585 case AttributeList::AT_acquired_before:
3586 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3587 break;
3588 case AttributeList::AT_acquired_after:
3589 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3590 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003591
Chris Lattner803d0802008-06-29 00:43:07 +00003592 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003593 // Ask target about the attribute.
3594 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3595 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003596 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3597 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003598 break;
3599 }
3600}
3601
Peter Collingbourne60700392011-01-21 02:08:45 +00003602/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3603/// the attribute applies to decls. If the attribute is a type attribute, just
3604/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3605/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003606static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3607 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003608 bool NonInheritable, bool Inheritable) {
3609 if (Attr.isInvalid())
3610 return;
3611
3612 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3613 // FIXME: Try to deal with other __declspec attributes!
3614 return;
3615
3616 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003617 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003618
3619 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003620 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003621}
3622
Chris Lattner803d0802008-06-29 00:43:07 +00003623/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3624/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003625void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003626 const AttributeList *AttrList,
3627 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003628 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003629 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003630 }
3631
3632 // GCC accepts
3633 // static int a9 __attribute__((weakref));
3634 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003635 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003636 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003637 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003638 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003639 }
3640}
3641
Ryan Flynne25ff832009-07-30 03:15:39 +00003642/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3643/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003644NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3645 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003646 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003647 NamedDecl *NewD = 0;
3648 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003649 FunctionDecl *NewFD;
3650 // FIXME: Missing call to CheckFunctionDeclaration().
3651 // FIXME: Mangling?
3652 // FIXME: Is the qualifier info correct?
3653 // FIXME: Is the DeclContext correct?
3654 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3655 Loc, Loc, DeclarationName(II),
3656 FD->getType(), FD->getTypeSourceInfo(),
3657 SC_None, SC_None,
3658 false/*isInlineSpecified*/,
3659 FD->hasPrototype(),
3660 false/*isConstexprSpecified*/);
3661 NewD = NewFD;
3662
3663 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003664 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003665
3666 // Fake up parameter variables; they are declared as if this were
3667 // a typedef.
3668 QualType FDTy = FD->getType();
3669 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3670 SmallVector<ParmVarDecl*, 16> Params;
3671 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3672 AE = FT->arg_type_end(); AI != AE; ++AI) {
3673 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3674 Param->setScopeInfo(0, Params.size());
3675 Params.push_back(Param);
3676 }
3677 NewFD->setParams(Params.data(), Params.size());
John McCallb6217662010-03-15 10:12:16 +00003678 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003679 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3680 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003681 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003682 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003683 VD->getStorageClass(),
3684 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003685 if (VD->getQualifier()) {
3686 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003687 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003688 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003689 }
3690 return NewD;
3691}
3692
3693/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3694/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003695void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003696 if (W.getUsed()) return; // only do this once
3697 W.setUsed(true);
3698 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3699 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003700 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003701 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3702 NDId->getName()));
3703 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003704 WeakTopLevelDecl.push_back(NewD);
3705 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3706 // to insert Decl at TU scope, sorry.
3707 DeclContext *SavedContext = CurContext;
3708 CurContext = Context.getTranslationUnitDecl();
3709 PushOnScopeChains(NewD, S);
3710 CurContext = SavedContext;
3711 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003712 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003713 }
3714}
3715
Chris Lattner0744e5f2008-06-29 00:23:49 +00003716/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3717/// it, apply them to D. This is a bit tricky because PD can have attributes
3718/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003719void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3720 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003721 // It's valid to "forward-declare" #pragma weak, in which case we
3722 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003723 if (Inheritable) {
3724 LoadExternalWeakUndeclaredIdentifiers();
3725 if (!WeakUndeclaredIdentifiers.empty()) {
3726 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3727 if (IdentifierInfo *Id = ND->getIdentifier()) {
3728 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3729 = WeakUndeclaredIdentifiers.find(Id);
3730 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3731 WeakInfo W = I->second;
3732 DeclApplyPragmaWeak(S, ND, W);
3733 WeakUndeclaredIdentifiers[Id] = W;
3734 }
John McCalld4aff0e2010-10-27 00:59:00 +00003735 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003736 }
3737 }
3738 }
3739
Chris Lattner0744e5f2008-06-29 00:23:49 +00003740 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003741 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003742 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003743
Chris Lattner0744e5f2008-06-29 00:23:49 +00003744 // Walk the declarator structure, applying decl attributes that were in a type
3745 // position to the decl itself. This handles cases like:
3746 // int *__attr__(x)** D;
3747 // when X is a decl attribute.
3748 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3749 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003750 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003751
Chris Lattner0744e5f2008-06-29 00:23:49 +00003752 // Finally, apply any attributes on the decl itself.
3753 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003754 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003755}
John McCall54abf7d2009-11-04 02:18:39 +00003756
John McCallf85e1932011-06-15 23:02:42 +00003757/// Is the given declaration allowed to use a forbidden type?
3758static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3759 // Private ivars are always okay. Unfortunately, people don't
3760 // always properly make their ivars private, even in system headers.
3761 // Plus we need to make fields okay, too.
3762 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl))
3763 return false;
3764
3765 // Require it to be declared in a system header.
3766 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3767}
3768
3769/// Handle a delayed forbidden-type diagnostic.
3770static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3771 Decl *decl) {
3772 if (decl && isForbiddenTypeAllowed(S, decl)) {
3773 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3774 "this system declaration uses an unsupported type"));
3775 return;
3776 }
3777
3778 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3779 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3780 diag.Triggered = true;
3781}
3782
John McCalleee1d542011-02-14 07:13:47 +00003783// This duplicates a vector push_back but hides the need to know the
3784// size of the type.
3785void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3786 assert(StackSize <= StackCapacity);
3787
3788 // Grow the stack if necessary.
3789 if (StackSize == StackCapacity) {
3790 unsigned newCapacity = 2 * StackCapacity + 2;
3791 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3792 const char *oldBuffer = (const char*) Stack;
3793
3794 if (StackCapacity)
3795 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3796
3797 delete[] oldBuffer;
3798 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3799 StackCapacity = newCapacity;
3800 }
3801
3802 assert(StackSize < StackCapacity);
3803 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003804}
3805
John McCalleee1d542011-02-14 07:13:47 +00003806void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3807 Decl *decl) {
3808 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003809
John McCalleee1d542011-02-14 07:13:47 +00003810 // Check the invariants.
3811 assert(DD.StackSize >= state.SavedStackSize);
3812 assert(state.SavedStackSize >= DD.ActiveStackBase);
3813 assert(DD.ParsingDepth > 0);
3814
3815 // Drop the parsing depth.
3816 DD.ParsingDepth--;
3817
3818 // If there are no active diagnostics, we're done.
3819 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003820 return;
3821
John McCall2f514482010-01-27 03:50:35 +00003822 // We only want to actually emit delayed diagnostics when we
3823 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00003824 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00003825 // We emit all the active diagnostics, not just those starting
3826 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003827 // decl spec and another for each declarator; in a decl group like:
3828 // deprecated_typedef foo, *bar, baz();
3829 // only the declarator pops will be passed decls. This is correct;
3830 // we really do need to consider delayed diagnostics from the decl spec
3831 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003832 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3833 DelayedDiagnostic &diag = DD.Stack[i];
3834 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003835 continue;
3836
John McCalleee1d542011-02-14 07:13:47 +00003837 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003838 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003839 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003840 break;
3841
3842 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003843 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003844 break;
John McCallf85e1932011-06-15 23:02:42 +00003845
3846 case DelayedDiagnostic::ForbiddenType:
3847 handleDelayedForbiddenType(S, diag, decl);
3848 break;
John McCall2f514482010-01-27 03:50:35 +00003849 }
3850 }
3851 }
3852
John McCall58e6f342010-03-16 05:22:47 +00003853 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003854 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00003855 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00003856
John McCalleee1d542011-02-14 07:13:47 +00003857 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003858}
3859
3860static bool isDeclDeprecated(Decl *D) {
3861 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003862 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00003863 return true;
3864 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3865 return false;
3866}
3867
John McCall9c3087b2010-08-26 02:13:20 +00003868void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003869 Decl *Ctx) {
3870 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003871 return;
3872
John McCall2f514482010-01-27 03:50:35 +00003873 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003874 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003875 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003876 << DD.getDeprecationDecl()->getDeclName()
3877 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003878 else
3879 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003880 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003881}
3882
Chris Lattner5f9e2722011-07-23 10:55:15 +00003883void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003884 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003885 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003886 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003887 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3888 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003889 return;
3890 }
3891
3892 // Otherwise, don't warn if our current context is deprecated.
3893 if (isDeclDeprecated(cast<Decl>(CurContext)))
3894 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003895 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003896 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3897 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003898 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003899 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003900 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003901 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003902 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003903 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
3904 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003905 }
John McCall54abf7d2009-11-04 02:18:39 +00003906}