blob: 624ac086db16cd81fbaf6c78fdb8294a8def0762 [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
John McCall3323fad2011-09-09 07:56:05 +00001774 unsigned sentinel = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001775 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 }
Mike Stumpbf916502009-07-24 19:02:52 +00001784
John McCall3323fad2011-09-09 07:56:05 +00001785 if (Idx.isSigned() && Idx.isNegative()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001786 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero)
1787 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001788 return;
1789 }
John McCall3323fad2011-09-09 07:56:05 +00001790
1791 sentinel = Idx.getZExtValue();
Anders Carlsson77091822008-10-05 18:05:59 +00001792 }
1793
John McCall3323fad2011-09-09 07:56:05 +00001794 unsigned nullPos = 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001795 if (Attr.getNumArgs() > 1) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001796 Expr *E = Attr.getArg(1);
Anders Carlsson77091822008-10-05 18:05:59 +00001797 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001798 if (E->isTypeDependent() || E->isValueDependent() ||
1799 !E->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001800 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00001801 << "sentinel" << 2 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001802 return;
1803 }
1804 nullPos = Idx.getZExtValue();
Mike Stumpbf916502009-07-24 19:02:52 +00001805
John McCall3323fad2011-09-09 07:56:05 +00001806 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
Anders Carlsson77091822008-10-05 18:05:59 +00001807 // FIXME: This error message could be improved, it would be nice
1808 // to say what the bounds actually are.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001809 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
1810 << E->getSourceRange();
Anders Carlsson77091822008-10-05 18:05:59 +00001811 return;
1812 }
1813 }
1814
Chandler Carruth87c44602011-07-01 23:49:12 +00001815 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +00001816 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
Chris Lattner897cd902009-03-17 23:03:47 +00001817 if (isa<FunctionNoProtoType>(FT)) {
1818 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments);
1819 return;
1820 }
Mike Stumpbf916502009-07-24 19:02:52 +00001821
Chris Lattner897cd902009-03-17 23:03:47 +00001822 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001823 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001824 return;
Mike Stumpbf916502009-07-24 19:02:52 +00001825 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001826 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Anders Carlsson77091822008-10-05 18:05:59 +00001827 if (!MD->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001828 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
Anders Carlsson77091822008-10-05 18:05:59 +00001829 return;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001830 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001831 } else if (isa<BlockDecl>(D)) {
Mike Stumpbf916502009-07-24 19:02:52 +00001832 // Note! BlockDecl is typeless. Variadic diagnostics will be issued by the
1833 // caller.
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001834 ;
Chandler Carruth87c44602011-07-01 23:49:12 +00001835 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001836 QualType Ty = V->getType();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00001837 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001838 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D)
Eric Christopherf48f3672010-12-01 22:13:54 +00001839 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001840 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00001841 int m = Ty->isFunctionPointerType() ? 0 : 1;
1842 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001843 return;
1844 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001845 } else {
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001846 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001847 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00001848 return;
1849 }
Anders Carlsson77091822008-10-05 18:05:59 +00001850 } else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001851 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001852 << Attr.getName() << ExpectedFunctionMethodOrBlock;
Anders Carlsson77091822008-10-05 18:05:59 +00001853 return;
1854 }
Chandler Carruth87c44602011-07-01 23:49:12 +00001855 D->addAttr(::new (S.Context) SentinelAttr(Attr.getLoc(), S.Context, sentinel,
Eric Christopherf48f3672010-12-01 22:13:54 +00001856 nullPos));
Anders Carlsson77091822008-10-05 18:05:59 +00001857}
1858
Chandler Carruth1b03c872011-07-02 00:01:44 +00001859static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner026dc962009-02-14 07:37:35 +00001860 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001861 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner026dc962009-02-14 07:37:35 +00001862 return;
Chris Lattner026dc962009-02-14 07:37:35 +00001863
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001864 if (!isFunction(D) && !isa<ObjCMethodDecl>(D)) {
Chris Lattner026dc962009-02-14 07:37:35 +00001865 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001866 << Attr.getName() << ExpectedFunctionOrMethod;
Chris Lattner026dc962009-02-14 07:37:35 +00001867 return;
1868 }
Mike Stumpbf916502009-07-24 19:02:52 +00001869
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001870 if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) {
1871 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1872 << Attr.getName() << 0;
Nuno Lopesf8577982009-12-22 23:59:52 +00001873 return;
1874 }
Fariborz Jahanianf0317742010-03-30 18:22:15 +00001875 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
1876 if (MD->getResultType()->isVoidType()) {
1877 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method)
1878 << Attr.getName() << 1;
1879 return;
1880 }
1881
Sean Huntcf807c42010-08-18 23:23:40 +00001882 D->addAttr(::new (S.Context) WarnUnusedResultAttr(Attr.getLoc(), S.Context));
Chris Lattner026dc962009-02-14 07:37:35 +00001883}
1884
Chandler Carruth1b03c872011-07-02 00:01:44 +00001885static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001886 // check the attribute arguments.
Chandler Carruth87c44602011-07-01 23:49:12 +00001887 if (Attr.hasParameterOrArguments()) {
1888 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001889 return;
1890 }
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001891
Chandler Carruth87c44602011-07-01 23:49:12 +00001892 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) {
1893 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
1894 << Attr.getName() << ExpectedVariableOrFunction;
Fariborz Jahanianf23ecd92009-07-16 01:12:24 +00001895 return;
1896 }
1897
Chandler Carruth87c44602011-07-01 23:49:12 +00001898 NamedDecl *nd = cast<NamedDecl>(D);
John McCall332bb2a2011-02-08 22:35:49 +00001899
1900 // 'weak' only applies to declarations with external linkage.
1901 if (hasEffectivelyInternalLinkage(nd)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00001902 S.Diag(Attr.getLoc(), diag::err_attribute_weak_static);
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001903 return;
1904 }
Mike Stumpbf916502009-07-24 19:02:52 +00001905
Chandler Carruth87c44602011-07-01 23:49:12 +00001906 nd->addAttr(::new (S.Context) WeakAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00001907}
1908
Chandler Carruth1b03c872011-07-02 00:01:44 +00001909static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001910 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001911 if (!checkAttributeNumArgs(S, Attr, 0))
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001912 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00001913
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001914
1915 // weak_import only applies to variable & function declarations.
1916 bool isDef = false;
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00001917 if (!D->canBeWeakImported(isDef)) {
1918 if (isDef)
1919 S.Diag(Attr.getLoc(),
1920 diag::warn_attribute_weak_import_invalid_on_definition)
1921 << "weak_import" << 2 /*variable and function*/;
Douglas Gregordef86312011-03-23 13:27:51 +00001922 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001923 (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
Douglas Gregordef86312011-03-23 13:27:51 +00001924 isa<ObjCInterfaceDecl>(D))) {
1925 // Nothing to warn about here.
1926 } else
Fariborz Jahanianc0349742010-04-13 20:22:35 +00001927 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00001928 << Attr.getName() << ExpectedVariableOrFunction;
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001929
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001930 return;
1931 }
1932
Sean Huntcf807c42010-08-18 23:23:40 +00001933 D->addAttr(::new (S.Context) WeakImportAttr(Attr.getLoc(), S.Context));
Daniel Dunbar6e775db2009-03-06 06:39:57 +00001934}
1935
Chandler Carruth1b03c872011-07-02 00:01:44 +00001936static void handleReqdWorkGroupSize(Sema &S, Decl *D,
1937 const AttributeList &Attr) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001938 // Attribute has 3 arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001939 if (!checkAttributeNumArgs(S, Attr, 3))
Nate Begeman6f3d8382009-06-26 06:32:41 +00001940 return;
Nate Begeman6f3d8382009-06-26 06:32:41 +00001941
1942 unsigned WGSize[3];
1943 for (unsigned i = 0; i < 3; ++i) {
Peter Collingbourne7a730022010-11-23 20:45:58 +00001944 Expr *E = Attr.getArg(i);
Nate Begeman6f3d8382009-06-26 06:32:41 +00001945 llvm::APSInt ArgNum(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00001946 if (E->isTypeDependent() || E->isValueDependent() ||
1947 !E->isIntegerConstantExpr(ArgNum, S.Context)) {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001948 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
1949 << "reqd_work_group_size" << E->getSourceRange();
1950 return;
1951 }
1952 WGSize[i] = (unsigned) ArgNum.getZExtValue();
1953 }
Sean Huntcf807c42010-08-18 23:23:40 +00001954 D->addAttr(::new (S.Context) ReqdWorkGroupSizeAttr(Attr.getLoc(), S.Context,
1955 WGSize[0], WGSize[1],
Nate Begeman6f3d8382009-06-26 06:32:41 +00001956 WGSize[2]));
1957}
1958
Chandler Carruth1b03c872011-07-02 00:01:44 +00001959static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001960 // Attribute has no arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00001961 if (!checkAttributeNumArgs(S, Attr, 1))
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001962 return;
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001963
1964 // Make sure that there is a string literal as the sections's single
1965 // argument.
Peter Collingbourne7a730022010-11-23 20:45:58 +00001966 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00001967 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001968 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00001969 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section";
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001970 return;
1971 }
Mike Stump1eb44332009-09-09 15:08:12 +00001972
Chris Lattner797c3c42009-08-10 19:03:04 +00001973 // If the target wants to validate the section specifier, make it happen.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00001974 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString());
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001975 if (!Error.empty()) {
1976 S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target)
1977 << Error;
Chris Lattner797c3c42009-08-10 19:03:04 +00001978 return;
1979 }
Mike Stump1eb44332009-09-09 15:08:12 +00001980
Chris Lattnera1e1dc72010-01-12 20:58:53 +00001981 // This attribute cannot be applied to local variables.
1982 if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) {
1983 S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable);
1984 return;
1985 }
1986
Eric Christopherf48f3672010-12-01 22:13:54 +00001987 D->addAttr(::new (S.Context) SectionAttr(Attr.getLoc(), S.Context,
1988 SE->getString()));
Daniel Dunbar17f194f2009-02-12 17:28:23 +00001989}
1990
Chris Lattner6b6b5372008-06-26 18:38:35 +00001991
Chandler Carruth1b03c872011-07-02 00:01:44 +00001992static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00001993 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00001994 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00001995 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Chris Lattner6b6b5372008-06-26 18:38:35 +00001996 return;
1997 }
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00001998
Chandler Carruth87c44602011-07-01 23:49:12 +00001999 if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002000 if (Existing->getLocation().isInvalid())
2001 Existing->setLocation(Attr.getLoc());
2002 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002003 D->addAttr(::new (S.Context) NoThrowAttr(Attr.getLoc(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002004 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002005}
2006
Chandler Carruth1b03c872011-07-02 00:01:44 +00002007static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002008 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002009 if (Attr.hasParameterOrArguments()) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002010 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002011 return;
2012 }
Mike Stumpbf916502009-07-24 19:02:52 +00002013
Chandler Carruth87c44602011-07-01 23:49:12 +00002014 if (ConstAttr *Existing = D->getAttr<ConstAttr>()) {
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002015 if (Existing->getLocation().isInvalid())
2016 Existing->setLocation(Attr.getLoc());
2017 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002018 D->addAttr(::new (S.Context) ConstAttr(Attr.getLoc(), S.Context));
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002019 }
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002020}
2021
Chandler Carruth1b03c872011-07-02 00:01:44 +00002022static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002023 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002024 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002025 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002026
Chandler Carruth87c44602011-07-01 23:49:12 +00002027 D->addAttr(::new (S.Context) PureAttr(Attr.getLoc(), S.Context));
Anders Carlsson232eb7d2008-10-05 23:32:53 +00002028}
2029
Chandler Carruth1b03c872011-07-02 00:01:44 +00002030static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Mike Stumpbf916502009-07-24 19:02:52 +00002031 if (!Attr.getParameterName()) {
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002032 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2033 return;
2034 }
Mike Stumpbf916502009-07-24 19:02:52 +00002035
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002036 if (Attr.getNumArgs() != 0) {
2037 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2038 return;
2039 }
Mike Stumpbf916502009-07-24 19:02:52 +00002040
Chandler Carruth87c44602011-07-01 23:49:12 +00002041 VarDecl *VD = dyn_cast<VarDecl>(D);
Mike Stumpbf916502009-07-24 19:02:52 +00002042
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002043 if (!VD || !VD->hasLocalStorage()) {
2044 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup";
2045 return;
2046 }
Mike Stumpbf916502009-07-24 19:02:52 +00002047
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002048 // Look up the function
Douglas Gregorc83c6872010-04-15 22:33:43 +00002049 // FIXME: Lookup probably isn't looking in the right place
John McCallf36e02d2009-10-09 21:13:30 +00002050 NamedDecl *CleanupDecl
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002051 = S.LookupSingleName(S.TUScope, Attr.getParameterName(),
2052 Attr.getParameterLoc(), Sema::LookupOrdinaryName);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002053 if (!CleanupDecl) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002054 S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) <<
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002055 Attr.getParameterName();
2056 return;
2057 }
Mike Stumpbf916502009-07-24 19:02:52 +00002058
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002059 FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl);
2060 if (!FD) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002061 S.Diag(Attr.getParameterLoc(),
2062 diag::err_attribute_cleanup_arg_not_function)
2063 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002064 return;
2065 }
2066
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002067 if (FD->getNumParams() != 1) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002068 S.Diag(Attr.getParameterLoc(),
2069 diag::err_attribute_cleanup_func_must_take_one_arg)
2070 << Attr.getParameterName();
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002071 return;
2072 }
Mike Stumpbf916502009-07-24 19:02:52 +00002073
Anders Carlsson89941c12009-02-07 23:16:50 +00002074 // We're currently more strict than GCC about what function types we accept.
2075 // If this ever proves to be a problem it should be easy to fix.
2076 QualType Ty = S.Context.getPointerType(VD->getType());
2077 QualType ParamTy = FD->getParamDecl(0)->getType();
Douglas Gregorb608b982011-01-28 02:26:04 +00002078 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
2079 ParamTy, Ty) != Sema::Compatible) {
Argyrios Kyrtzidisf0b0ccc2010-12-06 17:51:50 +00002080 S.Diag(Attr.getParameterLoc(),
Anders Carlsson89941c12009-02-07 23:16:50 +00002081 diag::err_attribute_cleanup_func_arg_incompatible_type) <<
2082 Attr.getParameterName() << ParamTy << Ty;
2083 return;
2084 }
Mike Stumpbf916502009-07-24 19:02:52 +00002085
Chandler Carruth87c44602011-07-01 23:49:12 +00002086 D->addAttr(::new (S.Context) CleanupAttr(Attr.getLoc(), S.Context, FD));
Argyrios Kyrtzidis223ae5c2010-12-06 17:51:53 +00002087 S.MarkDeclarationReferenced(Attr.getParameterLoc(), FD);
Anders Carlssonf6e35d02009-01-31 01:16:18 +00002088}
2089
Mike Stumpbf916502009-07-24 19:02:52 +00002090/// Handle __attribute__((format_arg((idx)))) attribute based on
2091/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002092static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth1731e202011-07-11 23:30:35 +00002093 if (!checkAttributeNumArgs(S, Attr, 1))
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002094 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002095
Chandler Carruth87c44602011-07-01 23:49:12 +00002096 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002097 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002098 << Attr.getName() << ExpectedFunction;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002099 return;
2100 }
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002101
2102 // In C++ the implicit 'this' function parameter also counts, and they are
2103 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002104 bool HasImplicitThisParam = isInstanceMethod(D);
2105 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002106 unsigned FirstIdx = 1;
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002107
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002108 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002109 Expr *IdxExpr = Attr.getArg(0);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002110 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002111 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2112 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002113 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
2114 << "format" << 2 << IdxExpr->getSourceRange();
2115 return;
2116 }
Mike Stumpbf916502009-07-24 19:02:52 +00002117
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002118 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
2119 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
2120 << "format" << 2 << IdxExpr->getSourceRange();
2121 return;
2122 }
Mike Stumpbf916502009-07-24 19:02:52 +00002123
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002124 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002125
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002126 if (HasImplicitThisParam) {
2127 if (ArgIdx == 0) {
2128 S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument)
2129 << "format_arg" << IdxExpr->getSourceRange();
2130 return;
2131 }
2132 ArgIdx--;
2133 }
2134
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002135 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002136 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Mike Stumpbf916502009-07-24 19:02:52 +00002137
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002138 bool not_nsstring_type = !isNSStringType(Ty, S.Context);
2139 if (not_nsstring_type &&
2140 !isCFStringType(Ty, S.Context) &&
2141 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002142 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002143 // FIXME: Should highlight the actual expression that has the wrong type.
2144 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002145 << (not_nsstring_type ? "a string type" : "an NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002146 << IdxExpr->getSourceRange();
2147 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002148 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002149 Ty = getFunctionOrMethodResultType(D);
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002150 if (!isNSStringType(Ty, S.Context) &&
2151 !isCFStringType(Ty, S.Context) &&
2152 (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002153 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002154 // FIXME: Should highlight the actual expression that has the wrong type.
2155 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not)
Mike Stumpbf916502009-07-24 19:02:52 +00002156 << (not_nsstring_type ? "string type" : "NSString")
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002157 << IdxExpr->getSourceRange();
2158 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002159 }
2160
Chandler Carruth87c44602011-07-01 23:49:12 +00002161 D->addAttr(::new (S.Context) FormatArgAttr(Attr.getLoc(), S.Context,
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002162 Idx.getZExtValue()));
Fariborz Jahanian5b160922009-05-20 17:41:43 +00002163}
2164
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002165enum FormatAttrKind {
2166 CFStringFormat,
2167 NSStringFormat,
2168 StrftimeFormat,
2169 SupportedFormat,
Chris Lattner3c989022010-03-22 21:08:50 +00002170 IgnoredFormat,
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002171 InvalidFormat
2172};
2173
2174/// getFormatAttrKind - Map from format attribute names to supported format
2175/// types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002176static FormatAttrKind getFormatAttrKind(StringRef Format) {
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002177 // Check for formats that get handled specially.
2178 if (Format == "NSString")
2179 return NSStringFormat;
2180 if (Format == "CFString")
2181 return CFStringFormat;
2182 if (Format == "strftime")
2183 return StrftimeFormat;
2184
2185 // Otherwise, check for supported formats.
2186 if (Format == "scanf" || Format == "printf" || Format == "printf0" ||
2187 Format == "strfmon" || Format == "cmn_err" || Format == "strftime" ||
2188 Format == "NSString" || Format == "CFString" || Format == "vcmn_err" ||
Chris Lattnercd5b3062011-02-18 17:05:55 +00002189 Format == "zcmn_err" ||
2190 Format == "kprintf") // OpenBSD.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002191 return SupportedFormat;
2192
Duncan Sandsbc525952010-03-23 14:44:19 +00002193 if (Format == "gcc_diag" || Format == "gcc_cdiag" ||
2194 Format == "gcc_cxxdiag" || Format == "gcc_tdiag")
Chris Lattner3c989022010-03-22 21:08:50 +00002195 return IgnoredFormat;
2196
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002197 return InvalidFormat;
2198}
2199
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002200/// Handle __attribute__((init_priority(priority))) attributes based on
2201/// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002202static void handleInitPriorityAttr(Sema &S, Decl *D,
2203 const AttributeList &Attr) {
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002204 if (!S.getLangOptions().CPlusPlus) {
2205 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName();
2206 return;
2207 }
2208
Chandler Carruth87c44602011-07-01 23:49:12 +00002209 if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) {
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002210 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2211 Attr.setInvalid();
2212 return;
2213 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002214 QualType T = dyn_cast<VarDecl>(D)->getType();
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002215 if (S.Context.getAsArrayType(T))
2216 T = S.Context.getBaseElementType(T);
2217 if (!T->getAs<RecordType>()) {
2218 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr);
2219 Attr.setInvalid();
2220 return;
2221 }
2222
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002223 if (Attr.getNumArgs() != 1) {
2224 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
2225 Attr.setInvalid();
2226 return;
2227 }
Peter Collingbourne7a730022010-11-23 20:45:58 +00002228 Expr *priorityExpr = Attr.getArg(0);
Fariborz Jahanianb9d5c222010-06-18 23:14:53 +00002229
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002230 llvm::APSInt priority(32);
2231 if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() ||
2232 !priorityExpr->isIntegerConstantExpr(priority, S.Context)) {
2233 S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
2234 << "init_priority" << priorityExpr->getSourceRange();
2235 Attr.setInvalid();
2236 return;
2237 }
Fariborz Jahanian9f967c52010-06-21 18:45:05 +00002238 unsigned prioritynum = priority.getZExtValue();
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002239 if (prioritynum < 101 || prioritynum > 65535) {
2240 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range)
2241 << priorityExpr->getSourceRange();
2242 Attr.setInvalid();
2243 return;
2244 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002245 D->addAttr(::new (S.Context) InitPriorityAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002246 prioritynum));
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00002247}
2248
Mike Stumpbf916502009-07-24 19:02:52 +00002249/// Handle __attribute__((format(type,idx,firstarg))) attributes based on
2250/// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
Chandler Carruth1b03c872011-07-02 00:01:44 +00002251static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002252
Chris Lattner545dd342008-06-28 23:36:30 +00002253 if (!Attr.getParameterName()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002254 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Chris Lattner3c73c412008-11-19 08:23:25 +00002255 << "format" << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002256 return;
2257 }
2258
Chris Lattner545dd342008-06-28 23:36:30 +00002259 if (Attr.getNumArgs() != 2) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002260 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002261 return;
2262 }
2263
Chandler Carruth87c44602011-07-01 23:49:12 +00002264 if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002265 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002266 << Attr.getName() << ExpectedFunction;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002267 return;
2268 }
2269
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002270 // In C++ the implicit 'this' function parameter also counts, and they are
2271 // counted from one.
Chandler Carruth87c44602011-07-01 23:49:12 +00002272 bool HasImplicitThisParam = isInstanceMethod(D);
2273 unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002274 unsigned FirstIdx = 1;
2275
Chris Lattner5f9e2722011-07-23 10:55:15 +00002276 StringRef Format = Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002277
2278 // Normalize the argument, __foo__ becomes foo.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002279 if (Format.startswith("__") && Format.endswith("__"))
2280 Format = Format.substr(2, Format.size() - 4);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002281
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002282 // Check for supported formats.
2283 FormatAttrKind Kind = getFormatAttrKind(Format);
Chris Lattner3c989022010-03-22 21:08:50 +00002284
2285 if (Kind == IgnoredFormat)
2286 return;
2287
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002288 if (Kind == InvalidFormat) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002289 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported)
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002290 << "format" << Attr.getParameterName()->getName();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002291 return;
2292 }
2293
2294 // checks for the 2nd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002295 Expr *IdxExpr = Attr.getArg(0);
Chris Lattner803d0802008-06-29 00:43:07 +00002296 llvm::APSInt Idx(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002297 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
2298 !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002299 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002300 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002301 return;
2302 }
2303
2304 if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002305 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002306 << "format" << 2 << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002307 return;
2308 }
2309
2310 // FIXME: Do we need to bounds check?
2311 unsigned ArgIdx = Idx.getZExtValue() - 1;
Mike Stumpbf916502009-07-24 19:02:52 +00002312
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002313 if (HasImplicitThisParam) {
2314 if (ArgIdx == 0) {
Chandler Carruth07d7e7a2010-11-16 08:35:43 +00002315 S.Diag(Attr.getLoc(),
2316 diag::err_format_attribute_implicit_this_format_string)
2317 << IdxExpr->getSourceRange();
Sebastian Redl4a2614e2009-11-17 18:02:24 +00002318 return;
2319 }
2320 ArgIdx--;
2321 }
Mike Stump1eb44332009-09-09 15:08:12 +00002322
Chris Lattner6b6b5372008-06-26 18:38:35 +00002323 // make sure the format string is really a string
Chandler Carruth87c44602011-07-01 23:49:12 +00002324 QualType Ty = getFunctionOrMethodArgType(D, ArgIdx);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002325
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002326 if (Kind == CFStringFormat) {
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002327 if (!isCFStringType(Ty, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002328 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2329 << "a CFString" << IdxExpr->getSourceRange();
Daniel Dunbar085e8f72008-09-26 03:32:58 +00002330 return;
2331 }
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002332 } else if (Kind == NSStringFormat) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002333 // FIXME: do we need to check if the type is NSString*? What are the
2334 // semantics?
Chris Lattner803d0802008-06-29 00:43:07 +00002335 if (!isNSStringType(Ty, S.Context)) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002336 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002337 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2338 << "an NSString" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002339 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002340 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002341 } else if (!Ty->isPointerType() ||
Ted Kremenek6217b802009-07-29 21:53:49 +00002342 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
Mike Stump390b4cc2009-05-16 07:39:55 +00002343 // FIXME: Should highlight the actual expression that has the wrong type.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002344 S.Diag(Attr.getLoc(), diag::err_format_attribute_not)
2345 << "a string type" << IdxExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002346 return;
2347 }
2348
2349 // check the 3rd argument
Peter Collingbourne7a730022010-11-23 20:45:58 +00002350 Expr *FirstArgExpr = Attr.getArg(1);
Chris Lattner803d0802008-06-29 00:43:07 +00002351 llvm::APSInt FirstArg(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00002352 if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() ||
2353 !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002354 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
Chris Lattner3c73c412008-11-19 08:23:25 +00002355 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002356 return;
2357 }
2358
2359 // check if the function is variadic if the 3rd argument non-zero
2360 if (FirstArg != 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002361 if (isFunctionOrMethodVariadic(D)) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002362 ++NumArgs; // +1 for ...
2363 } else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002364 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
Chris Lattner6b6b5372008-06-26 18:38:35 +00002365 return;
2366 }
2367 }
2368
Chris Lattner3c73c412008-11-19 08:23:25 +00002369 // strftime requires FirstArg to be 0 because it doesn't read from any
2370 // variable the input is just the current time + the format string.
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002371 if (Kind == StrftimeFormat) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002372 if (FirstArg != 0) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002373 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter)
2374 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002375 return;
2376 }
2377 // if 0 it disables parameter checking (to use with e.g. va_list)
2378 } else if (FirstArg != 0 && FirstArg != NumArgs) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002379 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
Chris Lattner3c73c412008-11-19 08:23:25 +00002380 << "format" << 3 << FirstArgExpr->getSourceRange();
Chris Lattner6b6b5372008-06-26 18:38:35 +00002381 return;
2382 }
2383
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002384 // Check whether we already have an equivalent format attribute.
2385 for (specific_attr_iterator<FormatAttr>
Chandler Carruth87c44602011-07-01 23:49:12 +00002386 i = D->specific_attr_begin<FormatAttr>(),
2387 e = D->specific_attr_end<FormatAttr>();
Douglas Gregorb30cd4a2011-06-15 05:45:11 +00002388 i != e ; ++i) {
2389 FormatAttr *f = *i;
2390 if (f->getType() == Format &&
2391 f->getFormatIdx() == (int)Idx.getZExtValue() &&
2392 f->getFirstArg() == (int)FirstArg.getZExtValue()) {
2393 // If we don't have a valid location for this attribute, adopt the
2394 // location.
2395 if (f->getLocation().isInvalid())
2396 f->setLocation(Attr.getLoc());
2397 return;
2398 }
2399 }
2400
Chandler Carruth87c44602011-07-01 23:49:12 +00002401 D->addAttr(::new (S.Context) FormatAttr(Attr.getLoc(), S.Context, Format,
Sean Huntcf807c42010-08-18 23:23:40 +00002402 Idx.getZExtValue(),
Daniel Dunbar2b0d9a22009-10-18 02:09:17 +00002403 FirstArg.getZExtValue()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002404}
2405
Chandler Carruth1b03c872011-07-02 00:01:44 +00002406static void handleTransparentUnionAttr(Sema &S, Decl *D,
2407 const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002408 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002409 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002410 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002411
Chris Lattner6b6b5372008-06-26 18:38:35 +00002412
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002413 // Try to find the underlying union declaration.
2414 RecordDecl *RD = 0;
Chandler Carruth87c44602011-07-01 23:49:12 +00002415 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002416 if (TD && TD->getUnderlyingType()->isUnionType())
2417 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
2418 else
Chandler Carruth87c44602011-07-01 23:49:12 +00002419 RD = dyn_cast<RecordDecl>(D);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002420
2421 if (!RD || !RD->isUnion()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002422 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002423 << Attr.getName() << ExpectedUnion;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002424 return;
2425 }
2426
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002427 if (!RD->isDefinition()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002428 S.Diag(Attr.getLoc(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002429 diag::warn_transparent_union_attribute_not_definition);
2430 return;
2431 }
Chris Lattner6b6b5372008-06-26 18:38:35 +00002432
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002433 RecordDecl::field_iterator Field = RD->field_begin(),
2434 FieldEnd = RD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002435 if (Field == FieldEnd) {
2436 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
2437 return;
2438 }
Eli Friedmanbc887452008-09-02 05:19:23 +00002439
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002440 FieldDecl *FirstField = *Field;
2441 QualType FirstType = FirstField->getType();
Douglas Gregor90cd6722010-06-30 17:24:13 +00002442 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
Mike Stumpbf916502009-07-24 19:02:52 +00002443 S.Diag(FirstField->getLocation(),
Douglas Gregor90cd6722010-06-30 17:24:13 +00002444 diag::warn_transparent_union_attribute_floating)
2445 << FirstType->isVectorType() << FirstType;
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002446 return;
2447 }
2448
2449 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2450 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
2451 for (; Field != FieldEnd; ++Field) {
2452 QualType FieldType = Field->getType();
2453 if (S.Context.getTypeSize(FieldType) != FirstSize ||
2454 S.Context.getTypeAlign(FieldType) != FirstAlign) {
2455 // Warn if we drop the attribute.
2456 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
Mike Stumpbf916502009-07-24 19:02:52 +00002457 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002458 : S.Context.getTypeAlign(FieldType);
Mike Stumpbf916502009-07-24 19:02:52 +00002459 S.Diag(Field->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002460 diag::warn_transparent_union_attribute_field_size_align)
2461 << isSize << Field->getDeclName() << FieldBits;
2462 unsigned FirstBits = isSize? FirstSize : FirstAlign;
Mike Stumpbf916502009-07-24 19:02:52 +00002463 S.Diag(FirstField->getLocation(),
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00002464 diag::note_transparent_union_first_field_size_align)
2465 << isSize << FirstBits;
Eli Friedmanbc887452008-09-02 05:19:23 +00002466 return;
2467 }
2468 }
2469
Sean Huntcf807c42010-08-18 23:23:40 +00002470 RD->addAttr(::new (S.Context) TransparentUnionAttr(Attr.getLoc(), S.Context));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002471}
2472
Chandler Carruth1b03c872011-07-02 00:01:44 +00002473static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002474 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002475 if (!checkAttributeNumArgs(S, Attr, 1))
Chris Lattner6b6b5372008-06-26 18:38:35 +00002476 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002477
Peter Collingbourne7a730022010-11-23 20:45:58 +00002478 Expr *ArgExpr = Attr.getArg(0);
Chris Lattner797c3c42009-08-10 19:03:04 +00002479 StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr);
Mike Stumpbf916502009-07-24 19:02:52 +00002480
Chris Lattner6b6b5372008-06-26 18:38:35 +00002481 // Make sure that there is a string literal as the annotation's single
2482 // argument.
2483 if (!SE) {
Chris Lattner797c3c42009-08-10 19:03:04 +00002484 S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate";
Chris Lattner6b6b5372008-06-26 18:38:35 +00002485 return;
2486 }
Chandler Carruth87c44602011-07-01 23:49:12 +00002487 D->addAttr(::new (S.Context) AnnotateAttr(Attr.getLoc(), S.Context,
Eric Christopherf48f3672010-12-01 22:13:54 +00002488 SE->getString()));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002489}
2490
Chandler Carruth1b03c872011-07-02 00:01:44 +00002491static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner6b6b5372008-06-26 18:38:35 +00002492 // check the attribute arguments.
Chris Lattner545dd342008-06-28 23:36:30 +00002493 if (Attr.getNumArgs() > 1) {
Chris Lattner3c73c412008-11-19 08:23:25 +00002494 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002495 return;
2496 }
Sean Huntbbd37c62009-11-21 08:43:09 +00002497
2498 //FIXME: The C++0x version of this attribute has more limited applicabilty
2499 // than GNU's, and should error out when it is used to specify a
2500 // weaker alignment, rather than being silently ignored.
Chris Lattner6b6b5372008-06-26 18:38:35 +00002501
Chris Lattner545dd342008-06-28 23:36:30 +00002502 if (Attr.getNumArgs() == 0) {
Sean Huntcf807c42010-08-18 23:23:40 +00002503 D->addAttr(::new (S.Context) AlignedAttr(Attr.getLoc(), S.Context, true, 0));
Chris Lattner6b6b5372008-06-26 18:38:35 +00002504 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002505 }
Mike Stumpbf916502009-07-24 19:02:52 +00002506
Peter Collingbourne7a730022010-11-23 20:45:58 +00002507 S.AddAlignedAttr(Attr.getLoc(), D, Attr.getArg(0));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002508}
2509
2510void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, Expr *E) {
2511 if (E->isTypeDependent() || E->isValueDependent()) {
2512 // Save dependent expressions in the AST to be instantiated.
Sean Huntcf807c42010-08-18 23:23:40 +00002513 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002514 return;
2515 }
2516
Sean Huntcf807c42010-08-18 23:23:40 +00002517 // FIXME: Cache the number on the Attr object?
Chris Lattner49e2d342008-06-28 23:50:44 +00002518 llvm::APSInt Alignment(32);
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002519 if (!E->isIntegerConstantExpr(Alignment, Context)) {
2520 Diag(AttrLoc, diag::err_attribute_argument_not_int)
2521 << "aligned" << E->getSourceRange();
Chris Lattner49e2d342008-06-28 23:50:44 +00002522 return;
2523 }
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002524 if (!llvm::isPowerOf2_64(Alignment.getZExtValue())) {
Chandler Carruth4ced79f2010-06-25 03:22:07 +00002525 Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two)
2526 << E->getSourceRange();
Daniel Dunbar396b2a22009-02-16 23:37:57 +00002527 return;
2528 }
2529
Sean Huntcf807c42010-08-18 23:23:40 +00002530 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, true, E));
2531}
2532
2533void Sema::AddAlignedAttr(SourceLocation AttrLoc, Decl *D, TypeSourceInfo *TS) {
2534 // FIXME: Cache the number on the Attr object if non-dependent?
2535 // FIXME: Perform checking of type validity
2536 D->addAttr(::new (Context) AlignedAttr(AttrLoc, Context, false, TS));
2537 return;
Chris Lattner6b6b5372008-06-26 18:38:35 +00002538}
Chris Lattnerfbf13472008-06-27 22:18:37 +00002539
Chandler Carruthd309c812011-07-01 23:49:16 +00002540/// handleModeAttr - This attribute modifies the width of a decl with primitive
Mike Stumpbf916502009-07-24 19:02:52 +00002541/// type.
Chris Lattnerfbf13472008-06-27 22:18:37 +00002542///
Mike Stumpbf916502009-07-24 19:02:52 +00002543/// Despite what would be logical, the mode attribute is a decl attribute, not a
2544/// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
2545/// HImode, not an intermediate pointer.
Chandler Carruth1b03c872011-07-02 00:01:44 +00002546static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002547 // This attribute isn't documented, but glibc uses it. It changes
2548 // the width of an int or unsigned int to the specified size.
2549
2550 // Check that there aren't any arguments
Chandler Carruth1731e202011-07-11 23:30:35 +00002551 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002552 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002553
Chris Lattnerfbf13472008-06-27 22:18:37 +00002554
2555 IdentifierInfo *Name = Attr.getParameterName();
2556 if (!Name) {
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002557 S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002558 return;
2559 }
Daniel Dunbar210ae982009-10-18 02:09:24 +00002560
Chris Lattner5f9e2722011-07-23 10:55:15 +00002561 StringRef Str = Attr.getParameterName()->getName();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002562
2563 // Normalize the attribute name, __foo__ becomes foo.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002564 if (Str.startswith("__") && Str.endswith("__"))
2565 Str = Str.substr(2, Str.size() - 4);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002566
2567 unsigned DestWidth = 0;
2568 bool IntegerMode = true;
Eli Friedman73397492009-03-03 06:41:03 +00002569 bool ComplexMode = false;
Daniel Dunbar210ae982009-10-18 02:09:24 +00002570 switch (Str.size()) {
Chris Lattnerfbf13472008-06-27 22:18:37 +00002571 case 2:
Eli Friedman73397492009-03-03 06:41:03 +00002572 switch (Str[0]) {
2573 case 'Q': DestWidth = 8; break;
2574 case 'H': DestWidth = 16; break;
2575 case 'S': DestWidth = 32; break;
2576 case 'D': DestWidth = 64; break;
2577 case 'X': DestWidth = 96; break;
2578 case 'T': DestWidth = 128; break;
2579 }
2580 if (Str[1] == 'F') {
2581 IntegerMode = false;
2582 } else if (Str[1] == 'C') {
2583 IntegerMode = false;
2584 ComplexMode = true;
2585 } else if (Str[1] != 'I') {
2586 DestWidth = 0;
2587 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002588 break;
2589 case 4:
2590 // FIXME: glibc uses 'word' to define register_t; this is narrower than a
2591 // pointer on PIC16 and other embedded platforms.
Daniel Dunbar210ae982009-10-18 02:09:24 +00002592 if (Str == "word")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002593 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Daniel Dunbar210ae982009-10-18 02:09:24 +00002594 else if (Str == "byte")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002595 DestWidth = S.Context.getTargetInfo().getCharWidth();
Chris Lattnerfbf13472008-06-27 22:18:37 +00002596 break;
2597 case 7:
Daniel Dunbar210ae982009-10-18 02:09:24 +00002598 if (Str == "pointer")
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002599 DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002600 break;
2601 }
2602
2603 QualType OldTy;
Richard Smith162e1c12011-04-15 14:24:37 +00002604 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
Chris Lattnerfbf13472008-06-27 22:18:37 +00002605 OldTy = TD->getUnderlyingType();
2606 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D))
2607 OldTy = VD->getType();
2608 else {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00002609 S.Diag(D->getLocation(), diag::err_attr_wrong_decl)
2610 << "mode" << SourceRange(Attr.getLoc(), Attr.getLoc());
Chris Lattnerfbf13472008-06-27 22:18:37 +00002611 return;
2612 }
Eli Friedman73397492009-03-03 06:41:03 +00002613
John McCall183700f2009-09-21 23:43:11 +00002614 if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType())
Eli Friedman73397492009-03-03 06:41:03 +00002615 S.Diag(Attr.getLoc(), diag::err_mode_not_primitive);
2616 else if (IntegerMode) {
Douglas Gregor2ade35e2010-06-16 00:17:44 +00002617 if (!OldTy->isIntegralOrEnumerationType())
Eli Friedman73397492009-03-03 06:41:03 +00002618 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2619 } else if (ComplexMode) {
2620 if (!OldTy->isComplexType())
2621 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2622 } else {
2623 if (!OldTy->isFloatingType())
2624 S.Diag(Attr.getLoc(), diag::err_mode_wrong_type);
2625 }
2626
Mike Stump390b4cc2009-05-16 07:39:55 +00002627 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
2628 // and friends, at least with glibc.
2629 // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong
2630 // width on unusual platforms.
Eli Friedmanf98aba32009-02-13 02:31:07 +00002631 // FIXME: Make sure floating-point mappings are accurate
2632 // FIXME: Support XF and TF types
Chris Lattnerfbf13472008-06-27 22:18:37 +00002633 QualType NewTy;
2634 switch (DestWidth) {
2635 case 0:
Chris Lattner3c73c412008-11-19 08:23:25 +00002636 S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002637 return;
2638 default:
Chris Lattner3c73c412008-11-19 08:23:25 +00002639 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002640 return;
2641 case 8:
Eli Friedman73397492009-03-03 06:41:03 +00002642 if (!IntegerMode) {
2643 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2644 return;
2645 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002646 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002647 NewTy = S.Context.SignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002648 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002649 NewTy = S.Context.UnsignedCharTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002650 break;
2651 case 16:
Eli Friedman73397492009-03-03 06:41:03 +00002652 if (!IntegerMode) {
2653 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2654 return;
2655 }
Chris Lattnerfbf13472008-06-27 22:18:37 +00002656 if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002657 NewTy = S.Context.ShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002658 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002659 NewTy = S.Context.UnsignedShortTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002660 break;
2661 case 32:
2662 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002663 NewTy = S.Context.FloatTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002664 else if (OldTy->isSignedIntegerType())
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002665 NewTy = S.Context.IntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002666 else
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002667 NewTy = S.Context.UnsignedIntTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002668 break;
2669 case 64:
2670 if (!IntegerMode)
Chris Lattner0b2f4da2008-06-29 00:28:59 +00002671 NewTy = S.Context.DoubleTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002672 else if (OldTy->isSignedIntegerType())
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002673 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002674 NewTy = S.Context.LongTy;
2675 else
2676 NewTy = S.Context.LongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002677 else
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002678 if (S.Context.getTargetInfo().getLongWidth() == 64)
Chandler Carruthaec7caa2010-01-26 06:39:24 +00002679 NewTy = S.Context.UnsignedLongTy;
2680 else
2681 NewTy = S.Context.UnsignedLongLongTy;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002682 break;
Eli Friedman73397492009-03-03 06:41:03 +00002683 case 96:
2684 NewTy = S.Context.LongDoubleTy;
2685 break;
Eli Friedmanf98aba32009-02-13 02:31:07 +00002686 case 128:
2687 if (!IntegerMode) {
2688 S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name;
2689 return;
2690 }
Anders Carlssonf5f7d862009-12-29 07:07:36 +00002691 if (OldTy->isSignedIntegerType())
2692 NewTy = S.Context.Int128Ty;
2693 else
2694 NewTy = S.Context.UnsignedInt128Ty;
Eli Friedman73397492009-03-03 06:41:03 +00002695 break;
Chris Lattnerfbf13472008-06-27 22:18:37 +00002696 }
2697
Eli Friedman73397492009-03-03 06:41:03 +00002698 if (ComplexMode) {
2699 NewTy = S.Context.getComplexType(NewTy);
Chris Lattnerfbf13472008-06-27 22:18:37 +00002700 }
2701
2702 // Install the new type.
Richard Smith162e1c12011-04-15 14:24:37 +00002703 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
John McCallba6a9bd2009-10-24 08:00:42 +00002704 // FIXME: preserve existing source info.
John McCalla93c9342009-12-07 02:54:59 +00002705 TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy));
John McCallba6a9bd2009-10-24 08:00:42 +00002706 } else
Chris Lattnerfbf13472008-06-27 22:18:37 +00002707 cast<ValueDecl>(D)->setType(NewTy);
2708}
Chris Lattner0744e5f2008-06-29 00:23:49 +00002709
Chandler Carruth1b03c872011-07-02 00:01:44 +00002710static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlssond87df372009-02-13 06:46:13 +00002711 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002712 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlssond87df372009-02-13 06:46:13 +00002713 return;
Anders Carlssone896d982009-02-13 08:11:52 +00002714
Chandler Carruth87c44602011-07-01 23:49:12 +00002715 if (!isFunctionOrMethod(D)) {
Anders Carlssond87df372009-02-13 06:46:13 +00002716 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002717 << Attr.getName() << ExpectedFunction;
Anders Carlssond87df372009-02-13 06:46:13 +00002718 return;
2719 }
Mike Stumpbf916502009-07-24 19:02:52 +00002720
Chandler Carruth87c44602011-07-01 23:49:12 +00002721 D->addAttr(::new (S.Context) NoDebugAttr(Attr.getLoc(), S.Context));
Anders Carlssond87df372009-02-13 06:46:13 +00002722}
2723
Chandler Carruth1b03c872011-07-02 00:01:44 +00002724static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002725 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002726 if (!checkAttributeNumArgs(S, Attr, 0))
Anders Carlsson5bab7882009-02-19 19:16:48 +00002727 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002728
Mike Stumpbf916502009-07-24 19:02:52 +00002729
Chandler Carruth87c44602011-07-01 23:49:12 +00002730 if (!isa<FunctionDecl>(D)) {
Anders Carlsson5bab7882009-02-19 19:16:48 +00002731 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002732 << Attr.getName() << ExpectedFunction;
Anders Carlsson5bab7882009-02-19 19:16:48 +00002733 return;
2734 }
Mike Stumpbf916502009-07-24 19:02:52 +00002735
Chandler Carruth87c44602011-07-01 23:49:12 +00002736 D->addAttr(::new (S.Context) NoInlineAttr(Attr.getLoc(), S.Context));
Anders Carlsson5bab7882009-02-19 19:16:48 +00002737}
2738
Chandler Carruth1b03c872011-07-02 00:01:44 +00002739static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D,
2740 const AttributeList &Attr) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002741 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002742 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner7255a2d2010-06-22 00:03:40 +00002743 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002744
Chris Lattner7255a2d2010-06-22 00:03:40 +00002745
Chandler Carruth87c44602011-07-01 23:49:12 +00002746 if (!isa<FunctionDecl>(D)) {
Chris Lattner7255a2d2010-06-22 00:03:40 +00002747 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002748 << Attr.getName() << ExpectedFunction;
Chris Lattner7255a2d2010-06-22 00:03:40 +00002749 return;
2750 }
2751
Chandler Carruth87c44602011-07-01 23:49:12 +00002752 D->addAttr(::new (S.Context) NoInstrumentFunctionAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00002753 S.Context));
Chris Lattner7255a2d2010-06-22 00:03:40 +00002754}
2755
Chandler Carruth1b03c872011-07-02 00:01:44 +00002756static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002757 if (S.LangOpts.CUDA) {
2758 // check the attribute arguments.
Ted Kremenek831efae2011-04-15 05:49:29 +00002759 if (Attr.hasParameterOrArguments()) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002760 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2761 return;
2762 }
2763
Chandler Carruth87c44602011-07-01 23:49:12 +00002764 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002765 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002766 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002767 return;
2768 }
2769
Chandler Carruth87c44602011-07-01 23:49:12 +00002770 D->addAttr(::new (S.Context) CUDAConstantAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002771 } else {
2772 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant";
2773 }
2774}
2775
Chandler Carruth1b03c872011-07-02 00:01:44 +00002776static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002777 if (S.LangOpts.CUDA) {
2778 // check the attribute arguments.
2779 if (Attr.getNumArgs() != 0) {
2780 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2781 return;
2782 }
2783
Chandler Carruth87c44602011-07-01 23:49:12 +00002784 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002785 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002786 << Attr.getName() << ExpectedVariableOrFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002787 return;
2788 }
2789
Chandler Carruth87c44602011-07-01 23:49:12 +00002790 D->addAttr(::new (S.Context) CUDADeviceAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002791 } else {
2792 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device";
2793 }
2794}
2795
Chandler Carruth1b03c872011-07-02 00:01:44 +00002796static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002797 if (S.LangOpts.CUDA) {
2798 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002799 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002800 return;
Peter Collingbourneced76712010-12-01 03:15:31 +00002801
Chandler Carruth87c44602011-07-01 23:49:12 +00002802 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002803 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002804 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002805 return;
2806 }
2807
Chandler Carruth87c44602011-07-01 23:49:12 +00002808 FunctionDecl *FD = cast<FunctionDecl>(D);
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002809 if (!FD->getResultType()->isVoidType()) {
Abramo Bagnara723df242010-12-14 22:11:44 +00002810 TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens();
Peter Collingbourne2c2c8dd2010-12-12 23:02:57 +00002811 if (FunctionTypeLoc* FTL = dyn_cast<FunctionTypeLoc>(&TL)) {
2812 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2813 << FD->getType()
2814 << FixItHint::CreateReplacement(FTL->getResultLoc().getSourceRange(),
2815 "void");
2816 } else {
2817 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
2818 << FD->getType();
2819 }
2820 return;
2821 }
2822
Chandler Carruth87c44602011-07-01 23:49:12 +00002823 D->addAttr(::new (S.Context) CUDAGlobalAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002824 } else {
2825 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global";
2826 }
2827}
2828
Chandler Carruth1b03c872011-07-02 00:01:44 +00002829static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002830 if (S.LangOpts.CUDA) {
2831 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002832 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002833 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002834
Peter Collingbourneced76712010-12-01 03:15:31 +00002835
Chandler Carruth87c44602011-07-01 23:49:12 +00002836 if (!isa<FunctionDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002837 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002838 << Attr.getName() << ExpectedFunction;
Peter Collingbourneced76712010-12-01 03:15:31 +00002839 return;
2840 }
2841
Chandler Carruth87c44602011-07-01 23:49:12 +00002842 D->addAttr(::new (S.Context) CUDAHostAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002843 } else {
2844 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host";
2845 }
2846}
2847
Chandler Carruth1b03c872011-07-02 00:01:44 +00002848static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002849 if (S.LangOpts.CUDA) {
2850 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002851 if (!checkAttributeNumArgs(S, Attr, 0))
Peter Collingbourneced76712010-12-01 03:15:31 +00002852 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00002853
Peter Collingbourneced76712010-12-01 03:15:31 +00002854
Chandler Carruth87c44602011-07-01 23:49:12 +00002855 if (!isa<VarDecl>(D)) {
Peter Collingbourneced76712010-12-01 03:15:31 +00002856 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002857 << Attr.getName() << ExpectedVariable;
Peter Collingbourneced76712010-12-01 03:15:31 +00002858 return;
2859 }
2860
Chandler Carruth87c44602011-07-01 23:49:12 +00002861 D->addAttr(::new (S.Context) CUDASharedAttr(Attr.getLoc(), S.Context));
Peter Collingbourneced76712010-12-01 03:15:31 +00002862 } else {
2863 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared";
2864 }
2865}
2866
Chandler Carruth1b03c872011-07-02 00:01:44 +00002867static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chris Lattner26e25542009-04-14 16:30:50 +00002868 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00002869 if (!checkAttributeNumArgs(S, Attr, 0))
Chris Lattner26e25542009-04-14 16:30:50 +00002870 return;
Mike Stumpbf916502009-07-24 19:02:52 +00002871
Chandler Carruth87c44602011-07-01 23:49:12 +00002872 FunctionDecl *Fn = dyn_cast<FunctionDecl>(D);
Chris Lattnerc5197432009-04-14 17:02:11 +00002873 if (Fn == 0) {
Chris Lattner26e25542009-04-14 16:30:50 +00002874 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00002875 << Attr.getName() << ExpectedFunction;
Chris Lattner26e25542009-04-14 16:30:50 +00002876 return;
2877 }
Mike Stumpbf916502009-07-24 19:02:52 +00002878
Douglas Gregor0130f3c2009-10-27 21:01:01 +00002879 if (!Fn->isInlineSpecified()) {
Chris Lattnercf2a7212009-04-20 19:12:28 +00002880 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
Chris Lattnerc5197432009-04-14 17:02:11 +00002881 return;
2882 }
Mike Stumpbf916502009-07-24 19:02:52 +00002883
Chandler Carruth87c44602011-07-01 23:49:12 +00002884 D->addAttr(::new (S.Context) GNUInlineAttr(Attr.getLoc(), S.Context));
Chris Lattner26e25542009-04-14 16:30:50 +00002885}
2886
Chandler Carruth1b03c872011-07-02 00:01:44 +00002887static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002888 if (hasDeclarator(D)) return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002889
Chandler Carruth87c44602011-07-01 23:49:12 +00002890 // Diagnostic is emitted elsewhere: here we store the (valid) Attr
John McCall711c52b2011-01-05 12:14:39 +00002891 // in the Decl node for syntactic reasoning, e.g., pretty-printing.
2892 CallingConv CC;
Chandler Carruth87c44602011-07-01 23:49:12 +00002893 if (S.CheckCallingConvAttr(Attr, CC))
John McCall711c52b2011-01-05 12:14:39 +00002894 return;
2895
Chandler Carruth87c44602011-07-01 23:49:12 +00002896 if (!isa<ObjCMethodDecl>(D)) {
2897 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
2898 << Attr.getName() << ExpectedFunctionOrMethod;
John McCall711c52b2011-01-05 12:14:39 +00002899 return;
2900 }
2901
Chandler Carruth87c44602011-07-01 23:49:12 +00002902 switch (Attr.getKind()) {
Abramo Bagnarae215f722010-04-30 13:10:51 +00002903 case AttributeList::AT_fastcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002904 D->addAttr(::new (S.Context) FastCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002905 return;
2906 case AttributeList::AT_stdcall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002907 D->addAttr(::new (S.Context) StdCallAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002908 return;
Douglas Gregorf813a2c2010-05-18 16:57:00 +00002909 case AttributeList::AT_thiscall:
Chandler Carruth87c44602011-07-01 23:49:12 +00002910 D->addAttr(::new (S.Context) ThisCallAttr(Attr.getLoc(), S.Context));
Douglas Gregor04633eb2010-08-30 23:30:49 +00002911 return;
Abramo Bagnarae215f722010-04-30 13:10:51 +00002912 case AttributeList::AT_cdecl:
Chandler Carruth87c44602011-07-01 23:49:12 +00002913 D->addAttr(::new (S.Context) CDeclAttr(Attr.getLoc(), S.Context));
Abramo Bagnarae215f722010-04-30 13:10:51 +00002914 return;
Dawn Perchik52fc3142010-09-03 01:29:35 +00002915 case AttributeList::AT_pascal:
Chandler Carruth87c44602011-07-01 23:49:12 +00002916 D->addAttr(::new (S.Context) PascalAttr(Attr.getLoc(), S.Context));
Dawn Perchik52fc3142010-09-03 01:29:35 +00002917 return;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002918 case AttributeList::AT_pcs: {
Chandler Carruth87c44602011-07-01 23:49:12 +00002919 Expr *Arg = Attr.getArg(0);
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002920 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002921 if (!Str || !Str->isAscii()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00002922 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002923 << "pcs" << 1;
Chandler Carruth87c44602011-07-01 23:49:12 +00002924 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002925 return;
2926 }
2927
Chris Lattner5f9e2722011-07-23 10:55:15 +00002928 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002929 PcsAttr::PCSType PCS;
2930 if (StrRef == "aapcs")
2931 PCS = PcsAttr::AAPCS;
2932 else if (StrRef == "aapcs-vfp")
2933 PCS = PcsAttr::AAPCS_VFP;
2934 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00002935 S.Diag(Attr.getLoc(), diag::err_invalid_pcs);
2936 Attr.setInvalid();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002937 return;
2938 }
2939
Chandler Carruth87c44602011-07-01 23:49:12 +00002940 D->addAttr(::new (S.Context) PcsAttr(Attr.getLoc(), S.Context, PCS));
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002941 }
Abramo Bagnarae215f722010-04-30 13:10:51 +00002942 default:
2943 llvm_unreachable("unexpected attribute kind");
2944 return;
2945 }
2946}
2947
Chandler Carruth1b03c872011-07-02 00:01:44 +00002948static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){
Chandler Carruth56aeb402011-07-11 23:33:05 +00002949 assert(!Attr.isInvalid());
Chandler Carruth87c44602011-07-01 23:49:12 +00002950 D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getLoc(), S.Context));
Peter Collingbournef315fa82011-02-14 01:42:53 +00002951}
2952
John McCall711c52b2011-01-05 12:14:39 +00002953bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC) {
2954 if (attr.isInvalid())
2955 return true;
2956
Ted Kremenek831efae2011-04-15 05:49:29 +00002957 if ((attr.getNumArgs() != 0 &&
2958 !(attr.getKind() == AttributeList::AT_pcs && attr.getNumArgs() == 1)) ||
2959 attr.getParameterName()) {
John McCall711c52b2011-01-05 12:14:39 +00002960 Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
2961 attr.setInvalid();
2962 return true;
2963 }
2964
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002965 // TODO: diagnose uses of these conventions on the wrong target. Or, better
2966 // move to TargetAttributesSema one day.
John McCall711c52b2011-01-05 12:14:39 +00002967 switch (attr.getKind()) {
2968 case AttributeList::AT_cdecl: CC = CC_C; break;
2969 case AttributeList::AT_fastcall: CC = CC_X86FastCall; break;
2970 case AttributeList::AT_stdcall: CC = CC_X86StdCall; break;
2971 case AttributeList::AT_thiscall: CC = CC_X86ThisCall; break;
2972 case AttributeList::AT_pascal: CC = CC_X86Pascal; break;
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002973 case AttributeList::AT_pcs: {
2974 Expr *Arg = attr.getArg(0);
2975 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00002976 if (!Str || !Str->isAscii()) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002977 Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string)
2978 << "pcs" << 1;
2979 attr.setInvalid();
2980 return true;
2981 }
2982
Chris Lattner5f9e2722011-07-23 10:55:15 +00002983 StringRef StrRef = Str->getString();
Anton Korobeynikov414d8962011-04-14 20:06:49 +00002984 if (StrRef == "aapcs") {
2985 CC = CC_AAPCS;
2986 break;
2987 } else if (StrRef == "aapcs-vfp") {
2988 CC = CC_AAPCS_VFP;
2989 break;
2990 }
2991 // FALLS THROUGH
2992 }
John McCall711c52b2011-01-05 12:14:39 +00002993 default: llvm_unreachable("unexpected attribute kind"); return true;
2994 }
2995
2996 return false;
2997}
2998
Chandler Carruth1b03c872011-07-02 00:01:44 +00002999static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003000 if (hasDeclarator(D)) return;
John McCall711c52b2011-01-05 12:14:39 +00003001
3002 unsigned numParams;
Chandler Carruth87c44602011-07-01 23:49:12 +00003003 if (S.CheckRegparmAttr(Attr, numParams))
John McCall711c52b2011-01-05 12:14:39 +00003004 return;
3005
Chandler Carruth87c44602011-07-01 23:49:12 +00003006 if (!isa<ObjCMethodDecl>(D)) {
3007 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
3008 << Attr.getName() << ExpectedFunctionOrMethod;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003009 return;
3010 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003011
Chandler Carruth87c44602011-07-01 23:49:12 +00003012 D->addAttr(::new (S.Context) RegparmAttr(Attr.getLoc(), S.Context, numParams));
John McCall711c52b2011-01-05 12:14:39 +00003013}
3014
3015/// Checks a regparm attribute, returning true if it is ill-formed and
3016/// otherwise setting numParams to the appropriate value.
Chandler Carruth87c44602011-07-01 23:49:12 +00003017bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) {
3018 if (Attr.isInvalid())
John McCall711c52b2011-01-05 12:14:39 +00003019 return true;
3020
Chandler Carruth87c44602011-07-01 23:49:12 +00003021 if (Attr.getNumArgs() != 1) {
3022 Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1;
3023 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003024 return true;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003025 }
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003026
Chandler Carruth87c44602011-07-01 23:49:12 +00003027 Expr *NumParamsExpr = Attr.getArg(0);
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003028 llvm::APSInt NumParams(32);
Douglas Gregorac06a0e2010-05-18 23:01:22 +00003029 if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() ||
John McCall711c52b2011-01-05 12:14:39 +00003030 !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003031 Diag(Attr.getLoc(), diag::err_attribute_argument_not_int)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003032 << "regparm" << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003033 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003034 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003035 }
3036
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003037 if (Context.getTargetInfo().getRegParmMax() == 0) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003038 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform)
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003039 << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003040 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003041 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003042 }
3043
John McCall711c52b2011-01-05 12:14:39 +00003044 numParams = NumParams.getZExtValue();
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003045 if (numParams > Context.getTargetInfo().getRegParmMax()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003046 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00003047 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
Chandler Carruth87c44602011-07-01 23:49:12 +00003048 Attr.setInvalid();
John McCall711c52b2011-01-05 12:14:39 +00003049 return true;
Eli Friedman55d3aaf2009-03-27 21:06:47 +00003050 }
3051
John McCall711c52b2011-01-05 12:14:39 +00003052 return false;
Fariborz Jahanianee760332009-03-27 18:38:55 +00003053}
3054
Chandler Carruth1b03c872011-07-02 00:01:44 +00003055static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){
Peter Collingbourne7b381982010-12-12 23:03:07 +00003056 if (S.LangOpts.CUDA) {
3057 // check the attribute arguments.
3058 if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) {
John McCallbdc49d32011-03-02 12:15:05 +00003059 // FIXME: 0 is not okay.
3060 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003061 return;
3062 }
3063
Chandler Carruth87c44602011-07-01 23:49:12 +00003064 if (!isFunctionOrMethod(D)) {
Peter Collingbourne7b381982010-12-12 23:03:07 +00003065 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
John McCall883cc2c2011-03-02 12:29:23 +00003066 << Attr.getName() << ExpectedFunctionOrMethod;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003067 return;
3068 }
3069
3070 Expr *MaxThreadsExpr = Attr.getArg(0);
3071 llvm::APSInt MaxThreads(32);
3072 if (MaxThreadsExpr->isTypeDependent() ||
3073 MaxThreadsExpr->isValueDependent() ||
3074 !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) {
3075 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3076 << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange();
3077 return;
3078 }
3079
3080 llvm::APSInt MinBlocks(32);
3081 if (Attr.getNumArgs() > 1) {
3082 Expr *MinBlocksExpr = Attr.getArg(1);
3083 if (MinBlocksExpr->isTypeDependent() ||
3084 MinBlocksExpr->isValueDependent() ||
3085 !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) {
3086 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int)
3087 << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange();
3088 return;
3089 }
3090 }
3091
Chandler Carruth87c44602011-07-01 23:49:12 +00003092 D->addAttr(::new (S.Context) CUDALaunchBoundsAttr(Attr.getLoc(), S.Context,
Peter Collingbourne7b381982010-12-12 23:03:07 +00003093 MaxThreads.getZExtValue(),
3094 MinBlocks.getZExtValue()));
3095 } else {
3096 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds";
3097 }
3098}
3099
Chris Lattner0744e5f2008-06-29 00:23:49 +00003100//===----------------------------------------------------------------------===//
Ted Kremenekb71368d2009-05-09 02:44:38 +00003101// Checker-specific attribute handlers.
3102//===----------------------------------------------------------------------===//
3103
John McCallc7ad3812011-01-25 03:31:58 +00003104static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) {
3105 return type->isObjCObjectPointerType() || S.Context.isObjCNSObjectType(type);
3106}
3107static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) {
3108 return type->isPointerType() || isValidSubjectOfNSAttribute(S, type);
3109}
3110
Chandler Carruth1b03c872011-07-02 00:01:44 +00003111static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003112 ParmVarDecl *param = dyn_cast<ParmVarDecl>(D);
John McCallc7ad3812011-01-25 03:31:58 +00003113 if (!param) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003114 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3115 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedParameter;
John McCallc7ad3812011-01-25 03:31:58 +00003116 return;
3117 }
3118
3119 bool typeOK, cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003120 if (Attr.getKind() == AttributeList::AT_ns_consumed) {
John McCallc7ad3812011-01-25 03:31:58 +00003121 typeOK = isValidSubjectOfNSAttribute(S, param->getType());
3122 cf = false;
3123 } else {
3124 typeOK = isValidSubjectOfCFAttribute(S, param->getType());
3125 cf = true;
3126 }
3127
3128 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003129 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type)
3130 << SourceRange(Attr.getLoc()) << Attr.getName() << cf;
John McCallc7ad3812011-01-25 03:31:58 +00003131 return;
3132 }
3133
3134 if (cf)
Chandler Carruth87c44602011-07-01 23:49:12 +00003135 param->addAttr(::new (S.Context) CFConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003136 else
Chandler Carruth87c44602011-07-01 23:49:12 +00003137 param->addAttr(::new (S.Context) NSConsumedAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003138}
3139
Chandler Carruth1b03c872011-07-02 00:01:44 +00003140static void handleNSConsumesSelfAttr(Sema &S, Decl *D,
3141 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003142 if (!isa<ObjCMethodDecl>(D)) {
3143 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3144 << SourceRange(Attr.getLoc()) << Attr.getName() << ExpectedMethod;
John McCallc7ad3812011-01-25 03:31:58 +00003145 return;
3146 }
3147
Chandler Carruth87c44602011-07-01 23:49:12 +00003148 D->addAttr(::new (S.Context) NSConsumesSelfAttr(Attr.getLoc(), S.Context));
John McCallc7ad3812011-01-25 03:31:58 +00003149}
3150
Chandler Carruth1b03c872011-07-02 00:01:44 +00003151static void handleNSReturnsRetainedAttr(Sema &S, Decl *D,
3152 const AttributeList &Attr) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003153
John McCallc7ad3812011-01-25 03:31:58 +00003154 QualType returnType;
Mike Stumpbf916502009-07-24 19:02:52 +00003155
Chandler Carruth87c44602011-07-01 23:49:12 +00003156 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003157 returnType = MD->getResultType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003158 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D))
Fariborz Jahanian831fb962011-06-25 00:17:46 +00003159 returnType = PD->getType();
Chandler Carruth87c44602011-07-01 23:49:12 +00003160 else if (S.getLangOptions().ObjCAutoRefCount && hasDeclarator(D) &&
3161 (Attr.getKind() == AttributeList::AT_ns_returns_retained))
John McCallf85e1932011-06-15 23:02:42 +00003162 return; // ignore: was handled as a type attribute
Chandler Carruth87c44602011-07-01 23:49:12 +00003163 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
John McCallc7ad3812011-01-25 03:31:58 +00003164 returnType = FD->getResultType();
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003165 else {
Chandler Carruth87c44602011-07-01 23:49:12 +00003166 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type)
3167 << SourceRange(Attr.getLoc()) << Attr.getName()
John McCall883cc2c2011-03-02 12:29:23 +00003168 << ExpectedFunctionOrMethod;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003169 return;
3170 }
Mike Stumpbf916502009-07-24 19:02:52 +00003171
John McCallc7ad3812011-01-25 03:31:58 +00003172 bool typeOK;
3173 bool cf;
Chandler Carruth87c44602011-07-01 23:49:12 +00003174 switch (Attr.getKind()) {
John McCallc7ad3812011-01-25 03:31:58 +00003175 default: llvm_unreachable("invalid ownership attribute"); return;
3176 case AttributeList::AT_ns_returns_autoreleased:
3177 case AttributeList::AT_ns_returns_retained:
3178 case AttributeList::AT_ns_returns_not_retained:
3179 typeOK = isValidSubjectOfNSAttribute(S, returnType);
3180 cf = false;
3181 break;
3182
3183 case AttributeList::AT_cf_returns_retained:
3184 case AttributeList::AT_cf_returns_not_retained:
3185 typeOK = isValidSubjectOfCFAttribute(S, returnType);
3186 cf = true;
3187 break;
3188 }
3189
3190 if (!typeOK) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003191 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3192 << SourceRange(Attr.getLoc())
3193 << Attr.getName() << isa<ObjCMethodDecl>(D) << cf;
Mike Stumpbf916502009-07-24 19:02:52 +00003194 return;
Ted Kremenek5dc53c92009-05-13 21:07:32 +00003195 }
Mike Stumpbf916502009-07-24 19:02:52 +00003196
Chandler Carruth87c44602011-07-01 23:49:12 +00003197 switch (Attr.getKind()) {
Ted Kremenekb71368d2009-05-09 02:44:38 +00003198 default:
3199 assert(0 && "invalid ownership attribute");
3200 return;
John McCallc7ad3812011-01-25 03:31:58 +00003201 case AttributeList::AT_ns_returns_autoreleased:
Chandler Carruth87c44602011-07-01 23:49:12 +00003202 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr(Attr.getLoc(),
John McCallc7ad3812011-01-25 03:31:58 +00003203 S.Context));
3204 return;
Ted Kremenek31c780d2010-02-18 00:05:45 +00003205 case AttributeList::AT_cf_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003206 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003207 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003208 return;
3209 case AttributeList::AT_ns_returns_not_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003210 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003211 S.Context));
Ted Kremenek31c780d2010-02-18 00:05:45 +00003212 return;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003213 case AttributeList::AT_cf_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003214 D->addAttr(::new (S.Context) CFReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003215 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003216 return;
3217 case AttributeList::AT_ns_returns_retained:
Chandler Carruth87c44602011-07-01 23:49:12 +00003218 D->addAttr(::new (S.Context) NSReturnsRetainedAttr(Attr.getLoc(),
Eric Christopherf48f3672010-12-01 22:13:54 +00003219 S.Context));
Ted Kremenekb71368d2009-05-09 02:44:38 +00003220 return;
3221 };
3222}
3223
John McCalldc7c5ad2011-07-22 08:53:00 +00003224static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
3225 const AttributeList &attr) {
3226 SourceLocation loc = attr.getLoc();
3227
3228 ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D);
3229
3230 if (!isa<ObjCMethodDecl>(method)) {
3231 S.Diag(method->getLocStart(), diag::err_attribute_wrong_decl_type)
3232 << SourceRange(loc, loc) << attr.getName() << 13 /* methods */;
3233 return;
3234 }
3235
3236 // Check that the method returns a normal pointer.
3237 QualType resultType = method->getResultType();
3238 if (!resultType->isPointerType() || resultType->isObjCRetainableType()) {
3239 S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type)
3240 << SourceRange(loc)
3241 << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2;
3242
3243 // Drop the attribute.
3244 return;
3245 }
3246
3247 method->addAttr(
3248 ::new (S.Context) ObjCReturnsInnerPointerAttr(loc, S.Context));
3249}
3250
Chandler Carruth1b03c872011-07-02 00:01:44 +00003251static void handleObjCOwnershipAttr(Sema &S, Decl *D,
3252 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003253 if (hasDeclarator(D)) return;
John McCallf85e1932011-06-15 23:02:42 +00003254
Chandler Carruth87c44602011-07-01 23:49:12 +00003255 SourceLocation L = Attr.getLoc();
3256 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3257 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003258}
3259
Chandler Carruth1b03c872011-07-02 00:01:44 +00003260static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
3261 const AttributeList &Attr) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003262 if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) {
3263 SourceLocation L = Attr.getLoc();
3264 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type)
3265 << SourceRange(L, L) << Attr.getName() << 12 /* variable */;
John McCallf85e1932011-06-15 23:02:42 +00003266 return;
3267 }
3268
Chandler Carruth87c44602011-07-01 23:49:12 +00003269 ValueDecl *vd = cast<ValueDecl>(D);
John McCallf85e1932011-06-15 23:02:42 +00003270 QualType type = vd->getType();
3271
3272 if (!type->isDependentType() &&
3273 !type->isObjCLifetimeType()) {
Chandler Carruth87c44602011-07-01 23:49:12 +00003274 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type)
John McCallf85e1932011-06-15 23:02:42 +00003275 << type;
3276 return;
3277 }
3278
3279 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
3280
3281 // If we have no lifetime yet, check the lifetime we're presumably
3282 // going to infer.
3283 if (lifetime == Qualifiers::OCL_None && !type->isDependentType())
3284 lifetime = type->getObjCARCImplicitLifetime();
3285
3286 switch (lifetime) {
3287 case Qualifiers::OCL_None:
3288 assert(type->isDependentType() &&
3289 "didn't infer lifetime for non-dependent type?");
3290 break;
3291
3292 case Qualifiers::OCL_Weak: // meaningful
3293 case Qualifiers::OCL_Strong: // meaningful
3294 break;
3295
3296 case Qualifiers::OCL_ExplicitNone:
3297 case Qualifiers::OCL_Autoreleasing:
Chandler Carruth87c44602011-07-01 23:49:12 +00003298 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
John McCallf85e1932011-06-15 23:02:42 +00003299 << (lifetime == Qualifiers::OCL_Autoreleasing);
3300 break;
3301 }
3302
Chandler Carruth87c44602011-07-01 23:49:12 +00003303 D->addAttr(::new (S.Context)
3304 ObjCPreciseLifetimeAttr(Attr.getLoc(), S.Context));
John McCallf85e1932011-06-15 23:02:42 +00003305}
3306
Charles Davisf0122fe2010-02-16 18:27:26 +00003307static bool isKnownDeclSpecAttr(const AttributeList &Attr) {
3308 return Attr.getKind() == AttributeList::AT_dllimport ||
Francois Pichet11542142010-12-19 06:50:37 +00003309 Attr.getKind() == AttributeList::AT_dllexport ||
3310 Attr.getKind() == AttributeList::AT_uuid;
3311}
3312
3313//===----------------------------------------------------------------------===//
3314// Microsoft specific attribute handlers.
3315//===----------------------------------------------------------------------===//
3316
Chandler Carruth1b03c872011-07-02 00:01:44 +00003317static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) {
Francois Pichet11542142010-12-19 06:50:37 +00003318 if (S.LangOpts.Microsoft || S.LangOpts.Borland) {
3319 // check the attribute arguments.
Chandler Carruth1731e202011-07-11 23:30:35 +00003320 if (!checkAttributeNumArgs(S, Attr, 1))
Francois Pichet11542142010-12-19 06:50:37 +00003321 return;
Chandler Carruth1731e202011-07-11 23:30:35 +00003322
Francois Pichet11542142010-12-19 06:50:37 +00003323 Expr *Arg = Attr.getArg(0);
3324 StringLiteral *Str = dyn_cast<StringLiteral>(Arg);
Douglas Gregor5cee1192011-07-27 05:40:30 +00003325 if (!Str || !Str->isAscii()) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003326 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string)
3327 << "uuid" << 1;
3328 return;
3329 }
3330
Chris Lattner5f9e2722011-07-23 10:55:15 +00003331 StringRef StrRef = Str->getString();
Francois Pichetd3d3be92010-12-20 01:41:49 +00003332
3333 bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' &&
3334 StrRef.back() == '}';
3335
3336 // Validate GUID length.
3337 if (IsCurly && StrRef.size() != 38) {
3338 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3339 return;
3340 }
3341 if (!IsCurly && StrRef.size() != 36) {
3342 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3343 return;
3344 }
3345
3346 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
3347 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}"
Chris Lattner5f9e2722011-07-23 10:55:15 +00003348 StringRef::iterator I = StrRef.begin();
Anders Carlssonf89e0422011-01-23 21:07:30 +00003349 if (IsCurly) // Skip the optional '{'
3350 ++I;
3351
3352 for (int i = 0; i < 36; ++i) {
Francois Pichetd3d3be92010-12-20 01:41:49 +00003353 if (i == 8 || i == 13 || i == 18 || i == 23) {
3354 if (*I != '-') {
3355 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3356 return;
3357 }
3358 } else if (!isxdigit(*I)) {
3359 S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid);
3360 return;
3361 }
3362 I++;
3363 }
Francois Pichet11542142010-12-19 06:50:37 +00003364
Chandler Carruth87c44602011-07-01 23:49:12 +00003365 D->addAttr(::new (S.Context) UuidAttr(Attr.getLoc(), S.Context,
Francois Pichet11542142010-12-19 06:50:37 +00003366 Str->getString()));
Francois Pichetd3d3be92010-12-20 01:41:49 +00003367 } else
Francois Pichet11542142010-12-19 06:50:37 +00003368 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "uuid";
Charles Davisf0122fe2010-02-16 18:27:26 +00003369}
3370
Ted Kremenekb71368d2009-05-09 02:44:38 +00003371//===----------------------------------------------------------------------===//
Chris Lattner0744e5f2008-06-29 00:23:49 +00003372// Top Level Sema Entry Points
3373//===----------------------------------------------------------------------===//
3374
Chandler Carruth1b03c872011-07-02 00:01:44 +00003375static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3376 const AttributeList &Attr) {
Peter Collingbourne60700392011-01-21 02:08:45 +00003377 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003378 case AttributeList::AT_device: handleDeviceAttr (S, D, Attr); break;
3379 case AttributeList::AT_host: handleHostAttr (S, D, Attr); break;
3380 case AttributeList::AT_overloadable:handleOverloadableAttr(S, D, Attr); break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003381 default:
3382 break;
3383 }
3384}
Abramo Bagnarae215f722010-04-30 13:10:51 +00003385
Chandler Carruth1b03c872011-07-02 00:01:44 +00003386static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D,
3387 const AttributeList &Attr) {
Chris Lattner803d0802008-06-29 00:43:07 +00003388 switch (Attr.getKind()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003389 case AttributeList::AT_IBAction: handleIBAction(S, D, Attr); break;
3390 case AttributeList::AT_IBOutlet: handleIBOutlet(S, D, Attr); break;
Ted Kremenek857e9182010-05-19 17:38:06 +00003391 case AttributeList::AT_IBOutletCollection:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003392 handleIBOutletCollection(S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003393 case AttributeList::AT_address_space:
Peter Collingbourne207f4d82011-03-18 22:38:29 +00003394 case AttributeList::AT_opencl_image_access:
Fariborz Jahanianba372b82009-02-18 17:52:36 +00003395 case AttributeList::AT_objc_gc:
John Thompson6e132aa2009-12-04 21:51:28 +00003396 case AttributeList::AT_vector_size:
Bob Wilson4211bb62010-11-16 00:32:24 +00003397 case AttributeList::AT_neon_vector_type:
3398 case AttributeList::AT_neon_polyvector_type:
Mike Stumpbf916502009-07-24 19:02:52 +00003399 // Ignore these, these are type attributes, handled by
3400 // ProcessTypeAttributes.
Chris Lattner803d0802008-06-29 00:43:07 +00003401 break;
Peter Collingbourne60700392011-01-21 02:08:45 +00003402 case AttributeList::AT_device:
3403 case AttributeList::AT_host:
3404 case AttributeList::AT_overloadable:
3405 // Ignore, this is a non-inheritable attribute, handled
3406 // by ProcessNonInheritableDeclAttr.
3407 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003408 case AttributeList::AT_alias: handleAliasAttr (S, D, Attr); break;
3409 case AttributeList::AT_aligned: handleAlignedAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003410 case AttributeList::AT_always_inline:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003411 handleAlwaysInlineAttr (S, D, Attr); break;
Ted Kremenekb7252322009-04-10 00:01:14 +00003412 case AttributeList::AT_analyzer_noreturn:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003413 handleAnalyzerNoReturnAttr (S, D, Attr); break;
3414 case AttributeList::AT_annotate: handleAnnotateAttr (S, D, Attr); break;
3415 case AttributeList::AT_availability:handleAvailabilityAttr(S, D, Attr); break;
Sean Huntbbd37c62009-11-21 08:43:09 +00003416 case AttributeList::AT_carries_dependency:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003417 handleDependencyAttr (S, D, Attr); break;
3418 case AttributeList::AT_common: handleCommonAttr (S, D, Attr); break;
3419 case AttributeList::AT_constant: handleConstantAttr (S, D, Attr); break;
3420 case AttributeList::AT_constructor: handleConstructorAttr (S, D, Attr); break;
3421 case AttributeList::AT_deprecated: handleDeprecatedAttr (S, D, Attr); break;
3422 case AttributeList::AT_destructor: handleDestructorAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003423 case AttributeList::AT_ext_vector_type:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003424 handleExtVectorTypeAttr(S, scope, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003425 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003426 case AttributeList::AT_format: handleFormatAttr (S, D, Attr); break;
3427 case AttributeList::AT_format_arg: handleFormatArgAttr (S, D, Attr); break;
3428 case AttributeList::AT_global: handleGlobalAttr (S, D, Attr); break;
3429 case AttributeList::AT_gnu_inline: handleGNUInlineAttr (S, D, Attr); break;
Peter Collingbourne7b381982010-12-12 23:03:07 +00003430 case AttributeList::AT_launch_bounds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003431 handleLaunchBoundsAttr(S, D, Attr);
Peter Collingbourne7b381982010-12-12 23:03:07 +00003432 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003433 case AttributeList::AT_mode: handleModeAttr (S, D, Attr); break;
3434 case AttributeList::AT_malloc: handleMallocAttr (S, D, Attr); break;
3435 case AttributeList::AT_may_alias: handleMayAliasAttr (S, D, Attr); break;
3436 case AttributeList::AT_nocommon: handleNoCommonAttr (S, D, Attr); break;
3437 case AttributeList::AT_nonnull: handleNonNullAttr (S, D, Attr); break;
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003438 case AttributeList::AT_ownership_returns:
3439 case AttributeList::AT_ownership_takes:
3440 case AttributeList::AT_ownership_holds:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003441 handleOwnershipAttr (S, D, Attr); break;
3442 case AttributeList::AT_naked: handleNakedAttr (S, D, Attr); break;
3443 case AttributeList::AT_noreturn: handleNoReturnAttr (S, D, Attr); break;
3444 case AttributeList::AT_nothrow: handleNothrowAttr (S, D, Attr); break;
3445 case AttributeList::AT_shared: handleSharedAttr (S, D, Attr); break;
3446 case AttributeList::AT_vecreturn: handleVecReturnAttr (S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003447
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00003448 case AttributeList::AT_objc_ownership:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003449 handleObjCOwnershipAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003450 case AttributeList::AT_objc_precise_lifetime:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003451 handleObjCPreciseLifetimeAttr(S, D, Attr); break;
John McCallf85e1932011-06-15 23:02:42 +00003452
John McCalldc7c5ad2011-07-22 08:53:00 +00003453 case AttributeList::AT_objc_returns_inner_pointer:
3454 handleObjCReturnsInnerPointerAttr(S, D, Attr); break;
3455
Ted Kremenekb71368d2009-05-09 02:44:38 +00003456 // Checker-specific.
John McCallc7ad3812011-01-25 03:31:58 +00003457 case AttributeList::AT_cf_consumed:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003458 case AttributeList::AT_ns_consumed: handleNSConsumedAttr (S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003459 case AttributeList::AT_ns_consumes_self:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003460 handleNSConsumesSelfAttr(S, D, Attr); break;
John McCallc7ad3812011-01-25 03:31:58 +00003461
3462 case AttributeList::AT_ns_returns_autoreleased:
Ted Kremenek31c780d2010-02-18 00:05:45 +00003463 case AttributeList::AT_ns_returns_not_retained:
3464 case AttributeList::AT_cf_returns_not_retained:
Ted Kremenekb71368d2009-05-09 02:44:38 +00003465 case AttributeList::AT_ns_returns_retained:
3466 case AttributeList::AT_cf_returns_retained:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003467 handleNSReturnsRetainedAttr(S, D, Attr); break;
Ted Kremenekb71368d2009-05-09 02:44:38 +00003468
Nate Begeman6f3d8382009-06-26 06:32:41 +00003469 case AttributeList::AT_reqd_wg_size:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003470 handleReqdWorkGroupSize(S, D, Attr); break;
Nate Begeman6f3d8382009-06-26 06:32:41 +00003471
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003472 case AttributeList::AT_init_priority:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003473 handleInitPriorityAttr(S, D, Attr); break;
Fariborz Jahanian521f12d2010-06-18 21:44:06 +00003474
Chandler Carruth1b03c872011-07-02 00:01:44 +00003475 case AttributeList::AT_packed: handlePackedAttr (S, D, Attr); break;
3476 case AttributeList::AT_MsStruct: handleMsStructAttr (S, D, Attr); break;
3477 case AttributeList::AT_section: handleSectionAttr (S, D, Attr); break;
3478 case AttributeList::AT_unavailable: handleUnavailableAttr (S, D, Attr); break;
Fariborz Jahanian742352a2011-07-06 19:24:05 +00003479 case AttributeList::AT_arc_weakref_unavailable:
3480 handleArcWeakrefUnavailableAttr (S, D, Attr);
3481 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003482 case AttributeList::AT_unused: handleUnusedAttr (S, D, Attr); break;
3483 case AttributeList::AT_used: handleUsedAttr (S, D, Attr); break;
3484 case AttributeList::AT_visibility: handleVisibilityAttr (S, D, Attr); break;
3485 case AttributeList::AT_warn_unused_result: handleWarnUnusedResult(S, D, Attr);
Chris Lattner026dc962009-02-14 07:37:35 +00003486 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003487 case AttributeList::AT_weak: handleWeakAttr (S, D, Attr); break;
3488 case AttributeList::AT_weakref: handleWeakRefAttr (S, D, Attr); break;
3489 case AttributeList::AT_weak_import: handleWeakImportAttr (S, D, Attr); break;
Chris Lattner803d0802008-06-29 00:43:07 +00003490 case AttributeList::AT_transparent_union:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003491 handleTransparentUnionAttr(S, D, Attr);
Chris Lattner803d0802008-06-29 00:43:07 +00003492 break;
Chris Lattner0db29ec2009-02-14 08:09:34 +00003493 case AttributeList::AT_objc_exception:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003494 handleObjCExceptionAttr(S, D, Attr);
Chris Lattner0db29ec2009-02-14 08:09:34 +00003495 break;
John McCalld5313b02011-03-02 11:33:24 +00003496 case AttributeList::AT_objc_method_family:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003497 handleObjCMethodFamilyAttr(S, D, Attr);
John McCalld5313b02011-03-02 11:33:24 +00003498 break;
Chandler Carruth1b03c872011-07-02 00:01:44 +00003499 case AttributeList::AT_nsobject: handleObjCNSObject (S, D, Attr); break;
3500 case AttributeList::AT_blocks: handleBlocksAttr (S, D, Attr); break;
3501 case AttributeList::AT_sentinel: handleSentinelAttr (S, D, Attr); break;
3502 case AttributeList::AT_const: handleConstAttr (S, D, Attr); break;
3503 case AttributeList::AT_pure: handlePureAttr (S, D, Attr); break;
3504 case AttributeList::AT_cleanup: handleCleanupAttr (S, D, Attr); break;
3505 case AttributeList::AT_nodebug: handleNoDebugAttr (S, D, Attr); break;
3506 case AttributeList::AT_noinline: handleNoInlineAttr (S, D, Attr); break;
3507 case AttributeList::AT_regparm: handleRegparmAttr (S, D, Attr); break;
Mike Stumpbf916502009-07-24 19:02:52 +00003508 case AttributeList::IgnoredAttribute:
Anders Carlsson05f8e472009-02-13 08:16:43 +00003509 // Just ignore
3510 break;
Chris Lattner7255a2d2010-06-22 00:03:40 +00003511 case AttributeList::AT_no_instrument_function: // Interacts with -pg.
Chandler Carruth1b03c872011-07-02 00:01:44 +00003512 handleNoInstrumentFunctionAttr(S, D, Attr);
Chris Lattner7255a2d2010-06-22 00:03:40 +00003513 break;
John McCall04a67a62010-02-05 21:31:56 +00003514 case AttributeList::AT_stdcall:
3515 case AttributeList::AT_cdecl:
3516 case AttributeList::AT_fastcall:
Douglas Gregorf813a2c2010-05-18 16:57:00 +00003517 case AttributeList::AT_thiscall:
Dawn Perchik52fc3142010-09-03 01:29:35 +00003518 case AttributeList::AT_pascal:
Anton Korobeynikov414d8962011-04-14 20:06:49 +00003519 case AttributeList::AT_pcs:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003520 handleCallConvAttr(S, D, Attr);
John McCall04a67a62010-02-05 21:31:56 +00003521 break;
Peter Collingbournef315fa82011-02-14 01:42:53 +00003522 case AttributeList::AT_opencl_kernel_function:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003523 handleOpenCLKernelAttr(S, D, Attr);
Peter Collingbournef315fa82011-02-14 01:42:53 +00003524 break;
Francois Pichet11542142010-12-19 06:50:37 +00003525 case AttributeList::AT_uuid:
Chandler Carruth1b03c872011-07-02 00:01:44 +00003526 handleUuidAttr(S, D, Attr);
Francois Pichet11542142010-12-19 06:50:37 +00003527 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003528
3529 // Thread safety attributes:
3530 case AttributeList::AT_guarded_var:
3531 handleGuardedVarAttr(S, D, Attr);
3532 break;
3533 case AttributeList::AT_pt_guarded_var:
3534 handleGuardedVarAttr(S, D, Attr, /*pointer = */true);
3535 break;
3536 case AttributeList::AT_scoped_lockable:
3537 handleLockableAttr(S, D, Attr, /*scoped = */true);
3538 break;
3539 case AttributeList::AT_no_thread_safety_analysis:
3540 handleNoThreadSafetyAttr(S, D, Attr);
3541 break;
3542 case AttributeList::AT_lockable:
3543 handleLockableAttr(S, D, Attr);
3544 break;
Caitlin Sadowskidb33e142011-07-28 20:12:35 +00003545 case AttributeList::AT_guarded_by:
3546 handleGuardedByAttr(S, D, Attr);
3547 break;
3548 case AttributeList::AT_pt_guarded_by:
3549 handleGuardedByAttr(S, D, Attr, /*pointer = */true);
3550 break;
3551 case AttributeList::AT_exclusive_lock_function:
3552 handleLockFunAttr(S, D, Attr, /*exclusive = */true);
3553 break;
3554 case AttributeList::AT_exclusive_locks_required:
3555 handleLocksRequiredAttr(S, D, Attr, /*exclusive = */true);
3556 break;
3557 case AttributeList::AT_exclusive_trylock_function:
3558 handleTrylockFunAttr(S, D, Attr, /*exclusive = */true);
3559 break;
3560 case AttributeList::AT_lock_returned:
3561 handleLockReturnedAttr(S, D, Attr);
3562 break;
3563 case AttributeList::AT_locks_excluded:
3564 handleLocksExcludedAttr(S, D, Attr);
3565 break;
3566 case AttributeList::AT_shared_lock_function:
3567 handleLockFunAttr(S, D, Attr);
3568 break;
3569 case AttributeList::AT_shared_locks_required:
3570 handleLocksRequiredAttr(S, D, Attr);
3571 break;
3572 case AttributeList::AT_shared_trylock_function:
3573 handleTrylockFunAttr(S, D, Attr);
3574 break;
3575 case AttributeList::AT_unlock_function:
3576 handleUnlockFunAttr(S, D, Attr);
3577 break;
3578 case AttributeList::AT_acquired_before:
3579 handleAcquireOrderAttr(S, D, Attr, /*before = */true);
3580 break;
3581 case AttributeList::AT_acquired_after:
3582 handleAcquireOrderAttr(S, D, Attr, /*before = */false);
3583 break;
Caitlin Sadowskifdde9e72011-07-28 17:21:07 +00003584
Chris Lattner803d0802008-06-29 00:43:07 +00003585 default:
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00003586 // Ask target about the attribute.
3587 const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema();
3588 if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S))
Chandler Carruth7d5c45e2010-07-08 09:42:26 +00003589 S.Diag(Attr.getLoc(), diag::warn_unknown_attribute_ignored)
3590 << Attr.getName();
Chris Lattner803d0802008-06-29 00:43:07 +00003591 break;
3592 }
3593}
3594
Peter Collingbourne60700392011-01-21 02:08:45 +00003595/// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
3596/// the attribute applies to decls. If the attribute is a type attribute, just
3597/// silently ignore it if a GNU attribute. FIXME: Applying a C++0x attribute to
3598/// the wrong thing is illegal (C++0x [dcl.attr.grammar]/4).
Chandler Carruth1b03c872011-07-02 00:01:44 +00003599static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
3600 const AttributeList &Attr,
Peter Collingbourne60700392011-01-21 02:08:45 +00003601 bool NonInheritable, bool Inheritable) {
3602 if (Attr.isInvalid())
3603 return;
3604
3605 if (Attr.isDeclspecAttribute() && !isKnownDeclSpecAttr(Attr))
3606 // FIXME: Try to deal with other __declspec attributes!
3607 return;
3608
3609 if (NonInheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003610 ProcessNonInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003611
3612 if (Inheritable)
Chandler Carruth1b03c872011-07-02 00:01:44 +00003613 ProcessInheritableDeclAttr(S, scope, D, Attr);
Peter Collingbourne60700392011-01-21 02:08:45 +00003614}
3615
Chris Lattner803d0802008-06-29 00:43:07 +00003616/// ProcessDeclAttributeList - Apply all the decl attributes in the specified
3617/// attribute list to the specified decl, ignoring any type attributes.
Eric Christopherf48f3672010-12-01 22:13:54 +00003618void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
Peter Collingbourne60700392011-01-21 02:08:45 +00003619 const AttributeList *AttrList,
3620 bool NonInheritable, bool Inheritable) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003621 for (const AttributeList* l = AttrList; l; l = l->getNext()) {
Chandler Carruth1b03c872011-07-02 00:01:44 +00003622 ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003623 }
3624
3625 // GCC accepts
3626 // static int a9 __attribute__((weakref));
3627 // but that looks really pointless. We reject it.
Peter Collingbourne60700392011-01-21 02:08:45 +00003628 if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003629 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) <<
Ted Kremenekdd0e4902010-07-31 01:52:11 +00003630 dyn_cast<NamedDecl>(D)->getNameAsString();
Rafael Espindola11e8ce72010-02-23 22:00:30 +00003631 return;
Chris Lattner803d0802008-06-29 00:43:07 +00003632 }
3633}
3634
Ryan Flynne25ff832009-07-30 03:15:39 +00003635/// DeclClonePragmaWeak - clone existing decl (maybe definition),
3636/// #pragma weak needs a non-definition decl and source may not have one
Eli Friedman900693b2011-09-07 04:05:06 +00003637NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
3638 SourceLocation Loc) {
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003639 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
Ryan Flynne25ff832009-07-30 03:15:39 +00003640 NamedDecl *NewD = 0;
3641 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
Eli Friedman900693b2011-09-07 04:05:06 +00003642 FunctionDecl *NewFD;
3643 // FIXME: Missing call to CheckFunctionDeclaration().
3644 // FIXME: Mangling?
3645 // FIXME: Is the qualifier info correct?
3646 // FIXME: Is the DeclContext correct?
3647 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(),
3648 Loc, Loc, DeclarationName(II),
3649 FD->getType(), FD->getTypeSourceInfo(),
3650 SC_None, SC_None,
3651 false/*isInlineSpecified*/,
3652 FD->hasPrototype(),
3653 false/*isConstexprSpecified*/);
3654 NewD = NewFD;
3655
3656 if (FD->getQualifier())
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003657 NewFD->setQualifierInfo(FD->getQualifierLoc());
Eli Friedman900693b2011-09-07 04:05:06 +00003658
3659 // Fake up parameter variables; they are declared as if this were
3660 // a typedef.
3661 QualType FDTy = FD->getType();
3662 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
3663 SmallVector<ParmVarDecl*, 16> Params;
3664 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
3665 AE = FT->arg_type_end(); AI != AE; ++AI) {
3666 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI);
3667 Param->setScopeInfo(0, Params.size());
3668 Params.push_back(Param);
3669 }
3670 NewFD->setParams(Params.data(), Params.size());
John McCallb6217662010-03-15 10:12:16 +00003671 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003672 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) {
3673 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003674 VD->getInnerLocStart(), VD->getLocation(), II,
John McCalla93c9342009-12-07 02:54:59 +00003675 VD->getType(), VD->getTypeSourceInfo(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00003676 VD->getStorageClass(),
3677 VD->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00003678 if (VD->getQualifier()) {
3679 VarDecl *NewVD = cast<VarDecl>(NewD);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00003680 NewVD->setQualifierInfo(VD->getQualifierLoc());
John McCallb6217662010-03-15 10:12:16 +00003681 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003682 }
3683 return NewD;
3684}
3685
3686/// DeclApplyPragmaWeak - A declaration (maybe definition) needs #pragma weak
3687/// applied to it, possibly with an alias.
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +00003688void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003689 if (W.getUsed()) return; // only do this once
3690 W.setUsed(true);
3691 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
3692 IdentifierInfo *NDId = ND->getIdentifier();
Eli Friedman900693b2011-09-07 04:05:06 +00003693 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
Sean Huntcf807c42010-08-18 23:23:40 +00003694 NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context,
3695 NDId->getName()));
3696 NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Chris Lattnerc4f1fb12009-09-08 18:10:11 +00003697 WeakTopLevelDecl.push_back(NewD);
3698 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
3699 // to insert Decl at TU scope, sorry.
3700 DeclContext *SavedContext = CurContext;
3701 CurContext = Context.getTranslationUnitDecl();
3702 PushOnScopeChains(NewD, S);
3703 CurContext = SavedContext;
3704 } else { // just add weak to existing
Sean Huntcf807c42010-08-18 23:23:40 +00003705 ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context));
Ryan Flynne25ff832009-07-30 03:15:39 +00003706 }
3707}
3708
Chris Lattner0744e5f2008-06-29 00:23:49 +00003709/// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
3710/// it, apply them to D. This is a bit tricky because PD can have attributes
3711/// specified in many different places, and we need to find and apply them all.
Peter Collingbourne60700392011-01-21 02:08:45 +00003712void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD,
3713 bool NonInheritable, bool Inheritable) {
John McCalld4aff0e2010-10-27 00:59:00 +00003714 // It's valid to "forward-declare" #pragma weak, in which case we
3715 // have to do this.
Douglas Gregor31e37b22011-07-28 18:09:57 +00003716 if (Inheritable) {
3717 LoadExternalWeakUndeclaredIdentifiers();
3718 if (!WeakUndeclaredIdentifiers.empty()) {
3719 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
3720 if (IdentifierInfo *Id = ND->getIdentifier()) {
3721 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I
3722 = WeakUndeclaredIdentifiers.find(Id);
3723 if (I != WeakUndeclaredIdentifiers.end() && ND->hasLinkage()) {
3724 WeakInfo W = I->second;
3725 DeclApplyPragmaWeak(S, ND, W);
3726 WeakUndeclaredIdentifiers[Id] = W;
3727 }
John McCalld4aff0e2010-10-27 00:59:00 +00003728 }
Ryan Flynne25ff832009-07-30 03:15:39 +00003729 }
3730 }
3731 }
3732
Chris Lattner0744e5f2008-06-29 00:23:49 +00003733 // Apply decl attributes from the DeclSpec if present.
John McCall7f040a92010-12-24 02:08:15 +00003734 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList())
Peter Collingbourne60700392011-01-21 02:08:45 +00003735 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003736
Chris Lattner0744e5f2008-06-29 00:23:49 +00003737 // Walk the declarator structure, applying decl attributes that were in a type
3738 // position to the decl itself. This handles cases like:
3739 // int *__attr__(x)** D;
3740 // when X is a decl attribute.
3741 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
3742 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs())
Peter Collingbourne60700392011-01-21 02:08:45 +00003743 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Mike Stumpbf916502009-07-24 19:02:52 +00003744
Chris Lattner0744e5f2008-06-29 00:23:49 +00003745 // Finally, apply any attributes on the decl itself.
3746 if (const AttributeList *Attrs = PD.getAttributes())
Peter Collingbourne60700392011-01-21 02:08:45 +00003747 ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable);
Chris Lattner0744e5f2008-06-29 00:23:49 +00003748}
John McCall54abf7d2009-11-04 02:18:39 +00003749
John McCallf85e1932011-06-15 23:02:42 +00003750/// Is the given declaration allowed to use a forbidden type?
3751static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) {
3752 // Private ivars are always okay. Unfortunately, people don't
3753 // always properly make their ivars private, even in system headers.
3754 // Plus we need to make fields okay, too.
3755 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl))
3756 return false;
3757
3758 // Require it to be declared in a system header.
3759 return S.Context.getSourceManager().isInSystemHeader(decl->getLocation());
3760}
3761
3762/// Handle a delayed forbidden-type diagnostic.
3763static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag,
3764 Decl *decl) {
3765 if (decl && isForbiddenTypeAllowed(S, decl)) {
3766 decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context,
3767 "this system declaration uses an unsupported type"));
3768 return;
3769 }
3770
3771 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic())
3772 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument();
3773 diag.Triggered = true;
3774}
3775
John McCalleee1d542011-02-14 07:13:47 +00003776// This duplicates a vector push_back but hides the need to know the
3777// size of the type.
3778void Sema::DelayedDiagnostics::add(const DelayedDiagnostic &diag) {
3779 assert(StackSize <= StackCapacity);
3780
3781 // Grow the stack if necessary.
3782 if (StackSize == StackCapacity) {
3783 unsigned newCapacity = 2 * StackCapacity + 2;
3784 char *newBuffer = new char[newCapacity * sizeof(DelayedDiagnostic)];
3785 const char *oldBuffer = (const char*) Stack;
3786
3787 if (StackCapacity)
3788 memcpy(newBuffer, oldBuffer, StackCapacity * sizeof(DelayedDiagnostic));
3789
3790 delete[] oldBuffer;
3791 Stack = reinterpret_cast<sema::DelayedDiagnostic*>(newBuffer);
3792 StackCapacity = newCapacity;
3793 }
3794
3795 assert(StackSize < StackCapacity);
3796 new (&Stack[StackSize++]) DelayedDiagnostic(diag);
John McCall2f514482010-01-27 03:50:35 +00003797}
3798
John McCalleee1d542011-02-14 07:13:47 +00003799void Sema::DelayedDiagnostics::popParsingDecl(Sema &S, ParsingDeclState state,
3800 Decl *decl) {
3801 DelayedDiagnostics &DD = S.DelayedDiagnostics;
John McCall2f514482010-01-27 03:50:35 +00003802
John McCalleee1d542011-02-14 07:13:47 +00003803 // Check the invariants.
3804 assert(DD.StackSize >= state.SavedStackSize);
3805 assert(state.SavedStackSize >= DD.ActiveStackBase);
3806 assert(DD.ParsingDepth > 0);
3807
3808 // Drop the parsing depth.
3809 DD.ParsingDepth--;
3810
3811 // If there are no active diagnostics, we're done.
3812 if (DD.StackSize == DD.ActiveStackBase)
John McCall2f514482010-01-27 03:50:35 +00003813 return;
3814
John McCall2f514482010-01-27 03:50:35 +00003815 // We only want to actually emit delayed diagnostics when we
3816 // successfully parsed a decl.
Argyrios Kyrtzidisa7bf7bb2011-06-24 19:59:27 +00003817 if (decl && !decl->isInvalidDecl()) {
John McCalleee1d542011-02-14 07:13:47 +00003818 // We emit all the active diagnostics, not just those starting
3819 // from the saved state. The idea is this: we get one push for a
John McCall2f514482010-01-27 03:50:35 +00003820 // decl spec and another for each declarator; in a decl group like:
3821 // deprecated_typedef foo, *bar, baz();
3822 // only the declarator pops will be passed decls. This is correct;
3823 // we really do need to consider delayed diagnostics from the decl spec
3824 // for each of the different declarations.
John McCalleee1d542011-02-14 07:13:47 +00003825 for (unsigned i = DD.ActiveStackBase, e = DD.StackSize; i != e; ++i) {
3826 DelayedDiagnostic &diag = DD.Stack[i];
3827 if (diag.Triggered)
John McCall2f514482010-01-27 03:50:35 +00003828 continue;
3829
John McCalleee1d542011-02-14 07:13:47 +00003830 switch (diag.Kind) {
John McCall2f514482010-01-27 03:50:35 +00003831 case DelayedDiagnostic::Deprecation:
John McCalleee1d542011-02-14 07:13:47 +00003832 S.HandleDelayedDeprecationCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003833 break;
3834
3835 case DelayedDiagnostic::Access:
John McCalleee1d542011-02-14 07:13:47 +00003836 S.HandleDelayedAccessCheck(diag, decl);
John McCall2f514482010-01-27 03:50:35 +00003837 break;
John McCallf85e1932011-06-15 23:02:42 +00003838
3839 case DelayedDiagnostic::ForbiddenType:
3840 handleDelayedForbiddenType(S, diag, decl);
3841 break;
John McCall2f514482010-01-27 03:50:35 +00003842 }
3843 }
3844 }
3845
John McCall58e6f342010-03-16 05:22:47 +00003846 // Destroy all the delayed diagnostics we're about to pop off.
John McCalleee1d542011-02-14 07:13:47 +00003847 for (unsigned i = state.SavedStackSize, e = DD.StackSize; i != e; ++i)
Douglas Gregor29233802011-03-23 15:13:44 +00003848 DD.Stack[i].Destroy();
John McCall58e6f342010-03-16 05:22:47 +00003849
John McCalleee1d542011-02-14 07:13:47 +00003850 DD.StackSize = state.SavedStackSize;
John McCall54abf7d2009-11-04 02:18:39 +00003851}
3852
3853static bool isDeclDeprecated(Decl *D) {
3854 do {
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003855 if (D->isDeprecated())
John McCall54abf7d2009-11-04 02:18:39 +00003856 return true;
3857 } while ((D = cast_or_null<Decl>(D->getDeclContext())));
3858 return false;
3859}
3860
John McCall9c3087b2010-08-26 02:13:20 +00003861void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD,
John McCall2f514482010-01-27 03:50:35 +00003862 Decl *Ctx) {
3863 if (isDeclDeprecated(Ctx))
John McCall54abf7d2009-11-04 02:18:39 +00003864 return;
3865
John McCall2f514482010-01-27 03:50:35 +00003866 DD.Triggered = true;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003867 if (!DD.getDeprecationMessage().empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003868 Diag(DD.Loc, diag::warn_deprecated_message)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003869 << DD.getDeprecationDecl()->getDeclName()
3870 << DD.getDeprecationMessage();
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003871 else
3872 Diag(DD.Loc, diag::warn_deprecated)
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003873 << DD.getDeprecationDecl()->getDeclName();
John McCall54abf7d2009-11-04 02:18:39 +00003874}
3875
Chris Lattner5f9e2722011-07-23 10:55:15 +00003876void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message,
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003877 SourceLocation Loc,
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003878 const ObjCInterfaceDecl *UnknownObjCClass) {
John McCall54abf7d2009-11-04 02:18:39 +00003879 // Delay if we're currently parsing a declaration.
John McCalleee1d542011-02-14 07:13:47 +00003880 if (DelayedDiagnostics.shouldDelayDiagnostics()) {
3881 DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, Message));
John McCall54abf7d2009-11-04 02:18:39 +00003882 return;
3883 }
3884
3885 // Otherwise, don't warn if our current context is deprecated.
3886 if (isDeclDeprecated(cast<Decl>(CurContext)))
3887 return;
Benjamin Kramerce2d1862010-10-09 15:49:00 +00003888 if (!Message.empty())
Fariborz Jahanianc4b35cf2010-10-06 21:18:44 +00003889 Diag(Loc, diag::warn_deprecated_message) << D->getDeclName()
3890 << Message;
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003891 else {
Peter Collingbourne743b82b2011-01-02 19:53:12 +00003892 if (!UnknownObjCClass)
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003893 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003894 else {
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003895 Diag(Loc, diag::warn_deprecated_fwdclass_message) << D->getDeclName();
Fariborz Jahanian89ebaed2011-04-23 17:27:19 +00003896 Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
3897 }
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +00003898 }
John McCall54abf7d2009-11-04 02:18:39 +00003899}