blob: a77454e8143c770c4c897eee422424c0cff7cf0a [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)
371 D->addAttr(::new (S.Context) PtGuardedVarAttr(Attr.getLoc(), S.Context));
372 else
373 D->addAttr(::new (S.Context) GuardedVarAttr(Attr.getLoc(), S.Context));
374}
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)
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000404 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getLoc(),
405 S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000406 else
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000407 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getLoc(), 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
418 if (!isa<CXXRecordDecl>(D)) {
419 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
420 << Attr.getName() << ExpectedClass;
421 return;
422 }
423
424 if (scoped)
425 D->addAttr(::new (S.Context) ScopedLockableAttr(Attr.getLoc(), S.Context));
426 else
427 D->addAttr(::new (S.Context) LockableAttr(Attr.getLoc(), S.Context));
428}
429
430static void handleNoThreadSafetyAttr(Sema &S, Decl *D,
431 const AttributeList &Attr) {
432 assert(!Attr.isInvalid());
433
434 if (!checkAttributeNumArgs(S, Attr, 0))
435 return;
436
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000437 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +0000438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
439 << Attr.getName() << ExpectedFunctionOrMethod;
440 return;
441 }
442
443 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getLoc(),
444 S.Context));
445}
446
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000447static void handleAcquireOrderAttr(Sema &S, Decl *D, const AttributeList &Attr,
448 bool before) {
449 assert(!Attr.isInvalid());
450
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000451 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000452 return;
453
454 // D must be either a member field or global (potentially shared) variable.
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000455 ValueDecl *VD = dyn_cast<ValueDecl>(D);
456 if (!VD || !mayBeSharedVariable(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000457 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000458 << Attr.getName() << ExpectedFieldOrGlobalVar;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000459 return;
460 }
461
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000462 // Check that this attribute only applies to lockable types
463 QualType QT = VD->getType();
464 if (!QT->isDependentType()) {
465 const RecordType *RT = getRecordType(QT);
466 if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) {
467 S.Diag(Attr.getLoc(), diag::err_attribute_decl_not_lockable)
468 << Attr.getName();
469 return;
470 }
471 }
472
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000473 SmallVector<Expr*, 1> Args;
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000474 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000475 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000476 return;
477
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000478 unsigned Size = Args.size();
479 assert(Size == Attr.getNumArgs());
480 Expr **StartArg = Size == 0 ? 0 : &Args[0];
481
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000482 if (before)
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000483 D->addAttr(::new (S.Context) AcquiredBeforeAttr(Attr.getLoc(), S.Context,
484 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000485 else
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000486 D->addAttr(::new (S.Context) AcquiredAfterAttr(Attr.getLoc(), S.Context,
487 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000488}
489
490static void handleLockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000491 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000492 assert(!Attr.isInvalid());
493
494 // zero or more arguments ok
495
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000496 // check that the attribute is applied to a function
497 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000498 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
499 << Attr.getName() << ExpectedFunctionOrMethod;
500 return;
501 }
502
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000503 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000504 SmallVector<Expr*, 1> Args;
505 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000506 return;
507
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000508 unsigned Size = Args.size();
509 assert(Size == Attr.getNumArgs());
510 Expr **StartArg = Size == 0 ? 0 : &Args[0];
511
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000512 if (exclusive)
513 D->addAttr(::new (S.Context) ExclusiveLockFunctionAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000514 S.Context, StartArg,
515 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000516 else
517 D->addAttr(::new (S.Context) SharedLockFunctionAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000518 S.Context, StartArg,
519 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000520}
521
522static void handleTrylockFunAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000523 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000524 assert(!Attr.isInvalid());
525
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000526 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000527 return;
528
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000529
530 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000531 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
532 << Attr.getName() << ExpectedFunctionOrMethod;
533 return;
534 }
535
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000536 if (!isIntOrBool(Attr.getArg(0))) {
537 S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool)
538 << Attr.getName();
539 return;
540 }
541
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000542 SmallVector<Expr*, 2> Args;
543 Args.push_back(Attr.getArg(0)); //FIXME
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();
549 assert(Size == Attr.getNumArgs());
550 Expr **StartArg = Size == 0 ? 0 : &Args[0];
551
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000552 if (exclusive)
553 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000554 S.Context,
555 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000556 else
557 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000558 S.Context, StartArg,
559 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000560}
561
562static void handleLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000563 bool exclusive = false) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000564 assert(!Attr.isInvalid());
565
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000566 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000567 return;
568
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000569 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000570 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
571 << Attr.getName() << ExpectedFunctionOrMethod;
572 return;
573 }
574
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000575 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000576 SmallVector<Expr*, 1> Args;
577 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000578 return;
579
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000580 unsigned Size = Args.size();
581 assert(Size == Attr.getNumArgs());
582 Expr **StartArg = Size == 0 ? 0 : &Args[0];
583
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000584 if (exclusive)
585 D->addAttr(::new (S.Context) ExclusiveLocksRequiredAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000586 S.Context, StartArg,
587 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000588 else
589 D->addAttr(::new (S.Context) SharedLocksRequiredAttr(Attr.getLoc(),
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000590 S.Context, StartArg,
591 Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000592}
593
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000594static void handleUnlockFunAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000595 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000596 assert(!Attr.isInvalid());
597
598 // zero or more arguments ok
599
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000600 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000601 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
602 << Attr.getName() << ExpectedFunctionOrMethod;
603 return;
604 }
605
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000606 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000607 SmallVector<Expr*, 1> Args;
608 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000609 return;
610
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000611 unsigned Size = Args.size();
612 assert(Size == Attr.getNumArgs());
613 Expr **StartArg = Size == 0 ? 0 : &Args[0];
614
615 D->addAttr(::new (S.Context) UnlockFunctionAttr(Attr.getLoc(), S.Context,
616 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000617}
618
619static void handleLockReturnedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000620 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000621 assert(!Attr.isInvalid());
622
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000623 if (!checkAttributeNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000624 return;
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000625 Expr *Arg = Attr.getArg(0);
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000626
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000627 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000628 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
629 << Attr.getName() << ExpectedFunctionOrMethod;
630 return;
631 }
632
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000633 if (Arg->isTypeDependent())
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000634 return;
635
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000636 // check that the argument is lockable object
637 if (!checkForLockableRecord(S, D, Attr, getRecordType(Arg->getType())))
638 return;
639
640 D->addAttr(::new (S.Context) LockReturnedAttr(Attr.getLoc(), S.Context, Arg));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000641}
642
643static void handleLocksExcludedAttr(Sema &S, Decl *D,
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000644 const AttributeList &Attr) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000645 assert(!Attr.isInvalid());
646
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000647 if (!checkAttributeAtLeastNumArgs(S, Attr, 1))
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000648 return;
649
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000650 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) {
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000651 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
652 << Attr.getName() << ExpectedFunctionOrMethod;
653 return;
654 }
655
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000656 // check that all arguments are lockable objects
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000657 SmallVector<Expr*, 1> Args;
658 if (!checkAttrArgsAreLockableObjs(S, D, Attr, Args))
Caitlin Sadowskib51e0312011-08-09 17:59:31 +0000659 return;
660
Caitlin Sadowski3ac1fbc2011-08-23 18:46:34 +0000661 unsigned Size = Args.size();
662 assert(Size == Attr.getNumArgs());
663 Expr **StartArg = Size == 0 ? 0 : &Args[0];
664
665 D->addAttr(::new (S.Context) LocksExcludedAttr(Attr.getLoc(), S.Context,
666 StartArg, Size));
Caitlin Sadowskidb33e142011-07-28 20:12:35 +0000667}
668
669
Chandler Carruth1b03c872011-07-02 00:01:44 +0000670static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
671 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000672 TypedefNameDecl *tDecl = dyn_cast<TypedefNameDecl>(D);
Chris Lattner545dd342008-06-28 23:36:30 +0000673 if (tDecl == 0) {
Chris Lattner803d0802008-06-29 00:43:07 +0000674 S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef);
Chris Lattner545dd342008-06-28 23:36:30 +0000675 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +0000676 }
Mike Stumpbf916502009-07-24 19:02:52 +0000677
Chris Lattner6b6b5372008-06-26 18:38:35 +0000678 QualType curType = tDecl->getUnderlyingType();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000679
680 Expr *sizeExpr;
681
682 // Special case where the argument is a template id.
683 if (Attr.getParameterName()) {
John McCallf7a1a742009-11-24 19:00:30 +0000684 CXXScopeSpec SS;
685 UnqualifiedId id;
686 id.setIdentifier(Attr.getParameterName(), Attr.getLoc());
Douglas Gregor4ac01402011-06-15 16:02:29 +0000687
688 ExprResult Size = S.ActOnIdExpression(scope, SS, id, false, false);
689 if (Size.isInvalid())
690 return;
691
692 sizeExpr = Size.get();
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000693 } else {
694 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000695 if (!checkAttributeNumArgs(S, Attr, 1))
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000696 return;
Chandler Carruth1731e202011-07-11 23:30:35 +0000697
Peter Collingbourne7a730022010-11-23 20:45:58 +0000698 sizeExpr = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000699 }
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000700
701 // Instantiate/Install the vector type, and let Sema build the type for us.
702 // This will run the reguired checks.
John McCall9ae2f072010-08-23 23:25:46 +0000703 QualType T = S.BuildExtVectorType(curType, sizeExpr, Attr.getLoc());
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000704 if (!T.isNull()) {
John McCallba6a9bd2009-10-24 08:00:42 +0000705 // FIXME: preserve the old source info.
John McCalla93c9342009-12-07 02:54:59 +0000706 tDecl->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(T));
Mike Stumpbf916502009-07-24 19:02:52 +0000707
Douglas Gregor9cdda0c2009-06-17 21:51:59 +0000708 // Remember this typedef decl, we will need it later for diagnostics.
709 S.ExtVectorDecls.push_back(tDecl);
Chris Lattner6b6b5372008-06-26 18:38:35 +0000710 }
Chris Lattner6b6b5372008-06-26 18:38:35 +0000711}
712
Chandler Carruth1b03c872011-07-02 00:01:44 +0000713static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000714 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000715 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +0000716 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000717
Chandler Carruth87c44602011-07-01 23:49:12 +0000718 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Sean Huntcf807c42010-08-18 23:23:40 +0000719 TD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chandler Carruth87c44602011-07-01 23:49:12 +0000720 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +0000721 // If the alignment is less than or equal to 8 bits, the packed attribute
722 // has no effect.
723 if (!FD->getType()->isIncompleteType() &&
Chris Lattner803d0802008-06-29 00:43:07 +0000724 S.Context.getTypeAlign(FD->getType()) <= 8)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000725 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
Chris Lattner08631c52008-11-23 21:45:46 +0000726 << Attr.getName() << FD->getType();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000727 else
Sean Huntcf807c42010-08-18 23:23:40 +0000728 FD->addAttr(::new (S.Context) PackedAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +0000729 } else
Chris Lattner3c73c412008-11-19 08:23:25 +0000730 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +0000731}
732
Chandler Carruth1b03c872011-07-02 00:01:44 +0000733static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000734 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Fariborz Jahanianc1a0a732011-04-26 17:54:40 +0000735 TD->addAttr(::new (S.Context) MsStructAttr(Attr.getLoc(), S.Context));
736 else
737 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
738}
739
Chandler Carruth1b03c872011-07-02 00:01:44 +0000740static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek96329d42008-07-15 22:26:48 +0000741 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000742 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek96329d42008-07-15 22:26:48 +0000743 return;
Mike Stumpbf916502009-07-24 19:02:52 +0000744
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000745 // The IBAction attributes only apply to instance methods.
Chandler Carruth87c44602011-07-01 23:49:12 +0000746 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000747 if (MD->isInstanceMethod()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000748 D->addAttr(::new (S.Context) IBActionAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000749 return;
750 }
751
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000752 S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName();
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000753}
754
Chandler Carruth1b03c872011-07-02 00:01:44 +0000755static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000756 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +0000757 if (!checkAttributeNumArgs(S, Attr, 0))
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000758 return;
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000759
760 // The IBOutlet attributes only apply to instance variables of
Ted Kremenekefbddd22010-02-17 02:37:45 +0000761 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000762 if (isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D)) {
763 D->addAttr(::new (S.Context) IBOutletAttr(Attr.getLoc(), S.Context));
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000764 return;
Ted Kremenekefbddd22010-02-17 02:37:45 +0000765 }
Ted Kremenek63e5d7c2010-02-18 03:08:58 +0000766
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000767 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek96329d42008-07-15 22:26:48 +0000768}
769
Chandler Carruth1b03c872011-07-02 00:01:44 +0000770static void handleIBOutletCollection(Sema &S, Decl *D,
771 const AttributeList &Attr) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000772
773 // The iboutletcollection attribute can have zero or one arguments.
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000774 if (Attr.getParameterName() && Attr.getNumArgs() > 0) {
Ted Kremenek857e9182010-05-19 17:38:06 +0000775 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
776 return;
777 }
778
779 // The IBOutletCollection attributes only apply to instance variables of
780 // Objective-C classes.
Chandler Carruth87c44602011-07-01 23:49:12 +0000781 if (!(isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
Ted Kremenek4ee2bb12011-02-04 06:54:16 +0000782 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName();
Ted Kremenek857e9182010-05-19 17:38:06 +0000783 return;
784 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000785 if (const ValueDecl *VD = dyn_cast<ValueDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000786 if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
787 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
788 << VD->getType() << 0;
789 return;
790 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000791 if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000792 if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
793 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_object_type)
794 << PD->getType() << 1;
795 return;
796 }
797
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000798 IdentifierInfo *II = Attr.getParameterName();
799 if (!II)
800 II = &S.Context.Idents.get("id");
Fariborz Jahanian3a3400b2010-08-17 21:39:27 +0000801
John McCallb3d87482010-08-24 05:47:05 +0000802 ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(),
Chandler Carruth87c44602011-07-01 23:49:12 +0000803 S.getScopeForContext(D->getDeclContext()->getParent()));
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000804 if (!TypeRep) {
805 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
806 return;
807 }
John McCallb3d87482010-08-24 05:47:05 +0000808 QualType QT = TypeRep.get();
Fariborz Jahaniana8fb24f2010-08-17 20:23:12 +0000809 // Diagnose use of non-object type in iboutletcollection attribute.
810 // FIXME. Gnu attribute extension ignores use of builtin types in
811 // attributes. So, __attribute__((iboutletcollection(char))) will be
812 // treated as __attribute__((iboutletcollection())).
813 if (!QT->isObjCIdType() && !QT->isObjCClassType() &&
814 !QT->isObjCObjectType()) {
815 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II;
816 return;
817 }
Chandler Carruth87c44602011-07-01 23:49:12 +0000818 D->addAttr(::new (S.Context) IBOutletCollectionAttr(Attr.getLoc(), S.Context,
Sean Huntcf807c42010-08-18 23:23:40 +0000819 QT));
Ted Kremenek857e9182010-05-19 17:38:06 +0000820}
821
Chandler Carruthd309c812011-07-01 23:49:16 +0000822static void possibleTransparentUnionPointerType(QualType &T) {
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000823 if (const RecordType *UT = T->getAsUnionType())
824 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
825 RecordDecl *UD = UT->getDecl();
826 for (RecordDecl::field_iterator it = UD->field_begin(),
827 itend = UD->field_end(); it != itend; ++it) {
828 QualType QT = it->getType();
829 if (QT->isAnyPointerType() || QT->isBlockPointerType()) {
830 T = QT;
831 return;
832 }
833 }
834 }
835}
836
Chandler Carruth1b03c872011-07-02 00:01:44 +0000837static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +0000838 // GCC ignores the nonnull attribute on K&R style function prototypes, so we
839 // ignore it as well
Chandler Carruth87c44602011-07-01 23:49:12 +0000840 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000841 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +0000842 << Attr.getName() << ExpectedFunction;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000843 return;
844 }
Mike Stumpbf916502009-07-24 19:02:52 +0000845
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000846 // In C++ the implicit 'this' function parameter also counts, and they are
847 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000848 bool HasImplicitThisParam = isInstanceMethod(D);
849 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000850
851 // The nonnull attribute only applies to pointers.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000852 SmallVector<unsigned, 10> NonNullArgs;
Mike Stumpbf916502009-07-24 19:02:52 +0000853
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000854 for (AttributeList::arg_iterator I=Attr.arg_begin(),
855 E=Attr.arg_end(); I!=E; ++I) {
Mike Stumpbf916502009-07-24 19:02:52 +0000856
857
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000858 // The argument must be an integer constant expression.
Peter Collingbourne7a730022010-11-23 20:45:58 +0000859 Expr *Ex = *I;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000860 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +0000861 if (Ex->isTypeDependent() || Ex->isValueDependent() ||
862 !Ex->isIntegerConstantExpr(ArgNum, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000863 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
864 << "nonnull" << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000865 return;
866 }
Mike Stumpbf916502009-07-24 19:02:52 +0000867
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000868 unsigned x = (unsigned) ArgNum.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +0000869
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000870 if (x < 1 || x > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000871 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner30bc9652008-11-19 07:22:31 +0000872 << "nonnull" << I.getArgNum() << Ex->getSourceRange();
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000873 return;
874 }
Mike Stumpbf916502009-07-24 19:02:52 +0000875
Ted Kremenek465172f2008-07-21 22:09:15 +0000876 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000877 if (HasImplicitThisParam) {
878 if (x == 0) {
879 S.Diag(Attr.getLoc(),
880 diag::err_attribute_invalid_implicit_this_argument)
881 << "nonnull" << Ex->getSourceRange();
882 return;
883 }
884 --x;
885 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000886
887 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +0000888 QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000889 possibleTransparentUnionPointerType(T);
Fariborz Jahanian68fe96a2011-06-27 21:12:03 +0000890
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000891 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000892 // FIXME: Should also highlight argument in decl.
Douglas Gregorc9ef4052010-08-12 18:48:43 +0000893 S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000894 << "nonnull" << Ex->getSourceRange();
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000895 continue;
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000896 }
Mike Stumpbf916502009-07-24 19:02:52 +0000897
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000898 NonNullArgs.push_back(x);
899 }
Mike Stumpbf916502009-07-24 19:02:52 +0000900
901 // If no arguments were specified to __attribute__((nonnull)) then all pointer
902 // arguments have a nonnull attribute.
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000903 if (NonNullArgs.empty()) {
Chandler Carruth87c44602011-07-01 23:49:12 +0000904 for (unsigned I = 0, E = getFunctionOrMethodNumArgs(D); I != E; ++I) {
905 QualType T = getFunctionOrMethodArgType(D, I).getNonReferenceType();
Chandler Carruthd309c812011-07-01 23:49:16 +0000906 possibleTransparentUnionPointerType(T);
Ted Kremenekdbfe99e2009-07-15 23:23:54 +0000907 if (T->isAnyPointerType() || T->isBlockPointerType())
Daniel Dunbard3f2c102008-10-19 02:04:16 +0000908 NonNullArgs.push_back(I);
Ted Kremenek46bbaca2008-11-18 06:52:58 +0000909 }
Mike Stumpbf916502009-07-24 19:02:52 +0000910
Ted Kremenekee1c08c2010-10-21 18:49:36 +0000911 // No pointer arguments?
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000912 if (NonNullArgs.empty()) {
913 // Warn the trivial case only if attribute is not coming from a
914 // macro instantiation.
915 if (Attr.getLoc().isFileID())
916 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers);
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000917 return;
Fariborz Jahanian60acea42010-09-27 19:05:51 +0000918 }
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000919 }
Ted Kremenek7fb43c12008-09-01 19:57:52 +0000920
921 unsigned* start = &NonNullArgs[0];
922 unsigned size = NonNullArgs.size();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000923 llvm::array_pod_sort(start, start + size);
Chandler Carruth87c44602011-07-01 23:49:12 +0000924 D->addAttr(::new (S.Context) NonNullAttr(Attr.getLoc(), S.Context, start,
Sean Huntcf807c42010-08-18 23:23:40 +0000925 size));
Ted Kremenekeb2b2a32008-07-21 21:53:04 +0000926}
927
Chandler Carruth1b03c872011-07-02 00:01:44 +0000928static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000929 // This attribute must be applied to a function declaration.
930 // The first argument to the attribute must be a string,
931 // the name of the resource, for example "malloc".
932 // The following arguments must be argument indexes, the arguments must be
933 // of integer type for Returns, otherwise of pointer type.
934 // The difference between Holds and Takes is that a pointer may still be used
Jordy Rose2a479922010-08-12 08:54:03 +0000935 // after being held. free() should be __attribute((ownership_takes)), whereas
936 // a list append function may well be __attribute((ownership_holds)).
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000937
938 if (!AL.getParameterName()) {
939 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string)
940 << AL.getName()->getName() << 1;
941 return;
942 }
943 // Figure out our Kind, and check arguments while we're at it.
Sean Huntcf807c42010-08-18 23:23:40 +0000944 OwnershipAttr::OwnershipKind K;
Jordy Rose2a479922010-08-12 08:54:03 +0000945 switch (AL.getKind()) {
946 case AttributeList::AT_ownership_takes:
Sean Huntcf807c42010-08-18 23:23:40 +0000947 K = OwnershipAttr::Takes;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000948 if (AL.getNumArgs() < 1) {
949 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
950 return;
951 }
Jordy Rose2a479922010-08-12 08:54:03 +0000952 break;
953 case AttributeList::AT_ownership_holds:
Sean Huntcf807c42010-08-18 23:23:40 +0000954 K = OwnershipAttr::Holds;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000955 if (AL.getNumArgs() < 1) {
956 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
957 return;
958 }
Jordy Rose2a479922010-08-12 08:54:03 +0000959 break;
960 case AttributeList::AT_ownership_returns:
Sean Huntcf807c42010-08-18 23:23:40 +0000961 K = OwnershipAttr::Returns;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000962 if (AL.getNumArgs() > 1) {
963 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
964 << AL.getNumArgs() + 1;
965 return;
966 }
Jordy Rose2a479922010-08-12 08:54:03 +0000967 break;
968 default:
969 // This should never happen given how we are called.
970 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000971 }
972
Chandler Carruth87c44602011-07-01 23:49:12 +0000973 if (!isFunction(D) || !hasFunctionProto(D)) {
John McCall883cc2c2011-03-02 12:29:23 +0000974 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
975 << AL.getName() << ExpectedFunction;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000976 return;
977 }
978
Chandler Carruth07d7e7a2010-11-16 08:35:43 +0000979 // In C++ the implicit 'this' function parameter also counts, and they are
980 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +0000981 bool HasImplicitThisParam = isInstanceMethod(D);
982 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000983
Chris Lattner5f9e2722011-07-23 10:55:15 +0000984 StringRef Module = AL.getParameterName()->getName();
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000985
986 // Normalize the argument, __foo__ becomes foo.
987 if (Module.startswith("__") && Module.endswith("__"))
988 Module = Module.substr(2, Module.size() - 4);
989
Chris Lattner5f9e2722011-07-23 10:55:15 +0000990 SmallVector<unsigned, 10> OwnershipArgs;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000991
Jordy Rose2a479922010-08-12 08:54:03 +0000992 for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E;
993 ++I) {
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000994
Peter Collingbourne7a730022010-11-23 20:45:58 +0000995 Expr *IdxExpr = *I;
Ted Kremenekdd0e4902010-07-31 01:52:11 +0000996 llvm::APSInt ArgNum(32);
997 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
998 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
999 S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int)
1000 << AL.getName()->getName() << IdxExpr->getSourceRange();
1001 continue;
1002 }
1003
1004 unsigned x = (unsigned) ArgNum.getZExtValue();
1005
1006 if (x > NumArgs || x < 1) {
1007 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
1008 << AL.getName()->getName() << x << IdxExpr->getSourceRange();
1009 continue;
1010 }
1011 --x;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00001012 if (HasImplicitThisParam) {
1013 if (x == 0) {
1014 S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
1015 << "ownership" << IdxExpr->getSourceRange();
1016 return;
1017 }
1018 --x;
1019 }
1020
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001021 switch (K) {
Sean Huntcf807c42010-08-18 23:23:40 +00001022 case OwnershipAttr::Takes:
1023 case OwnershipAttr::Holds: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001024 // Is the function argument a pointer type?
Chandler Carruth87c44602011-07-01 23:49:12 +00001025 QualType T = getFunctionOrMethodArgType(D, x);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001026 if (!T->isAnyPointerType() && !T->isBlockPointerType()) {
1027 // FIXME: Should also highlight argument in decl.
1028 S.Diag(AL.getLoc(), diag::err_ownership_type)
Sean Huntcf807c42010-08-18 23:23:40 +00001029 << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds")
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001030 << "pointer"
1031 << IdxExpr->getSourceRange();
1032 continue;
1033 }
1034 break;
1035 }
Sean Huntcf807c42010-08-18 23:23:40 +00001036 case OwnershipAttr::Returns: {
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001037 if (AL.getNumArgs() > 1) {
1038 // Is the function argument an integer type?
Peter Collingbourne7a730022010-11-23 20:45:58 +00001039 Expr *IdxExpr = AL.getArg(0);
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001040 llvm::APSInt ArgNum(32);
1041 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent()
1042 || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) {
1043 S.Diag(AL.getLoc(), diag::err_ownership_type)
1044 << "ownership_returns" << "integer"
1045 << IdxExpr->getSourceRange();
1046 return;
1047 }
1048 }
1049 break;
1050 }
Jordy Rose2a479922010-08-12 08:54:03 +00001051 default:
1052 llvm_unreachable("Unknown ownership attribute");
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001053 } // switch
1054
1055 // Check we don't have a conflict with another ownership attribute.
Sean Huntcf807c42010-08-18 23:23:40 +00001056 for (specific_attr_iterator<OwnershipAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00001057 i = D->specific_attr_begin<OwnershipAttr>(),
1058 e = D->specific_attr_end<OwnershipAttr>();
Sean Huntcf807c42010-08-18 23:23:40 +00001059 i != e; ++i) {
1060 if ((*i)->getOwnKind() != K) {
1061 for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end();
1062 I!=E; ++I) {
1063 if (x == *I) {
1064 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
1065 << AL.getName()->getName() << "ownership_*";
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001066 }
1067 }
1068 }
1069 }
1070 OwnershipArgs.push_back(x);
1071 }
1072
1073 unsigned* start = OwnershipArgs.data();
1074 unsigned size = OwnershipArgs.size();
1075 llvm::array_pod_sort(start, start + size);
Sean Huntcf807c42010-08-18 23:23:40 +00001076
1077 if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) {
1078 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2;
1079 return;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001080 }
Sean Huntcf807c42010-08-18 23:23:40 +00001081
Chandler Carruth87c44602011-07-01 23:49:12 +00001082 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
Sean Huntcf807c42010-08-18 23:23:40 +00001083 start, size));
Ted Kremenekdd0e4902010-07-31 01:52:11 +00001084}
1085
John McCall332bb2a2011-02-08 22:35:49 +00001086/// Whether this declaration has internal linkage for the purposes of
1087/// things that want to complain about things not have internal linkage.
1088static bool hasEffectivelyInternalLinkage(NamedDecl *D) {
1089 switch (D->getLinkage()) {
1090 case NoLinkage:
1091 case InternalLinkage:
1092 return true;
1093
1094 // Template instantiations that go from external to unique-external
1095 // shouldn't get diagnosed.
1096 case UniqueExternalLinkage:
1097 return true;
1098
1099 case ExternalLinkage:
1100 return false;
1101 }
1102 llvm_unreachable("unknown linkage kind!");
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001103 return false;
1104}
1105
Chandler Carruth1b03c872011-07-02 00:01:44 +00001106static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001107 // Check the attribute arguments.
1108 if (Attr.getNumArgs() > 1) {
1109 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
1110 return;
1111 }
1112
Chandler Carruth87c44602011-07-01 23:49:12 +00001113 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
John McCall332bb2a2011-02-08 22:35:49 +00001114 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001115 << Attr.getName() << ExpectedVariableOrFunction;
John McCall332bb2a2011-02-08 22:35:49 +00001116 return;
1117 }
1118
Chandler Carruth87c44602011-07-01 23:49:12 +00001119 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001120
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001121 // gcc rejects
1122 // class c {
1123 // static int a __attribute__((weakref ("v2")));
1124 // static int b() __attribute__((weakref ("f3")));
1125 // };
1126 // and ignores the attributes of
1127 // void f(void) {
1128 // static int a __attribute__((weakref ("v2")));
1129 // }
1130 // we reject them
Chandler Carruth87c44602011-07-01 23:49:12 +00001131 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001132 if (!Ctx->isFileContext()) {
1133 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) <<
John McCall332bb2a2011-02-08 22:35:49 +00001134 nd->getNameAsString();
Sebastian Redl7a126a42010-08-31 00:36:30 +00001135 return;
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001136 }
1137
1138 // The GCC manual says
1139 //
1140 // At present, a declaration to which `weakref' is attached can only
1141 // be `static'.
1142 //
1143 // It also says
1144 //
1145 // Without a TARGET,
1146 // given as an argument to `weakref' or to `alias', `weakref' is
1147 // equivalent to `weak'.
1148 //
1149 // gcc 4.4.1 will accept
1150 // int a7 __attribute__((weakref));
1151 // as
1152 // int a7 __attribute__((weak));
1153 // This looks like a bug in gcc. We reject that for now. We should revisit
1154 // it if this behaviour is actually used.
1155
John McCall332bb2a2011-02-08 22:35:49 +00001156 if (!hasEffectivelyInternalLinkage(nd)) {
1157 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_static);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001158 return;
1159 }
1160
1161 // GCC rejects
1162 // static ((alias ("y"), weakref)).
1163 // Should we? How to check that weakref is before or after alias?
1164
1165 if (Attr.getNumArgs() == 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001166 Expr *Arg = Attr.getArg(0);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001167 Arg = Arg->IgnoreParenCasts();
1168 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
1169
Douglas Gregor5cee1192011-07-27 05:40:30 +00001170 if (!Str || !Str->isAscii()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001171 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
1172 << "weakref" << 1;
1173 return;
1174 }
1175 // GCC will accept anything as the argument of weakref. Should we
1176 // check for an existing decl?
Chandler Carruth87c44602011-07-01 23:49:12 +00001177 D->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001178 Str->getString()));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001179 }
1180
Chandler Carruth87c44602011-07-01 23:49:12 +00001181 D->addAttr(::new (S.Context) WeakRefAttr(Attr.getLoc(), S.Context));
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001182}
1183
Chandler Carruth1b03c872011-07-02 00:01:44 +00001184static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001185 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00001186 if (Attr.getNumArgs() != 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001187 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001188 return;
1189 }
Mike Stumpbf916502009-07-24 19:02:52 +00001190
Peter Collingbourne7a730022010-11-23 20:45:58 +00001191 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001192 Arg = Arg->IgnoreParenCasts();
1193 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001194
Douglas Gregor5cee1192011-07-27 05:40:30 +00001195 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001196 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001197 << "alias" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001198 return;
1199 }
Mike Stumpbf916502009-07-24 19:02:52 +00001200
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001201 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Rafael Espindolaf5fe2922010-12-07 15:23:23 +00001202 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin);
1203 return;
1204 }
1205
Chris Lattner6b6b5372008-06-26 18:38:35 +00001206 // FIXME: check if target symbol exists in current file
Mike Stumpbf916502009-07-24 19:02:52 +00001207
Chandler Carruth87c44602011-07-01 23:49:12 +00001208 D->addAttr(::new (S.Context) AliasAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001209 Str->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001210}
1211
Chandler Carruth1b03c872011-07-02 00:01:44 +00001212static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001213 // Check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001214 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001215 return;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001216
Chandler Carruth87c44602011-07-01 23:49:12 +00001217 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00001218 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001219 << Attr.getName() << ExpectedFunction;
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001220 return;
1221 }
1222
Chandler Carruth87c44602011-07-01 23:49:12 +00001223 D->addAttr(::new (S.Context) NakedAttr(Attr.getLoc(), S.Context));
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001224}
1225
Chandler Carruth1b03c872011-07-02 00:01:44 +00001226static void handleAlwaysInlineAttr(Sema &S, Decl *D,
1227 const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001228 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001229 if (Attr.hasParameterOrArguments()) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001230 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1231 return;
1232 }
1233
Chandler Carruth87c44602011-07-01 23:49:12 +00001234 if (!isa<FunctionDecl>(D)) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001235 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001236 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00001237 return;
1238 }
Mike Stumpbf916502009-07-24 19:02:52 +00001239
Chandler Carruth87c44602011-07-01 23:49:12 +00001240 D->addAttr(::new (S.Context) AlwaysInlineAttr(Attr.getLoc(), S.Context));
Daniel Dunbaraf668b02008-10-28 00:17:57 +00001241}
1242
Chandler Carruth1b03c872011-07-02 00:01:44 +00001243static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbardd0cb222010-09-29 18:20:25 +00001244 // Check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001245 if (Attr.hasParameterOrArguments()) {
Ryan Flynn76168e22009-08-09 20:07:29 +00001246 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1247 return;
1248 }
Mike Stump1eb44332009-09-09 15:08:12 +00001249
Chandler Carruth87c44602011-07-01 23:49:12 +00001250 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001251 QualType RetTy = FD->getResultType();
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001252 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001253 D->addAttr(::new (S.Context) MallocAttr(Attr.getLoc(), S.Context));
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001254 return;
1255 }
Ryan Flynn76168e22009-08-09 20:07:29 +00001256 }
1257
Ted Kremenek2cff7d12009-08-15 00:51:46 +00001258 S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
Ryan Flynn76168e22009-08-09 20:07:29 +00001259}
1260
Chandler Carruth1b03c872011-07-02 00:01:44 +00001261static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Dan Gohman34c26302010-11-17 00:03:07 +00001262 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001263 if (!checkAttributeNumArgs(S, Attr, 0))
Dan Gohman34c26302010-11-17 00:03:07 +00001264 return;
Dan Gohman34c26302010-11-17 00:03:07 +00001265
Chandler Carruth87c44602011-07-01 23:49:12 +00001266 D->addAttr(::new (S.Context) MayAliasAttr(Attr.getLoc(), S.Context));
Dan Gohman34c26302010-11-17 00:03:07 +00001267}
1268
Chandler Carruth1b03c872011-07-02 00:01:44 +00001269static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001270 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001271 if (isa<VarDecl>(D))
1272 D->addAttr(::new (S.Context) NoCommonAttr(Attr.getLoc(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001273 else
1274 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001275 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001276}
1277
Chandler Carruth1b03c872011-07-02 00:01:44 +00001278static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth56aeb402011-07-11 23:33:05 +00001279 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00001280 if (isa<VarDecl>(D))
1281 D->addAttr(::new (S.Context) CommonAttr(Attr.getLoc(), S.Context));
Eric Christopher722109c2010-12-03 06:58:14 +00001282 else
1283 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001284 << Attr.getName() << ExpectedVariable;
Eric Christophera6cf1e72010-12-02 02:45:55 +00001285}
1286
Chandler Carruth1b03c872011-07-02 00:01:44 +00001287static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001288 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00001289
1290 if (S.CheckNoReturnAttr(attr)) return;
1291
Chandler Carruth87c44602011-07-01 23:49:12 +00001292 if (!isa<ObjCMethodDecl>(D)) {
John McCall711c52b2011-01-05 12:14:39 +00001293 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001294 << attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00001295 return;
1296 }
1297
Chandler Carruth87c44602011-07-01 23:49:12 +00001298 D->addAttr(::new (S.Context) NoReturnAttr(attr.getLoc(), S.Context));
John McCall711c52b2011-01-05 12:14:39 +00001299}
1300
1301bool Sema::CheckNoReturnAttr(const AttributeList &attr) {
Ted Kremenek831efae2011-04-15 05:49:29 +00001302 if (attr.hasParameterOrArguments()) {
John McCall711c52b2011-01-05 12:14:39 +00001303 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1304 attr.setInvalid();
1305 return true;
1306 }
1307
1308 return false;
Ted Kremenekb7252322009-04-10 00:01:14 +00001309}
1310
Chandler Carruth1b03c872011-07-02 00:01:44 +00001311static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D,
1312 const AttributeList &Attr) {
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001313
1314 // The checking path for 'noreturn' and 'analyzer_noreturn' are different
1315 // because 'analyzer_noreturn' does not impact the type.
1316
Chandler Carruth1731e202011-07-11 23:30:35 +00001317 if(!checkAttributeNumArgs(S, Attr, 0))
1318 return;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001319
Chandler Carruth87c44602011-07-01 23:49:12 +00001320 if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) {
1321 ValueDecl *VD = dyn_cast<ValueDecl>(D);
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001322 if (VD == 0 || (!VD->getType()->isBlockPointerType()
1323 && !VD->getType()->isFunctionPointerType())) {
1324 S.Diag(Attr.getLoc(),
1325 Attr.isCXX0XAttribute() ? diag::err_attribute_wrong_decl_type
1326 : diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001327 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Ted Kremenekb56c1cc2010-08-19 00:51:58 +00001328 return;
1329 }
1330 }
1331
Chandler Carruth87c44602011-07-01 23:49:12 +00001332 D->addAttr(::new (S.Context) AnalyzerNoReturnAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001333}
1334
John Thompson35cc9622010-08-09 21:53:52 +00001335// PS3 PPU-specific.
Chandler Carruth1b03c872011-07-02 00:01:44 +00001336static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) {
John Thompson35cc9622010-08-09 21:53:52 +00001337/*
1338 Returning a Vector Class in Registers
1339
Eric Christopherf48f3672010-12-01 22:13:54 +00001340 According to the PPU ABI specifications, a class with a single member of
1341 vector type is returned in memory when used as the return value of a function.
1342 This results in inefficient code when implementing vector classes. To return
1343 the value in a single vector register, add the vecreturn attribute to the
1344 class definition. This attribute is also applicable to struct types.
John Thompson35cc9622010-08-09 21:53:52 +00001345
1346 Example:
1347
1348 struct Vector
1349 {
1350 __vector float xyzw;
1351 } __attribute__((vecreturn));
1352
1353 Vector Add(Vector lhs, Vector rhs)
1354 {
1355 Vector result;
1356 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
1357 return result; // This will be returned in a register
1358 }
1359*/
Chandler Carruth87c44602011-07-01 23:49:12 +00001360 if (!isa<RecordDecl>(D)) {
John Thompson35cc9622010-08-09 21:53:52 +00001361 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001362 << Attr.getName() << ExpectedClass;
John Thompson35cc9622010-08-09 21:53:52 +00001363 return;
1364 }
1365
Chandler Carruth87c44602011-07-01 23:49:12 +00001366 if (D->getAttr<VecReturnAttr>()) {
John Thompson35cc9622010-08-09 21:53:52 +00001367 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn";
1368 return;
1369 }
1370
Chandler Carruth87c44602011-07-01 23:49:12 +00001371 RecordDecl *record = cast<RecordDecl>(D);
John Thompson01add592010-09-18 01:12:07 +00001372 int count = 0;
1373
1374 if (!isa<CXXRecordDecl>(record)) {
1375 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1376 return;
1377 }
1378
1379 if (!cast<CXXRecordDecl>(record)->isPOD()) {
1380 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
1381 return;
1382 }
1383
Eric Christopherf48f3672010-12-01 22:13:54 +00001384 for (RecordDecl::field_iterator iter = record->field_begin();
1385 iter != record->field_end(); iter++) {
John Thompson01add592010-09-18 01:12:07 +00001386 if ((count == 1) || !iter->getType()->isVectorType()) {
1387 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
1388 return;
1389 }
1390 count++;
1391 }
1392
Chandler Carruth87c44602011-07-01 23:49:12 +00001393 D->addAttr(::new (S.Context) VecReturnAttr(Attr.getLoc(), S.Context));
John Thompson35cc9622010-08-09 21:53:52 +00001394}
1395
Chandler Carruth1b03c872011-07-02 00:01:44 +00001396static void handleDependencyAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001397 if (!isFunctionOrMethod(D) && !isa<ParmVarDecl>(D)) {
Sean Huntbbd37c62009-11-21 08:43:09 +00001398 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001399 << Attr.getName() << ExpectedFunctionMethodOrParameter;
Sean Huntbbd37c62009-11-21 08:43:09 +00001400 return;
1401 }
1402 // FIXME: Actually store the attribute on the declaration
1403}
1404
Chandler Carruth1b03c872011-07-02 00:01:44 +00001405static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Ted Kremenek73798892008-07-25 04:39:19 +00001406 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001407 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001408 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Ted Kremenek73798892008-07-25 04:39:19 +00001409 return;
1410 }
Mike Stumpbf916502009-07-24 19:02:52 +00001411
Chandler Carruth87c44602011-07-01 23:49:12 +00001412 if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) &&
1413 !isa<TypeDecl>(D) && !isa<LabelDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001414 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001415 << Attr.getName() << ExpectedVariableFunctionOrLabel;
Ted Kremenek73798892008-07-25 04:39:19 +00001416 return;
1417 }
Mike Stumpbf916502009-07-24 19:02:52 +00001418
Chandler Carruth87c44602011-07-01 23:49:12 +00001419 D->addAttr(::new (S.Context) UnusedAttr(Attr.getLoc(), S.Context));
Ted Kremenek73798892008-07-25 04:39:19 +00001420}
1421
Chandler Carruth1b03c872011-07-02 00:01:44 +00001422static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001423 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001424 if (Attr.hasParameterOrArguments()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001425 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
1426 return;
1427 }
Mike Stumpbf916502009-07-24 19:02:52 +00001428
Chandler Carruth87c44602011-07-01 23:49:12 +00001429 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Daniel Dunbar186204b2009-02-13 22:48:56 +00001430 if (VD->hasLocalStorage() || VD->hasExternalStorage()) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001431 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used";
1432 return;
1433 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001434 } else if (!isFunctionOrMethod(D)) {
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001435 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001436 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001437 return;
1438 }
Mike Stumpbf916502009-07-24 19:02:52 +00001439
Chandler Carruth87c44602011-07-01 23:49:12 +00001440 D->addAttr(::new (S.Context) UsedAttr(Attr.getLoc(), S.Context));
Daniel Dunbarb805dad2009-02-13 19:23:53 +00001441}
1442
Chandler Carruth1b03c872011-07-02 00:01:44 +00001443static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001444 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001445 if (Attr.getNumArgs() > 1) {
1446 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001447 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001448 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001449
1450 int priority = 65535; // FIXME: Do not hardcode such constants.
1451 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001452 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001453 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001454 if (E->isTypeDependent() || E->isValueDependent() ||
1455 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001456 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001457 << "constructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001458 return;
1459 }
1460 priority = Idx.getZExtValue();
1461 }
Mike Stumpbf916502009-07-24 19:02:52 +00001462
Chandler Carruth87c44602011-07-01 23:49:12 +00001463 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001464 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001465 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001466 return;
1467 }
1468
Chandler Carruth87c44602011-07-01 23:49:12 +00001469 D->addAttr(::new (S.Context) ConstructorAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001470 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001471}
1472
Chandler Carruth1b03c872011-07-02 00:01:44 +00001473static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001474 // check the attribute arguments.
John McCallbdc49d32011-03-02 12:15:05 +00001475 if (Attr.getNumArgs() > 1) {
1476 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001477 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001478 }
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001479
1480 int priority = 65535; // FIXME: Do not hardcode such constants.
1481 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001482 Expr *E = Attr.getArg(0);
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001483 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001484 if (E->isTypeDependent() || E->isValueDependent() ||
1485 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001486 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001487 << "destructor" << 1 << E->getSourceRange();
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001488 return;
1489 }
1490 priority = Idx.getZExtValue();
1491 }
Mike Stumpbf916502009-07-24 19:02:52 +00001492
Chandler Carruth87c44602011-07-01 23:49:12 +00001493 if (!isa<FunctionDecl>(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001494 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001495 << Attr.getName() << ExpectedFunction;
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001496 return;
1497 }
1498
Chandler Carruth87c44602011-07-01 23:49:12 +00001499 D->addAttr(::new (S.Context) DestructorAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00001500 priority));
Daniel Dunbar3068ae02008-07-31 22:40:48 +00001501}
1502
Chandler Carruth1b03c872011-07-02 00:01:44 +00001503static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001504 unsigned NumArgs = Attr.getNumArgs();
1505 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001506 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001507 return;
1508 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001509
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001510 // Handle the case where deprecated attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001511 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001512 if (NumArgs == 1) {
1513 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001514 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001515 S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string)
1516 << "deprecated";
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001517 return;
1518 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001519 Str = SE->getString();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00001520 }
Mike Stumpbf916502009-07-24 19:02:52 +00001521
Chandler Carruth87c44602011-07-01 23:49:12 +00001522 D->addAttr(::new (S.Context) DeprecatedAttr(Attr.getLoc(), S.Context, Str));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001523}
1524
Chandler Carruth1b03c872011-07-02 00:01:44 +00001525static void handleUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001526 unsigned NumArgs = Attr.getNumArgs();
1527 if (NumArgs > 1) {
John McCallbdc49d32011-03-02 12:15:05 +00001528 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1;
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001529 return;
1530 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001531
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001532 // Handle the case where unavailable attribute has a text message.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001533 StringRef Str;
Chris Lattner951bbb22011-02-24 05:42:24 +00001534 if (NumArgs == 1) {
1535 StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0));
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001536 if (!SE) {
Chris Lattner951bbb22011-02-24 05:42:24 +00001537 S.Diag(Attr.getArg(0)->getLocStart(),
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001538 diag::err_attribute_not_string) << "unavailable";
1539 return;
1540 }
Chris Lattner951bbb22011-02-24 05:42:24 +00001541 Str = SE->getString();
Fariborz Jahanianc784dc12010-10-06 23:12:32 +00001542 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001543 D->addAttr(::new (S.Context) UnavailableAttr(Attr.getLoc(), S.Context, Str));
Fariborz Jahanianbc1c8772008-12-17 01:07:27 +00001544}
1545
Fariborz Jahanian742352a2011-07-06 19:24:05 +00001546static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D,
1547 const AttributeList &Attr) {
1548 unsigned NumArgs = Attr.getNumArgs();
1549 if (NumArgs > 0) {
1550 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0;
1551 return;
1552 }
1553
1554 D->addAttr(::new (S.Context) ArcWeakrefUnavailableAttr(
1555 Attr.getLoc(), S.Context));
1556}
1557
Chandler Carruth1b03c872011-07-02 00:01:44 +00001558static void handleAvailabilityAttr(Sema &S, Decl *D,
1559 const AttributeList &Attr) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001560 IdentifierInfo *Platform = Attr.getParameterName();
1561 SourceLocation PlatformLoc = Attr.getParameterLoc();
1562
Chris Lattner5f9e2722011-07-23 10:55:15 +00001563 StringRef PlatformName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001564 = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
1565 if (PlatformName.empty()) {
1566 S.Diag(PlatformLoc, diag::warn_availability_unknown_platform)
1567 << Platform;
1568
1569 PlatformName = Platform->getName();
1570 }
1571
1572 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced();
1573 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated();
1574 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted();
Douglas Gregorb53e4172011-03-26 03:35:55 +00001575 bool IsUnavailable = Attr.getUnavailableLoc().isValid();
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001576
Douglas Gregorc90df6a2011-08-10 16:09:55 +00001577 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001578 // of these steps are needed).
1579 if (Introduced.isValid() && Deprecated.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001580 !(Introduced.Version <= Deprecated.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001581 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1582 << 1 << PlatformName << Deprecated.Version.getAsString()
1583 << 0 << Introduced.Version.getAsString();
1584 return;
1585 }
1586
1587 if (Introduced.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001588 !(Introduced.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001589 S.Diag(Introduced.KeywordLoc, diag::warn_availability_version_ordering)
1590 << 2 << PlatformName << Obsoleted.Version.getAsString()
1591 << 0 << Introduced.Version.getAsString();
1592 return;
1593 }
1594
1595 if (Deprecated.isValid() && Obsoleted.isValid() &&
Douglas Gregor3b6b7ac2011-08-10 15:31:35 +00001596 !(Deprecated.Version <= Obsoleted.Version)) {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001597 S.Diag(Deprecated.KeywordLoc, diag::warn_availability_version_ordering)
1598 << 2 << PlatformName << Obsoleted.Version.getAsString()
1599 << 1 << Deprecated.Version.getAsString();
1600 return;
1601 }
1602
Chandler Carruth87c44602011-07-01 23:49:12 +00001603 D->addAttr(::new (S.Context) AvailabilityAttr(Attr.getLoc(), S.Context,
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001604 Platform,
1605 Introduced.Version,
1606 Deprecated.Version,
Douglas Gregorb53e4172011-03-26 03:35:55 +00001607 Obsoleted.Version,
1608 IsUnavailable));
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001609}
1610
Chandler Carruth1b03c872011-07-02 00:01:44 +00001611static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001612 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001613 if(!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00001614 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001615
Peter Collingbourne7a730022010-11-23 20:45:58 +00001616 Expr *Arg = Attr.getArg(0);
Chris Lattner6b6b5372008-06-26 18:38:35 +00001617 Arg = Arg->IgnoreParenCasts();
1618 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Mike Stumpbf916502009-07-24 19:02:52 +00001619
Douglas Gregor5cee1192011-07-27 05:40:30 +00001620 if (!Str || !Str->isAscii()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001621 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001622 << "visibility" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001623 return;
1624 }
Mike Stumpbf916502009-07-24 19:02:52 +00001625
Chris Lattner5f9e2722011-07-23 10:55:15 +00001626 StringRef TypeStr = Str->getString();
Sean Huntcf807c42010-08-18 23:23:40 +00001627 VisibilityAttr::VisibilityType type;
Mike Stumpbf916502009-07-24 19:02:52 +00001628
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001629 if (TypeStr == "default")
Sean Huntcf807c42010-08-18 23:23:40 +00001630 type = VisibilityAttr::Default;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001631 else if (TypeStr == "hidden")
Sean Huntcf807c42010-08-18 23:23:40 +00001632 type = VisibilityAttr::Hidden;
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001633 else if (TypeStr == "internal")
Sean Huntcf807c42010-08-18 23:23:40 +00001634 type = VisibilityAttr::Hidden; // FIXME
Benjamin Kramerc96f4942010-01-23 18:16:35 +00001635 else if (TypeStr == "protected")
Sean Huntcf807c42010-08-18 23:23:40 +00001636 type = VisibilityAttr::Protected;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001637 else {
Chris Lattner08631c52008-11-23 21:45:46 +00001638 S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001639 return;
1640 }
Mike Stumpbf916502009-07-24 19:02:52 +00001641
Chandler Carruth87c44602011-07-01 23:49:12 +00001642 D->addAttr(::new (S.Context) VisibilityAttr(Attr.getLoc(), S.Context, type));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001643}
1644
Chandler Carruth1b03c872011-07-02 00:01:44 +00001645static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl,
1646 const AttributeList &Attr) {
John McCalld5313b02011-03-02 11:33:24 +00001647 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl);
1648 if (!method) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001649 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001650 << ExpectedMethod;
John McCalld5313b02011-03-02 11:33:24 +00001651 return;
1652 }
1653
Chandler Carruth87c44602011-07-01 23:49:12 +00001654 if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) {
1655 if (!Attr.getParameterName() && Attr.getNumArgs() == 1) {
1656 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
John McCalld5313b02011-03-02 11:33:24 +00001657 << "objc_method_family" << 1;
1658 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00001659 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
John McCalld5313b02011-03-02 11:33:24 +00001660 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001661 Attr.setInvalid();
John McCalld5313b02011-03-02 11:33:24 +00001662 return;
1663 }
1664
Chris Lattner5f9e2722011-07-23 10:55:15 +00001665 StringRef param = Attr.getParameterName()->getName();
John McCalld5313b02011-03-02 11:33:24 +00001666 ObjCMethodFamilyAttr::FamilyKind family;
1667 if (param == "none")
1668 family = ObjCMethodFamilyAttr::OMF_None;
1669 else if (param == "alloc")
1670 family = ObjCMethodFamilyAttr::OMF_alloc;
1671 else if (param == "copy")
1672 family = ObjCMethodFamilyAttr::OMF_copy;
1673 else if (param == "init")
1674 family = ObjCMethodFamilyAttr::OMF_init;
1675 else if (param == "mutableCopy")
1676 family = ObjCMethodFamilyAttr::OMF_mutableCopy;
1677 else if (param == "new")
1678 family = ObjCMethodFamilyAttr::OMF_new;
1679 else {
1680 // Just warn and ignore it. This is future-proof against new
1681 // families being used in system headers.
Chandler Carruth87c44602011-07-01 23:49:12 +00001682 S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family);
John McCalld5313b02011-03-02 11:33:24 +00001683 return;
1684 }
1685
John McCallf85e1932011-06-15 23:02:42 +00001686 if (family == ObjCMethodFamilyAttr::OMF_init &&
1687 !method->getResultType()->isObjCObjectPointerType()) {
1688 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type)
1689 << method->getResultType();
1690 // Ignore the attribute.
1691 return;
1692 }
1693
Chandler Carruth87c44602011-07-01 23:49:12 +00001694 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getLoc(),
John McCallf85e1932011-06-15 23:02:42 +00001695 S.Context, family));
John McCalld5313b02011-03-02 11:33:24 +00001696}
1697
Chandler Carruth1b03c872011-07-02 00:01:44 +00001698static void handleObjCExceptionAttr(Sema &S, Decl *D,
1699 const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00001700 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner0db29ec2009-02-14 08:09:34 +00001701 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001702
Chris Lattner0db29ec2009-02-14 08:09:34 +00001703 ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D);
1704 if (OCI == 0) {
1705 S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface);
1706 return;
1707 }
Mike Stumpbf916502009-07-24 19:02:52 +00001708
Sean Huntcf807c42010-08-18 23:23:40 +00001709 D->addAttr(::new (S.Context) ObjCExceptionAttr(Attr.getLoc(), S.Context));
Chris Lattner0db29ec2009-02-14 08:09:34 +00001710}
1711
Chandler Carruth1b03c872011-07-02 00:01:44 +00001712static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001713 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001714 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001715 return;
1716 }
Richard Smith162e1c12011-04-15 14:24:37 +00001717 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001718 QualType T = TD->getUnderlyingType();
1719 if (!T->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00001720 !T->getAs<PointerType>()->getPointeeType()->isRecordType()) {
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001721 S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
1722 return;
1723 }
1724 }
Sean Huntcf807c42010-08-18 23:23:40 +00001725 D->addAttr(::new (S.Context) ObjCNSObjectAttr(Attr.getLoc(), S.Context));
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00001726}
1727
Mike Stumpbf916502009-07-24 19:02:52 +00001728static void
Chandler Carruth1b03c872011-07-02 00:01:44 +00001729handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00001730 if (Attr.getNumArgs() != 0) {
John McCall2b7baf02010-05-28 18:25:28 +00001731 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Douglas Gregorf9201e02009-02-11 23:02:49 +00001732 return;
1733 }
1734
1735 if (!isa<FunctionDecl>(D)) {
1736 S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function);
1737 return;
1738 }
1739
Sean Huntcf807c42010-08-18 23:23:40 +00001740 D->addAttr(::new (S.Context) OverloadableAttr(Attr.getLoc(), S.Context));
Douglas Gregorf9201e02009-02-11 23:02:49 +00001741}
1742
Chandler Carruth1b03c872011-07-02 00:01:44 +00001743static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00001744 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001745 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00001746 << "blocks" << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001747 return;
1748 }
Mike Stumpbf916502009-07-24 19:02:52 +00001749
Steve Naroff9eae5762008-09-18 16:44:58 +00001750 if (Attr.getNumArgs() != 0) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001751 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Steve Naroff9eae5762008-09-18 16:44:58 +00001752 return;
1753 }
Mike Stumpbf916502009-07-24 19:02:52 +00001754
Sean Huntcf807c42010-08-18 23:23:40 +00001755 BlocksAttr::BlockType type;
Chris Lattner92e62b02008-11-20 04:42:34 +00001756 if (Attr.getParameterName()->isStr("byref"))
Steve Naroff9eae5762008-09-18 16:44:58 +00001757 type = BlocksAttr::ByRef;
1758 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001759 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Chris Lattner3c73c412008-11-19 08:23:25 +00001760 << "blocks" << Attr.getParameterName();
Steve Naroff9eae5762008-09-18 16:44:58 +00001761 return;
1762 }
Mike Stumpbf916502009-07-24 19:02:52 +00001763
Chandler Carruth87c44602011-07-01 23:49:12 +00001764 D->addAttr(::new (S.Context) BlocksAttr(Attr.getLoc(), S.Context, type));
Steve Naroff9eae5762008-09-18 16:44:58 +00001765}
1766
Chandler Carruth1b03c872011-07-02 00:01:44 +00001767static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson77091822008-10-05 18:05:59 +00001768 // check the attribute arguments.
1769 if (Attr.getNumArgs() > 2) {
John McCallbdc49d32011-03-02 12:15:05 +00001770 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Anders Carlsson77091822008-10-05 18:05:59 +00001771 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001772 }
1773
Anders Carlsson77091822008-10-05 18:05:59 +00001774 int sentinel = 0;
1775 if (Attr.getNumArgs() > 0) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001776 Expr *E = Attr.getArg(0);
Anders Carlsson77091822008-10-05 18:05:59 +00001777 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001778 if (E->isTypeDependent() || E->isValueDependent() ||
1779 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001780 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001781 << "sentinel" << 1 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001782 return;
1783 }
1784 sentinel = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001785
Anders Carlsson77091822008-10-05 18:05:59 +00001786 if (sentinel < 0) {
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 }
1791 }
1792
1793 int nullPos = 0;
1794 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001795 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001796 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001797 if (E->isTypeDependent() || E->isValueDependent() ||
1798 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001799 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001800 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001801 return;
1802 }
1803 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001804
Anders Carlsson77091822008-10-05 18:05:59 +00001805 if (nullPos > 1 || nullPos < 0) {
1806 // FIXME: This error message could be improved, it would be nice
1807 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001808 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1809 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001810 return;
1811 }
1812 }
1813
Chandler Carruth87c44602011-07-01 23:49:12 +00001814 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall183700f2009-09-21 23:43:11 +00001815 const FunctionType *FT = FD->getType()->getAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001816 assert(FT && "FunctionDecl has non-function type?");
Mike Stumpbf916502009-07-24 19:02:52 +00001817
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 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001856 D->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), 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
Sean Huntcf807c42010-08-18 23:23:40 +00001883 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), 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
Chandler Carruth87c44602011-07-01 23:49:12 +00001907 nd->addAttr(::new (S.Context) WeakAttr(Attr.getLoc(), 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
Sean Huntcf807c42010-08-18 23:23:40 +00001934 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), 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 }
Sean Huntcf807c42010-08-18 23:23:40 +00001955 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1956 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
Eric Christopherf48f3672010-12-01 22:13:54 +00001988 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context,
1989 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())
2002 Existing->setLocation(Attr.getLoc());
2003 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002004 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), 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())
2017 Existing->setLocation(Attr.getLoc());
2018 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002019 D->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), 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
Chandler Carruth87c44602011-07-01 23:49:12 +00002028 D->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), 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
Chandler Carruth87c44602011-07-01 23:49:12 +00002087 D->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), 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
Chandler Carruth87c44602011-07-01 23:49:12 +00002162 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), 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 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002246 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), 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())
2397 f->setLocation(Attr.getLoc());
2398 return;
2399 }
2400 }
2401
Chandler Carruth87c44602011-07-01 23:49:12 +00002402 D->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), 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
Sean Huntcf807c42010-08-18 23:23:40 +00002471 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), 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 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002488 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002489 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002490}
2491
Chandler Carruth1b03c872011-07-02 00:01:44 +00002492static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002493 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002494 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002495 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002496 return;
2497 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002498
2499 //FIXME: The C++0x version of this attribute has more limited applicabilty
2500 // than GNU's, and should error out when it is used to specify a
2501 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002502
Chris Lattner545dd342008-06-28 23:36:30 +00002503 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00002504 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002505 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002506 }
Mike Stumpbf916502009-07-24 19:02:52 +00002507
Peter Collingbourne7a730022010-11-23 20:45:58 +00002508 S.AddAlignedAttr(Attr.getLoc(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002509}
2510
2511void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
2512 if (E->isTypeDependent() || E->isValueDependent()) {
2513 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00002514 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002515 return;
2516 }
2517
Sean Huntcf807c42010-08-18 23:23:40 +00002518 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002519 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002520 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2521 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2522 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002523 return;
2524 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002525 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002526 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2527 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002528 return;
2529 }
2530
Sean Huntcf807c42010-08-18 23:23:40 +00002531 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
2532}
2533
2534void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
2535 // FIXME: Cache the number on the Attr object if non-dependent?
2536 // FIXME: Perform checking of type validity
2537 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
2538 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002539}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002540
Chandler Carruthd309c812011-07-01 23:49:16 +00002541/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002542/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002543///
Mike Stumpbf916502009-07-24 19:02:52 +00002544/// Despite what would be logical, the mode attribute is a decl attribute, not a
2545/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2546/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002547static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002548 // This attribute isn't documented, but glibc uses it. It changes
2549 // the width of an int or unsigned int to the specified size.
2550
2551 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002552 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002553 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002554
Chris Lattnerfbf13472008-06-27 22:18:37 +00002555
2556 IdentifierInfo *Name = Attr.getParameterName();
2557 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002558 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002559 return;
2560 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002561
Chris Lattner5f9e2722011-07-23 10:55:15 +00002562 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002563
2564 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002565 if (Str.startswith("__") && Str.endswith("__"))
2566 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002567
2568 unsigned DestWidth = 0;
2569 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002570 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002571 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002572 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002573 switch (Str[0]) {
2574 case 'Q': DestWidth = 8; break;
2575 case 'H': DestWidth = 16; break;
2576 case 'S': DestWidth = 32; break;
2577 case 'D': DestWidth = 64; break;
2578 case 'X': DestWidth = 96; break;
2579 case 'T': DestWidth = 128; break;
2580 }
2581 if (Str[1] == 'F') {
2582 IntegerMode = false;
2583 } else if (Str[1] == 'C') {
2584 IntegerMode = false;
2585 ComplexMode = true;
2586 } else if (Str[1] != 'I') {
2587 DestWidth = 0;
2588 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002589 break;
2590 case 4:
2591 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2592 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002593 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002594 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002595 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002596 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002597 break;
2598 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002599 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002600 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002601 break;
2602 }
2603
2604 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002605 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002606 OldTy = TD->getUnderlyingType();
2607 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2608 OldTy = VD->getType();
2609 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002610 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2611 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00002612 return;
2613 }
Eli Friedman73397492009-03-03 06:41:03 +00002614
John McCall183700f2009-09-21 23:43:11 +00002615 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002616 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2617 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002618 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002619 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2620 } else if (ComplexMode) {
2621 if (!OldTy->isComplexType())
2622 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2623 } else {
2624 if (!OldTy->isFloatingType())
2625 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2626 }
2627
Mike Stump390b4cc2009-05-16 07:39:55 +00002628 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2629 // and friends, at least with glibc.
2630 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2631 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002632 // FIXME: Make sure floating-point mappings are accurate
2633 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002634 QualType NewTy;
2635 switch (DestWidth) {
2636 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002637 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002638 return;
2639 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002640 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002641 return;
2642 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002643 if (!IntegerMode) {
2644 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2645 return;
2646 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002647 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002648 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002649 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002650 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002651 break;
2652 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002653 if (!IntegerMode) {
2654 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2655 return;
2656 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002657 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002658 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002659 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002660 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002661 break;
2662 case 32:
2663 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002664 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002665 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002666 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002667 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002668 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002669 break;
2670 case 64:
2671 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002672 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002673 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002674 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002675 NewTy = S.Context.LongTy;
2676 else
2677 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002678 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002679 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002680 NewTy = S.Context.UnsignedLongTy;
2681 else
2682 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002683 break;
Eli Friedman73397492009-03-03 06:41:03 +00002684 case 96:
2685 NewTy = S.Context.LongDoubleTy;
2686 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002687 case 128:
2688 if (!IntegerMode) {
2689 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2690 return;
2691 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002692 if (OldTy->isSignedIntegerType())
2693 NewTy = S.Context.Int128Ty;
2694 else
2695 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002696 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002697 }
2698
Eli Friedman73397492009-03-03 06:41:03 +00002699 if (ComplexMode) {
2700 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002701 }
2702
2703 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002704 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002705 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002706 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002707 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002708 cast<ValueDecl>(D)->setType(NewTy);
2709}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002710
Chandler Carruth1b03c872011-07-02 00:01:44 +00002711static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002712 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002713 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002714 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002715
Chandler Carruth87c44602011-07-01 23:49:12 +00002716 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002717 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002718 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002719 return;
2720 }
Mike Stumpbf916502009-07-24 19:02:52 +00002721
Chandler Carruth87c44602011-07-01 23:49:12 +00002722 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002723}
2724
Chandler Carruth1b03c872011-07-02 00:01:44 +00002725static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002726 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002727 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002728 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002729
Mike Stumpbf916502009-07-24 19:02:52 +00002730
Chandler Carruth87c44602011-07-01 23:49:12 +00002731 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002732 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002733 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002734 return;
2735 }
Mike Stumpbf916502009-07-24 19:02:52 +00002736
Chandler Carruth87c44602011-07-01 23:49:12 +00002737 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002738}
2739
Chandler Carruth1b03c872011-07-02 00:01:44 +00002740static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2741 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002742 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002743 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002744 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002745
Chris Lattner7255a2d2010-06-22 00:03:40 +00002746
Chandler Carruth87c44602011-07-01 23:49:12 +00002747 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002748 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002749 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002750 return;
2751 }
2752
Chandler Carruth87c44602011-07-01 23:49:12 +00002753 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002754 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002755}
2756
Chandler Carruth1b03c872011-07-02 00:01:44 +00002757static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002758 if (S.LangOpts.CUDA) {
2759 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002760 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002761 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2762 return;
2763 }
2764
Chandler Carruth87c44602011-07-01 23:49:12 +00002765 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002766 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002767 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002768 return;
2769 }
2770
Chandler Carruth87c44602011-07-01 23:49:12 +00002771 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002772 } else {
2773 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2774 }
2775}
2776
Chandler Carruth1b03c872011-07-02 00:01:44 +00002777static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002778 if (S.LangOpts.CUDA) {
2779 // check the attribute arguments.
2780 if (Attr.getNumArgs() != 0) {
2781 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2782 return;
2783 }
2784
Chandler Carruth87c44602011-07-01 23:49:12 +00002785 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002786 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002787 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002788 return;
2789 }
2790
Chandler Carruth87c44602011-07-01 23:49:12 +00002791 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002792 } else {
2793 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2794 }
2795}
2796
Chandler Carruth1b03c872011-07-02 00:01:44 +00002797static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002798 if (S.LangOpts.CUDA) {
2799 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002800 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002801 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002802
Chandler Carruth87c44602011-07-01 23:49:12 +00002803 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002804 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002805 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002806 return;
2807 }
2808
Chandler Carruth87c44602011-07-01 23:49:12 +00002809 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002810 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002811 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002812 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2813 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2814 << FD->getType()
2815 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2816 "void");
2817 } else {
2818 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2819 << FD->getType();
2820 }
2821 return;
2822 }
2823
Chandler Carruth87c44602011-07-01 23:49:12 +00002824 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002825 } else {
2826 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2827 }
2828}
2829
Chandler Carruth1b03c872011-07-02 00:01:44 +00002830static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002831 if (S.LangOpts.CUDA) {
2832 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002833 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002834 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002835
Peter Collingbourneced76712010-12-01 03:15:31 +00002836
Chandler Carruth87c44602011-07-01 23:49:12 +00002837 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002838 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002839 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002840 return;
2841 }
2842
Chandler Carruth87c44602011-07-01 23:49:12 +00002843 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002844 } else {
2845 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2846 }
2847}
2848
Chandler Carruth1b03c872011-07-02 00:01:44 +00002849static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002850 if (S.LangOpts.CUDA) {
2851 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002852 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002853 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002854
Peter Collingbourneced76712010-12-01 03:15:31 +00002855
Chandler Carruth87c44602011-07-01 23:49:12 +00002856 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002857 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002858 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002859 return;
2860 }
2861
Chandler Carruth87c44602011-07-01 23:49:12 +00002862 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002863 } else {
2864 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2865 }
2866}
2867
Chandler Carruth1b03c872011-07-02 00:01:44 +00002868static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002869 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002870 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002871 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002872
Chandler Carruth87c44602011-07-01 23:49:12 +00002873 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002874 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002875 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002876 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002877 return;
2878 }
Mike Stumpbf916502009-07-24 19:02:52 +00002879
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002880 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002881 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002882 return;
2883 }
Mike Stumpbf916502009-07-24 19:02:52 +00002884
Chandler Carruth87c44602011-07-01 23:49:12 +00002885 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002886}
2887
Chandler Carruth1b03c872011-07-02 00:01:44 +00002888static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002889 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002890
Chandler Carruth87c44602011-07-01 23:49:12 +00002891 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002892 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2893 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002894 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002895 return;
2896
Chandler Carruth87c44602011-07-01 23:49:12 +00002897 if (!isa<ObjCMethodDecl>(D)) {
2898 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2899 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002900 return;
2901 }
2902
Chandler Carruth87c44602011-07-01 23:49:12 +00002903 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002904 case AttributeList::AT_fastcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002905 D->addAttr(::new (S.Context) FastCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002906 return;
2907 case AttributeList::AT_stdcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002908 D->addAttr(::new (S.Context) StdCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002909 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002910 case AttributeList::AT_thiscall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002911 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002912 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002913 case AttributeList::AT_cdecl:
Chandler Carruth87c44602011-07-01 23:49:12 +00002914 D->addAttr(::new (S.Context) CDeclAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002915 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002916 case AttributeList::AT_pascal:
Chandler Carruth87c44602011-07-01 23:49:12 +00002917 D->addAttr(::new (S.Context) PascalAttr(Attr.getLoc(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002918 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002919 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002920 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002921 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002922 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002923 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002924 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002925 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002926 return;
2927 }
2928
Chris Lattner5f9e2722011-07-23 10:55:15 +00002929 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002930 PcsAttr::PCSType PCS;
2931 if (StrRef == "aapcs")
2932 PCS = PcsAttr::AAPCS;
2933 else if (StrRef == "aapcs-vfp")
2934 PCS = PcsAttr::AAPCS_VFP;
2935 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002936 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2937 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002938 return;
2939 }
2940
Chandler Carruth87c44602011-07-01 23:49:12 +00002941 D->addAttr(::new (S.Context) PcsAttr(Attr.getLoc(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002942 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002943 default:
2944 llvm_unreachable("unexpected attribute kind");
2945 return;
2946 }
2947}
2948
Chandler Carruth1b03c872011-07-02 00:01:44 +00002949static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002950 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00002951 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getLoc(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00002952}
2953
John McCall711c52b2011-01-05 12:14:39 +00002954bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2955 if (attr.isInvalid())
2956 return true;
2957
Ted Kremenek831efae2011-04-15 05:49:29 +00002958 if ((attr.getNumArgs() != 0 &&
2959 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
2960 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00002961 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2962 attr.setInvalid();
2963 return true;
2964 }
2965
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002966 // TODO: diagnose uses of these conventions on the wrong target. Or, better
2967 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00002968 switch (attr.getKind()) {
2969 case AttributeList::AT_cdecl: CC = CC_C; break;
2970 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2971 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2972 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2973 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002974 case AttributeList::AT_pcs: {
2975 Expr *Arg = attr.getArg(0);
2976 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002977 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002978 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
2979 << "pcs" << 1;
2980 attr.setInvalid();
2981 return true;
2982 }
2983
Chris Lattner5f9e2722011-07-23 10:55:15 +00002984 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002985 if (StrRef == "aapcs") {
2986 CC = CC_AAPCS;
2987 break;
2988 } else if (StrRef == "aapcs-vfp") {
2989 CC = CC_AAPCS_VFP;
2990 break;
2991 }
2992 // FALLS THROUGH
2993 }
John McCall711c52b2011-01-05 12:14:39 +00002994 default: llvm_unreachable("unexpected attribute kind"); return true;
2995 }
2996
2997 return false;
2998}
2999
Chandler Carruth1b03c872011-07-02 00:01:44 +00003000static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003001 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003002
3003 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003004 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003005 return;
3006
Chandler Carruth87c44602011-07-01 23:49:12 +00003007 if (!isa<ObjCMethodDecl>(D)) {
3008 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3009 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003010 return;
3011 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003012
Chandler Carruth87c44602011-07-01 23:49:12 +00003013 D->addAttr(::new (S.Context) RegparmAttr(Attr.getLoc(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003014}
3015
3016/// Checks a regparm attribute, returning true if it is ill-formed and
3017/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003018bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3019 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003020 return true;
3021
Chandler Carruth87c44602011-07-01 23:49:12 +00003022 if (Attr.getNumArgs() != 1) {
3023 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3024 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003025 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003026 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003027
Chandler Carruth87c44602011-07-01 23:49:12 +00003028 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003029 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003030 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003031 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003032 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003033 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003034 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003035 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003036 }
3037
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003038 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003039 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003040 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003041 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003042 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003043 }
3044
John McCall711c52b2011-01-05 12:14:39 +00003045 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003046 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003047 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003048 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003049 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003050 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003051 }
3052
John McCall711c52b2011-01-05 12:14:39 +00003053 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003054}
3055
Chandler Carruth1b03c872011-07-02 00:01:44 +00003056static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003057 if (S.LangOpts.CUDA) {
3058 // check the attribute arguments.
3059 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003060 // FIXME: 0 is not okay.
3061 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003062 return;
3063 }
3064
Chandler Carruth87c44602011-07-01 23:49:12 +00003065 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003066 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003067 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003068 return;
3069 }
3070
3071 Expr *MaxThreadsExpr = Attr.getArg(0);
3072 llvm::APSInt MaxThreads(32);
3073 if (MaxThreadsExpr->isTypeDependent() ||
3074 MaxThreadsExpr->isValueDependent() ||
3075 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3076 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3077 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3078 return;
3079 }
3080
3081 llvm::APSInt MinBlocks(32);
3082 if (Attr.getNumArgs() > 1) {
3083 Expr *MinBlocksExpr = Attr.getArg(1);
3084 if (MinBlocksExpr->isTypeDependent() ||
3085 MinBlocksExpr->isValueDependent() ||
3086 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3087 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3088 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3089 return;
3090 }
3091 }
3092
Chandler Carruth87c44602011-07-01 23:49:12 +00003093 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getLoc(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003094 MaxThreads.getZExtValue(),
3095 MinBlocks.getZExtValue()));
3096 } else {
3097 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3098 }
3099}
3100
Chris Lattner0744e5f2008-06-29 00:23:49 +00003101//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003102// Checker-specific attribute handlers.
3103//===----------------------------------------------------------------------===//
3104
John McCallc7ad3812011-01-25 03:31:58 +00003105static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3106 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
3107}
3108static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3109 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
3110}
3111
Chandler Carruth1b03c872011-07-02 00:01:44 +00003112static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003113 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003114 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003115 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3116 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003117 return;
3118 }
3119
3120 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003121 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003122 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3123 cf = false;
3124 } else {
3125 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3126 cf = true;
3127 }
3128
3129 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003130 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
3131 << SourceRange(Attr.getLoc()) << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003132 return;
3133 }
3134
3135 if (cf)
Chandler Carruth87c44602011-07-01 23:49:12 +00003136 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003137 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003138 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003139}
3140
Chandler Carruth1b03c872011-07-02 00:01:44 +00003141static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3142 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003143 if (!isa<ObjCMethodDecl>(D)) {
3144 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3145 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003146 return;
3147 }
3148
Chandler Carruth87c44602011-07-01 23:49:12 +00003149 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003150}
3151
Chandler Carruth1b03c872011-07-02 00:01:44 +00003152static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3153 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003154
John McCallc7ad3812011-01-25 03:31:58 +00003155 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003156
Chandler Carruth87c44602011-07-01 23:49:12 +00003157 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003158 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003159 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003160 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003161 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3162 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003163 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003164 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003165 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003166 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003167 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3168 << SourceRange(Attr.getLoc()) << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003169 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003170 return;
3171 }
Mike Stumpbf916502009-07-24 19:02:52 +00003172
John McCallc7ad3812011-01-25 03:31:58 +00003173 bool typeOK;
3174 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003175 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003176 default: llvm_unreachable("invalid ownership attribute"); return;
3177 case AttributeList::AT_ns_returns_autoreleased:
3178 case AttributeList::AT_ns_returns_retained:
3179 case AttributeList::AT_ns_returns_not_retained:
3180 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3181 cf = false;
3182 break;
3183
3184 case AttributeList::AT_cf_returns_retained:
3185 case AttributeList::AT_cf_returns_not_retained:
3186 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3187 cf = true;
3188 break;
3189 }
3190
3191 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003192 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3193 << SourceRange(Attr.getLoc())
3194 << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003195 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003196 }
Mike Stumpbf916502009-07-24 19:02:52 +00003197
Chandler Carruth87c44602011-07-01 23:49:12 +00003198 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003199 default:
3200 assert(0 && "invalid ownership attribute");
3201 return;
John McCallc7ad3812011-01-25 03:31:58 +00003202 case AttributeList::AT_ns_returns_autoreleased:
Chandler Carruth87c44602011-07-01 23:49:12 +00003203 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getLoc(),
John McCallc7ad3812011-01-25 03:31:58 +00003204 S.Context));
3205 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003206 case AttributeList::AT_cf_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003207 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003208 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003209 return;
3210 case AttributeList::AT_ns_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003211 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003212 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003213 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003214 case AttributeList::AT_cf_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003215 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003216 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003217 return;
3218 case AttributeList::AT_ns_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003219 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003220 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003221 return;
3222 };
3223}
3224
John McCalldc7c5ad2011-07-22 08:53:00 +00003225static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3226 const AttributeList &attr) {
3227 SourceLocation loc = attr.getLoc();
3228
3229 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3230
3231 if (!isa<ObjCMethodDecl>(method)) {
3232 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3233 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3234 return;
3235 }
3236
3237 // Check that the method returns a normal pointer.
3238 QualType resultType = method->getResultType();
3239 if (!resultType->isPointerType() || resultType->isObjCRetainableType()) {
3240 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3241 << SourceRange(loc)
3242 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3243
3244 // Drop the attribute.
3245 return;
3246 }
3247
3248 method->addAttr(
3249 ::new (S.Context) ObjCReturnsInnerPointerAttr(loc, S.Context));
3250}
3251
Chandler Carruth1b03c872011-07-02 00:01:44 +00003252static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3253 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003254 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003255
Chandler Carruth87c44602011-07-01 23:49:12 +00003256 SourceLocation L = Attr.getLoc();
3257 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3258 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003259}
3260
Chandler Carruth1b03c872011-07-02 00:01:44 +00003261static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3262 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003263 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
3264 SourceLocation L = Attr.getLoc();
3265 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3266 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003267 return;
3268 }
3269
Chandler Carruth87c44602011-07-01 23:49:12 +00003270 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003271 QualType type = vd->getType();
3272
3273 if (!type->isDependentType() &&
3274 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003275 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003276 << type;
3277 return;
3278 }
3279
3280 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3281
3282 // If we have no lifetime yet, check the lifetime we're presumably
3283 // going to infer.
3284 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3285 lifetime = type->getObjCARCImplicitLifetime();
3286
3287 switch (lifetime) {
3288 case Qualifiers::OCL_None:
3289 assert(type->isDependentType() &&
3290 "didn't infer lifetime for non-dependent type?");
3291 break;
3292
3293 case Qualifiers::OCL_Weak: // meaningful
3294 case Qualifiers::OCL_Strong: // meaningful
3295 break;
3296
3297 case Qualifiers::OCL_ExplicitNone:
3298 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003299 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003300 << (lifetime == Qualifiers::OCL_Autoreleasing);
3301 break;
3302 }
3303
Chandler Carruth87c44602011-07-01 23:49:12 +00003304 D->addAttr(::new (S.Context)
3305 ObjCPreciseLifetimeAttr(Attr.getLoc(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003306}
3307
Charles Davisf0122fe2010-02-16 18:27:26 +00003308static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3309 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003310 Attr.getKind() == AttributeList::AT_dllexport ||
3311 Attr.getKind() == AttributeList::AT_uuid;
3312}
3313
3314//===----------------------------------------------------------------------===//
3315// Microsoft specific attribute handlers.
3316//===----------------------------------------------------------------------===//
3317
Chandler Carruth1b03c872011-07-02 00:01:44 +00003318static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet11542142010-12-19 06:50:37 +00003319 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
3320 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003321 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003322 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003323
Francois Pichet11542142010-12-19 06:50:37 +00003324 Expr *Arg = Attr.getArg(0);
3325 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003326 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003327 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3328 << "uuid" << 1;
3329 return;
3330 }
3331
Chris Lattner5f9e2722011-07-23 10:55:15 +00003332 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003333
3334 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3335 StrRef.back() == '}';
3336
3337 // Validate GUID length.
3338 if (IsCurly && StrRef.size() != 38) {
3339 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3340 return;
3341 }
3342 if (!IsCurly && StrRef.size() != 36) {
3343 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3344 return;
3345 }
3346
3347 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3348 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003349 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003350 if (IsCurly) // Skip the optional '{'
3351 ++I;
3352
3353 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003354 if (i == 8 || i == 13 || i == 18 || i == 23) {
3355 if (*I != '-') {
3356 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3357 return;
3358 }
3359 } else if (!isxdigit(*I)) {
3360 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3361 return;
3362 }
3363 I++;
3364 }
Francois Pichet11542142010-12-19 06:50:37 +00003365
Chandler Carruth87c44602011-07-01 23:49:12 +00003366 D->addAttr(::new (S.Context) UuidAttr(Attr.getLoc(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003367 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003368 } else
Francois Pichet11542142010-12-19 06:50:37 +00003369 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003370}
3371
Ted Kremenekb71368d2009-05-09 02:44:38 +00003372//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003373// Top Level Sema Entry Points
3374//===----------------------------------------------------------------------===//
3375
Chandler Carruth1b03c872011-07-02 00:01:44 +00003376static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3377 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003378 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003379 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3380 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3381 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003382 default:
3383 break;
3384 }
3385}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003386
Chandler Carruth1b03c872011-07-02 00:01:44 +00003387static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3388 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003389 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003390 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3391 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003392 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003393 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003394 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003395 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003396 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003397 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003398 case AttributeList::AT_neon_vector_type:
3399 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003400 // Ignore these, these are type attributes, handled by
3401 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003402 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003403 case AttributeList::AT_device:
3404 case AttributeList::AT_host:
3405 case AttributeList::AT_overloadable:
3406 // Ignore, this is a non-inheritable attribute, handled
3407 // by ProcessNonInheritableDeclAttr.
3408 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003409 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3410 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003411 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003412 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003413 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003414 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3415 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3416 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003417 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003418 handleDependencyAttr (S, D, Attr); break;
3419 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3420 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3421 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3422 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3423 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003424 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003425 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003426 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003427 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3428 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3429 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3430 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003431 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003432 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003433 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003434 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3435 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3436 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3437 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3438 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003439 case AttributeList::AT_ownership_returns:
3440 case AttributeList::AT_ownership_takes:
3441 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003442 handleOwnershipAttr (S, D, Attr); break;
3443 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3444 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3445 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3446 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3447 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003448
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003449 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003450 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003451 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003452 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003453
John McCalldc7c5ad2011-07-22 08:53:00 +00003454 case AttributeList::AT_objc_returns_inner_pointer:
3455 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3456
Ted Kremenekb71368d2009-05-09 02:44:38 +00003457 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003458 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003459 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003460 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003461 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003462
3463 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003464 case AttributeList::AT_ns_returns_not_retained:
3465 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003466 case AttributeList::AT_ns_returns_retained:
3467 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003468 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003469
Nate Begeman6f3d8382009-06-26 06:32:41 +00003470 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003471 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003472
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003473 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003474 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003475
Chandler Carruth1b03c872011-07-02 00:01:44 +00003476 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3477 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3478 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3479 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003480 case AttributeList::AT_arc_weakref_unavailable:
3481 handleArcWeakrefUnavailableAttr (S, D, Attr);
3482 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003483 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
3484 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3485 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3486 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003487 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003488 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3489 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3490 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003491 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003492 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003493 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003494 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003495 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003496 break;
John McCalld5313b02011-03-02 11:33:24 +00003497 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003498 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003499 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003500 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3501 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3502 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3503 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3504 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3505 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3506 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3507 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3508 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003509 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003510 // Just ignore
3511 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003512 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003513 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003514 break;
John McCall04a67a62010-02-05 21:31:56 +00003515 case AttributeList::AT_stdcall:
3516 case AttributeList::AT_cdecl:
3517 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003518 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003519 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003520 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003521 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003522 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003523 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003524 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003525 break;
Francois Pichet11542142010-12-19 06:50:37 +00003526 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003527 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003528 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003529
3530 // Thread safety attributes:
3531 case AttributeList::AT_guarded_var:
3532 handleGuardedVarAttr(S, D, Attr);
3533 break;
3534 case AttributeList::AT_pt_guarded_var:
3535 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3536 break;
3537 case AttributeList::AT_scoped_lockable:
3538 handleLockableAttr(S, D, Attr, /*scoped = */true);
3539 break;
3540 case AttributeList::AT_no_thread_safety_analysis:
3541 handleNoThreadSafetyAttr(S, D, Attr);
3542 break;
3543 case AttributeList::AT_lockable:
3544 handleLockableAttr(S, D, Attr);
3545 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003546 case AttributeList::AT_guarded_by:
3547 handleGuardedByAttr(S, D, Attr);
3548 break;
3549 case AttributeList::AT_pt_guarded_by:
3550 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3551 break;
3552 case AttributeList::AT_exclusive_lock_function:
3553 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3554 break;
3555 case AttributeList::AT_exclusive_locks_required:
3556 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3557 break;
3558 case AttributeList::AT_exclusive_trylock_function:
3559 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3560 break;
3561 case AttributeList::AT_lock_returned:
3562 handleLockReturnedAttr(S, D, Attr);
3563 break;
3564 case AttributeList::AT_locks_excluded:
3565 handleLocksExcludedAttr(S, D, Attr);
3566 break;
3567 case AttributeList::AT_shared_lock_function:
3568 handleLockFunAttr(S, D, Attr);
3569 break;
3570 case AttributeList::AT_shared_locks_required:
3571 handleLocksRequiredAttr(S, D, Attr);
3572 break;
3573 case AttributeList::AT_shared_trylock_function:
3574 handleTrylockFunAttr(S, D, Attr);
3575 break;
3576 case AttributeList::AT_unlock_function:
3577 handleUnlockFunAttr(S, D, Attr);
3578 break;
3579 case AttributeList::AT_acquired_before:
3580 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3581 break;
3582 case AttributeList::AT_acquired_after:
3583 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3584 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003585
Chris Lattner803d0802008-06-29 00:43:07 +00003586 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003587 // Ask target about the attribute.
3588 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3589 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003590 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3591 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003592 break;
3593 }
3594}
3595
Peter Collingbourne60700392011-01-21 02:08:45 +00003596/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3597/// the attribute applies to decls. If the attribute is a type attribute, just
3598/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3599/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003600static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3601 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003602 bool NonInheritable, bool Inheritable) {
3603 if (Attr.isInvalid())
3604 return;
3605
3606 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3607 // FIXME: Try to deal with other __declspec attributes!
3608 return;
3609
3610 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003611 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003612
3613 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003614 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003615}
3616
Chris Lattner803d0802008-06-29 00:43:07 +00003617/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3618/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003619void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003620 const AttributeList *AttrList,
3621 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003622 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003623 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003624 }
3625
3626 // GCC accepts
3627 // static int a9 __attribute__((weakref));
3628 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003629 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003630 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003631 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003632 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003633 }
3634}
3635
Ryan Flynne25ff832009-07-30 03:15:39 +00003636/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3637/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003638NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3639 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003640 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003641 NamedDecl *NewD = 0;
3642 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003643 FunctionDecl *NewFD;
3644 // FIXME: Missing call to CheckFunctionDeclaration().
3645 // FIXME: Mangling?
3646 // FIXME: Is the qualifier info correct?
3647 // FIXME: Is the DeclContext correct?
3648 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3649 Loc, Loc, DeclarationName(II),
3650 FD->getType(), FD->getTypeSourceInfo(),
3651 SC_None, SC_None,
3652 false/*isInlineSpecified*/,
3653 FD->hasPrototype(),
3654 false/*isConstexprSpecified*/);
3655 NewD = NewFD;
3656
3657 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003658 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003659
3660 // Fake up parameter variables; they are declared as if this were
3661 // a typedef.
3662 QualType FDTy = FD->getType();
3663 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3664 SmallVector<ParmVarDecl*, 16> Params;
3665 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3666 AE = FT->arg_type_end(); AI != AE; ++AI) {
3667 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3668 Param->setScopeInfo(0, Params.size());
3669 Params.push_back(Param);
3670 }
3671 NewFD->setParams(Params.data(), Params.size());
John McCallb6217662010-03-15 10:12:16 +00003672 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003673 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3674 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003675 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003676 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003677 VD->getStorageClass(),
3678 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003679 if (VD->getQualifier()) {
3680 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003681 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003682 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003683 }
3684 return NewD;
3685}
3686
3687/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3688/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003689void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003690 if (W.getUsed()) return; // only do this once
3691 W.setUsed(true);
3692 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3693 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003694 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003695 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3696 NDId->getName()));
3697 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003698 WeakTopLevelDecl.push_back(NewD);
3699 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3700 // to insert Decl at TU scope, sorry.
3701 DeclContext *SavedContext = CurContext;
3702 CurContext = Context.getTranslationUnitDecl();
3703 PushOnScopeChains(NewD, S);
3704 CurContext = SavedContext;
3705 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003706 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003707 }
3708}
3709
Chris Lattner0744e5f2008-06-29 00:23:49 +00003710/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3711/// it, apply them to D. This is a bit tricky because PD can have attributes
3712/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003713void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3714 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003715 // It's valid to "forward-declare" #pragma weak, in which case we
3716 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003717 if (Inheritable) {
3718 LoadExternalWeakUndeclaredIdentifiers();
3719 if (!WeakUndeclaredIdentifiers.empty()) {
3720 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3721 if (IdentifierInfo *Id = ND->getIdentifier()) {
3722 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3723 = WeakUndeclaredIdentifiers.find(Id);
3724 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3725 WeakInfo W = I->second;
3726 DeclApplyPragmaWeak(S, ND, W);
3727 WeakUndeclaredIdentifiers[Id] = W;
3728 }
John McCalld4aff0e2010-10-27 00:59:00 +00003729 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003730 }
3731 }
3732 }
3733
Chris Lattner0744e5f2008-06-29 00:23:49 +00003734 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003735 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003736 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003737
Chris Lattner0744e5f2008-06-29 00:23:49 +00003738 // Walk the declarator structure, applying decl attributes that were in a type
3739 // position to the decl itself. This handles cases like:
3740 // int *__attr__(x)** D;
3741 // when X is a decl attribute.
3742 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3743 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003744 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003745
Chris Lattner0744e5f2008-06-29 00:23:49 +00003746 // Finally, apply any attributes on the decl itself.
3747 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003748 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003749}
John McCall54abf7d2009-11-04 02:18:39 +00003750
John McCallf85e1932011-06-15 23:02:42 +00003751/// Is the given declaration allowed to use a forbidden type?
3752static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3753 // Private ivars are always okay. Unfortunately, people don't
3754 // always properly make their ivars private, even in system headers.
3755 // Plus we need to make fields okay, too.
3756 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl))
3757 return false;
3758
3759 // Require it to be declared in a system header.
3760 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3761}
3762
3763/// Handle a delayed forbidden-type diagnostic.
3764static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3765 Decl *decl) {
3766 if (decl && isForbiddenTypeAllowed(S, decl)) {
3767 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3768 "this system declaration uses an unsupported type"));
3769 return;
3770 }
3771
3772 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3773 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3774 diag.Triggered = true;
3775}
3776
John McCalleee1d542011-02-14 07:13:47 +00003777// This duplicates a vector push_back but hides the need to know the
3778// size of the type.
3779void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3780 assert(StackSize <= StackCapacity);
3781
3782 // Grow the stack if necessary.
3783 if (StackSize == StackCapacity) {
3784 unsigned newCapacity = 2 * StackCapacity + 2;
3785 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3786 const char *oldBuffer = (const char*) Stack;
3787
3788 if (StackCapacity)
3789 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3790
3791 delete[] oldBuffer;
3792 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3793 StackCapacity = newCapacity;
3794 }
3795
3796 assert(StackSize < StackCapacity);
3797 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003798}
3799
John McCalleee1d542011-02-14 07:13:47 +00003800void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3801 Decl *decl) {
3802 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003803
John McCalleee1d542011-02-14 07:13:47 +00003804 // Check the invariants.
3805 assert(DD.StackSize >= state.SavedStackSize);
3806 assert(state.SavedStackSize >= DD.ActiveStackBase);
3807 assert(DD.ParsingDepth > 0);
3808
3809 // Drop the parsing depth.
3810 DD.ParsingDepth--;
3811
3812 // If there are no active diagnostics, we're done.
3813 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003814 return;
3815
John McCall2f514482010-01-27 03:50:35 +00003816 // We only want to actually emit delayed diagnostics when we
3817 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00003818 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00003819 // We emit all the active diagnostics, not just those starting
3820 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003821 // decl spec and another for each declarator; in a decl group like:
3822 // deprecated_typedef foo, *bar, baz();
3823 // only the declarator pops will be passed decls. This is correct;
3824 // we really do need to consider delayed diagnostics from the decl spec
3825 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003826 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3827 DelayedDiagnostic &diag = DD.Stack[i];
3828 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003829 continue;
3830
John McCalleee1d542011-02-14 07:13:47 +00003831 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003832 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003833 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003834 break;
3835
3836 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003837 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003838 break;
John McCallf85e1932011-06-15 23:02:42 +00003839
3840 case DelayedDiagnostic::ForbiddenType:
3841 handleDelayedForbiddenType(S, diag, decl);
3842 break;
John McCall2f514482010-01-27 03:50:35 +00003843 }
3844 }
3845 }
3846
John McCall58e6f342010-03-16 05:22:47 +00003847 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003848 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00003849 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00003850
John McCalleee1d542011-02-14 07:13:47 +00003851 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003852}
3853
3854static bool isDeclDeprecated(Decl *D) {
3855 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003856 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00003857 return true;
3858 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3859 return false;
3860}
3861
John McCall9c3087b2010-08-26 02:13:20 +00003862void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003863 Decl *Ctx) {
3864 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003865 return;
3866
John McCall2f514482010-01-27 03:50:35 +00003867 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003868 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003869 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003870 << DD.getDeprecationDecl()->getDeclName()
3871 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003872 else
3873 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003874 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003875}
3876
Chris Lattner5f9e2722011-07-23 10:55:15 +00003877void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003878 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003879 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003880 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003881 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3882 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003883 return;
3884 }
3885
3886 // Otherwise, don't warn if our current context is deprecated.
3887 if (isDeclDeprecated(cast<Decl>(CurContext)))
3888 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003889 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003890 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3891 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003892 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003893 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003894 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003895 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003896 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003897 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
3898 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003899 }
John McCall54abf7d2009-11-04 02:18:39 +00003900}