| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1 | //===--- 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 McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 14 | #include "clang/Sema/SemaInternal.h" | 
| Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 15 | #include "TargetAttributesSema.h" | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 17 | #include "clang/AST/CXXInheritance.h" | 
| John McCall | 384aff8 | 2010-08-25 07:42:41 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" | 
| Daniel Dunbar | acc5f3e | 2008-08-11 06:23:49 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclObjC.h" | 
| Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclTemplate.h" | 
| Daniel Dunbar | acc5f3e | 2008-08-11 06:23:49 +0000 | [diff] [blame] | 21 | #include "clang/AST/Expr.h" | 
| Rafael Espindola | d7a60ad | 2013-02-26 19:13:56 +0000 | [diff] [blame] | 22 | #include "clang/AST/Mangle.h" | 
| Jordan Rose | 3f6f51e | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 23 | #include "clang/Basic/CharInfo.h" | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 24 | #include "clang/Basic/SourceManager.h" | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 25 | #include "clang/Basic/TargetInfo.h" | 
| John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 26 | #include "clang/Sema/DeclSpec.h" | 
| John McCall | 9c3087b | 2010-08-26 02:13:20 +0000 | [diff] [blame] | 27 | #include "clang/Sema/DelayedDiagnostic.h" | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 28 | #include "clang/Sema/Lookup.h" | 
| Richard Smith | 3a2b7a1 | 2013-01-28 22:42:45 +0000 | [diff] [blame] | 29 | #include "clang/Sema/Scope.h" | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/StringExtras.h" | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 31 | using namespace clang; | 
| John McCall | 9c3087b | 2010-08-26 02:13:20 +0000 | [diff] [blame] | 32 | using namespace sema; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 33 |  | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 34 | /// These constants match the enumerated choices of | 
|  | 35 | /// warn_attribute_wrong_decl_type and err_attribute_wrong_decl_type. | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 36 | enum AttributeDeclKind { | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 37 | ExpectedFunction, | 
|  | 38 | ExpectedUnion, | 
|  | 39 | ExpectedVariableOrFunction, | 
|  | 40 | ExpectedFunctionOrMethod, | 
|  | 41 | ExpectedParameter, | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 42 | ExpectedFunctionMethodOrBlock, | 
| Kaelyn Uhrain | 51ceb7b | 2012-11-12 23:48:05 +0000 | [diff] [blame] | 43 | ExpectedFunctionMethodOrClass, | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 44 | ExpectedFunctionMethodOrParameter, | 
|  | 45 | ExpectedClass, | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 46 | ExpectedVariable, | 
|  | 47 | ExpectedMethod, | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 48 | ExpectedVariableFunctionOrLabel, | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 49 | ExpectedFieldOrGlobalVar, | 
| Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 50 | ExpectedStruct, | 
| Kaelyn Uhrain | 51ceb7b | 2012-11-12 23:48:05 +0000 | [diff] [blame] | 51 | ExpectedVariableFunctionOrTag, | 
| Richard Smith | 5f838aa | 2013-02-01 08:25:07 +0000 | [diff] [blame] | 52 | ExpectedTLSVar, | 
|  | 53 | ExpectedVariableOrField, | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 54 | ExpectedVariableFieldOrTag, | 
|  | 55 | ExpectedTypeOrNamespace | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 56 | }; | 
|  | 57 |  | 
| Chris Lattner | e5c5ee1 | 2008-06-29 00:16:31 +0000 | [diff] [blame] | 58 | //===----------------------------------------------------------------------===// | 
|  | 59 | //  Helper functions | 
|  | 60 | //===----------------------------------------------------------------------===// | 
|  | 61 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 62 | static const FunctionType *getFunctionType(const Decl *D, | 
| Ted Kremenek | a18d7d8 | 2009-08-14 20:49:40 +0000 | [diff] [blame] | 63 | bool blocksToo = true) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 64 | QualType Ty; | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 65 | if (const ValueDecl *decl = dyn_cast<ValueDecl>(D)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 66 | Ty = decl->getType(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 67 | else if (const FieldDecl *decl = dyn_cast<FieldDecl>(D)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 68 | Ty = decl->getType(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 69 | else if (const TypedefNameDecl* decl = dyn_cast<TypedefNameDecl>(D)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 70 | Ty = decl->getUnderlyingType(); | 
|  | 71 | else | 
|  | 72 | return 0; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 73 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 74 | if (Ty->isFunctionPointerType()) | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 75 | Ty = Ty->getAs<PointerType>()->getPointeeType(); | 
| Fariborz Jahanian | 755f9d2 | 2009-05-18 17:39:25 +0000 | [diff] [blame] | 76 | else if (blocksToo && Ty->isBlockPointerType()) | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 77 | Ty = Ty->getAs<BlockPointerType>()->getPointeeType(); | 
| Daniel Dunbar | d3f2c10 | 2008-10-19 02:04:16 +0000 | [diff] [blame] | 78 |  | 
| John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 79 | return Ty->getAs<FunctionType>(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 80 | } | 
|  | 81 |  | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 82 | // FIXME: We should provide an abstraction around a method or function | 
|  | 83 | // to provide the following bits of information. | 
|  | 84 |  | 
| Nuno Lopes | d20254f | 2009-12-20 23:11:08 +0000 | [diff] [blame] | 85 | /// isFunction - Return true if the given decl has function | 
| Ted Kremenek | a18d7d8 | 2009-08-14 20:49:40 +0000 | [diff] [blame] | 86 | /// type (function or function-typed variable). | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 87 | static bool isFunction(const Decl *D) { | 
|  | 88 | return getFunctionType(D, false) != NULL; | 
| Ted Kremenek | a18d7d8 | 2009-08-14 20:49:40 +0000 | [diff] [blame] | 89 | } | 
|  | 90 |  | 
|  | 91 | /// isFunctionOrMethod - Return true if the given decl has function | 
| Daniel Dunbar | d3f2c10 | 2008-10-19 02:04:16 +0000 | [diff] [blame] | 92 | /// type (function or function-typed variable) or an Objective-C | 
|  | 93 | /// method. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 94 | static bool isFunctionOrMethod(const Decl *D) { | 
| Nick Lewycky | 4ae89bc | 2012-07-24 01:31:55 +0000 | [diff] [blame] | 95 | return isFunction(D) || isa<ObjCMethodDecl>(D); | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 96 | } | 
|  | 97 |  | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 98 | /// isFunctionOrMethodOrBlock - Return true if the given decl has function | 
|  | 99 | /// type (function or function-typed variable) or an Objective-C | 
|  | 100 | /// method or a block. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 101 | static bool isFunctionOrMethodOrBlock(const Decl *D) { | 
|  | 102 | if (isFunctionOrMethod(D)) | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 103 | return true; | 
|  | 104 | // check for block is more involved. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 105 | if (const VarDecl *V = dyn_cast<VarDecl>(D)) { | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 106 | QualType Ty = V->getType(); | 
|  | 107 | return Ty->isBlockPointerType(); | 
|  | 108 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 109 | return isa<BlockDecl>(D); | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 110 | } | 
|  | 111 |  | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 112 | /// Return true if the given decl has a declarator that should have | 
|  | 113 | /// been processed by Sema::GetTypeForDeclarator. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 114 | static bool hasDeclarator(const Decl *D) { | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 115 | // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 116 | return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) || | 
|  | 117 | isa<ObjCPropertyDecl>(D); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 118 | } | 
|  | 119 |  | 
| Daniel Dunbar | d3f2c10 | 2008-10-19 02:04:16 +0000 | [diff] [blame] | 120 | /// hasFunctionProto - Return true if the given decl has a argument | 
|  | 121 | /// information. This decl should have already passed | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 122 | /// isFunctionOrMethod or isFunctionOrMethodOrBlock. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 123 | static bool hasFunctionProto(const Decl *D) { | 
|  | 124 | if (const FunctionType *FnTy = getFunctionType(D)) | 
| Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 125 | return isa<FunctionProtoType>(FnTy); | 
| Fariborz Jahanian | 620d89c | 2009-05-15 23:15:03 +0000 | [diff] [blame] | 126 | else { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 127 | assert(isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D)); | 
| Daniel Dunbar | d3f2c10 | 2008-10-19 02:04:16 +0000 | [diff] [blame] | 128 | return true; | 
|  | 129 | } | 
|  | 130 | } | 
|  | 131 |  | 
|  | 132 | /// getFunctionOrMethodNumArgs - Return number of function or method | 
|  | 133 | /// arguments. It is an error to call this on a K&R function (use | 
|  | 134 | /// hasFunctionProto first). | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 135 | static unsigned getFunctionOrMethodNumArgs(const Decl *D) { | 
|  | 136 | if (const FunctionType *FnTy = getFunctionType(D)) | 
| Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 137 | return cast<FunctionProtoType>(FnTy)->getNumArgs(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 138 | if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) | 
| Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 139 | return BD->getNumParams(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 140 | return cast<ObjCMethodDecl>(D)->param_size(); | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 141 | } | 
|  | 142 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 143 | static QualType getFunctionOrMethodArgType(const Decl *D, unsigned Idx) { | 
|  | 144 | if (const FunctionType *FnTy = getFunctionType(D)) | 
| Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 145 | return cast<FunctionProtoType>(FnTy)->getArgType(Idx); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 146 | if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) | 
| Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 147 | return BD->getParamDecl(Idx)->getType(); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 148 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 149 | return cast<ObjCMethodDecl>(D)->param_begin()[Idx]->getType(); | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 150 | } | 
|  | 151 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 152 | static QualType getFunctionOrMethodResultType(const Decl *D) { | 
|  | 153 | if (const FunctionType *FnTy = getFunctionType(D)) | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 154 | return cast<FunctionProtoType>(FnTy)->getResultType(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 155 | return cast<ObjCMethodDecl>(D)->getResultType(); | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 156 | } | 
|  | 157 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 158 | static bool isFunctionOrMethodVariadic(const Decl *D) { | 
|  | 159 | if (const FunctionType *FnTy = getFunctionType(D)) { | 
| Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 160 | const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy); | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 161 | return proto->isVariadic(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 162 | } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) | 
| Ted Kremenek | db9a0ae | 2010-04-29 16:48:58 +0000 | [diff] [blame] | 163 | return BD->isVariadic(); | 
| Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 164 | else { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 165 | return cast<ObjCMethodDecl>(D)->isVariadic(); | 
| Daniel Dunbar | 3568249 | 2008-09-26 04:12:28 +0000 | [diff] [blame] | 166 | } | 
|  | 167 | } | 
|  | 168 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 169 | static bool isInstanceMethod(const Decl *D) { | 
|  | 170 | if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 171 | return MethodDecl->isInstance(); | 
|  | 172 | return false; | 
|  | 173 | } | 
|  | 174 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 175 | static inline bool isNSStringType(QualType T, ASTContext &Ctx) { | 
| John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 176 | const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>(); | 
| Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 177 | if (!PT) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 178 | return false; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 179 |  | 
| John McCall | 506b57e | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 180 | ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); | 
|  | 181 | if (!Cls) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 182 | return false; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 183 |  | 
| John McCall | 506b57e | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 184 | IdentifierInfo* ClsName = Cls->getIdentifier(); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 185 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 186 | // FIXME: Should we walk the chain of classes? | 
|  | 187 | return ClsName == &Ctx.Idents.get("NSString") || | 
|  | 188 | ClsName == &Ctx.Idents.get("NSMutableString"); | 
|  | 189 | } | 
|  | 190 |  | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 191 | static inline bool isCFStringType(QualType T, ASTContext &Ctx) { | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 192 | const PointerType *PT = T->getAs<PointerType>(); | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 193 | if (!PT) | 
|  | 194 | return false; | 
|  | 195 |  | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 196 | const RecordType *RT = PT->getPointeeType()->getAs<RecordType>(); | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 197 | if (!RT) | 
|  | 198 | return false; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 199 |  | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 200 | const RecordDecl *RD = RT->getDecl(); | 
| Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 201 | if (RD->getTagKind() != TTK_Struct) | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 202 | return false; | 
|  | 203 |  | 
|  | 204 | return RD->getIdentifier() == &Ctx.Idents.get("__CFString"); | 
|  | 205 | } | 
|  | 206 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 207 | /// \brief Check if the attribute has exactly as many args as Num. May | 
|  | 208 | /// output an error. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 209 | static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, | 
|  | 210 | unsigned int Num) { | 
|  | 211 | if (Attr.getNumArgs() != Num) { | 
|  | 212 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << Num; | 
|  | 213 | return false; | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | return true; | 
|  | 217 | } | 
|  | 218 |  | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 219 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 220 | /// \brief Check if the attribute has at least as many args as Num. May | 
|  | 221 | /// output an error. | 
|  | 222 | static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr, | 
|  | 223 | unsigned int Num) { | 
|  | 224 | if (Attr.getNumArgs() < Num) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 225 | S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num; | 
|  | 226 | return false; | 
|  | 227 | } | 
|  | 228 |  | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 229 | return true; | 
|  | 230 | } | 
|  | 231 |  | 
| Dmitri Gribenko | 0d5a069 | 2012-08-17 00:08:38 +0000 | [diff] [blame] | 232 | /// \brief Check if IdxExpr is a valid argument index for a function or | 
|  | 233 | /// instance method D.  May output an error. | 
|  | 234 | /// | 
|  | 235 | /// \returns true if IdxExpr is a valid index. | 
|  | 236 | static bool checkFunctionOrMethodArgumentIndex(Sema &S, const Decl *D, | 
|  | 237 | StringRef AttrName, | 
|  | 238 | SourceLocation AttrLoc, | 
|  | 239 | unsigned AttrArgNum, | 
|  | 240 | const Expr *IdxExpr, | 
|  | 241 | uint64_t &Idx) | 
|  | 242 | { | 
|  | 243 | assert(isFunctionOrMethod(D) && hasFunctionProto(D)); | 
|  | 244 |  | 
|  | 245 | // In C++ the implicit 'this' function parameter also counts. | 
|  | 246 | // Parameters are counted from one. | 
|  | 247 | const bool HasImplicitThisParam = isInstanceMethod(D); | 
|  | 248 | const unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
|  | 249 | const unsigned FirstIdx = 1; | 
|  | 250 |  | 
|  | 251 | llvm::APSInt IdxInt; | 
|  | 252 | if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() || | 
|  | 253 | !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) { | 
|  | 254 | S.Diag(AttrLoc, diag::err_attribute_argument_n_not_int) | 
|  | 255 | << AttrName << AttrArgNum << IdxExpr->getSourceRange(); | 
|  | 256 | return false; | 
|  | 257 | } | 
|  | 258 |  | 
|  | 259 | Idx = IdxInt.getLimitedValue(); | 
|  | 260 | if (Idx < FirstIdx || (!isFunctionOrMethodVariadic(D) && Idx > NumArgs)) { | 
|  | 261 | S.Diag(AttrLoc, diag::err_attribute_argument_out_of_bounds) | 
|  | 262 | << AttrName << AttrArgNum << IdxExpr->getSourceRange(); | 
|  | 263 | return false; | 
|  | 264 | } | 
|  | 265 | Idx--; // Convert to zero-based. | 
|  | 266 | if (HasImplicitThisParam) { | 
|  | 267 | if (Idx == 0) { | 
|  | 268 | S.Diag(AttrLoc, | 
|  | 269 | diag::err_attribute_invalid_implicit_this_argument) | 
|  | 270 | << AttrName << IdxExpr->getSourceRange(); | 
|  | 271 | return false; | 
|  | 272 | } | 
|  | 273 | --Idx; | 
|  | 274 | } | 
|  | 275 |  | 
|  | 276 | return true; | 
|  | 277 | } | 
|  | 278 |  | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 279 | /// | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 280 | /// \brief Check if passed in Decl is a field or potentially shared global var | 
|  | 281 | /// \return true if the Decl is a field or potentially shared global variable | 
|  | 282 | /// | 
| Benjamin Kramer | 39997fc | 2011-08-02 04:50:49 +0000 | [diff] [blame] | 283 | static bool mayBeSharedVariable(const Decl *D) { | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 284 | if (isa<FieldDecl>(D)) | 
|  | 285 | return true; | 
| Benjamin Kramer | 39997fc | 2011-08-02 04:50:49 +0000 | [diff] [blame] | 286 | if (const VarDecl *vd = dyn_cast<VarDecl>(D)) | 
| Richard Smith | 38afbc7 | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 287 | return vd->hasGlobalStorage() && !vd->getTLSKind(); | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 288 |  | 
|  | 289 | return false; | 
|  | 290 | } | 
|  | 291 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 292 | /// \brief Check if the passed-in expression is of type int or bool. | 
|  | 293 | static bool isIntOrBool(Expr *Exp) { | 
|  | 294 | QualType QT = Exp->getType(); | 
|  | 295 | return QT->isBooleanType() || QT->isIntegerType(); | 
|  | 296 | } | 
|  | 297 |  | 
| DeLesley Hutchins | aed9ea3 | 2012-04-23 18:39:55 +0000 | [diff] [blame] | 298 |  | 
|  | 299 | // Check to see if the type is a smart pointer of some kind.  We assume | 
|  | 300 | // it's a smart pointer if it defines both operator-> and operator*. | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 301 | static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) { | 
|  | 302 | DeclContextLookupConstResult Res1 = RT->getDecl()->lookup( | 
|  | 303 | S.Context.DeclarationNames.getCXXOperatorName(OO_Star)); | 
| David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 304 | if (Res1.empty()) | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 305 | return false; | 
| DeLesley Hutchins | aed9ea3 | 2012-04-23 18:39:55 +0000 | [diff] [blame] | 306 |  | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 307 | DeclContextLookupConstResult Res2 = RT->getDecl()->lookup( | 
|  | 308 | S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow)); | 
| David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 309 | if (Res2.empty()) | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 310 | return false; | 
|  | 311 |  | 
|  | 312 | return true; | 
| DeLesley Hutchins | aed9ea3 | 2012-04-23 18:39:55 +0000 | [diff] [blame] | 313 | } | 
|  | 314 |  | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 315 | /// \brief Check if passed in Decl is a pointer type. | 
|  | 316 | /// Note that this function may produce an error message. | 
|  | 317 | /// \return true if the Decl is a pointer type; false otherwise | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 318 | static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D, | 
|  | 319 | const AttributeList &Attr) { | 
| Benjamin Kramer | 39997fc | 2011-08-02 04:50:49 +0000 | [diff] [blame] | 320 | if (const ValueDecl *vd = dyn_cast<ValueDecl>(D)) { | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 321 | QualType QT = vd->getType(); | 
| Benjamin Kramer | 39997fc | 2011-08-02 04:50:49 +0000 | [diff] [blame] | 322 | if (QT->isAnyPointerType()) | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 323 | return true; | 
| DeLesley Hutchins | aed9ea3 | 2012-04-23 18:39:55 +0000 | [diff] [blame] | 324 |  | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 325 | if (const RecordType *RT = QT->getAs<RecordType>()) { | 
|  | 326 | // If it's an incomplete type, it could be a smart pointer; skip it. | 
|  | 327 | // (We don't want to force template instantiation if we can avoid it, | 
|  | 328 | // since that would alter the order in which templates are instantiated.) | 
|  | 329 | if (RT->isIncompleteType()) | 
|  | 330 | return true; | 
|  | 331 |  | 
|  | 332 | if (threadSafetyCheckIsSmartPointer(S, RT)) | 
|  | 333 | return true; | 
|  | 334 | } | 
| DeLesley Hutchins | aed9ea3 | 2012-04-23 18:39:55 +0000 | [diff] [blame] | 335 |  | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 336 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer) | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 337 | << Attr.getName()->getName() << QT; | 
|  | 338 | } else { | 
|  | 339 | S.Diag(Attr.getLoc(), diag::err_attribute_can_be_applied_only_to_value_decl) | 
|  | 340 | << Attr.getName(); | 
|  | 341 | } | 
|  | 342 | return false; | 
|  | 343 | } | 
|  | 344 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 345 | /// \brief Checks that the passed in QualType either is of RecordType or points | 
|  | 346 | /// to RecordType. Returns the relevant RecordType, null if it does not exit. | 
| Benjamin Kramer | 7d23b4a | 2011-08-19 04:18:11 +0000 | [diff] [blame] | 347 | static const RecordType *getRecordType(QualType QT) { | 
|  | 348 | if (const RecordType *RT = QT->getAs<RecordType>()) | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 349 | return RT; | 
| Benjamin Kramer | 7d23b4a | 2011-08-19 04:18:11 +0000 | [diff] [blame] | 350 |  | 
|  | 351 | // Now check if we point to record type. | 
|  | 352 | if (const PointerType *PT = QT->getAs<PointerType>()) | 
|  | 353 | return PT->getPointeeType()->getAs<RecordType>(); | 
|  | 354 |  | 
|  | 355 | return 0; | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 356 | } | 
|  | 357 |  | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 358 |  | 
| Jordy Rose | fad5de9 | 2012-05-08 03:27:22 +0000 | [diff] [blame] | 359 | static bool checkBaseClassIsLockableCallback(const CXXBaseSpecifier *Specifier, | 
|  | 360 | CXXBasePath &Path, void *Unused) { | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 361 | const RecordType *RT = Specifier->getType()->getAs<RecordType>(); | 
|  | 362 | if (RT->getDecl()->getAttr<LockableAttr>()) | 
|  | 363 | return true; | 
|  | 364 | return false; | 
|  | 365 | } | 
|  | 366 |  | 
|  | 367 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 368 | /// \brief Thread Safety Analysis: Checks that the passed in RecordType | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 369 | /// resolves to a lockable object. | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 370 | static void checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr, | 
|  | 371 | QualType Ty) { | 
|  | 372 | const RecordType *RT = getRecordType(Ty); | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 373 |  | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 374 | // Warn if could not get record type for this argument. | 
| Benjamin Kramer | d77ba89 | 2011-09-03 03:30:59 +0000 | [diff] [blame] | 375 | if (!RT) { | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 376 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_class) | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 377 | << Attr.getName() << Ty.getAsString(); | 
|  | 378 | return; | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 379 | } | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 380 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 381 | // Don't check for lockable if the class hasn't been defined yet. | 
| DeLesley Hutchins | 634b293 | 2012-02-16 17:15:51 +0000 | [diff] [blame] | 382 | if (RT->isIncompleteType()) | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 383 | return; | 
| DeLesley Hutchins | 60f2024 | 2012-05-02 22:18:42 +0000 | [diff] [blame] | 384 |  | 
|  | 385 | // Allow smart pointers to be used as lockable objects. | 
|  | 386 | // FIXME -- Check the type that the smart pointer points to. | 
|  | 387 | if (threadSafetyCheckIsSmartPointer(S, RT)) | 
|  | 388 | return; | 
|  | 389 |  | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 390 | // Check if the type is lockable. | 
|  | 391 | RecordDecl *RD = RT->getDecl(); | 
|  | 392 | if (RD->getAttr<LockableAttr>()) | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 393 | return; | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 394 |  | 
|  | 395 | // Else check if any base classes are lockable. | 
|  | 396 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { | 
|  | 397 | CXXBasePaths BPaths(false, false); | 
|  | 398 | if (CRD->lookupInBases(checkBaseClassIsLockableCallback, 0, BPaths)) | 
|  | 399 | return; | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 400 | } | 
| DeLesley Hutchins | bbba25f | 2012-05-04 16:28:38 +0000 | [diff] [blame] | 401 |  | 
|  | 402 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable) | 
|  | 403 | << Attr.getName() << Ty.getAsString(); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 404 | } | 
|  | 405 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 406 | /// \brief Thread Safety Analysis: Checks that all attribute arguments, starting | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 407 | /// from Sidx, resolve to a lockable object. | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 408 | /// \param Sidx The attribute argument index to start checking with. | 
|  | 409 | /// \param ParamIdxOk Whether an argument can be indexing into a function | 
|  | 410 | /// parameter list. | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 411 | static void checkAttrArgsAreLockableObjs(Sema &S, Decl *D, | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 412 | const AttributeList &Attr, | 
|  | 413 | SmallVectorImpl<Expr*> &Args, | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 414 | int Sidx = 0, | 
|  | 415 | bool ParamIdxOk = false) { | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 416 | for(unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) { | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 417 | Expr *ArgExp = Attr.getArg(Idx); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 418 |  | 
| Caitlin Sadowski | ed9d84a | 2011-09-08 17:42:31 +0000 | [diff] [blame] | 419 | if (ArgExp->isTypeDependent()) { | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 420 | // FIXME -- need to check this again on template instantiation | 
| Caitlin Sadowski | ed9d84a | 2011-09-08 17:42:31 +0000 | [diff] [blame] | 421 | Args.push_back(ArgExp); | 
|  | 422 | continue; | 
|  | 423 | } | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 424 |  | 
| DeLesley Hutchins | 79747e0 | 2012-04-23 16:45:01 +0000 | [diff] [blame] | 425 | if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) { | 
| DeLesley Hutchins | 0b4db3e | 2012-09-07 17:34:53 +0000 | [diff] [blame] | 426 | if (StrLit->getLength() == 0 || | 
|  | 427 | StrLit->getString() == StringRef("*")) { | 
| DeLesley Hutchins | 4e4c157 | 2012-08-31 21:57:32 +0000 | [diff] [blame] | 428 | // Pass empty strings to the analyzer without warnings. | 
| DeLesley Hutchins | 0b4db3e | 2012-09-07 17:34:53 +0000 | [diff] [blame] | 429 | // Treat "*" as the universal lock. | 
| DeLesley Hutchins | 4e4c157 | 2012-08-31 21:57:32 +0000 | [diff] [blame] | 430 | Args.push_back(ArgExp); | 
| DeLesley Hutchins | 79747e0 | 2012-04-23 16:45:01 +0000 | [diff] [blame] | 431 | continue; | 
| DeLesley Hutchins | 4e4c157 | 2012-08-31 21:57:32 +0000 | [diff] [blame] | 432 | } | 
| DeLesley Hutchins | 79747e0 | 2012-04-23 16:45:01 +0000 | [diff] [blame] | 433 |  | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 434 | // We allow constant strings to be used as a placeholder for expressions | 
|  | 435 | // that are not valid C++ syntax, but warn that they are ignored. | 
|  | 436 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) << | 
|  | 437 | Attr.getName(); | 
| DeLesley Hutchins | 4e4c157 | 2012-08-31 21:57:32 +0000 | [diff] [blame] | 438 | Args.push_back(ArgExp); | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 439 | continue; | 
|  | 440 | } | 
|  | 441 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 442 | QualType ArgTy = ArgExp->getType(); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 443 |  | 
| DeLesley Hutchins | 79747e0 | 2012-04-23 16:45:01 +0000 | [diff] [blame] | 444 | // A pointer to member expression of the form  &MyClass::mu is treated | 
|  | 445 | // specially -- we need to look at the type of the member. | 
|  | 446 | if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp)) | 
|  | 447 | if (UOp->getOpcode() == UO_AddrOf) | 
|  | 448 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr())) | 
|  | 449 | if (DRE->getDecl()->isCXXInstanceMember()) | 
|  | 450 | ArgTy = DRE->getDecl()->getType(); | 
|  | 451 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 452 | // First see if we can just cast to record type, or point to record type. | 
|  | 453 | const RecordType *RT = getRecordType(ArgTy); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 454 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 455 | // Now check if we index into a record type function param. | 
|  | 456 | if(!RT && ParamIdxOk) { | 
|  | 457 | FunctionDecl *FD = dyn_cast<FunctionDecl>(D); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 458 | IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp); | 
|  | 459 | if(FD && IL) { | 
|  | 460 | unsigned int NumParams = FD->getNumParams(); | 
|  | 461 | llvm::APInt ArgValue = IL->getValue(); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 462 | uint64_t ParamIdxFromOne = ArgValue.getZExtValue(); | 
|  | 463 | uint64_t ParamIdxFromZero = ParamIdxFromOne - 1; | 
|  | 464 | if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) { | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 465 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range) | 
|  | 466 | << Attr.getName() << Idx + 1 << NumParams; | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 467 | continue; | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 468 | } | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 469 | ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType(); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 470 | } | 
|  | 471 | } | 
|  | 472 |  | 
| DeLesley Hutchins | 83cad45 | 2012-04-06 20:02:30 +0000 | [diff] [blame] | 473 | checkForLockableRecord(S, D, Attr, ArgTy); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 474 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 475 | Args.push_back(ArgExp); | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 476 | } | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 477 | } | 
|  | 478 |  | 
| Chris Lattner | e5c5ee1 | 2008-06-29 00:16:31 +0000 | [diff] [blame] | 479 | //===----------------------------------------------------------------------===// | 
| Chris Lattner | e5c5ee1 | 2008-06-29 00:16:31 +0000 | [diff] [blame] | 480 | // Attribute Implementations | 
|  | 481 | //===----------------------------------------------------------------------===// | 
|  | 482 |  | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 483 | // FIXME: All this manual attribute parsing code is gross. At the | 
|  | 484 | // least add some helper functions to check most argument patterns (# | 
|  | 485 | // and types of args). | 
|  | 486 |  | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 487 | enum ThreadAttributeDeclKind { | 
|  | 488 | ThreadExpectedFieldOrGlobalVar, | 
|  | 489 | ThreadExpectedFunctionOrMethod, | 
|  | 490 | ThreadExpectedClassOrStruct | 
|  | 491 | }; | 
|  | 492 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 493 | static bool checkGuardedVarAttrCommon(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 494 | const AttributeList &Attr) { | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 495 | assert(!Attr.isInvalid()); | 
|  | 496 |  | 
|  | 497 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 498 | return false; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 499 |  | 
|  | 500 | // D must be either a member field or global (potentially shared) variable. | 
|  | 501 | if (!mayBeSharedVariable(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 502 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 503 | << Attr.getName() << ThreadExpectedFieldOrGlobalVar; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 504 | return false; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 505 | } | 
|  | 506 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 507 | return true; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 508 | } | 
|  | 509 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 510 | static void handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 511 | if (!checkGuardedVarAttrCommon(S, D, Attr)) | 
|  | 512 | return; | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 513 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 514 | D->addAttr(::new (S.Context) | 
|  | 515 | GuardedVarAttr(Attr.getRange(), S.Context, | 
|  | 516 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 517 | } | 
|  | 518 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 519 | static void handlePtGuardedVarAttr(Sema &S, Decl *D, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 520 | const AttributeList &Attr) { | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 521 | if (!checkGuardedVarAttrCommon(S, D, Attr)) | 
|  | 522 | return; | 
|  | 523 |  | 
|  | 524 | if (!threadSafetyCheckIsPointer(S, D, Attr)) | 
|  | 525 | return; | 
|  | 526 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 527 | D->addAttr(::new (S.Context) | 
|  | 528 | PtGuardedVarAttr(Attr.getRange(), S.Context, | 
|  | 529 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 530 | } | 
|  | 531 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 532 | static bool checkGuardedByAttrCommon(Sema &S, Decl *D, | 
|  | 533 | const AttributeList &Attr, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 534 | Expr* &Arg) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 535 | assert(!Attr.isInvalid()); | 
|  | 536 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 537 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 538 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 539 |  | 
|  | 540 | // D must be either a member field or global (potentially shared) variable. | 
|  | 541 | if (!mayBeSharedVariable(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 542 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 543 | << Attr.getName() << ThreadExpectedFieldOrGlobalVar; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 544 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 545 | } | 
|  | 546 |  | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 547 | SmallVector<Expr*, 1> Args; | 
|  | 548 | // check that all arguments are lockable objects | 
|  | 549 | checkAttrArgsAreLockableObjs(S, D, Attr, Args); | 
|  | 550 | unsigned Size = Args.size(); | 
|  | 551 | if (Size != 1) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 552 | return false; | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 553 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 554 | Arg = Args[0]; | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 555 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 556 | return true; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 557 | } | 
|  | 558 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 559 | static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 560 | Expr *Arg = 0; | 
|  | 561 | if (!checkGuardedByAttrCommon(S, D, Attr, Arg)) | 
|  | 562 | return; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 563 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 564 | D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg)); | 
|  | 565 | } | 
|  | 566 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 567 | static void handlePtGuardedByAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 568 | const AttributeList &Attr) { | 
|  | 569 | Expr *Arg = 0; | 
|  | 570 | if (!checkGuardedByAttrCommon(S, D, Attr, Arg)) | 
|  | 571 | return; | 
|  | 572 |  | 
|  | 573 | if (!threadSafetyCheckIsPointer(S, D, Attr)) | 
|  | 574 | return; | 
|  | 575 |  | 
|  | 576 | D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(), | 
|  | 577 | S.Context, Arg)); | 
|  | 578 | } | 
|  | 579 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 580 | static bool checkLockableAttrCommon(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 581 | const AttributeList &Attr) { | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 582 | assert(!Attr.isInvalid()); | 
|  | 583 |  | 
|  | 584 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 585 | return false; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 586 |  | 
| Caitlin Sadowski | 1748b12 | 2011-09-16 00:35:54 +0000 | [diff] [blame] | 587 | // FIXME: Lockable structs for C code. | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 588 | if (!isa<CXXRecordDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 589 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 590 | << Attr.getName() << ThreadExpectedClassOrStruct; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 591 | return false; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 592 | } | 
|  | 593 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 594 | return true; | 
|  | 595 | } | 
|  | 596 |  | 
|  | 597 | static void handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 598 | if (!checkLockableAttrCommon(S, D, Attr)) | 
|  | 599 | return; | 
|  | 600 |  | 
|  | 601 | D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context)); | 
|  | 602 | } | 
|  | 603 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 604 | static void handleScopedLockableAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 605 | const AttributeList &Attr) { | 
|  | 606 | if (!checkLockableAttrCommon(S, D, Attr)) | 
|  | 607 | return; | 
|  | 608 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 609 | D->addAttr(::new (S.Context) | 
|  | 610 | ScopedLockableAttr(Attr.getRange(), S.Context, | 
|  | 611 | Attr.getAttributeSpellingListIndex())); | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 612 | } | 
|  | 613 |  | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 614 | static void handleNoThreadSafetyAnalysis(Sema &S, Decl *D, | 
|  | 615 | const AttributeList &Attr) { | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 616 | assert(!Attr.isInvalid()); | 
|  | 617 |  | 
|  | 618 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 619 | return; | 
|  | 620 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 621 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 622 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 623 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 624 | return; | 
|  | 625 | } | 
|  | 626 |  | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 627 | D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(), | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 628 | S.Context)); | 
|  | 629 | } | 
|  | 630 |  | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 631 | static void handleNoSanitizeAddressAttr(Sema &S, Decl *D, | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 632 | const AttributeList &Attr) { | 
| Kostya Serebryany | 71efba0 | 2012-01-24 19:25:38 +0000 | [diff] [blame] | 633 | assert(!Attr.isInvalid()); | 
|  | 634 |  | 
|  | 635 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 636 | return; | 
|  | 637 |  | 
|  | 638 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 639 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
| Kostya Serebryany | 71efba0 | 2012-01-24 19:25:38 +0000 | [diff] [blame] | 640 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 641 | return; | 
|  | 642 | } | 
|  | 643 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 644 | D->addAttr(::new (S.Context) | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 645 | NoSanitizeAddressAttr(Attr.getRange(), S.Context, | 
|  | 646 | Attr.getAttributeSpellingListIndex())); | 
|  | 647 | } | 
|  | 648 |  | 
|  | 649 | static void handleNoSanitizeMemory(Sema &S, Decl *D, | 
|  | 650 | const AttributeList &Attr) { | 
|  | 651 | assert(!Attr.isInvalid()); | 
|  | 652 |  | 
|  | 653 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 654 | return; | 
|  | 655 |  | 
|  | 656 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
|  | 657 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 658 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 659 | return; | 
|  | 660 | } | 
|  | 661 |  | 
|  | 662 | D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(), | 
|  | 663 | S.Context)); | 
|  | 664 | } | 
|  | 665 |  | 
|  | 666 | static void handleNoSanitizeThread(Sema &S, Decl *D, | 
|  | 667 | const AttributeList &Attr) { | 
|  | 668 | assert(!Attr.isInvalid()); | 
|  | 669 |  | 
|  | 670 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 671 | return; | 
|  | 672 |  | 
|  | 673 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
|  | 674 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 675 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 676 | return; | 
|  | 677 | } | 
|  | 678 |  | 
|  | 679 | D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(), | 
|  | 680 | S.Context)); | 
| Kostya Serebryany | 71efba0 | 2012-01-24 19:25:38 +0000 | [diff] [blame] | 681 | } | 
|  | 682 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 683 | static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D, | 
|  | 684 | const AttributeList &Attr, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 685 | SmallVector<Expr*, 1> &Args) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 686 | assert(!Attr.isInvalid()); | 
|  | 687 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 688 | if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 689 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 690 |  | 
|  | 691 | // D must be either a member field or global (potentially shared) variable. | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 692 | ValueDecl *VD = dyn_cast<ValueDecl>(D); | 
|  | 693 | if (!VD || !mayBeSharedVariable(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 694 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 695 | << Attr.getName() << ThreadExpectedFieldOrGlobalVar; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 696 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 697 | } | 
|  | 698 |  | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 699 | // Check that this attribute only applies to lockable types. | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 700 | QualType QT = VD->getType(); | 
|  | 701 | if (!QT->isDependentType()) { | 
|  | 702 | const RecordType *RT = getRecordType(QT); | 
|  | 703 | if (!RT || !RT->getDecl()->getAttr<LockableAttr>()) { | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 704 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 705 | << Attr.getName(); | 
|  | 706 | return false; | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 707 | } | 
|  | 708 | } | 
|  | 709 |  | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 710 | // Check that all arguments are lockable objects. | 
|  | 711 | checkAttrArgsAreLockableObjs(S, D, Attr, Args); | 
| Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 712 | if (Args.empty()) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 713 | return false; | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 714 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 715 | return true; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 716 | } | 
|  | 717 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 718 | static void handleAcquiredAfterAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 719 | const AttributeList &Attr) { | 
|  | 720 | SmallVector<Expr*, 1> Args; | 
|  | 721 | if (!checkAcquireOrderAttrCommon(S, D, Attr, Args)) | 
|  | 722 | return; | 
|  | 723 |  | 
|  | 724 | Expr **StartArg = &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 725 | D->addAttr(::new (S.Context) | 
|  | 726 | AcquiredAfterAttr(Attr.getRange(), S.Context, | 
|  | 727 | StartArg, Args.size(), | 
|  | 728 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 729 | } | 
|  | 730 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 731 | static void handleAcquiredBeforeAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 732 | const AttributeList &Attr) { | 
|  | 733 | SmallVector<Expr*, 1> Args; | 
|  | 734 | if (!checkAcquireOrderAttrCommon(S, D, Attr, Args)) | 
|  | 735 | return; | 
|  | 736 |  | 
|  | 737 | Expr **StartArg = &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 738 | D->addAttr(::new (S.Context) | 
|  | 739 | AcquiredBeforeAttr(Attr.getRange(), S.Context, | 
|  | 740 | StartArg, Args.size(), | 
|  | 741 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 742 | } | 
|  | 743 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 744 | static bool checkLockFunAttrCommon(Sema &S, Decl *D, | 
|  | 745 | const AttributeList &Attr, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 746 | SmallVector<Expr*, 1> &Args) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 747 | assert(!Attr.isInvalid()); | 
|  | 748 |  | 
|  | 749 | // zero or more arguments ok | 
|  | 750 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 751 | // check that the attribute is applied to a function | 
|  | 752 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 753 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 754 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 755 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 756 | } | 
|  | 757 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 758 | // check that all arguments are lockable objects | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 759 | checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 760 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 761 | return true; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 762 | } | 
|  | 763 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 764 | static void handleSharedLockFunctionAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 765 | const AttributeList &Attr) { | 
|  | 766 | SmallVector<Expr*, 1> Args; | 
|  | 767 | if (!checkLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 768 | return; | 
|  | 769 |  | 
|  | 770 | unsigned Size = Args.size(); | 
|  | 771 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 772 | D->addAttr(::new (S.Context) | 
|  | 773 | SharedLockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size, | 
|  | 774 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 775 | } | 
|  | 776 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 777 | static void handleExclusiveLockFunctionAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 778 | const AttributeList &Attr) { | 
|  | 779 | SmallVector<Expr*, 1> Args; | 
|  | 780 | if (!checkLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 781 | return; | 
|  | 782 |  | 
|  | 783 | unsigned Size = Args.size(); | 
|  | 784 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 785 | D->addAttr(::new (S.Context) | 
|  | 786 | ExclusiveLockFunctionAttr(Attr.getRange(), S.Context, | 
|  | 787 | StartArg, Size, | 
|  | 788 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 789 | } | 
|  | 790 |  | 
| DeLesley Hutchins | 5c6134f | 2013-05-17 23:02:59 +0000 | [diff] [blame] | 791 | static void handleAssertSharedLockAttr(Sema &S, Decl *D, | 
|  | 792 | const AttributeList &Attr) { | 
|  | 793 | SmallVector<Expr*, 1> Args; | 
|  | 794 | if (!checkLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 795 | return; | 
|  | 796 |  | 
|  | 797 | unsigned Size = Args.size(); | 
|  | 798 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
|  | 799 | D->addAttr(::new (S.Context) | 
|  | 800 | AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size, | 
|  | 801 | Attr.getAttributeSpellingListIndex())); | 
|  | 802 | } | 
|  | 803 |  | 
|  | 804 | static void handleAssertExclusiveLockAttr(Sema &S, Decl *D, | 
|  | 805 | const AttributeList &Attr) { | 
|  | 806 | SmallVector<Expr*, 1> Args; | 
|  | 807 | if (!checkLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 808 | return; | 
|  | 809 |  | 
|  | 810 | unsigned Size = Args.size(); | 
|  | 811 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
|  | 812 | D->addAttr(::new (S.Context) | 
|  | 813 | AssertExclusiveLockAttr(Attr.getRange(), S.Context, | 
|  | 814 | StartArg, Size, | 
|  | 815 | Attr.getAttributeSpellingListIndex())); | 
|  | 816 | } | 
|  | 817 |  | 
|  | 818 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 819 | static bool checkTryLockFunAttrCommon(Sema &S, Decl *D, | 
|  | 820 | const AttributeList &Attr, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 821 | SmallVector<Expr*, 2> &Args) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 822 | assert(!Attr.isInvalid()); | 
|  | 823 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 824 | if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 825 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 826 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 827 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 828 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 829 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 830 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 831 | } | 
|  | 832 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 833 | if (!isIntOrBool(Attr.getArg(0))) { | 
|  | 834 | S.Diag(Attr.getLoc(), diag::err_attribute_first_argument_not_int_or_bool) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 835 | << Attr.getName(); | 
|  | 836 | return false; | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 837 | } | 
|  | 838 |  | 
|  | 839 | // check that all arguments are lockable objects | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 840 | checkAttrArgsAreLockableObjs(S, D, Attr, Args, 1); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 841 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 842 | return true; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 843 | } | 
|  | 844 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 845 | static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 846 | const AttributeList &Attr) { | 
|  | 847 | SmallVector<Expr*, 2> Args; | 
|  | 848 | if (!checkTryLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 849 | return; | 
|  | 850 |  | 
|  | 851 | unsigned Size = Args.size(); | 
|  | 852 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 853 | D->addAttr(::new (S.Context) | 
|  | 854 | SharedTrylockFunctionAttr(Attr.getRange(), S.Context, | 
|  | 855 | Attr.getArg(0), StartArg, Size, | 
|  | 856 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 857 | } | 
|  | 858 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 859 | static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 860 | const AttributeList &Attr) { | 
|  | 861 | SmallVector<Expr*, 2> Args; | 
|  | 862 | if (!checkTryLockFunAttrCommon(S, D, Attr, Args)) | 
|  | 863 | return; | 
|  | 864 |  | 
|  | 865 | unsigned Size = Args.size(); | 
|  | 866 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 867 | D->addAttr(::new (S.Context) | 
|  | 868 | ExclusiveTrylockFunctionAttr(Attr.getRange(), S.Context, | 
|  | 869 | Attr.getArg(0), StartArg, Size, | 
|  | 870 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 871 | } | 
|  | 872 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 873 | static bool checkLocksRequiredCommon(Sema &S, Decl *D, | 
|  | 874 | const AttributeList &Attr, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 875 | SmallVector<Expr*, 1> &Args) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 876 | assert(!Attr.isInvalid()); | 
|  | 877 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 878 | if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 879 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 880 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 881 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 882 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 883 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 884 | return false; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 885 | } | 
|  | 886 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 887 | // check that all arguments are lockable objects | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 888 | checkAttrArgsAreLockableObjs(S, D, Attr, Args); | 
| Dmitri Gribenko | 1f78a50 | 2013-05-03 15:05:50 +0000 | [diff] [blame] | 889 | if (Args.empty()) | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 890 | return false; | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 891 |  | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 892 | return true; | 
|  | 893 | } | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 894 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 895 | static void handleExclusiveLocksRequiredAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 896 | const AttributeList &Attr) { | 
|  | 897 | SmallVector<Expr*, 1> Args; | 
|  | 898 | if (!checkLocksRequiredCommon(S, D, Attr, Args)) | 
|  | 899 | return; | 
|  | 900 |  | 
|  | 901 | Expr **StartArg = &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 902 | D->addAttr(::new (S.Context) | 
|  | 903 | ExclusiveLocksRequiredAttr(Attr.getRange(), S.Context, | 
|  | 904 | StartArg, Args.size(), | 
|  | 905 | Attr.getAttributeSpellingListIndex())); | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 906 | } | 
|  | 907 |  | 
| Michael Han | f1aae3b | 2012-08-03 17:40:43 +0000 | [diff] [blame] | 908 | static void handleSharedLocksRequiredAttr(Sema &S, Decl *D, | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 909 | const AttributeList &Attr) { | 
|  | 910 | SmallVector<Expr*, 1> Args; | 
|  | 911 | if (!checkLocksRequiredCommon(S, D, Attr, Args)) | 
|  | 912 | return; | 
|  | 913 |  | 
|  | 914 | Expr **StartArg = &Args[0]; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 915 | D->addAttr(::new (S.Context) | 
|  | 916 | SharedLocksRequiredAttr(Attr.getRange(), S.Context, | 
|  | 917 | StartArg, Args.size(), | 
|  | 918 | Attr.getAttributeSpellingListIndex())); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 919 | } | 
|  | 920 |  | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 921 | static void handleUnlockFunAttr(Sema &S, Decl *D, | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 922 | const AttributeList &Attr) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 923 | assert(!Attr.isInvalid()); | 
|  | 924 |  | 
|  | 925 | // zero or more arguments ok | 
|  | 926 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 927 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 928 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 929 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 930 | return; | 
|  | 931 | } | 
|  | 932 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 933 | // check that all arguments are lockable objects | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 934 | SmallVector<Expr*, 1> Args; | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 935 | checkAttrArgsAreLockableObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 936 | unsigned Size = Args.size(); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 937 | Expr **StartArg = Size == 0 ? 0 : &Args[0]; | 
|  | 938 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 939 | D->addAttr(::new (S.Context) | 
|  | 940 | UnlockFunctionAttr(Attr.getRange(), S.Context, StartArg, Size, | 
|  | 941 | Attr.getAttributeSpellingListIndex())); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 942 | } | 
|  | 943 |  | 
|  | 944 | static void handleLockReturnedAttr(Sema &S, Decl *D, | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 945 | const AttributeList &Attr) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 946 | assert(!Attr.isInvalid()); | 
|  | 947 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 948 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 949 | return; | 
|  | 950 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 951 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 952 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 953 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 954 | return; | 
|  | 955 | } | 
|  | 956 |  | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 957 | // check that the argument is lockable object | 
| DeLesley Hutchins | f26efd7 | 2012-05-02 17:38:37 +0000 | [diff] [blame] | 958 | SmallVector<Expr*, 1> Args; | 
|  | 959 | checkAttrArgsAreLockableObjs(S, D, Attr, Args); | 
|  | 960 | unsigned Size = Args.size(); | 
|  | 961 | if (Size == 0) | 
|  | 962 | return; | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 963 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 964 | D->addAttr(::new (S.Context) | 
|  | 965 | LockReturnedAttr(Attr.getRange(), S.Context, Args[0], | 
|  | 966 | Attr.getAttributeSpellingListIndex())); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 967 | } | 
|  | 968 |  | 
|  | 969 | static void handleLocksExcludedAttr(Sema &S, Decl *D, | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 970 | const AttributeList &Attr) { | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 971 | assert(!Attr.isInvalid()); | 
|  | 972 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 973 | if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 974 | return; | 
|  | 975 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 976 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) { | 
| DeLesley Hutchins | 0aa52aa | 2012-06-19 23:25:19 +0000 | [diff] [blame] | 977 | S.Diag(Attr.getLoc(), diag::warn_thread_attribute_wrong_decl_type) | 
|  | 978 | << Attr.getName() << ThreadExpectedFunctionOrMethod; | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 979 | return; | 
|  | 980 | } | 
|  | 981 |  | 
| Caitlin Sadowski | b51e031 | 2011-08-09 17:59:31 +0000 | [diff] [blame] | 982 | // check that all arguments are lockable objects | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 983 | SmallVector<Expr*, 1> Args; | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 984 | checkAttrArgsAreLockableObjs(S, D, Attr, Args); | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 985 | unsigned Size = Args.size(); | 
| DeLesley Hutchins | ae519c4 | 2012-04-19 16:10:44 +0000 | [diff] [blame] | 986 | if (Size == 0) | 
|  | 987 | return; | 
|  | 988 | Expr **StartArg = &Args[0]; | 
| Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 989 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 990 | D->addAttr(::new (S.Context) | 
|  | 991 | LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size, | 
|  | 992 | Attr.getAttributeSpellingListIndex())); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 993 | } | 
|  | 994 |  | 
|  | 995 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 996 | static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D, | 
|  | 997 | const AttributeList &Attr) { | 
| Richard Smith | a4fa900 | 2013-01-13 02:11:23 +0000 | [diff] [blame] | 998 | TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D); | 
|  | 999 | if (TD == 0) { | 
|  | 1000 | // __attribute__((ext_vector_type(N))) can only be applied to typedefs | 
|  | 1001 | // and type-ids. | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 1002 | S.Diag(Attr.getLoc(), diag::err_typecheck_ext_vector_not_typedef); | 
| Chris Lattner | 545dd34 | 2008-06-28 23:36:30 +0000 | [diff] [blame] | 1003 | return; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1004 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1005 |  | 
| Richard Smith | a4fa900 | 2013-01-13 02:11:23 +0000 | [diff] [blame] | 1006 | // Remember this typedef decl, we will need it later for diagnostics. | 
|  | 1007 | S.ExtVectorDecls.push_back(TD); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1008 | } | 
|  | 1009 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1010 | static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1011 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1012 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1013 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1014 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1015 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 1016 | TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context)); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1017 | else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1018 | // If the alignment is less than or equal to 8 bits, the packed attribute | 
|  | 1019 | // has no effect. | 
| Eli Friedman | b68ec6b | 2012-11-07 00:35:20 +0000 | [diff] [blame] | 1020 | if (!FD->getType()->isDependentType() && | 
|  | 1021 | !FD->getType()->isIncompleteType() && | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 1022 | S.Context.getTypeAlign(FD->getType()) <= 8) | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1023 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored_for_field_of_type) | 
| Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 1024 | << Attr.getName() << FD->getType(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1025 | else | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1026 | FD->addAttr(::new (S.Context) | 
|  | 1027 | PackedAttr(Attr.getRange(), S.Context, | 
|  | 1028 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1029 | } else | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1030 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1031 | } | 
|  | 1032 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1033 | static void handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Eli Friedman | 5f608ae | 2012-10-12 23:29:20 +0000 | [diff] [blame] | 1034 | if (RecordDecl *RD = dyn_cast<RecordDecl>(D)) | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1035 | RD->addAttr(::new (S.Context) | 
|  | 1036 | MsStructAttr(Attr.getRange(), S.Context, | 
|  | 1037 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | c1a0a73 | 2011-04-26 17:54:40 +0000 | [diff] [blame] | 1038 | else | 
|  | 1039 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); | 
|  | 1040 | } | 
|  | 1041 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1042 | static void handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Ted Kremenek | 96329d4 | 2008-07-15 22:26:48 +0000 | [diff] [blame] | 1043 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1044 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Ted Kremenek | 96329d4 | 2008-07-15 22:26:48 +0000 | [diff] [blame] | 1045 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1046 |  | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1047 | // The IBAction attributes only apply to instance methods. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1048 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1049 | if (MD->isInstanceMethod()) { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1050 | D->addAttr(::new (S.Context) | 
|  | 1051 | IBActionAttr(Attr.getRange(), S.Context, | 
|  | 1052 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1053 | return; | 
|  | 1054 | } | 
|  | 1055 |  | 
| Ted Kremenek | 4ee2bb1 | 2011-02-04 06:54:16 +0000 | [diff] [blame] | 1056 | S.Diag(Attr.getLoc(), diag::warn_attribute_ibaction) << Attr.getName(); | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1057 | } | 
|  | 1058 |  | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1059 | static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 1060 | // The IBOutlet/IBOutletCollection attributes only apply to instance | 
|  | 1061 | // variables or properties of Objective-C classes.  The outlet must also | 
|  | 1062 | // have an object reference type. | 
|  | 1063 | if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) { | 
|  | 1064 | if (!VD->getType()->getAs<ObjCObjectPointerType>()) { | 
| Ted Kremenek | 0bfaf06 | 2011-11-01 18:08:35 +0000 | [diff] [blame] | 1065 | S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type) | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1066 | << Attr.getName() << VD->getType() << 0; | 
|  | 1067 | return false; | 
|  | 1068 | } | 
|  | 1069 | } | 
|  | 1070 | else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) { | 
|  | 1071 | if (!PD->getType()->getAs<ObjCObjectPointerType>()) { | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 1072 | S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type) | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1073 | << Attr.getName() << PD->getType() << 1; | 
|  | 1074 | return false; | 
|  | 1075 | } | 
|  | 1076 | } | 
|  | 1077 | else { | 
|  | 1078 | S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName(); | 
|  | 1079 | return false; | 
|  | 1080 | } | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 1081 |  | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1082 | return true; | 
|  | 1083 | } | 
|  | 1084 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1085 | static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1086 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1087 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1088 | return; | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1089 |  | 
|  | 1090 | if (!checkIBOutletCommon(S, D, Attr)) | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1091 | return; | 
| Ted Kremenek | 63e5d7c | 2010-02-18 03:08:58 +0000 | [diff] [blame] | 1092 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1093 | D->addAttr(::new (S.Context) | 
|  | 1094 | IBOutletAttr(Attr.getRange(), S.Context, | 
|  | 1095 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 96329d4 | 2008-07-15 22:26:48 +0000 | [diff] [blame] | 1096 | } | 
|  | 1097 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1098 | static void handleIBOutletCollection(Sema &S, Decl *D, | 
|  | 1099 | const AttributeList &Attr) { | 
| Ted Kremenek | 857e918 | 2010-05-19 17:38:06 +0000 | [diff] [blame] | 1100 |  | 
|  | 1101 | // The iboutletcollection attribute can have zero or one arguments. | 
| Fariborz Jahanian | a8fb24f | 2010-08-17 20:23:12 +0000 | [diff] [blame] | 1102 | if (Attr.getParameterName() && Attr.getNumArgs() > 0) { | 
| Ted Kremenek | 857e918 | 2010-05-19 17:38:06 +0000 | [diff] [blame] | 1103 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 1104 | return; | 
|  | 1105 | } | 
|  | 1106 |  | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1107 | if (!checkIBOutletCommon(S, D, Attr)) | 
| Ted Kremenek | 857e918 | 2010-05-19 17:38:06 +0000 | [diff] [blame] | 1108 | return; | 
| Ted Kremenek | 2f041d0 | 2011-09-29 07:02:25 +0000 | [diff] [blame] | 1109 |  | 
| Fariborz Jahanian | a8fb24f | 2010-08-17 20:23:12 +0000 | [diff] [blame] | 1110 | IdentifierInfo *II = Attr.getParameterName(); | 
|  | 1111 | if (!II) | 
| Fariborz Jahanian | f4072ae | 2011-10-18 19:54:31 +0000 | [diff] [blame] | 1112 | II = &S.Context.Idents.get("NSObject"); | 
| Fariborz Jahanian | 3a3400b | 2010-08-17 21:39:27 +0000 | [diff] [blame] | 1113 |  | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1114 | ParsedType TypeRep = S.getTypeName(*II, Attr.getLoc(), | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1115 | S.getScopeForContext(D->getDeclContext()->getParent())); | 
| Fariborz Jahanian | a8fb24f | 2010-08-17 20:23:12 +0000 | [diff] [blame] | 1116 | if (!TypeRep) { | 
|  | 1117 | S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II; | 
|  | 1118 | return; | 
|  | 1119 | } | 
| John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 1120 | QualType QT = TypeRep.get(); | 
| Fariborz Jahanian | a8fb24f | 2010-08-17 20:23:12 +0000 | [diff] [blame] | 1121 | // Diagnose use of non-object type in iboutletcollection attribute. | 
|  | 1122 | // FIXME. Gnu attribute extension ignores use of builtin types in | 
|  | 1123 | // attributes. So, __attribute__((iboutletcollection(char))) will be | 
|  | 1124 | // treated as __attribute__((iboutletcollection())). | 
| Fariborz Jahanian | f4072ae | 2011-10-18 19:54:31 +0000 | [diff] [blame] | 1125 | if (!QT->isObjCIdType() && !QT->isObjCObjectType()) { | 
| Fariborz Jahanian | a8fb24f | 2010-08-17 20:23:12 +0000 | [diff] [blame] | 1126 | S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << II; | 
|  | 1127 | return; | 
|  | 1128 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1129 | D->addAttr(::new (S.Context) | 
|  | 1130 | IBOutletCollectionAttr(Attr.getRange(),S.Context, | 
|  | 1131 | QT, Attr.getParameterLoc(), | 
|  | 1132 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 857e918 | 2010-05-19 17:38:06 +0000 | [diff] [blame] | 1133 | } | 
|  | 1134 |  | 
| Chandler Carruth | d309c81 | 2011-07-01 23:49:16 +0000 | [diff] [blame] | 1135 | static void possibleTransparentUnionPointerType(QualType &T) { | 
| Fariborz Jahanian | 68fe96a | 2011-06-27 21:12:03 +0000 | [diff] [blame] | 1136 | if (const RecordType *UT = T->getAsUnionType()) | 
|  | 1137 | if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) { | 
|  | 1138 | RecordDecl *UD = UT->getDecl(); | 
|  | 1139 | for (RecordDecl::field_iterator it = UD->field_begin(), | 
|  | 1140 | itend = UD->field_end(); it != itend; ++it) { | 
|  | 1141 | QualType QT = it->getType(); | 
|  | 1142 | if (QT->isAnyPointerType() || QT->isBlockPointerType()) { | 
|  | 1143 | T = QT; | 
|  | 1144 | return; | 
|  | 1145 | } | 
|  | 1146 | } | 
|  | 1147 | } | 
|  | 1148 | } | 
|  | 1149 |  | 
| Nuno Lopes | 587de5b | 2012-05-24 00:22:00 +0000 | [diff] [blame] | 1150 | static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Nuno Lopes | 174930d | 2012-06-18 16:39:04 +0000 | [diff] [blame] | 1151 | if (!isFunctionOrMethod(D)) { | 
|  | 1152 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 1153 | << "alloc_size" << ExpectedFunctionOrMethod; | 
|  | 1154 | return; | 
|  | 1155 | } | 
|  | 1156 |  | 
| Nuno Lopes | 587de5b | 2012-05-24 00:22:00 +0000 | [diff] [blame] | 1157 | if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) | 
|  | 1158 | return; | 
|  | 1159 |  | 
|  | 1160 | // In C++ the implicit 'this' function parameter also counts, and they are | 
|  | 1161 | // counted from one. | 
|  | 1162 | bool HasImplicitThisParam = isInstanceMethod(D); | 
| Argyrios Kyrtzidis | 28965bf | 2013-02-22 06:58:28 +0000 | [diff] [blame] | 1163 | unsigned NumArgs; | 
|  | 1164 | if (hasFunctionProto(D)) | 
|  | 1165 | NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
|  | 1166 | else | 
|  | 1167 | NumArgs = 0; | 
| Nuno Lopes | 587de5b | 2012-05-24 00:22:00 +0000 | [diff] [blame] | 1168 |  | 
|  | 1169 | SmallVector<unsigned, 8> SizeArgs; | 
|  | 1170 |  | 
|  | 1171 | for (AttributeList::arg_iterator I = Attr.arg_begin(), | 
|  | 1172 | E = Attr.arg_end(); I!=E; ++I) { | 
|  | 1173 | // The argument must be an integer constant expression. | 
|  | 1174 | Expr *Ex = *I; | 
|  | 1175 | llvm::APSInt ArgNum; | 
|  | 1176 | if (Ex->isTypeDependent() || Ex->isValueDependent() || | 
|  | 1177 | !Ex->isIntegerConstantExpr(ArgNum, S.Context)) { | 
|  | 1178 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 1179 | << "alloc_size" << Ex->getSourceRange(); | 
|  | 1180 | return; | 
|  | 1181 | } | 
|  | 1182 |  | 
|  | 1183 | uint64_t x = ArgNum.getZExtValue(); | 
|  | 1184 |  | 
|  | 1185 | if (x < 1 || x > NumArgs) { | 
|  | 1186 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
|  | 1187 | << "alloc_size" << I.getArgNum() << Ex->getSourceRange(); | 
|  | 1188 | return; | 
|  | 1189 | } | 
|  | 1190 |  | 
|  | 1191 | --x; | 
|  | 1192 | if (HasImplicitThisParam) { | 
|  | 1193 | if (x == 0) { | 
|  | 1194 | S.Diag(Attr.getLoc(), | 
|  | 1195 | diag::err_attribute_invalid_implicit_this_argument) | 
|  | 1196 | << "alloc_size" << Ex->getSourceRange(); | 
|  | 1197 | return; | 
|  | 1198 | } | 
|  | 1199 | --x; | 
|  | 1200 | } | 
|  | 1201 |  | 
|  | 1202 | // check if the function argument is of an integer type | 
|  | 1203 | QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType(); | 
|  | 1204 | if (!T->isIntegerType()) { | 
|  | 1205 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 1206 | << "alloc_size" << Ex->getSourceRange(); | 
|  | 1207 | return; | 
|  | 1208 | } | 
|  | 1209 |  | 
| Nuno Lopes | 587de5b | 2012-05-24 00:22:00 +0000 | [diff] [blame] | 1210 | SizeArgs.push_back(x); | 
|  | 1211 | } | 
|  | 1212 |  | 
|  | 1213 | // check if the function returns a pointer | 
|  | 1214 | if (!getFunctionType(D)->getResultType()->isAnyPointerType()) { | 
|  | 1215 | S.Diag(Attr.getLoc(), diag::warn_ns_attribute_wrong_return_type) | 
|  | 1216 | << "alloc_size" << 0 /*function*/<< 1 /*pointer*/ << D->getSourceRange(); | 
|  | 1217 | } | 
|  | 1218 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1219 | D->addAttr(::new (S.Context) | 
|  | 1220 | AllocSizeAttr(Attr.getRange(), S.Context, | 
|  | 1221 | SizeArgs.data(), SizeArgs.size(), | 
|  | 1222 | Attr.getAttributeSpellingListIndex())); | 
| Nuno Lopes | 587de5b | 2012-05-24 00:22:00 +0000 | [diff] [blame] | 1223 | } | 
|  | 1224 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1225 | static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1226 | // GCC ignores the nonnull attribute on K&R style function prototypes, so we | 
|  | 1227 | // ignore it as well | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1228 | if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1229 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1230 | << Attr.getName() << ExpectedFunction; | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1231 | return; | 
|  | 1232 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1233 |  | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 1234 | // In C++ the implicit 'this' function parameter also counts, and they are | 
|  | 1235 | // counted from one. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1236 | bool HasImplicitThisParam = isInstanceMethod(D); | 
| Nick Lewycky | 5d9484d | 2013-01-24 01:12:16 +0000 | [diff] [blame] | 1237 | unsigned NumArgs = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1238 |  | 
|  | 1239 | // The nonnull attribute only applies to pointers. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1240 | SmallVector<unsigned, 10> NonNullArgs; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1241 |  | 
| Nick Lewycky | 5d9484d | 2013-01-24 01:12:16 +0000 | [diff] [blame] | 1242 | for (AttributeList::arg_iterator I = Attr.arg_begin(), | 
|  | 1243 | E = Attr.arg_end(); I != E; ++I) { | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1244 | // The argument must be an integer constant expression. | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1245 | Expr *Ex = *I; | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1246 | llvm::APSInt ArgNum(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 1247 | if (Ex->isTypeDependent() || Ex->isValueDependent() || | 
|  | 1248 | !Ex->isIntegerConstantExpr(ArgNum, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1249 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 1250 | << "nonnull" << Ex->getSourceRange(); | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1251 | return; | 
|  | 1252 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1253 |  | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1254 | unsigned x = (unsigned) ArgNum.getZExtValue(); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1255 |  | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1256 | if (x < 1 || x > NumArgs) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1257 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
| Chris Lattner | 30bc965 | 2008-11-19 07:22:31 +0000 | [diff] [blame] | 1258 | << "nonnull" << I.getArgNum() << Ex->getSourceRange(); | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1259 | return; | 
|  | 1260 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1261 |  | 
| Ted Kremenek | 465172f | 2008-07-21 22:09:15 +0000 | [diff] [blame] | 1262 | --x; | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 1263 | if (HasImplicitThisParam) { | 
|  | 1264 | if (x == 0) { | 
|  | 1265 | S.Diag(Attr.getLoc(), | 
|  | 1266 | diag::err_attribute_invalid_implicit_this_argument) | 
|  | 1267 | << "nonnull" << Ex->getSourceRange(); | 
|  | 1268 | return; | 
|  | 1269 | } | 
|  | 1270 | --x; | 
|  | 1271 | } | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1272 |  | 
|  | 1273 | // Is the function argument a pointer type? | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1274 | QualType T = getFunctionOrMethodArgType(D, x).getNonReferenceType(); | 
| Chandler Carruth | d309c81 | 2011-07-01 23:49:16 +0000 | [diff] [blame] | 1275 | possibleTransparentUnionPointerType(T); | 
| Fariborz Jahanian | 68fe96a | 2011-06-27 21:12:03 +0000 | [diff] [blame] | 1276 |  | 
| Ted Kremenek | dbfe99e | 2009-07-15 23:23:54 +0000 | [diff] [blame] | 1277 | if (!T->isAnyPointerType() && !T->isBlockPointerType()) { | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1278 | // FIXME: Should also highlight argument in decl. | 
| Douglas Gregor | c9ef405 | 2010-08-12 18:48:43 +0000 | [diff] [blame] | 1279 | S.Diag(Attr.getLoc(), diag::warn_nonnull_pointers_only) | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1280 | << "nonnull" << Ex->getSourceRange(); | 
| Ted Kremenek | 7fb43c1 | 2008-09-01 19:57:52 +0000 | [diff] [blame] | 1281 | continue; | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1282 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1283 |  | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1284 | NonNullArgs.push_back(x); | 
|  | 1285 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1286 |  | 
|  | 1287 | // If no arguments were specified to __attribute__((nonnull)) then all pointer | 
|  | 1288 | // arguments have a nonnull attribute. | 
| Ted Kremenek | 7fb43c1 | 2008-09-01 19:57:52 +0000 | [diff] [blame] | 1289 | if (NonNullArgs.empty()) { | 
| Nick Lewycky | 5d9484d | 2013-01-24 01:12:16 +0000 | [diff] [blame] | 1290 | for (unsigned i = 0, e = getFunctionOrMethodNumArgs(D); i != e; ++i) { | 
|  | 1291 | QualType T = getFunctionOrMethodArgType(D, i).getNonReferenceType(); | 
| Chandler Carruth | d309c81 | 2011-07-01 23:49:16 +0000 | [diff] [blame] | 1292 | possibleTransparentUnionPointerType(T); | 
| Ted Kremenek | dbfe99e | 2009-07-15 23:23:54 +0000 | [diff] [blame] | 1293 | if (T->isAnyPointerType() || T->isBlockPointerType()) | 
| Nick Lewycky | 5d9484d | 2013-01-24 01:12:16 +0000 | [diff] [blame] | 1294 | NonNullArgs.push_back(i); | 
| Ted Kremenek | 46bbaca | 2008-11-18 06:52:58 +0000 | [diff] [blame] | 1295 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1296 |  | 
| Ted Kremenek | ee1c08c | 2010-10-21 18:49:36 +0000 | [diff] [blame] | 1297 | // No pointer arguments? | 
| Fariborz Jahanian | 60acea4 | 2010-09-27 19:05:51 +0000 | [diff] [blame] | 1298 | if (NonNullArgs.empty()) { | 
|  | 1299 | // Warn the trivial case only if attribute is not coming from a | 
|  | 1300 | // macro instantiation. | 
|  | 1301 | if (Attr.getLoc().isFileID()) | 
|  | 1302 | S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers); | 
| Ted Kremenek | 7fb43c1 | 2008-09-01 19:57:52 +0000 | [diff] [blame] | 1303 | return; | 
| Fariborz Jahanian | 60acea4 | 2010-09-27 19:05:51 +0000 | [diff] [blame] | 1304 | } | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1305 | } | 
| Ted Kremenek | 7fb43c1 | 2008-09-01 19:57:52 +0000 | [diff] [blame] | 1306 |  | 
| Nick Lewycky | 5d9484d | 2013-01-24 01:12:16 +0000 | [diff] [blame] | 1307 | unsigned *start = &NonNullArgs[0]; | 
| Ted Kremenek | 7fb43c1 | 2008-09-01 19:57:52 +0000 | [diff] [blame] | 1308 | unsigned size = NonNullArgs.size(); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1309 | llvm::array_pod_sort(start, start + size); | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1310 | D->addAttr(::new (S.Context) | 
|  | 1311 | NonNullAttr(Attr.getRange(), S.Context, start, size, | 
|  | 1312 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | eb2b2a3 | 2008-07-21 21:53:04 +0000 | [diff] [blame] | 1313 | } | 
|  | 1314 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1315 | static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) { | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1316 | // This attribute must be applied to a function declaration. | 
|  | 1317 | // The first argument to the attribute must be a string, | 
|  | 1318 | // the name of the resource, for example "malloc". | 
|  | 1319 | // The following arguments must be argument indexes, the arguments must be | 
|  | 1320 | // of integer type for Returns, otherwise of pointer type. | 
|  | 1321 | // The difference between Holds and Takes is that a pointer may still be used | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1322 | // after being held.  free() should be __attribute((ownership_takes)), whereas | 
|  | 1323 | // a list append function may well be __attribute((ownership_holds)). | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1324 |  | 
|  | 1325 | if (!AL.getParameterName()) { | 
|  | 1326 | S.Diag(AL.getLoc(), diag::err_attribute_argument_n_not_string) | 
|  | 1327 | << AL.getName()->getName() << 1; | 
|  | 1328 | return; | 
|  | 1329 | } | 
|  | 1330 | // Figure out our Kind, and check arguments while we're at it. | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1331 | OwnershipAttr::OwnershipKind K; | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1332 | switch (AL.getKind()) { | 
|  | 1333 | case AttributeList::AT_ownership_takes: | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1334 | K = OwnershipAttr::Takes; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1335 | if (AL.getNumArgs() < 1) { | 
|  | 1336 | S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2; | 
|  | 1337 | return; | 
|  | 1338 | } | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1339 | break; | 
|  | 1340 | case AttributeList::AT_ownership_holds: | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1341 | K = OwnershipAttr::Holds; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1342 | if (AL.getNumArgs() < 1) { | 
|  | 1343 | S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2; | 
|  | 1344 | return; | 
|  | 1345 | } | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1346 | break; | 
|  | 1347 | case AttributeList::AT_ownership_returns: | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1348 | K = OwnershipAttr::Returns; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1349 | if (AL.getNumArgs() > 1) { | 
|  | 1350 | S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) | 
|  | 1351 | << AL.getNumArgs() + 1; | 
|  | 1352 | return; | 
|  | 1353 | } | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1354 | break; | 
|  | 1355 | default: | 
|  | 1356 | // This should never happen given how we are called. | 
|  | 1357 | llvm_unreachable("Unknown ownership attribute"); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1358 | } | 
|  | 1359 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1360 | if (!isFunction(D) || !hasFunctionProto(D)) { | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1361 | S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 1362 | << AL.getName() << ExpectedFunction; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1363 | return; | 
|  | 1364 | } | 
|  | 1365 |  | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 1366 | // In C++ the implicit 'this' function parameter also counts, and they are | 
|  | 1367 | // counted from one. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1368 | bool HasImplicitThisParam = isInstanceMethod(D); | 
|  | 1369 | unsigned NumArgs  = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1370 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1371 | StringRef Module = AL.getParameterName()->getName(); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1372 |  | 
|  | 1373 | // Normalize the argument, __foo__ becomes foo. | 
|  | 1374 | if (Module.startswith("__") && Module.endswith("__")) | 
|  | 1375 | Module = Module.substr(2, Module.size() - 4); | 
|  | 1376 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1377 | SmallVector<unsigned, 10> OwnershipArgs; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1378 |  | 
| Jordy Rose | 2a47992 | 2010-08-12 08:54:03 +0000 | [diff] [blame] | 1379 | for (AttributeList::arg_iterator I = AL.arg_begin(), E = AL.arg_end(); I != E; | 
|  | 1380 | ++I) { | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1381 |  | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1382 | Expr *IdxExpr = *I; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1383 | llvm::APSInt ArgNum(32); | 
|  | 1384 | if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() | 
|  | 1385 | || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) { | 
|  | 1386 | S.Diag(AL.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 1387 | << AL.getName()->getName() << IdxExpr->getSourceRange(); | 
|  | 1388 | continue; | 
|  | 1389 | } | 
|  | 1390 |  | 
|  | 1391 | unsigned x = (unsigned) ArgNum.getZExtValue(); | 
|  | 1392 |  | 
|  | 1393 | if (x > NumArgs || x < 1) { | 
|  | 1394 | S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
|  | 1395 | << AL.getName()->getName() << x << IdxExpr->getSourceRange(); | 
|  | 1396 | continue; | 
|  | 1397 | } | 
|  | 1398 | --x; | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 1399 | if (HasImplicitThisParam) { | 
|  | 1400 | if (x == 0) { | 
|  | 1401 | S.Diag(AL.getLoc(), diag::err_attribute_invalid_implicit_this_argument) | 
|  | 1402 | << "ownership" << IdxExpr->getSourceRange(); | 
|  | 1403 | return; | 
|  | 1404 | } | 
|  | 1405 | --x; | 
|  | 1406 | } | 
|  | 1407 |  | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1408 | switch (K) { | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1409 | case OwnershipAttr::Takes: | 
|  | 1410 | case OwnershipAttr::Holds: { | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1411 | // Is the function argument a pointer type? | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1412 | QualType T = getFunctionOrMethodArgType(D, x); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1413 | if (!T->isAnyPointerType() && !T->isBlockPointerType()) { | 
|  | 1414 | // FIXME: Should also highlight argument in decl. | 
|  | 1415 | S.Diag(AL.getLoc(), diag::err_ownership_type) | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1416 | << ((K==OwnershipAttr::Takes)?"ownership_takes":"ownership_holds") | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1417 | << "pointer" | 
|  | 1418 | << IdxExpr->getSourceRange(); | 
|  | 1419 | continue; | 
|  | 1420 | } | 
|  | 1421 | break; | 
|  | 1422 | } | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1423 | case OwnershipAttr::Returns: { | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1424 | if (AL.getNumArgs() > 1) { | 
|  | 1425 | // Is the function argument an integer type? | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1426 | Expr *IdxExpr = AL.getArg(0); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1427 | llvm::APSInt ArgNum(32); | 
|  | 1428 | if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() | 
|  | 1429 | || !IdxExpr->isIntegerConstantExpr(ArgNum, S.Context)) { | 
|  | 1430 | S.Diag(AL.getLoc(), diag::err_ownership_type) | 
|  | 1431 | << "ownership_returns" << "integer" | 
|  | 1432 | << IdxExpr->getSourceRange(); | 
|  | 1433 | return; | 
|  | 1434 | } | 
|  | 1435 | } | 
|  | 1436 | break; | 
|  | 1437 | } | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1438 | } // switch | 
|  | 1439 |  | 
|  | 1440 | // Check we don't have a conflict with another ownership attribute. | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1441 | for (specific_attr_iterator<OwnershipAttr> | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1442 | i = D->specific_attr_begin<OwnershipAttr>(), | 
|  | 1443 | e = D->specific_attr_end<OwnershipAttr>(); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1444 | i != e; ++i) { | 
|  | 1445 | if ((*i)->getOwnKind() != K) { | 
|  | 1446 | for (const unsigned *I = (*i)->args_begin(), *E = (*i)->args_end(); | 
|  | 1447 | I!=E; ++I) { | 
|  | 1448 | if (x == *I) { | 
|  | 1449 | S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) | 
|  | 1450 | << AL.getName()->getName() << "ownership_*"; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1451 | } | 
|  | 1452 | } | 
|  | 1453 | } | 
|  | 1454 | } | 
|  | 1455 | OwnershipArgs.push_back(x); | 
|  | 1456 | } | 
|  | 1457 |  | 
|  | 1458 | unsigned* start = OwnershipArgs.data(); | 
|  | 1459 | unsigned size = OwnershipArgs.size(); | 
|  | 1460 | llvm::array_pod_sort(start, start + size); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1461 |  | 
|  | 1462 | if (K != OwnershipAttr::Returns && OwnershipArgs.empty()) { | 
|  | 1463 | S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << 2; | 
|  | 1464 | return; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1465 | } | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 1466 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1467 | D->addAttr(::new (S.Context) | 
|  | 1468 | OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size, | 
|  | 1469 | AL.getAttributeSpellingListIndex())); | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 1470 | } | 
|  | 1471 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1472 | static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1473 | // Check the attribute arguments. | 
|  | 1474 | if (Attr.getNumArgs() > 1) { | 
|  | 1475 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 1476 | return; | 
|  | 1477 | } | 
|  | 1478 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1479 | if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) { | 
| John McCall | 332bb2a | 2011-02-08 22:35:49 +0000 | [diff] [blame] | 1480 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1481 | << Attr.getName() << ExpectedVariableOrFunction; | 
| John McCall | 332bb2a | 2011-02-08 22:35:49 +0000 | [diff] [blame] | 1482 | return; | 
|  | 1483 | } | 
|  | 1484 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1485 | NamedDecl *nd = cast<NamedDecl>(D); | 
| John McCall | 332bb2a | 2011-02-08 22:35:49 +0000 | [diff] [blame] | 1486 |  | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1487 | // gcc rejects | 
|  | 1488 | // class c { | 
|  | 1489 | //   static int a __attribute__((weakref ("v2"))); | 
|  | 1490 | //   static int b() __attribute__((weakref ("f3"))); | 
|  | 1491 | // }; | 
|  | 1492 | // and ignores the attributes of | 
|  | 1493 | // void f(void) { | 
|  | 1494 | //   static int a __attribute__((weakref ("v2"))); | 
|  | 1495 | // } | 
|  | 1496 | // we reject them | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1497 | const DeclContext *Ctx = D->getDeclContext()->getRedeclContext(); | 
| Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 1498 | if (!Ctx->isFileContext()) { | 
|  | 1499 | S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) << | 
| John McCall | 332bb2a | 2011-02-08 22:35:49 +0000 | [diff] [blame] | 1500 | nd->getNameAsString(); | 
| Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 1501 | return; | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1502 | } | 
|  | 1503 |  | 
|  | 1504 | // The GCC manual says | 
|  | 1505 | // | 
|  | 1506 | // At present, a declaration to which `weakref' is attached can only | 
|  | 1507 | // be `static'. | 
|  | 1508 | // | 
|  | 1509 | // It also says | 
|  | 1510 | // | 
|  | 1511 | // Without a TARGET, | 
|  | 1512 | // given as an argument to `weakref' or to `alias', `weakref' is | 
|  | 1513 | // equivalent to `weak'. | 
|  | 1514 | // | 
|  | 1515 | // gcc 4.4.1 will accept | 
|  | 1516 | // int a7 __attribute__((weakref)); | 
|  | 1517 | // as | 
|  | 1518 | // int a7 __attribute__((weak)); | 
|  | 1519 | // This looks like a bug in gcc. We reject that for now. We should revisit | 
|  | 1520 | // it if this behaviour is actually used. | 
|  | 1521 |  | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1522 | // GCC rejects | 
|  | 1523 | // static ((alias ("y"), weakref)). | 
|  | 1524 | // Should we? How to check that weakref is before or after alias? | 
|  | 1525 |  | 
|  | 1526 | if (Attr.getNumArgs() == 1) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1527 | Expr *Arg = Attr.getArg(0); | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1528 | Arg = Arg->IgnoreParenCasts(); | 
|  | 1529 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
|  | 1530 |  | 
| Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1531 | if (!Str || !Str->isAscii()) { | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1532 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
|  | 1533 | << "weakref" << 1; | 
|  | 1534 | return; | 
|  | 1535 | } | 
|  | 1536 | // GCC will accept anything as the argument of weakref. Should we | 
|  | 1537 | // check for an existing decl? | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 1538 | D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, | 
| Eric Christopher | f48f367 | 2010-12-01 22:13:54 +0000 | [diff] [blame] | 1539 | Str->getString())); | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1540 | } | 
|  | 1541 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1542 | D->addAttr(::new (S.Context) | 
|  | 1543 | WeakRefAttr(Attr.getRange(), S.Context, | 
|  | 1544 | Attr.getAttributeSpellingListIndex())); | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1545 | } | 
|  | 1546 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1547 | static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1548 | // check the attribute arguments. | 
| Chris Lattner | 545dd34 | 2008-06-28 23:36:30 +0000 | [diff] [blame] | 1549 | if (Attr.getNumArgs() != 1) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1550 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1551 | return; | 
|  | 1552 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1553 |  | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1554 | Expr *Arg = Attr.getArg(0); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1555 | Arg = Arg->IgnoreParenCasts(); | 
|  | 1556 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1557 |  | 
| Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1558 | if (!Str || !Str->isAscii()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1559 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1560 | << "alias" << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1561 | return; | 
|  | 1562 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1563 |  | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 1564 | if (S.Context.getTargetInfo().getTriple().isOSDarwin()) { | 
| Rafael Espindola | f5fe292 | 2010-12-07 15:23:23 +0000 | [diff] [blame] | 1565 | S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin); | 
|  | 1566 | return; | 
|  | 1567 | } | 
|  | 1568 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1569 | // FIXME: check if target symbol exists in current file | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1570 |  | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 1571 | D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1572 | Str->getString(), | 
|  | 1573 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1574 | } | 
|  | 1575 |  | 
| Quentin Colombet | aee56fa | 2012-11-01 23:55:47 +0000 | [diff] [blame] | 1576 | static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 1577 | // Check the attribute arguments. | 
|  | 1578 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 1579 | return; | 
|  | 1580 |  | 
|  | 1581 | if (!isa<FunctionDecl>(D) && !isa<ObjCMethodDecl>(D)) { | 
|  | 1582 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 1583 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 1584 | return; | 
|  | 1585 | } | 
|  | 1586 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1587 | D->addAttr(::new (S.Context) | 
|  | 1588 | MinSizeAttr(Attr.getRange(), S.Context, | 
|  | 1589 | Attr.getAttributeSpellingListIndex())); | 
| Quentin Colombet | aee56fa | 2012-11-01 23:55:47 +0000 | [diff] [blame] | 1590 | } | 
|  | 1591 |  | 
| Benjamin Kramer | ee409a9 | 2012-05-12 21:10:52 +0000 | [diff] [blame] | 1592 | static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 1593 | // Check the attribute arguments. | 
|  | 1594 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 1595 | return; | 
|  | 1596 |  | 
|  | 1597 | if (!isa<FunctionDecl>(D)) { | 
|  | 1598 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 1599 | << Attr.getName() << ExpectedFunction; | 
|  | 1600 | return; | 
|  | 1601 | } | 
|  | 1602 |  | 
|  | 1603 | if (D->hasAttr<HotAttr>()) { | 
|  | 1604 | S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible) | 
|  | 1605 | << Attr.getName() << "hot"; | 
|  | 1606 | return; | 
|  | 1607 | } | 
|  | 1608 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1609 | D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context, | 
|  | 1610 | Attr.getAttributeSpellingListIndex())); | 
| Benjamin Kramer | ee409a9 | 2012-05-12 21:10:52 +0000 | [diff] [blame] | 1611 | } | 
|  | 1612 |  | 
|  | 1613 | static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 1614 | // Check the attribute arguments. | 
|  | 1615 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 1616 | return; | 
|  | 1617 |  | 
|  | 1618 | if (!isa<FunctionDecl>(D)) { | 
|  | 1619 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 1620 | << Attr.getName() << ExpectedFunction; | 
|  | 1621 | return; | 
|  | 1622 | } | 
|  | 1623 |  | 
|  | 1624 | if (D->hasAttr<ColdAttr>()) { | 
|  | 1625 | S.Diag(Attr.getLoc(), diag::err_attributes_are_not_compatible) | 
|  | 1626 | << Attr.getName() << "cold"; | 
|  | 1627 | return; | 
|  | 1628 | } | 
|  | 1629 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1630 | D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context, | 
|  | 1631 | Attr.getAttributeSpellingListIndex())); | 
| Benjamin Kramer | ee409a9 | 2012-05-12 21:10:52 +0000 | [diff] [blame] | 1632 | } | 
|  | 1633 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1634 | static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1635 | // Check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1636 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 1637 | return; | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 1638 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1639 | if (!isa<FunctionDecl>(D)) { | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 1640 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1641 | << Attr.getName() << ExpectedFunction; | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1642 | return; | 
|  | 1643 | } | 
|  | 1644 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1645 | D->addAttr(::new (S.Context) | 
|  | 1646 | NakedAttr(Attr.getRange(), S.Context, | 
|  | 1647 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1648 | } | 
|  | 1649 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1650 | static void handleAlwaysInlineAttr(Sema &S, Decl *D, | 
|  | 1651 | const AttributeList &Attr) { | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1652 | // Check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 1653 | if (Attr.hasParameterOrArguments()) { | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1654 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 1655 | return; | 
|  | 1656 | } | 
|  | 1657 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1658 | if (!isa<FunctionDecl>(D)) { | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1659 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1660 | << Attr.getName() << ExpectedFunction; | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 1661 | return; | 
|  | 1662 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1663 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1664 | D->addAttr(::new (S.Context) | 
|  | 1665 | AlwaysInlineAttr(Attr.getRange(), S.Context, | 
|  | 1666 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 1667 | } | 
|  | 1668 |  | 
| Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 1669 | static void handleTLSModelAttr(Sema &S, Decl *D, | 
|  | 1670 | const AttributeList &Attr) { | 
|  | 1671 | // Check the attribute arguments. | 
|  | 1672 | if (Attr.getNumArgs() != 1) { | 
|  | 1673 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 1674 | return; | 
|  | 1675 | } | 
|  | 1676 |  | 
|  | 1677 | Expr *Arg = Attr.getArg(0); | 
|  | 1678 | Arg = Arg->IgnoreParenCasts(); | 
|  | 1679 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
|  | 1680 |  | 
|  | 1681 | // Check that it is a string. | 
|  | 1682 | if (!Str) { | 
|  | 1683 | S.Diag(Attr.getLoc(), diag::err_attribute_not_string) << "tls_model"; | 
|  | 1684 | return; | 
|  | 1685 | } | 
|  | 1686 |  | 
| Richard Smith | 38afbc7 | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 1687 | if (!isa<VarDecl>(D) || !cast<VarDecl>(D)->getTLSKind()) { | 
| Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 1688 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 1689 | << Attr.getName() << ExpectedTLSVar; | 
|  | 1690 | return; | 
|  | 1691 | } | 
|  | 1692 |  | 
|  | 1693 | // Check that the value. | 
|  | 1694 | StringRef Model = Str->getString(); | 
|  | 1695 | if (Model != "global-dynamic" && Model != "local-dynamic" | 
|  | 1696 | && Model != "initial-exec" && Model != "local-exec") { | 
|  | 1697 | S.Diag(Attr.getLoc(), diag::err_attr_tlsmodel_arg); | 
|  | 1698 | return; | 
|  | 1699 | } | 
|  | 1700 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1701 | D->addAttr(::new (S.Context) | 
|  | 1702 | TLSModelAttr(Attr.getRange(), S.Context, Model, | 
|  | 1703 | Attr.getAttributeSpellingListIndex())); | 
| Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 1704 | } | 
|  | 1705 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1706 | static void handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 1707 | // Check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 1708 | if (Attr.hasParameterOrArguments()) { | 
| Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1709 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 1710 | return; | 
|  | 1711 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1712 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1713 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1714 | QualType RetTy = FD->getResultType(); | 
| Ted Kremenek | 2cff7d1 | 2009-08-15 00:51:46 +0000 | [diff] [blame] | 1715 | if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1716 | D->addAttr(::new (S.Context) | 
|  | 1717 | MallocAttr(Attr.getRange(), S.Context, | 
|  | 1718 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 2cff7d1 | 2009-08-15 00:51:46 +0000 | [diff] [blame] | 1719 | return; | 
|  | 1720 | } | 
| Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1721 | } | 
|  | 1722 |  | 
| Ted Kremenek | 2cff7d1 | 2009-08-15 00:51:46 +0000 | [diff] [blame] | 1723 | S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only); | 
| Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1724 | } | 
|  | 1725 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1726 | static void handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Dan Gohman | 34c2630 | 2010-11-17 00:03:07 +0000 | [diff] [blame] | 1727 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1728 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Dan Gohman | 34c2630 | 2010-11-17 00:03:07 +0000 | [diff] [blame] | 1729 | return; | 
| Dan Gohman | 34c2630 | 2010-11-17 00:03:07 +0000 | [diff] [blame] | 1730 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1731 | D->addAttr(::new (S.Context) | 
|  | 1732 | MayAliasAttr(Attr.getRange(), S.Context, | 
|  | 1733 | Attr.getAttributeSpellingListIndex())); | 
| Dan Gohman | 34c2630 | 2010-11-17 00:03:07 +0000 | [diff] [blame] | 1734 | } | 
|  | 1735 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1736 | static void handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 56aeb40 | 2011-07-11 23:33:05 +0000 | [diff] [blame] | 1737 | assert(!Attr.isInvalid()); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1738 | if (isa<VarDecl>(D)) | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1739 | D->addAttr(::new (S.Context) | 
|  | 1740 | NoCommonAttr(Attr.getRange(), S.Context, | 
|  | 1741 | Attr.getAttributeSpellingListIndex())); | 
| Eric Christopher | 722109c | 2010-12-03 06:58:14 +0000 | [diff] [blame] | 1742 | else | 
|  | 1743 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1744 | << Attr.getName() << ExpectedVariable; | 
| Eric Christopher | a6cf1e7 | 2010-12-02 02:45:55 +0000 | [diff] [blame] | 1745 | } | 
|  | 1746 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1747 | static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 56aeb40 | 2011-07-11 23:33:05 +0000 | [diff] [blame] | 1748 | assert(!Attr.isInvalid()); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1749 | if (isa<VarDecl>(D)) | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1750 | D->addAttr(::new (S.Context) | 
|  | 1751 | CommonAttr(Attr.getRange(), S.Context, | 
|  | 1752 | Attr.getAttributeSpellingListIndex())); | 
| Eric Christopher | 722109c | 2010-12-03 06:58:14 +0000 | [diff] [blame] | 1753 | else | 
|  | 1754 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1755 | << Attr.getName() << ExpectedVariable; | 
| Eric Christopher | a6cf1e7 | 2010-12-02 02:45:55 +0000 | [diff] [blame] | 1756 | } | 
|  | 1757 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1758 | static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1759 | if (hasDeclarator(D)) return; | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 1760 |  | 
|  | 1761 | if (S.CheckNoReturnAttr(attr)) return; | 
|  | 1762 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1763 | if (!isa<ObjCMethodDecl>(D)) { | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 1764 | S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1765 | << attr.getName() << ExpectedFunctionOrMethod; | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 1766 | return; | 
|  | 1767 | } | 
|  | 1768 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1769 | D->addAttr(::new (S.Context) | 
|  | 1770 | NoReturnAttr(attr.getRange(), S.Context, | 
|  | 1771 | attr.getAttributeSpellingListIndex())); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 1772 | } | 
|  | 1773 |  | 
|  | 1774 | bool Sema::CheckNoReturnAttr(const AttributeList &attr) { | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 1775 | if (attr.hasParameterOrArguments()) { | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 1776 | Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 1777 | attr.setInvalid(); | 
|  | 1778 | return true; | 
|  | 1779 | } | 
|  | 1780 |  | 
|  | 1781 | return false; | 
| Ted Kremenek | b725232 | 2009-04-10 00:01:14 +0000 | [diff] [blame] | 1782 | } | 
|  | 1783 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1784 | static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D, | 
|  | 1785 | const AttributeList &Attr) { | 
| Ted Kremenek | b56c1cc | 2010-08-19 00:51:58 +0000 | [diff] [blame] | 1786 |  | 
|  | 1787 | // The checking path for 'noreturn' and 'analyzer_noreturn' are different | 
|  | 1788 | // because 'analyzer_noreturn' does not impact the type. | 
|  | 1789 |  | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 1790 | if(!checkAttributeNumArgs(S, Attr, 0)) | 
|  | 1791 | return; | 
| Ted Kremenek | b56c1cc | 2010-08-19 00:51:58 +0000 | [diff] [blame] | 1792 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1793 | if (!isFunctionOrMethod(D) && !isa<BlockDecl>(D)) { | 
|  | 1794 | ValueDecl *VD = dyn_cast<ValueDecl>(D); | 
| Ted Kremenek | b56c1cc | 2010-08-19 00:51:58 +0000 | [diff] [blame] | 1795 | if (VD == 0 || (!VD->getType()->isBlockPointerType() | 
|  | 1796 | && !VD->getType()->isFunctionPointerType())) { | 
|  | 1797 | S.Diag(Attr.getLoc(), | 
| Richard Smith | 4e24f0f | 2013-01-02 12:01:23 +0000 | [diff] [blame] | 1798 | Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type | 
| Ted Kremenek | b56c1cc | 2010-08-19 00:51:58 +0000 | [diff] [blame] | 1799 | : diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1800 | << Attr.getName() << ExpectedFunctionMethodOrBlock; | 
| Ted Kremenek | b56c1cc | 2010-08-19 00:51:58 +0000 | [diff] [blame] | 1801 | return; | 
|  | 1802 | } | 
|  | 1803 | } | 
|  | 1804 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1805 | D->addAttr(::new (S.Context) | 
|  | 1806 | AnalyzerNoReturnAttr(Attr.getRange(), S.Context, | 
|  | 1807 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 1808 | } | 
|  | 1809 |  | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 1810 | static void handleCXX11NoReturnAttr(Sema &S, Decl *D, | 
|  | 1811 | const AttributeList &Attr) { | 
|  | 1812 | // C++11 [dcl.attr.noreturn]p1: | 
|  | 1813 | //   The attribute may be applied to the declarator-id in a function | 
|  | 1814 | //   declaration. | 
|  | 1815 | FunctionDecl *FD = dyn_cast<FunctionDecl>(D); | 
|  | 1816 | if (!FD) { | 
|  | 1817 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 1818 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 1819 | return; | 
|  | 1820 | } | 
|  | 1821 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1822 | D->addAttr(::new (S.Context) | 
|  | 1823 | CXX11NoReturnAttr(Attr.getRange(), S.Context, | 
|  | 1824 | Attr.getAttributeSpellingListIndex())); | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 1825 | } | 
|  | 1826 |  | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1827 | // PS3 PPU-specific. | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1828 | static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1829 | /* | 
|  | 1830 | Returning a Vector Class in Registers | 
|  | 1831 |  | 
| Eric Christopher | f48f367 | 2010-12-01 22:13:54 +0000 | [diff] [blame] | 1832 | According to the PPU ABI specifications, a class with a single member of | 
|  | 1833 | vector type is returned in memory when used as the return value of a function. | 
|  | 1834 | This results in inefficient code when implementing vector classes. To return | 
|  | 1835 | the value in a single vector register, add the vecreturn attribute to the | 
|  | 1836 | class definition. This attribute is also applicable to struct types. | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1837 |  | 
|  | 1838 | Example: | 
|  | 1839 |  | 
|  | 1840 | struct Vector | 
|  | 1841 | { | 
|  | 1842 | __vector float xyzw; | 
|  | 1843 | } __attribute__((vecreturn)); | 
|  | 1844 |  | 
|  | 1845 | Vector Add(Vector lhs, Vector rhs) | 
|  | 1846 | { | 
|  | 1847 | Vector result; | 
|  | 1848 | result.xyzw = vec_add(lhs.xyzw, rhs.xyzw); | 
|  | 1849 | return result; // This will be returned in a register | 
|  | 1850 | } | 
|  | 1851 | */ | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1852 | if (!isa<RecordDecl>(D)) { | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1853 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1854 | << Attr.getName() << ExpectedClass; | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1855 | return; | 
|  | 1856 | } | 
|  | 1857 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1858 | if (D->getAttr<VecReturnAttr>()) { | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1859 | S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << "vecreturn"; | 
|  | 1860 | return; | 
|  | 1861 | } | 
|  | 1862 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1863 | RecordDecl *record = cast<RecordDecl>(D); | 
| John Thompson | 01add59 | 2010-09-18 01:12:07 +0000 | [diff] [blame] | 1864 | int count = 0; | 
|  | 1865 |  | 
|  | 1866 | if (!isa<CXXRecordDecl>(record)) { | 
|  | 1867 | S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member); | 
|  | 1868 | return; | 
|  | 1869 | } | 
|  | 1870 |  | 
|  | 1871 | if (!cast<CXXRecordDecl>(record)->isPOD()) { | 
|  | 1872 | S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record); | 
|  | 1873 | return; | 
|  | 1874 | } | 
|  | 1875 |  | 
| Eric Christopher | f48f367 | 2010-12-01 22:13:54 +0000 | [diff] [blame] | 1876 | for (RecordDecl::field_iterator iter = record->field_begin(); | 
|  | 1877 | iter != record->field_end(); iter++) { | 
| John Thompson | 01add59 | 2010-09-18 01:12:07 +0000 | [diff] [blame] | 1878 | if ((count == 1) || !iter->getType()->isVectorType()) { | 
|  | 1879 | S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member); | 
|  | 1880 | return; | 
|  | 1881 | } | 
|  | 1882 | count++; | 
|  | 1883 | } | 
|  | 1884 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1885 | D->addAttr(::new (S.Context) | 
|  | 1886 | VecReturnAttr(Attr.getRange(), S.Context, | 
|  | 1887 | Attr.getAttributeSpellingListIndex())); | 
| John Thompson | 35cc962 | 2010-08-09 21:53:52 +0000 | [diff] [blame] | 1888 | } | 
|  | 1889 |  | 
| Richard Smith | 3a2b7a1 | 2013-01-28 22:42:45 +0000 | [diff] [blame] | 1890 | static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D, | 
|  | 1891 | const AttributeList &Attr) { | 
|  | 1892 | if (isa<ParmVarDecl>(D)) { | 
|  | 1893 | // [[carries_dependency]] can only be applied to a parameter if it is a | 
|  | 1894 | // parameter of a function declaration or lambda. | 
|  | 1895 | if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) { | 
|  | 1896 | S.Diag(Attr.getLoc(), | 
|  | 1897 | diag::err_carries_dependency_param_not_function_decl); | 
|  | 1898 | return; | 
|  | 1899 | } | 
|  | 1900 | } else if (!isa<FunctionDecl>(D)) { | 
| Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1901 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1902 | << Attr.getName() << ExpectedFunctionMethodOrParameter; | 
| Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1903 | return; | 
|  | 1904 | } | 
| Richard Smith | 3a2b7a1 | 2013-01-28 22:42:45 +0000 | [diff] [blame] | 1905 |  | 
|  | 1906 | D->addAttr(::new (S.Context) CarriesDependencyAttr( | 
|  | 1907 | Attr.getRange(), S.Context, | 
|  | 1908 | Attr.getAttributeSpellingListIndex())); | 
| Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1909 | } | 
|  | 1910 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1911 | static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Ted Kremenek | 7379889 | 2008-07-25 04:39:19 +0000 | [diff] [blame] | 1912 | // check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 1913 | if (Attr.hasParameterOrArguments()) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1914 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
| Ted Kremenek | 7379889 | 2008-07-25 04:39:19 +0000 | [diff] [blame] | 1915 | return; | 
|  | 1916 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1917 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1918 | if (!isa<VarDecl>(D) && !isa<ObjCIvarDecl>(D) && !isFunctionOrMethod(D) && | 
| Daniel Jasper | 568eae4 | 2012-06-13 18:31:09 +0000 | [diff] [blame] | 1919 | !isa<TypeDecl>(D) && !isa<LabelDecl>(D) && !isa<FieldDecl>(D)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1920 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1921 | << Attr.getName() << ExpectedVariableFunctionOrLabel; | 
| Ted Kremenek | 7379889 | 2008-07-25 04:39:19 +0000 | [diff] [blame] | 1922 | return; | 
|  | 1923 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1924 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1925 | D->addAttr(::new (S.Context) | 
|  | 1926 | UnusedAttr(Attr.getRange(), S.Context, | 
|  | 1927 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 7379889 | 2008-07-25 04:39:19 +0000 | [diff] [blame] | 1928 | } | 
|  | 1929 |  | 
| Rafael Espindola | f87cced | 2011-10-03 14:59:42 +0000 | [diff] [blame] | 1930 | static void handleReturnsTwiceAttr(Sema &S, Decl *D, | 
|  | 1931 | const AttributeList &Attr) { | 
|  | 1932 | // check the attribute arguments. | 
|  | 1933 | if (Attr.hasParameterOrArguments()) { | 
|  | 1934 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 1935 | return; | 
|  | 1936 | } | 
|  | 1937 |  | 
|  | 1938 | if (!isa<FunctionDecl>(D)) { | 
|  | 1939 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 1940 | << Attr.getName() << ExpectedFunction; | 
|  | 1941 | return; | 
|  | 1942 | } | 
|  | 1943 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1944 | D->addAttr(::new (S.Context) | 
|  | 1945 | ReturnsTwiceAttr(Attr.getRange(), S.Context, | 
|  | 1946 | Attr.getAttributeSpellingListIndex())); | 
| Rafael Espindola | f87cced | 2011-10-03 14:59:42 +0000 | [diff] [blame] | 1947 | } | 
|  | 1948 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1949 | static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1950 | // check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 1951 | if (Attr.hasParameterOrArguments()) { | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1952 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 1953 | return; | 
|  | 1954 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1955 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1956 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { | 
| Daniel Dunbar | 186204b | 2009-02-13 22:48:56 +0000 | [diff] [blame] | 1957 | if (VD->hasLocalStorage() || VD->hasExternalStorage()) { | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1958 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "used"; | 
|  | 1959 | return; | 
|  | 1960 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1961 | } else if (!isFunctionOrMethod(D)) { | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1962 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1963 | << Attr.getName() << ExpectedVariableOrFunction; | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1964 | return; | 
|  | 1965 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1966 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1967 | D->addAttr(::new (S.Context) | 
|  | 1968 | UsedAttr(Attr.getRange(), S.Context, | 
|  | 1969 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | b805dad | 2009-02-13 19:23:53 +0000 | [diff] [blame] | 1970 | } | 
|  | 1971 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 1972 | static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1973 | // check the attribute arguments. | 
| John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 1974 | if (Attr.getNumArgs() > 1) { | 
|  | 1975 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1; | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1976 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1977 | } | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1978 |  | 
|  | 1979 | int priority = 65535; // FIXME: Do not hardcode such constants. | 
|  | 1980 | if (Attr.getNumArgs() > 0) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 1981 | Expr *E = Attr.getArg(0); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1982 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 1983 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 1984 | !E->isIntegerConstantExpr(Idx, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1985 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 1986 | << "constructor" << 1 << E->getSourceRange(); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1987 | return; | 
|  | 1988 | } | 
|  | 1989 | priority = Idx.getZExtValue(); | 
|  | 1990 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 1991 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 1992 | if (!isa<FunctionDecl>(D)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1993 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 1994 | << Attr.getName() << ExpectedFunction; | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 1995 | return; | 
|  | 1996 | } | 
|  | 1997 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 1998 | D->addAttr(::new (S.Context) | 
|  | 1999 | ConstructorAttr(Attr.getRange(), S.Context, priority, | 
|  | 2000 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2001 | } | 
|  | 2002 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2003 | static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2004 | // check the attribute arguments. | 
| John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 2005 | if (Attr.getNumArgs() > 1) { | 
|  | 2006 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1; | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2007 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2008 | } | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2009 |  | 
|  | 2010 | int priority = 65535; // FIXME: Do not hardcode such constants. | 
|  | 2011 | if (Attr.getNumArgs() > 0) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2012 | Expr *E = Attr.getArg(0); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2013 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 2014 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 2015 | !E->isIntegerConstantExpr(Idx, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2016 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2017 | << "destructor" << 1 << E->getSourceRange(); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2018 | return; | 
|  | 2019 | } | 
|  | 2020 | priority = Idx.getZExtValue(); | 
|  | 2021 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2022 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2023 | if (!isa<FunctionDecl>(D)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2024 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 2025 | << Attr.getName() << ExpectedFunction; | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2026 | return; | 
|  | 2027 | } | 
|  | 2028 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2029 | D->addAttr(::new (S.Context) | 
|  | 2030 | DestructorAttr(Attr.getRange(), S.Context, priority, | 
|  | 2031 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | 3068ae0 | 2008-07-31 22:40:48 +0000 | [diff] [blame] | 2032 | } | 
|  | 2033 |  | 
| Benjamin Kramer | bc3260d | 2012-05-16 12:19:08 +0000 | [diff] [blame] | 2034 | template <typename AttrTy> | 
|  | 2035 | static void handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr, | 
|  | 2036 | const char *Name) { | 
| Chris Lattner | 951bbb2 | 2011-02-24 05:42:24 +0000 | [diff] [blame] | 2037 | unsigned NumArgs = Attr.getNumArgs(); | 
|  | 2038 | if (NumArgs > 1) { | 
| John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 2039 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2040 | return; | 
|  | 2041 | } | 
| Benjamin Kramer | bc3260d | 2012-05-16 12:19:08 +0000 | [diff] [blame] | 2042 |  | 
|  | 2043 | // Handle the case where the attribute has a text message. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2044 | StringRef Str; | 
| Chris Lattner | 951bbb2 | 2011-02-24 05:42:24 +0000 | [diff] [blame] | 2045 | if (NumArgs == 1) { | 
|  | 2046 | StringLiteral *SE = dyn_cast<StringLiteral>(Attr.getArg(0)); | 
| Fariborz Jahanian | c4b35cf | 2010-10-06 21:18:44 +0000 | [diff] [blame] | 2047 | if (!SE) { | 
| Chris Lattner | 951bbb2 | 2011-02-24 05:42:24 +0000 | [diff] [blame] | 2048 | S.Diag(Attr.getArg(0)->getLocStart(), diag::err_attribute_not_string) | 
| Benjamin Kramer | bc3260d | 2012-05-16 12:19:08 +0000 | [diff] [blame] | 2049 | << Name; | 
| Fariborz Jahanian | c4b35cf | 2010-10-06 21:18:44 +0000 | [diff] [blame] | 2050 | return; | 
|  | 2051 | } | 
| Chris Lattner | 951bbb2 | 2011-02-24 05:42:24 +0000 | [diff] [blame] | 2052 | Str = SE->getString(); | 
| Fariborz Jahanian | c4b35cf | 2010-10-06 21:18:44 +0000 | [diff] [blame] | 2053 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2054 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2055 | D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str, | 
|  | 2056 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | bc1c877 | 2008-12-17 01:07:27 +0000 | [diff] [blame] | 2057 | } | 
|  | 2058 |  | 
| Fariborz Jahanian | 742352a | 2011-07-06 19:24:05 +0000 | [diff] [blame] | 2059 | static void handleArcWeakrefUnavailableAttr(Sema &S, Decl *D, | 
|  | 2060 | const AttributeList &Attr) { | 
|  | 2061 | unsigned NumArgs = Attr.getNumArgs(); | 
|  | 2062 | if (NumArgs > 0) { | 
|  | 2063 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0; | 
|  | 2064 | return; | 
|  | 2065 | } | 
|  | 2066 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2067 | D->addAttr(::new (S.Context) | 
|  | 2068 | ArcWeakrefUnavailableAttr(Attr.getRange(), S.Context, | 
|  | 2069 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | 742352a | 2011-07-06 19:24:05 +0000 | [diff] [blame] | 2070 | } | 
|  | 2071 |  | 
| Patrick Beard | b2f6820 | 2012-04-06 18:12:22 +0000 | [diff] [blame] | 2072 | static void handleObjCRootClassAttr(Sema &S, Decl *D, | 
|  | 2073 | const AttributeList &Attr) { | 
|  | 2074 | if (!isa<ObjCInterfaceDecl>(D)) { | 
|  | 2075 | S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface); | 
|  | 2076 | return; | 
|  | 2077 | } | 
|  | 2078 |  | 
|  | 2079 | unsigned NumArgs = Attr.getNumArgs(); | 
|  | 2080 | if (NumArgs > 0) { | 
|  | 2081 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0; | 
|  | 2082 | return; | 
|  | 2083 | } | 
|  | 2084 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2085 | D->addAttr(::new (S.Context) | 
|  | 2086 | ObjCRootClassAttr(Attr.getRange(), S.Context, | 
|  | 2087 | Attr.getAttributeSpellingListIndex())); | 
| Patrick Beard | b2f6820 | 2012-04-06 18:12:22 +0000 | [diff] [blame] | 2088 | } | 
|  | 2089 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2090 | static void handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D, | 
|  | 2091 | const AttributeList &Attr) { | 
| Fariborz Jahanian | 341b8be | 2012-01-03 22:52:32 +0000 | [diff] [blame] | 2092 | if (!isa<ObjCInterfaceDecl>(D)) { | 
|  | 2093 | S.Diag(Attr.getLoc(), diag::err_suppress_autosynthesis); | 
|  | 2094 | return; | 
|  | 2095 | } | 
|  | 2096 |  | 
| Fariborz Jahanian | e23dcf3 | 2012-01-03 18:45:41 +0000 | [diff] [blame] | 2097 | unsigned NumArgs = Attr.getNumArgs(); | 
|  | 2098 | if (NumArgs > 0) { | 
|  | 2099 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 0; | 
|  | 2100 | return; | 
|  | 2101 | } | 
|  | 2102 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2103 | D->addAttr(::new (S.Context) | 
|  | 2104 | ObjCRequiresPropertyDefsAttr(Attr.getRange(), S.Context, | 
|  | 2105 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | e23dcf3 | 2012-01-03 18:45:41 +0000 | [diff] [blame] | 2106 | } | 
|  | 2107 |  | 
| Jordy Rose | fad5de9 | 2012-05-08 03:27:22 +0000 | [diff] [blame] | 2108 | static bool checkAvailabilityAttr(Sema &S, SourceRange Range, | 
|  | 2109 | IdentifierInfo *Platform, | 
|  | 2110 | VersionTuple Introduced, | 
|  | 2111 | VersionTuple Deprecated, | 
|  | 2112 | VersionTuple Obsoleted) { | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2113 | StringRef PlatformName | 
|  | 2114 | = AvailabilityAttr::getPrettyPlatformName(Platform->getName()); | 
|  | 2115 | if (PlatformName.empty()) | 
|  | 2116 | PlatformName = Platform->getName(); | 
|  | 2117 |  | 
|  | 2118 | // Ensure that Introduced <= Deprecated <= Obsoleted (although not all | 
|  | 2119 | // of these steps are needed). | 
|  | 2120 | if (!Introduced.empty() && !Deprecated.empty() && | 
|  | 2121 | !(Introduced <= Deprecated)) { | 
|  | 2122 | S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) | 
|  | 2123 | << 1 << PlatformName << Deprecated.getAsString() | 
|  | 2124 | << 0 << Introduced.getAsString(); | 
|  | 2125 | return true; | 
|  | 2126 | } | 
|  | 2127 |  | 
|  | 2128 | if (!Introduced.empty() && !Obsoleted.empty() && | 
|  | 2129 | !(Introduced <= Obsoleted)) { | 
|  | 2130 | S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) | 
|  | 2131 | << 2 << PlatformName << Obsoleted.getAsString() | 
|  | 2132 | << 0 << Introduced.getAsString(); | 
|  | 2133 | return true; | 
|  | 2134 | } | 
|  | 2135 |  | 
|  | 2136 | if (!Deprecated.empty() && !Obsoleted.empty() && | 
|  | 2137 | !(Deprecated <= Obsoleted)) { | 
|  | 2138 | S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) | 
|  | 2139 | << 2 << PlatformName << Obsoleted.getAsString() | 
|  | 2140 | << 1 << Deprecated.getAsString(); | 
|  | 2141 | return true; | 
|  | 2142 | } | 
|  | 2143 |  | 
|  | 2144 | return false; | 
|  | 2145 | } | 
|  | 2146 |  | 
| Douglas Gregor | f4d918f | 2013-01-15 22:43:08 +0000 | [diff] [blame] | 2147 | /// \brief Check whether the two versions match. | 
|  | 2148 | /// | 
|  | 2149 | /// If either version tuple is empty, then they are assumed to match. If | 
|  | 2150 | /// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y. | 
|  | 2151 | static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y, | 
|  | 2152 | bool BeforeIsOkay) { | 
|  | 2153 | if (X.empty() || Y.empty()) | 
|  | 2154 | return true; | 
|  | 2155 |  | 
|  | 2156 | if (X == Y) | 
|  | 2157 | return true; | 
|  | 2158 |  | 
|  | 2159 | if (BeforeIsOkay && X < Y) | 
|  | 2160 | return true; | 
|  | 2161 |  | 
|  | 2162 | return false; | 
|  | 2163 | } | 
|  | 2164 |  | 
| Rafael Espindola | 51be6e3 | 2013-01-08 22:04:34 +0000 | [diff] [blame] | 2165 | AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range, | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2166 | IdentifierInfo *Platform, | 
|  | 2167 | VersionTuple Introduced, | 
|  | 2168 | VersionTuple Deprecated, | 
|  | 2169 | VersionTuple Obsoleted, | 
|  | 2170 | bool IsUnavailable, | 
| Douglas Gregor | f4d918f | 2013-01-15 22:43:08 +0000 | [diff] [blame] | 2171 | StringRef Message, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2172 | bool Override, | 
|  | 2173 | unsigned AttrSpellingListIndex) { | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2174 | VersionTuple MergedIntroduced = Introduced; | 
|  | 2175 | VersionTuple MergedDeprecated = Deprecated; | 
|  | 2176 | VersionTuple MergedObsoleted = Obsoleted; | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2177 | bool FoundAny = false; | 
|  | 2178 |  | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2179 | if (D->hasAttrs()) { | 
|  | 2180 | AttrVec &Attrs = D->getAttrs(); | 
|  | 2181 | for (unsigned i = 0, e = Attrs.size(); i != e;) { | 
|  | 2182 | const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]); | 
|  | 2183 | if (!OldAA) { | 
|  | 2184 | ++i; | 
|  | 2185 | continue; | 
|  | 2186 | } | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2187 |  | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2188 | IdentifierInfo *OldPlatform = OldAA->getPlatform(); | 
|  | 2189 | if (OldPlatform != Platform) { | 
|  | 2190 | ++i; | 
|  | 2191 | continue; | 
|  | 2192 | } | 
|  | 2193 |  | 
|  | 2194 | FoundAny = true; | 
|  | 2195 | VersionTuple OldIntroduced = OldAA->getIntroduced(); | 
|  | 2196 | VersionTuple OldDeprecated = OldAA->getDeprecated(); | 
|  | 2197 | VersionTuple OldObsoleted = OldAA->getObsoleted(); | 
|  | 2198 | bool OldIsUnavailable = OldAA->getUnavailable(); | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2199 |  | 
| Douglas Gregor | f4d918f | 2013-01-15 22:43:08 +0000 | [diff] [blame] | 2200 | if (!versionsMatch(OldIntroduced, Introduced, Override) || | 
|  | 2201 | !versionsMatch(Deprecated, OldDeprecated, Override) || | 
|  | 2202 | !versionsMatch(Obsoleted, OldObsoleted, Override) || | 
|  | 2203 | !(OldIsUnavailable == IsUnavailable || | 
| Douglas Gregor | 72daa3f | 2013-01-16 00:54:48 +0000 | [diff] [blame] | 2204 | (Override && !OldIsUnavailable && IsUnavailable))) { | 
| Douglas Gregor | f4d918f | 2013-01-15 22:43:08 +0000 | [diff] [blame] | 2205 | if (Override) { | 
|  | 2206 | int Which = -1; | 
|  | 2207 | VersionTuple FirstVersion; | 
|  | 2208 | VersionTuple SecondVersion; | 
|  | 2209 | if (!versionsMatch(OldIntroduced, Introduced, Override)) { | 
|  | 2210 | Which = 0; | 
|  | 2211 | FirstVersion = OldIntroduced; | 
|  | 2212 | SecondVersion = Introduced; | 
|  | 2213 | } else if (!versionsMatch(Deprecated, OldDeprecated, Override)) { | 
|  | 2214 | Which = 1; | 
|  | 2215 | FirstVersion = Deprecated; | 
|  | 2216 | SecondVersion = OldDeprecated; | 
|  | 2217 | } else if (!versionsMatch(Obsoleted, OldObsoleted, Override)) { | 
|  | 2218 | Which = 2; | 
|  | 2219 | FirstVersion = Obsoleted; | 
|  | 2220 | SecondVersion = OldObsoleted; | 
|  | 2221 | } | 
|  | 2222 |  | 
|  | 2223 | if (Which == -1) { | 
|  | 2224 | Diag(OldAA->getLocation(), | 
|  | 2225 | diag::warn_mismatched_availability_override_unavail) | 
|  | 2226 | << AvailabilityAttr::getPrettyPlatformName(Platform->getName()); | 
|  | 2227 | } else { | 
|  | 2228 | Diag(OldAA->getLocation(), | 
|  | 2229 | diag::warn_mismatched_availability_override) | 
|  | 2230 | << Which | 
|  | 2231 | << AvailabilityAttr::getPrettyPlatformName(Platform->getName()) | 
|  | 2232 | << FirstVersion.getAsString() << SecondVersion.getAsString(); | 
|  | 2233 | } | 
|  | 2234 | Diag(Range.getBegin(), diag::note_overridden_method); | 
|  | 2235 | } else { | 
|  | 2236 | Diag(OldAA->getLocation(), diag::warn_mismatched_availability); | 
|  | 2237 | Diag(Range.getBegin(), diag::note_previous_attribute); | 
|  | 2238 | } | 
|  | 2239 |  | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2240 | Attrs.erase(Attrs.begin() + i); | 
|  | 2241 | --e; | 
|  | 2242 | continue; | 
|  | 2243 | } | 
|  | 2244 |  | 
|  | 2245 | VersionTuple MergedIntroduced2 = MergedIntroduced; | 
|  | 2246 | VersionTuple MergedDeprecated2 = MergedDeprecated; | 
|  | 2247 | VersionTuple MergedObsoleted2 = MergedObsoleted; | 
|  | 2248 |  | 
|  | 2249 | if (MergedIntroduced2.empty()) | 
|  | 2250 | MergedIntroduced2 = OldIntroduced; | 
|  | 2251 | if (MergedDeprecated2.empty()) | 
|  | 2252 | MergedDeprecated2 = OldDeprecated; | 
|  | 2253 | if (MergedObsoleted2.empty()) | 
|  | 2254 | MergedObsoleted2 = OldObsoleted; | 
|  | 2255 |  | 
|  | 2256 | if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform, | 
|  | 2257 | MergedIntroduced2, MergedDeprecated2, | 
|  | 2258 | MergedObsoleted2)) { | 
|  | 2259 | Attrs.erase(Attrs.begin() + i); | 
|  | 2260 | --e; | 
|  | 2261 | continue; | 
|  | 2262 | } | 
|  | 2263 |  | 
|  | 2264 | MergedIntroduced = MergedIntroduced2; | 
|  | 2265 | MergedDeprecated = MergedDeprecated2; | 
|  | 2266 | MergedObsoleted = MergedObsoleted2; | 
|  | 2267 | ++i; | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2268 | } | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2269 | } | 
|  | 2270 |  | 
|  | 2271 | if (FoundAny && | 
|  | 2272 | MergedIntroduced == Introduced && | 
|  | 2273 | MergedDeprecated == Deprecated && | 
|  | 2274 | MergedObsoleted == Obsoleted) | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2275 | return NULL; | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2276 |  | 
| Ted Kremenek | cb34439 | 2013-04-06 00:34:27 +0000 | [diff] [blame] | 2277 | // Only create a new attribute if !Override, but we want to do | 
|  | 2278 | // the checking. | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2279 | if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced, | 
| Ted Kremenek | cb34439 | 2013-04-06 00:34:27 +0000 | [diff] [blame] | 2280 | MergedDeprecated, MergedObsoleted) && | 
|  | 2281 | !Override) { | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2282 | return ::new (Context) AvailabilityAttr(Range, Context, Platform, | 
|  | 2283 | Introduced, Deprecated, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2284 | Obsoleted, IsUnavailable, Message, | 
|  | 2285 | AttrSpellingListIndex); | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2286 | } | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2287 | return NULL; | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2288 | } | 
|  | 2289 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2290 | static void handleAvailabilityAttr(Sema &S, Decl *D, | 
|  | 2291 | const AttributeList &Attr) { | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2292 | IdentifierInfo *Platform = Attr.getParameterName(); | 
|  | 2293 | SourceLocation PlatformLoc = Attr.getParameterLoc(); | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2294 | unsigned Index = Attr.getAttributeSpellingListIndex(); | 
|  | 2295 |  | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2296 | if (AvailabilityAttr::getPrettyPlatformName(Platform->getName()).empty()) | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2297 | S.Diag(PlatformLoc, diag::warn_availability_unknown_platform) | 
|  | 2298 | << Platform; | 
|  | 2299 |  | 
| Rafael Espindola | 8c4222a | 2013-01-08 21:30:32 +0000 | [diff] [blame] | 2300 | NamedDecl *ND = dyn_cast<NamedDecl>(D); | 
|  | 2301 | if (!ND) { | 
|  | 2302 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); | 
|  | 2303 | return; | 
|  | 2304 | } | 
|  | 2305 |  | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2306 | AvailabilityChange Introduced = Attr.getAvailabilityIntroduced(); | 
|  | 2307 | AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated(); | 
|  | 2308 | AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted(); | 
| Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 2309 | bool IsUnavailable = Attr.getUnavailableLoc().isValid(); | 
| Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 2310 | StringRef Str; | 
|  | 2311 | const StringLiteral *SE = | 
|  | 2312 | dyn_cast_or_null<const StringLiteral>(Attr.getMessageExpr()); | 
|  | 2313 | if (SE) | 
|  | 2314 | Str = SE->getString(); | 
| Rafael Espindola | 3b29436 | 2012-05-06 19:56:25 +0000 | [diff] [blame] | 2315 |  | 
| Rafael Espindola | 51be6e3 | 2013-01-08 22:04:34 +0000 | [diff] [blame] | 2316 | AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2317 | Platform, | 
|  | 2318 | Introduced.Version, | 
|  | 2319 | Deprecated.Version, | 
|  | 2320 | Obsoleted.Version, | 
| Douglas Gregor | f4d918f | 2013-01-15 22:43:08 +0000 | [diff] [blame] | 2321 | IsUnavailable, Str, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2322 | /*Override=*/false, | 
|  | 2323 | Index); | 
| Rafael Espindola | 838dc59 | 2013-01-12 06:42:30 +0000 | [diff] [blame] | 2324 | if (NewAttr) | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2325 | D->addAttr(NewAttr); | 
| Rafael Espindola | 98ae834 | 2012-05-10 02:50:16 +0000 | [diff] [blame] | 2326 | } | 
|  | 2327 |  | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2328 | template <class T> | 
|  | 2329 | static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range, | 
|  | 2330 | typename T::VisibilityType value, | 
|  | 2331 | unsigned attrSpellingListIndex) { | 
|  | 2332 | T *existingAttr = D->getAttr<T>(); | 
|  | 2333 | if (existingAttr) { | 
|  | 2334 | typename T::VisibilityType existingValue = existingAttr->getVisibility(); | 
|  | 2335 | if (existingValue == value) | 
|  | 2336 | return NULL; | 
|  | 2337 | S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility); | 
|  | 2338 | S.Diag(range.getBegin(), diag::note_previous_attribute); | 
|  | 2339 | D->dropAttr<T>(); | 
|  | 2340 | } | 
|  | 2341 | return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex); | 
|  | 2342 | } | 
|  | 2343 |  | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2344 | VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2345 | VisibilityAttr::VisibilityType Vis, | 
|  | 2346 | unsigned AttrSpellingListIndex) { | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2347 | return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis, | 
|  | 2348 | AttrSpellingListIndex); | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2349 | } | 
|  | 2350 |  | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2351 | TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range, | 
|  | 2352 | TypeVisibilityAttr::VisibilityType Vis, | 
|  | 2353 | unsigned AttrSpellingListIndex) { | 
|  | 2354 | return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis, | 
|  | 2355 | AttrSpellingListIndex); | 
|  | 2356 | } | 
|  | 2357 |  | 
|  | 2358 | static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr, | 
|  | 2359 | bool isTypeVisibility) { | 
|  | 2360 | // Visibility attributes don't mean anything on a typedef. | 
|  | 2361 | if (isa<TypedefNameDecl>(D)) { | 
|  | 2362 | S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored) | 
|  | 2363 | << Attr.getName(); | 
|  | 2364 | return; | 
|  | 2365 | } | 
|  | 2366 |  | 
|  | 2367 | // 'type_visibility' can only go on a type or namespace. | 
|  | 2368 | if (isTypeVisibility && | 
|  | 2369 | !(isa<TagDecl>(D) || | 
|  | 2370 | isa<ObjCInterfaceDecl>(D) || | 
|  | 2371 | isa<NamespaceDecl>(D))) { | 
|  | 2372 | S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type) | 
|  | 2373 | << Attr.getName() << ExpectedTypeOrNamespace; | 
|  | 2374 | return; | 
|  | 2375 | } | 
|  | 2376 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2377 | // check the attribute arguments. | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2378 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2379 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2380 |  | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2381 | Expr *Arg = Attr.getArg(0); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2382 | Arg = Arg->IgnoreParenCasts(); | 
|  | 2383 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2384 |  | 
| Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2385 | if (!Str || !Str->isAscii()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2386 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2387 | << (isTypeVisibility ? "type_visibility" : "visibility") << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2388 | return; | 
|  | 2389 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2390 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2391 | StringRef TypeStr = Str->getString(); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2392 | VisibilityAttr::VisibilityType type; | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2393 |  | 
| Benjamin Kramer | c96f494 | 2010-01-23 18:16:35 +0000 | [diff] [blame] | 2394 | if (TypeStr == "default") | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2395 | type = VisibilityAttr::Default; | 
| Benjamin Kramer | c96f494 | 2010-01-23 18:16:35 +0000 | [diff] [blame] | 2396 | else if (TypeStr == "hidden") | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2397 | type = VisibilityAttr::Hidden; | 
| Benjamin Kramer | c96f494 | 2010-01-23 18:16:35 +0000 | [diff] [blame] | 2398 | else if (TypeStr == "internal") | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2399 | type = VisibilityAttr::Hidden; // FIXME | 
| John McCall | 4188760 | 2012-01-29 01:20:30 +0000 | [diff] [blame] | 2400 | else if (TypeStr == "protected") { | 
|  | 2401 | // Complain about attempts to use protected visibility on targets | 
|  | 2402 | // (like Darwin) that don't support it. | 
|  | 2403 | if (!S.Context.getTargetInfo().hasProtectedVisibility()) { | 
|  | 2404 | S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility); | 
|  | 2405 | type = VisibilityAttr::Default; | 
|  | 2406 | } else { | 
|  | 2407 | type = VisibilityAttr::Protected; | 
|  | 2408 | } | 
|  | 2409 | } else { | 
| Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 2410 | S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_visibility) << TypeStr; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2411 | return; | 
|  | 2412 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2413 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2414 | unsigned Index = Attr.getAttributeSpellingListIndex(); | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 2415 | clang::Attr *newAttr; | 
|  | 2416 | if (isTypeVisibility) { | 
|  | 2417 | newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(), | 
|  | 2418 | (TypeVisibilityAttr::VisibilityType) type, | 
|  | 2419 | Index); | 
|  | 2420 | } else { | 
|  | 2421 | newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index); | 
|  | 2422 | } | 
|  | 2423 | if (newAttr) | 
|  | 2424 | D->addAttr(newAttr); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2425 | } | 
|  | 2426 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2427 | static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl, | 
|  | 2428 | const AttributeList &Attr) { | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2429 | ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(decl); | 
|  | 2430 | if (!method) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2431 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 2432 | << ExpectedMethod; | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2433 | return; | 
|  | 2434 | } | 
|  | 2435 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2436 | if (Attr.getNumArgs() != 0 || !Attr.getParameterName()) { | 
|  | 2437 | if (!Attr.getParameterName() && Attr.getNumArgs() == 1) { | 
|  | 2438 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2439 | << "objc_method_family" << 1; | 
|  | 2440 | } else { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2441 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2442 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2443 | Attr.setInvalid(); | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2444 | return; | 
|  | 2445 | } | 
|  | 2446 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2447 | StringRef param = Attr.getParameterName()->getName(); | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2448 | ObjCMethodFamilyAttr::FamilyKind family; | 
|  | 2449 | if (param == "none") | 
|  | 2450 | family = ObjCMethodFamilyAttr::OMF_None; | 
|  | 2451 | else if (param == "alloc") | 
|  | 2452 | family = ObjCMethodFamilyAttr::OMF_alloc; | 
|  | 2453 | else if (param == "copy") | 
|  | 2454 | family = ObjCMethodFamilyAttr::OMF_copy; | 
|  | 2455 | else if (param == "init") | 
|  | 2456 | family = ObjCMethodFamilyAttr::OMF_init; | 
|  | 2457 | else if (param == "mutableCopy") | 
|  | 2458 | family = ObjCMethodFamilyAttr::OMF_mutableCopy; | 
|  | 2459 | else if (param == "new") | 
|  | 2460 | family = ObjCMethodFamilyAttr::OMF_new; | 
|  | 2461 | else { | 
|  | 2462 | // Just warn and ignore it.  This is future-proof against new | 
|  | 2463 | // families being used in system headers. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2464 | S.Diag(Attr.getParameterLoc(), diag::warn_unknown_method_family); | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2465 | return; | 
|  | 2466 | } | 
|  | 2467 |  | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2468 | if (family == ObjCMethodFamilyAttr::OMF_init && | 
|  | 2469 | !method->getResultType()->isObjCObjectPointerType()) { | 
|  | 2470 | S.Diag(method->getLocation(), diag::err_init_method_bad_return_type) | 
|  | 2471 | << method->getResultType(); | 
|  | 2472 | // Ignore the attribute. | 
|  | 2473 | return; | 
|  | 2474 | } | 
|  | 2475 |  | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 2476 | method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(), | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2477 | S.Context, family)); | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 2478 | } | 
|  | 2479 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2480 | static void handleObjCExceptionAttr(Sema &S, Decl *D, | 
|  | 2481 | const AttributeList &Attr) { | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2482 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 0db29ec | 2009-02-14 08:09:34 +0000 | [diff] [blame] | 2483 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2484 |  | 
| Chris Lattner | 0db29ec | 2009-02-14 08:09:34 +0000 | [diff] [blame] | 2485 | ObjCInterfaceDecl *OCI = dyn_cast<ObjCInterfaceDecl>(D); | 
|  | 2486 | if (OCI == 0) { | 
|  | 2487 | S.Diag(Attr.getLoc(), diag::err_attribute_requires_objc_interface); | 
|  | 2488 | return; | 
|  | 2489 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2490 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2491 | D->addAttr(::new (S.Context) | 
|  | 2492 | ObjCExceptionAttr(Attr.getRange(), S.Context, | 
|  | 2493 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 0db29ec | 2009-02-14 08:09:34 +0000 | [diff] [blame] | 2494 | } | 
|  | 2495 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2496 | static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 2497 | if (Attr.getNumArgs() != 0) { | 
| John McCall | 2b7baf0 | 2010-05-28 18:25:28 +0000 | [diff] [blame] | 2498 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
| Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 2499 | return; | 
|  | 2500 | } | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2501 | if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { | 
| Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 2502 | QualType T = TD->getUnderlyingType(); | 
| Ted Kremenek | 9af9122 | 2012-08-29 22:54:47 +0000 | [diff] [blame] | 2503 | if (!T->isCARCBridgableType()) { | 
| Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 2504 | S.Diag(TD->getLocation(), diag::err_nsobject_attribute); | 
|  | 2505 | return; | 
|  | 2506 | } | 
|  | 2507 | } | 
| Fariborz Jahanian | 3427682 | 2012-05-31 23:18:32 +0000 | [diff] [blame] | 2508 | else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) { | 
|  | 2509 | QualType T = PD->getType(); | 
| Ted Kremenek | 9af9122 | 2012-08-29 22:54:47 +0000 | [diff] [blame] | 2510 | if (!T->isCARCBridgableType()) { | 
| Fariborz Jahanian | 3427682 | 2012-05-31 23:18:32 +0000 | [diff] [blame] | 2511 | S.Diag(PD->getLocation(), diag::err_nsobject_attribute); | 
|  | 2512 | return; | 
|  | 2513 | } | 
|  | 2514 | } | 
|  | 2515 | else { | 
| Ted Kremenek | f6e88d7 | 2012-03-01 01:40:32 +0000 | [diff] [blame] | 2516 | // It is okay to include this attribute on properties, e.g.: | 
|  | 2517 | // | 
|  | 2518 | //  @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject)); | 
|  | 2519 | // | 
|  | 2520 | // In this case it follows tradition and suppresses an error in the above | 
|  | 2521 | // case. | 
| Fariborz Jahanian | 9b2eb7b | 2011-11-29 01:48:40 +0000 | [diff] [blame] | 2522 | S.Diag(D->getLocation(), diag::warn_nsobject_attribute); | 
| Ted Kremenek | f6e88d7 | 2012-03-01 01:40:32 +0000 | [diff] [blame] | 2523 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2524 | D->addAttr(::new (S.Context) | 
|  | 2525 | ObjCNSObjectAttr(Attr.getRange(), S.Context, | 
|  | 2526 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 2527 | } | 
|  | 2528 |  | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2529 | static void | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2530 | handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2531 | if (Attr.getNumArgs() != 0) { | 
| John McCall | 2b7baf0 | 2010-05-28 18:25:28 +0000 | [diff] [blame] | 2532 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
| Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2533 | return; | 
|  | 2534 | } | 
|  | 2535 |  | 
|  | 2536 | if (!isa<FunctionDecl>(D)) { | 
|  | 2537 | S.Diag(Attr.getLoc(), diag::err_attribute_overloadable_not_function); | 
|  | 2538 | return; | 
|  | 2539 | } | 
|  | 2540 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2541 | D->addAttr(::new (S.Context) | 
|  | 2542 | OverloadableAttr(Attr.getRange(), S.Context, | 
|  | 2543 | Attr.getAttributeSpellingListIndex())); | 
| Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2544 | } | 
|  | 2545 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2546 | static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2547 | if (!Attr.getParameterName()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2548 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2549 | << "blocks" << 1; | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2550 | return; | 
|  | 2551 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2552 |  | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2553 | if (Attr.getNumArgs() != 0) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2554 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2555 | return; | 
|  | 2556 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2557 |  | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 2558 | BlocksAttr::BlockType type; | 
| Chris Lattner | 92e62b0 | 2008-11-20 04:42:34 +0000 | [diff] [blame] | 2559 | if (Attr.getParameterName()->isStr("byref")) | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2560 | type = BlocksAttr::ByRef; | 
|  | 2561 | else { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2562 | S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2563 | << "blocks" << Attr.getParameterName(); | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2564 | return; | 
|  | 2565 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2566 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2567 | D->addAttr(::new (S.Context) | 
|  | 2568 | BlocksAttr(Attr.getRange(), S.Context, type, | 
|  | 2569 | Attr.getAttributeSpellingListIndex())); | 
| Steve Naroff | 9eae576 | 2008-09-18 16:44:58 +0000 | [diff] [blame] | 2570 | } | 
|  | 2571 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2572 | static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2573 | // check the attribute arguments. | 
|  | 2574 | if (Attr.getNumArgs() > 2) { | 
| John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 2575 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2576 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2577 | } | 
|  | 2578 |  | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2579 | unsigned sentinel = 0; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2580 | if (Attr.getNumArgs() > 0) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2581 | Expr *E = Attr.getArg(0); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2582 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 2583 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 2584 | !E->isIntegerConstantExpr(Idx, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2585 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2586 | << "sentinel" << 1 << E->getSourceRange(); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2587 | return; | 
|  | 2588 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2589 |  | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2590 | if (Idx.isSigned() && Idx.isNegative()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2591 | S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero) | 
|  | 2592 | << E->getSourceRange(); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2593 | return; | 
|  | 2594 | } | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2595 |  | 
|  | 2596 | sentinel = Idx.getZExtValue(); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2597 | } | 
|  | 2598 |  | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2599 | unsigned nullPos = 0; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2600 | if (Attr.getNumArgs() > 1) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2601 | Expr *E = Attr.getArg(1); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2602 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 2603 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 2604 | !E->isIntegerConstantExpr(Idx, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2605 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2606 | << "sentinel" << 2 << E->getSourceRange(); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2607 | return; | 
|  | 2608 | } | 
|  | 2609 | nullPos = Idx.getZExtValue(); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2610 |  | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2611 | if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) { | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2612 | // FIXME: This error message could be improved, it would be nice | 
|  | 2613 | // to say what the bounds actually are. | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2614 | S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one) | 
|  | 2615 | << E->getSourceRange(); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2616 | return; | 
|  | 2617 | } | 
|  | 2618 | } | 
|  | 2619 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2620 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { | 
| John McCall | 3323fad | 2011-09-09 07:56:05 +0000 | [diff] [blame] | 2621 | const FunctionType *FT = FD->getType()->castAs<FunctionType>(); | 
| Chris Lattner | 897cd90 | 2009-03-17 23:03:47 +0000 | [diff] [blame] | 2622 | if (isa<FunctionNoProtoType>(FT)) { | 
|  | 2623 | S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments); | 
|  | 2624 | return; | 
|  | 2625 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2626 |  | 
| Chris Lattner | 897cd90 | 2009-03-17 23:03:47 +0000 | [diff] [blame] | 2627 | if (!cast<FunctionProtoType>(FT)->isVariadic()) { | 
| Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 2628 | S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2629 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2630 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2631 | } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2632 | if (!MD->isVariadic()) { | 
| Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 2633 | S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2634 | return; | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2635 | } | 
| Eli Friedman | a0b2ba1 | 2012-01-06 01:23:10 +0000 | [diff] [blame] | 2636 | } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) { | 
|  | 2637 | if (!BD->isVariadic()) { | 
|  | 2638 | S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1; | 
|  | 2639 | return; | 
|  | 2640 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2641 | } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) { | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2642 | QualType Ty = V->getType(); | 
| Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2643 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2644 | const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D) | 
| Eric Christopher | f48f367 | 2010-12-01 22:13:54 +0000 | [diff] [blame] | 2645 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2646 | if (!cast<FunctionProtoType>(FT)->isVariadic()) { | 
| Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 2647 | int m = Ty->isFunctionPointerType() ? 0 : 1; | 
|  | 2648 | S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m; | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2649 | return; | 
|  | 2650 | } | 
| Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2651 | } else { | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2652 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 2653 | << Attr.getName() << ExpectedFunctionMethodOrBlock; | 
| Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 2654 | return; | 
|  | 2655 | } | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2656 | } else { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2657 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 2658 | << Attr.getName() << ExpectedFunctionMethodOrBlock; | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2659 | return; | 
|  | 2660 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2661 | D->addAttr(::new (S.Context) | 
|  | 2662 | SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos, | 
|  | 2663 | Attr.getAttributeSpellingListIndex())); | 
| Anders Carlsson | 7709182 | 2008-10-05 18:05:59 +0000 | [diff] [blame] | 2664 | } | 
|  | 2665 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2666 | static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2667 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2668 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2669 | return; | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2670 |  | 
| Kaelyn Uhrain | 51ceb7b | 2012-11-12 23:48:05 +0000 | [diff] [blame] | 2671 | if (!isFunction(D) && !isa<ObjCMethodDecl>(D) && !isa<CXXRecordDecl>(D)) { | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2672 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| Kaelyn Uhrain | d449c79 | 2012-11-13 00:18:47 +0000 | [diff] [blame] | 2673 | << Attr.getName() << ExpectedFunctionMethodOrClass; | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2674 | return; | 
|  | 2675 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2676 |  | 
| Fariborz Jahanian | f031774 | 2010-03-30 18:22:15 +0000 | [diff] [blame] | 2677 | if (isFunction(D) && getFunctionType(D)->getResultType()->isVoidType()) { | 
|  | 2678 | S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method) | 
|  | 2679 | << Attr.getName() << 0; | 
| Nuno Lopes | f857798 | 2009-12-22 23:59:52 +0000 | [diff] [blame] | 2680 | return; | 
|  | 2681 | } | 
| Fariborz Jahanian | f031774 | 2010-03-30 18:22:15 +0000 | [diff] [blame] | 2682 | if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) | 
|  | 2683 | if (MD->getResultType()->isVoidType()) { | 
|  | 2684 | S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method) | 
|  | 2685 | << Attr.getName() << 1; | 
|  | 2686 | return; | 
|  | 2687 | } | 
|  | 2688 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2689 | D->addAttr(::new (S.Context) | 
|  | 2690 | WarnUnusedResultAttr(Attr.getRange(), S.Context, | 
|  | 2691 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 2692 | } | 
|  | 2693 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2694 | static void handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2695 | // check the attribute arguments. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2696 | if (Attr.hasParameterOrArguments()) { | 
|  | 2697 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2698 | return; | 
|  | 2699 | } | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2700 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2701 | if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D)) { | 
| Fariborz Jahanian | 13c7fcc | 2011-10-21 22:27:12 +0000 | [diff] [blame] | 2702 | if (isa<CXXRecordDecl>(D)) { | 
|  | 2703 | D->addAttr(::new (S.Context) WeakAttr(Attr.getRange(), S.Context)); | 
|  | 2704 | return; | 
|  | 2705 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2706 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 2707 | << Attr.getName() << ExpectedVariableOrFunction; | 
| Fariborz Jahanian | f23ecd9 | 2009-07-16 01:12:24 +0000 | [diff] [blame] | 2708 | return; | 
|  | 2709 | } | 
|  | 2710 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2711 | NamedDecl *nd = cast<NamedDecl>(D); | 
| John McCall | 332bb2a | 2011-02-08 22:35:49 +0000 | [diff] [blame] | 2712 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2713 | nd->addAttr(::new (S.Context) | 
|  | 2714 | WeakAttr(Attr.getRange(), S.Context, | 
|  | 2715 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2716 | } | 
|  | 2717 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2718 | static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2719 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2720 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2721 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2722 |  | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2723 |  | 
|  | 2724 | // weak_import only applies to variable & function declarations. | 
|  | 2725 | bool isDef = false; | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2726 | if (!D->canBeWeakImported(isDef)) { | 
|  | 2727 | if (isDef) | 
| Reid Kleckner | beba3e8 | 2013-05-20 21:53:29 +0000 | [diff] [blame^] | 2728 | S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition) | 
|  | 2729 | << "weak_import"; | 
| Douglas Gregor | def8631 | 2011-03-23 13:27:51 +0000 | [diff] [blame] | 2730 | else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) || | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2731 | (S.Context.getTargetInfo().getTriple().isOSDarwin() && | 
| Fariborz Jahanian | 90eed21 | 2011-10-26 23:59:12 +0000 | [diff] [blame] | 2732 | (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) { | 
| Douglas Gregor | def8631 | 2011-03-23 13:27:51 +0000 | [diff] [blame] | 2733 | // Nothing to warn about here. | 
|  | 2734 | } else | 
| Fariborz Jahanian | c034974 | 2010-04-13 20:22:35 +0000 | [diff] [blame] | 2735 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 2736 | << Attr.getName() << ExpectedVariableOrFunction; | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2737 |  | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2738 | return; | 
|  | 2739 | } | 
|  | 2740 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2741 | D->addAttr(::new (S.Context) | 
|  | 2742 | WeakImportAttr(Attr.getRange(), S.Context, | 
|  | 2743 | Attr.getAttributeSpellingListIndex())); | 
| Daniel Dunbar | 6e775db | 2009-03-06 06:39:57 +0000 | [diff] [blame] | 2744 | } | 
|  | 2745 |  | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2746 | // Handles reqd_work_group_size and work_group_size_hint. | 
|  | 2747 | static void handleWorkGroupSize(Sema &S, Decl *D, | 
| Nick Lewycky | 4ae89bc | 2012-07-24 01:31:55 +0000 | [diff] [blame] | 2748 | const AttributeList &Attr) { | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2749 | assert(Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize | 
|  | 2750 | || Attr.getKind() == AttributeList::AT_WorkGroupSizeHint); | 
|  | 2751 |  | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2752 | // Attribute has 3 arguments. | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2753 | if (!checkAttributeNumArgs(S, Attr, 3)) return; | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2754 |  | 
|  | 2755 | unsigned WGSize[3]; | 
|  | 2756 | for (unsigned i = 0; i < 3; ++i) { | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2757 | Expr *E = Attr.getArg(i); | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2758 | llvm::APSInt ArgNum(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 2759 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 2760 | !E->isIntegerConstantExpr(ArgNum, S.Context)) { | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2761 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2762 | << Attr.getName()->getName() << E->getSourceRange(); | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2763 | return; | 
|  | 2764 | } | 
|  | 2765 | WGSize[i] = (unsigned) ArgNum.getZExtValue(); | 
|  | 2766 | } | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2767 |  | 
|  | 2768 | if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize | 
|  | 2769 | && D->hasAttr<ReqdWorkGroupSizeAttr>()) { | 
|  | 2770 | ReqdWorkGroupSizeAttr *A = D->getAttr<ReqdWorkGroupSizeAttr>(); | 
|  | 2771 | if (!(A->getXDim() == WGSize[0] && | 
|  | 2772 | A->getYDim() == WGSize[1] && | 
|  | 2773 | A->getZDim() == WGSize[2])) { | 
|  | 2774 | S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << | 
|  | 2775 | Attr.getName(); | 
|  | 2776 | } | 
|  | 2777 | } | 
|  | 2778 |  | 
|  | 2779 | if (Attr.getKind() == AttributeList::AT_WorkGroupSizeHint | 
|  | 2780 | && D->hasAttr<WorkGroupSizeHintAttr>()) { | 
|  | 2781 | WorkGroupSizeHintAttr *A = D->getAttr<WorkGroupSizeHintAttr>(); | 
|  | 2782 | if (!(A->getXDim() == WGSize[0] && | 
|  | 2783 | A->getYDim() == WGSize[1] && | 
|  | 2784 | A->getZDim() == WGSize[2])) { | 
|  | 2785 | S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << | 
|  | 2786 | Attr.getName(); | 
|  | 2787 | } | 
|  | 2788 | } | 
|  | 2789 |  | 
|  | 2790 | if (Attr.getKind() == AttributeList::AT_ReqdWorkGroupSize) | 
|  | 2791 | D->addAttr(::new (S.Context) | 
|  | 2792 | ReqdWorkGroupSizeAttr(Attr.getRange(), S.Context, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2793 | WGSize[0], WGSize[1], WGSize[2], | 
|  | 2794 | Attr.getAttributeSpellingListIndex())); | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 2795 | else | 
|  | 2796 | D->addAttr(::new (S.Context) | 
|  | 2797 | WorkGroupSizeHintAttr(Attr.getRange(), S.Context, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2798 | WGSize[0], WGSize[1], WGSize[2], | 
|  | 2799 | Attr.getAttributeSpellingListIndex())); | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 2800 | } | 
|  | 2801 |  | 
| Joey Gouly | 37453b9 | 2013-03-08 09:42:32 +0000 | [diff] [blame] | 2802 | static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 2803 | assert(Attr.getKind() == AttributeList::AT_VecTypeHint); | 
|  | 2804 |  | 
|  | 2805 | // Attribute has 1 argument. | 
|  | 2806 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
|  | 2807 | return; | 
|  | 2808 |  | 
|  | 2809 | QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg()); | 
|  | 2810 |  | 
|  | 2811 | if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() && | 
|  | 2812 | (ParmType->isBooleanType() || | 
|  | 2813 | !ParmType->isIntegralType(S.getASTContext()))) { | 
|  | 2814 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint) | 
|  | 2815 | << ParmType; | 
|  | 2816 | return; | 
|  | 2817 | } | 
|  | 2818 |  | 
|  | 2819 | if (Attr.getKind() == AttributeList::AT_VecTypeHint && | 
|  | 2820 | D->hasAttr<VecTypeHintAttr>()) { | 
|  | 2821 | VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>(); | 
|  | 2822 | if (A->getTypeHint() != ParmType) { | 
|  | 2823 | S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName(); | 
|  | 2824 | return; | 
|  | 2825 | } | 
|  | 2826 | } | 
|  | 2827 |  | 
|  | 2828 | D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context, | 
|  | 2829 | ParmType, Attr.getLoc())); | 
|  | 2830 | } | 
|  | 2831 |  | 
| Joey Gouly | 96cead5 | 2013-03-14 09:54:43 +0000 | [diff] [blame] | 2832 | static void handleEndianAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 2833 | if (!dyn_cast<VarDecl>(D)) | 
|  | 2834 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) << "endian" | 
|  | 2835 | << 9; | 
|  | 2836 | StringRef EndianType = Attr.getParameterName()->getName(); | 
|  | 2837 | if (EndianType != "host" && EndianType != "device") | 
|  | 2838 | S.Diag(Attr.getLoc(), diag::warn_attribute_unknown_endian) << EndianType; | 
|  | 2839 | } | 
|  | 2840 |  | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2841 | SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2842 | StringRef Name, | 
|  | 2843 | unsigned AttrSpellingListIndex) { | 
| Rafael Espindola | 420efd8 | 2012-05-13 02:42:42 +0000 | [diff] [blame] | 2844 | if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) { | 
|  | 2845 | if (ExistingAttr->getName() == Name) | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2846 | return NULL; | 
| Rafael Espindola | 420efd8 | 2012-05-13 02:42:42 +0000 | [diff] [blame] | 2847 | Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section); | 
|  | 2848 | Diag(Range.getBegin(), diag::note_previous_attribute); | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2849 | return NULL; | 
| Rafael Espindola | 420efd8 | 2012-05-13 02:42:42 +0000 | [diff] [blame] | 2850 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2851 | return ::new (Context) SectionAttr(Range, Context, Name, | 
|  | 2852 | AttrSpellingListIndex); | 
| Rafael Espindola | 420efd8 | 2012-05-13 02:42:42 +0000 | [diff] [blame] | 2853 | } | 
|  | 2854 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2855 | static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2856 | // Attribute has no arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2857 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2858 | return; | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2859 |  | 
|  | 2860 | // Make sure that there is a string literal as the sections's single | 
|  | 2861 | // argument. | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 2862 | Expr *ArgExpr = Attr.getArg(0); | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 2863 | StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr); | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2864 | if (!SE) { | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 2865 | S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) << "section"; | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2866 | return; | 
|  | 2867 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2868 |  | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 2869 | // If the target wants to validate the section specifier, make it happen. | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2870 | std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(SE->getString()); | 
| Chris Lattner | a1e1dc7 | 2010-01-12 20:58:53 +0000 | [diff] [blame] | 2871 | if (!Error.empty()) { | 
|  | 2872 | S.Diag(SE->getLocStart(), diag::err_attribute_section_invalid_for_target) | 
|  | 2873 | << Error; | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 2874 | return; | 
|  | 2875 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2876 |  | 
| Chris Lattner | a1e1dc7 | 2010-01-12 20:58:53 +0000 | [diff] [blame] | 2877 | // This attribute cannot be applied to local variables. | 
|  | 2878 | if (isa<VarDecl>(D) && cast<VarDecl>(D)->hasLocalStorage()) { | 
|  | 2879 | S.Diag(SE->getLocStart(), diag::err_attribute_section_local_variable); | 
|  | 2880 | return; | 
|  | 2881 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2882 |  | 
|  | 2883 | unsigned Index = Attr.getAttributeSpellingListIndex(); | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2884 | SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2885 | SE->getString(), Index); | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 2886 | if (NewAttr) | 
|  | 2887 | D->addAttr(NewAttr); | 
| Daniel Dunbar | 17f194f | 2009-02-12 17:28:23 +0000 | [diff] [blame] | 2888 | } | 
|  | 2889 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2890 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2891 | static void handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2892 | // check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 2893 | if (Attr.hasParameterOrArguments()) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2894 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2895 | return; | 
|  | 2896 | } | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2897 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2898 | if (NoThrowAttr *Existing = D->getAttr<NoThrowAttr>()) { | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2899 | if (Existing->getLocation().isInvalid()) | 
| Argyrios Kyrtzidis | ffcc310 | 2011-09-13 16:05:53 +0000 | [diff] [blame] | 2900 | Existing->setRange(Attr.getRange()); | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2901 | } else { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2902 | D->addAttr(::new (S.Context) | 
|  | 2903 | NoThrowAttr(Attr.getRange(), S.Context, | 
|  | 2904 | Attr.getAttributeSpellingListIndex())); | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2905 | } | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 2906 | } | 
|  | 2907 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2908 | static void handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2909 | // check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 2910 | if (Attr.hasParameterOrArguments()) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2911 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2912 | return; | 
|  | 2913 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2914 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2915 | if (ConstAttr *Existing = D->getAttr<ConstAttr>()) { | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2916 | if (Existing->getLocation().isInvalid()) | 
| Argyrios Kyrtzidis | ffcc310 | 2011-09-13 16:05:53 +0000 | [diff] [blame] | 2917 | Existing->setRange(Attr.getRange()); | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2918 | } else { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2919 | D->addAttr(::new (S.Context) | 
|  | 2920 | ConstAttr(Attr.getRange(), S.Context, | 
|  | 2921 | Attr.getAttributeSpellingListIndex() )); | 
| Douglas Gregor | b30cd4a | 2011-06-15 05:45:11 +0000 | [diff] [blame] | 2922 | } | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2923 | } | 
|  | 2924 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2925 | static void handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2926 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 2927 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2928 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2929 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2930 | D->addAttr(::new (S.Context) | 
|  | 2931 | PureAttr(Attr.getRange(), S.Context, | 
|  | 2932 | Attr.getAttributeSpellingListIndex())); | 
| Anders Carlsson | 232eb7d | 2008-10-05 23:32:53 +0000 | [diff] [blame] | 2933 | } | 
|  | 2934 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 2935 | static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2936 | if (!Attr.getParameterName()) { | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2937 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 2938 | return; | 
|  | 2939 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2940 |  | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2941 | if (Attr.getNumArgs() != 0) { | 
|  | 2942 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 2943 | return; | 
|  | 2944 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2945 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 2946 | VarDecl *VD = dyn_cast<VarDecl>(D); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2947 |  | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2948 | if (!VD || !VD->hasLocalStorage()) { | 
|  | 2949 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "cleanup"; | 
|  | 2950 | return; | 
|  | 2951 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2952 |  | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2953 | // Look up the function | 
| Douglas Gregor | c83c687 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2954 | // FIXME: Lookup probably isn't looking in the right place | 
| John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2955 | NamedDecl *CleanupDecl | 
| Argyrios Kyrtzidis | f0b0ccc | 2010-12-06 17:51:50 +0000 | [diff] [blame] | 2956 | = S.LookupSingleName(S.TUScope, Attr.getParameterName(), | 
|  | 2957 | Attr.getParameterLoc(), Sema::LookupOrdinaryName); | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2958 | if (!CleanupDecl) { | 
| Argyrios Kyrtzidis | f0b0ccc | 2010-12-06 17:51:50 +0000 | [diff] [blame] | 2959 | S.Diag(Attr.getParameterLoc(), diag::err_attribute_cleanup_arg_not_found) << | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2960 | Attr.getParameterName(); | 
|  | 2961 | return; | 
|  | 2962 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2963 |  | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2964 | FunctionDecl *FD = dyn_cast<FunctionDecl>(CleanupDecl); | 
|  | 2965 | if (!FD) { | 
| Argyrios Kyrtzidis | f0b0ccc | 2010-12-06 17:51:50 +0000 | [diff] [blame] | 2966 | S.Diag(Attr.getParameterLoc(), | 
|  | 2967 | diag::err_attribute_cleanup_arg_not_function) | 
|  | 2968 | << Attr.getParameterName(); | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2969 | return; | 
|  | 2970 | } | 
|  | 2971 |  | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2972 | if (FD->getNumParams() != 1) { | 
| Argyrios Kyrtzidis | f0b0ccc | 2010-12-06 17:51:50 +0000 | [diff] [blame] | 2973 | S.Diag(Attr.getParameterLoc(), | 
|  | 2974 | diag::err_attribute_cleanup_func_must_take_one_arg) | 
|  | 2975 | << Attr.getParameterName(); | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2976 | return; | 
|  | 2977 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2978 |  | 
| Anders Carlsson | 89941c1 | 2009-02-07 23:16:50 +0000 | [diff] [blame] | 2979 | // We're currently more strict than GCC about what function types we accept. | 
|  | 2980 | // If this ever proves to be a problem it should be easy to fix. | 
|  | 2981 | QualType Ty = S.Context.getPointerType(VD->getType()); | 
|  | 2982 | QualType ParamTy = FD->getParamDecl(0)->getType(); | 
| Douglas Gregor | b608b98 | 2011-01-28 02:26:04 +0000 | [diff] [blame] | 2983 | if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(), | 
|  | 2984 | ParamTy, Ty) != Sema::Compatible) { | 
| Argyrios Kyrtzidis | f0b0ccc | 2010-12-06 17:51:50 +0000 | [diff] [blame] | 2985 | S.Diag(Attr.getParameterLoc(), | 
| Anders Carlsson | 89941c1 | 2009-02-07 23:16:50 +0000 | [diff] [blame] | 2986 | diag::err_attribute_cleanup_func_arg_incompatible_type) << | 
|  | 2987 | Attr.getParameterName() << ParamTy << Ty; | 
|  | 2988 | return; | 
|  | 2989 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2990 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 2991 | D->addAttr(::new (S.Context) | 
|  | 2992 | CleanupAttr(Attr.getRange(), S.Context, FD, | 
|  | 2993 | Attr.getAttributeSpellingListIndex())); | 
| Eli Friedman | 5f2987c | 2012-02-02 03:46:19 +0000 | [diff] [blame] | 2994 | S.MarkFunctionReferenced(Attr.getParameterLoc(), FD); | 
| Nick Lewycky | 3c86a5c | 2013-02-12 08:08:54 +0000 | [diff] [blame] | 2995 | S.DiagnoseUseOfDecl(FD, Attr.getParameterLoc()); | 
| Anders Carlsson | f6e35d0 | 2009-01-31 01:16:18 +0000 | [diff] [blame] | 2996 | } | 
|  | 2997 |  | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 2998 | /// Handle __attribute__((format_arg((idx)))) attribute based on | 
| Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 2999 | /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3000 | static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3001 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3002 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3003 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3004 | if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) { | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3005 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3006 | << Attr.getName() << ExpectedFunction; | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3007 | return; | 
|  | 3008 | } | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 3009 |  | 
|  | 3010 | // In C++ the implicit 'this' function parameter also counts, and they are | 
|  | 3011 | // counted from one. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3012 | bool HasImplicitThisParam = isInstanceMethod(D); | 
|  | 3013 | unsigned NumArgs  = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3014 | unsigned FirstIdx = 1; | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 3015 |  | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3016 | // checks for the 2nd argument | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 3017 | Expr *IdxExpr = Attr.getArg(0); | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3018 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 3019 | if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() || | 
|  | 3020 | !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) { | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3021 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
|  | 3022 | << "format" << 2 << IdxExpr->getSourceRange(); | 
|  | 3023 | return; | 
|  | 3024 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3025 |  | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3026 | if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) { | 
|  | 3027 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
|  | 3028 | << "format" << 2 << IdxExpr->getSourceRange(); | 
|  | 3029 | return; | 
|  | 3030 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3031 |  | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3032 | unsigned ArgIdx = Idx.getZExtValue() - 1; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3033 |  | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 3034 | if (HasImplicitThisParam) { | 
|  | 3035 | if (ArgIdx == 0) { | 
|  | 3036 | S.Diag(Attr.getLoc(), diag::err_attribute_invalid_implicit_this_argument) | 
|  | 3037 | << "format_arg" << IdxExpr->getSourceRange(); | 
|  | 3038 | return; | 
|  | 3039 | } | 
|  | 3040 | ArgIdx--; | 
|  | 3041 | } | 
|  | 3042 |  | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3043 | // make sure the format string is really a string | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3044 | QualType Ty = getFunctionOrMethodArgType(D, ArgIdx); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3045 |  | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3046 | bool not_nsstring_type = !isNSStringType(Ty, S.Context); | 
|  | 3047 | if (not_nsstring_type && | 
|  | 3048 | !isCFStringType(Ty, S.Context) && | 
|  | 3049 | (!Ty->isPointerType() || | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3050 | !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3051 | // FIXME: Should highlight the actual expression that has the wrong type. | 
|  | 3052 | S.Diag(Attr.getLoc(), diag::err_format_attribute_not) | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3053 | << (not_nsstring_type ? "a string type" : "an NSString") | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3054 | << IdxExpr->getSourceRange(); | 
|  | 3055 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3056 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3057 | Ty = getFunctionOrMethodResultType(D); | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3058 | if (!isNSStringType(Ty, S.Context) && | 
|  | 3059 | !isCFStringType(Ty, S.Context) && | 
|  | 3060 | (!Ty->isPointerType() || | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3061 | !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3062 | // FIXME: Should highlight the actual expression that has the wrong type. | 
|  | 3063 | S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not) | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3064 | << (not_nsstring_type ? "string type" : "NSString") | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3065 | << IdxExpr->getSourceRange(); | 
|  | 3066 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3067 | } | 
|  | 3068 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3069 | D->addAttr(::new (S.Context) | 
|  | 3070 | FormatArgAttr(Attr.getRange(), S.Context, Idx.getZExtValue(), | 
|  | 3071 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 3072 | } | 
|  | 3073 |  | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3074 | enum FormatAttrKind { | 
|  | 3075 | CFStringFormat, | 
|  | 3076 | NSStringFormat, | 
|  | 3077 | StrftimeFormat, | 
|  | 3078 | SupportedFormat, | 
| Chris Lattner | 3c98902 | 2010-03-22 21:08:50 +0000 | [diff] [blame] | 3079 | IgnoredFormat, | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3080 | InvalidFormat | 
|  | 3081 | }; | 
|  | 3082 |  | 
|  | 3083 | /// getFormatAttrKind - Map from format attribute names to supported format | 
|  | 3084 | /// types. | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3085 | static FormatAttrKind getFormatAttrKind(StringRef Format) { | 
| Benjamin Kramer | c51bb99 | 2012-05-16 12:44:25 +0000 | [diff] [blame] | 3086 | return llvm::StringSwitch<FormatAttrKind>(Format) | 
|  | 3087 | // Check for formats that get handled specially. | 
|  | 3088 | .Case("NSString", NSStringFormat) | 
|  | 3089 | .Case("CFString", CFStringFormat) | 
|  | 3090 | .Case("strftime", StrftimeFormat) | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3091 |  | 
| Benjamin Kramer | c51bb99 | 2012-05-16 12:44:25 +0000 | [diff] [blame] | 3092 | // Otherwise, check for supported formats. | 
|  | 3093 | .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat) | 
|  | 3094 | .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat) | 
|  | 3095 | .Case("kprintf", SupportedFormat) // OpenBSD. | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3096 |  | 
| Benjamin Kramer | c51bb99 | 2012-05-16 12:44:25 +0000 | [diff] [blame] | 3097 | .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat) | 
|  | 3098 | .Default(InvalidFormat); | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3099 | } | 
|  | 3100 |  | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3101 | /// Handle __attribute__((init_priority(priority))) attributes based on | 
| Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 3102 | /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3103 | static void handleInitPriorityAttr(Sema &S, Decl *D, | 
|  | 3104 | const AttributeList &Attr) { | 
| David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3105 | if (!S.getLangOpts().CPlusPlus) { | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3106 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); | 
|  | 3107 | return; | 
|  | 3108 | } | 
|  | 3109 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3110 | if (!isa<VarDecl>(D) || S.getCurFunctionOrMethodDecl()) { | 
| Fariborz Jahanian | b9d5c22 | 2010-06-18 23:14:53 +0000 | [diff] [blame] | 3111 | S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr); | 
|  | 3112 | Attr.setInvalid(); | 
|  | 3113 | return; | 
|  | 3114 | } | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3115 | QualType T = dyn_cast<VarDecl>(D)->getType(); | 
| Fariborz Jahanian | b9d5c22 | 2010-06-18 23:14:53 +0000 | [diff] [blame] | 3116 | if (S.Context.getAsArrayType(T)) | 
|  | 3117 | T = S.Context.getBaseElementType(T); | 
|  | 3118 | if (!T->getAs<RecordType>()) { | 
|  | 3119 | S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr); | 
|  | 3120 | Attr.setInvalid(); | 
|  | 3121 | return; | 
|  | 3122 | } | 
|  | 3123 |  | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3124 | if (Attr.getNumArgs() != 1) { | 
|  | 3125 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 3126 | Attr.setInvalid(); | 
|  | 3127 | return; | 
|  | 3128 | } | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 3129 | Expr *priorityExpr = Attr.getArg(0); | 
| Fariborz Jahanian | b9d5c22 | 2010-06-18 23:14:53 +0000 | [diff] [blame] | 3130 |  | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3131 | llvm::APSInt priority(32); | 
|  | 3132 | if (priorityExpr->isTypeDependent() || priorityExpr->isValueDependent() || | 
|  | 3133 | !priorityExpr->isIntegerConstantExpr(priority, S.Context)) { | 
|  | 3134 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 3135 | << "init_priority" << priorityExpr->getSourceRange(); | 
|  | 3136 | Attr.setInvalid(); | 
|  | 3137 | return; | 
|  | 3138 | } | 
| Fariborz Jahanian | 9f967c5 | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 3139 | unsigned prioritynum = priority.getZExtValue(); | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3140 | if (prioritynum < 101 || prioritynum > 65535) { | 
|  | 3141 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range) | 
|  | 3142 | <<  priorityExpr->getSourceRange(); | 
|  | 3143 | Attr.setInvalid(); | 
|  | 3144 | return; | 
|  | 3145 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3146 | D->addAttr(::new (S.Context) | 
|  | 3147 | InitPriorityAttr(Attr.getRange(), S.Context, prioritynum, | 
|  | 3148 | Attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 3149 | } | 
|  | 3150 |  | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 3151 | FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, StringRef Format, | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3152 | int FormatIdx, int FirstArg, | 
|  | 3153 | unsigned AttrSpellingListIndex) { | 
| Rafael Espindola | bf9da1f | 2012-05-11 00:36:07 +0000 | [diff] [blame] | 3154 | // Check whether we already have an equivalent format attribute. | 
|  | 3155 | for (specific_attr_iterator<FormatAttr> | 
|  | 3156 | i = D->specific_attr_begin<FormatAttr>(), | 
|  | 3157 | e = D->specific_attr_end<FormatAttr>(); | 
|  | 3158 | i != e ; ++i) { | 
|  | 3159 | FormatAttr *f = *i; | 
|  | 3160 | if (f->getType() == Format && | 
|  | 3161 | f->getFormatIdx() == FormatIdx && | 
|  | 3162 | f->getFirstArg() == FirstArg) { | 
|  | 3163 | // If we don't have a valid location for this attribute, adopt the | 
|  | 3164 | // location. | 
|  | 3165 | if (f->getLocation().isInvalid()) | 
|  | 3166 | f->setRange(Range); | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 3167 | return NULL; | 
| Rafael Espindola | bf9da1f | 2012-05-11 00:36:07 +0000 | [diff] [blame] | 3168 | } | 
|  | 3169 | } | 
|  | 3170 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3171 | return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, FirstArg, | 
|  | 3172 | AttrSpellingListIndex); | 
| Rafael Espindola | bf9da1f | 2012-05-11 00:36:07 +0000 | [diff] [blame] | 3173 | } | 
|  | 3174 |  | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3175 | /// Handle __attribute__((format(type,idx,firstarg))) attributes based on | 
| Bill Wendling | ad017fa | 2012-12-20 19:22:21 +0000 | [diff] [blame] | 3176 | /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3177 | static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3178 |  | 
| Chris Lattner | 545dd34 | 2008-06-28 23:36:30 +0000 | [diff] [blame] | 3179 | if (!Attr.getParameterName()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3180 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3181 | << "format" << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3182 | return; | 
|  | 3183 | } | 
|  | 3184 |  | 
| Chris Lattner | 545dd34 | 2008-06-28 23:36:30 +0000 | [diff] [blame] | 3185 | if (Attr.getNumArgs() != 2) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3186 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 3; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3187 | return; | 
|  | 3188 | } | 
|  | 3189 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3190 | if (!isFunctionOrMethodOrBlock(D) || !hasFunctionProto(D)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3191 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3192 | << Attr.getName() << ExpectedFunction; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3193 | return; | 
|  | 3194 | } | 
|  | 3195 |  | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 3196 | // In C++ the implicit 'this' function parameter also counts, and they are | 
|  | 3197 | // counted from one. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3198 | bool HasImplicitThisParam = isInstanceMethod(D); | 
|  | 3199 | unsigned NumArgs  = getFunctionOrMethodNumArgs(D) + HasImplicitThisParam; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3200 | unsigned FirstIdx = 1; | 
|  | 3201 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3202 | StringRef Format = Attr.getParameterName()->getName(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3203 |  | 
|  | 3204 | // Normalize the argument, __foo__ becomes foo. | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3205 | if (Format.startswith("__") && Format.endswith("__")) | 
|  | 3206 | Format = Format.substr(2, Format.size() - 4); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3207 |  | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3208 | // Check for supported formats. | 
|  | 3209 | FormatAttrKind Kind = getFormatAttrKind(Format); | 
| Chris Lattner | 3c98902 | 2010-03-22 21:08:50 +0000 | [diff] [blame] | 3210 |  | 
|  | 3211 | if (Kind == IgnoredFormat) | 
|  | 3212 | return; | 
|  | 3213 |  | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3214 | if (Kind == InvalidFormat) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3215 | S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) | 
| Daniel Dunbar | 01eb9b9 | 2009-10-18 21:17:35 +0000 | [diff] [blame] | 3216 | << "format" << Attr.getParameterName()->getName(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3217 | return; | 
|  | 3218 | } | 
|  | 3219 |  | 
|  | 3220 | // checks for the 2nd argument | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 3221 | Expr *IdxExpr = Attr.getArg(0); | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 3222 | llvm::APSInt Idx(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 3223 | if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() || | 
|  | 3224 | !IdxExpr->isIntegerConstantExpr(Idx, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3225 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3226 | << "format" << 2 << IdxExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3227 | return; | 
|  | 3228 | } | 
|  | 3229 |  | 
|  | 3230 | if (Idx.getZExtValue() < FirstIdx || Idx.getZExtValue() > NumArgs) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3231 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3232 | << "format" << 2 << IdxExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3233 | return; | 
|  | 3234 | } | 
|  | 3235 |  | 
|  | 3236 | // FIXME: Do we need to bounds check? | 
|  | 3237 | unsigned ArgIdx = Idx.getZExtValue() - 1; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3238 |  | 
| Sebastian Redl | 4a2614e | 2009-11-17 18:02:24 +0000 | [diff] [blame] | 3239 | if (HasImplicitThisParam) { | 
|  | 3240 | if (ArgIdx == 0) { | 
| Chandler Carruth | 07d7e7a | 2010-11-16 08:35:43 +0000 | [diff] [blame] | 3241 | S.Diag(Attr.getLoc(), | 
|  | 3242 | diag::err_format_attribute_implicit_this_format_string) | 
|  | 3243 | << IdxExpr->getSourceRange(); | 
| Sebastian Redl | 4a2614e | 2009-11-17 18:02:24 +0000 | [diff] [blame] | 3244 | return; | 
|  | 3245 | } | 
|  | 3246 | ArgIdx--; | 
|  | 3247 | } | 
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3248 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3249 | // make sure the format string is really a string | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3250 | QualType Ty = getFunctionOrMethodArgType(D, ArgIdx); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3251 |  | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3252 | if (Kind == CFStringFormat) { | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 3253 | if (!isCFStringType(Ty, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3254 | S.Diag(Attr.getLoc(), diag::err_format_attribute_not) | 
|  | 3255 | << "a CFString" << IdxExpr->getSourceRange(); | 
| Daniel Dunbar | 085e8f7 | 2008-09-26 03:32:58 +0000 | [diff] [blame] | 3256 | return; | 
|  | 3257 | } | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3258 | } else if (Kind == NSStringFormat) { | 
| Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3259 | // FIXME: do we need to check if the type is NSString*?  What are the | 
|  | 3260 | // semantics? | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 3261 | if (!isNSStringType(Ty, S.Context)) { | 
| Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3262 | // FIXME: Should highlight the actual expression that has the wrong type. | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3263 | S.Diag(Attr.getLoc(), diag::err_format_attribute_not) | 
|  | 3264 | << "an NSString" << IdxExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3265 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3266 | } | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3267 | } else if (!Ty->isPointerType() || | 
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3268 | !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) { | 
| Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3269 | // FIXME: Should highlight the actual expression that has the wrong type. | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3270 | S.Diag(Attr.getLoc(), diag::err_format_attribute_not) | 
|  | 3271 | << "a string type" << IdxExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3272 | return; | 
|  | 3273 | } | 
|  | 3274 |  | 
|  | 3275 | // check the 3rd argument | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 3276 | Expr *FirstArgExpr = Attr.getArg(1); | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 3277 | llvm::APSInt FirstArg(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 3278 | if (FirstArgExpr->isTypeDependent() || FirstArgExpr->isValueDependent() || | 
|  | 3279 | !FirstArgExpr->isIntegerConstantExpr(FirstArg, S.Context)) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3280 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3281 | << "format" << 3 << FirstArgExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3282 | return; | 
|  | 3283 | } | 
|  | 3284 |  | 
|  | 3285 | // check if the function is variadic if the 3rd argument non-zero | 
|  | 3286 | if (FirstArg != 0) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3287 | if (isFunctionOrMethodVariadic(D)) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3288 | ++NumArgs; // +1 for ... | 
|  | 3289 | } else { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3290 | S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3291 | return; | 
|  | 3292 | } | 
|  | 3293 | } | 
|  | 3294 |  | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3295 | // strftime requires FirstArg to be 0 because it doesn't read from any | 
|  | 3296 | // variable the input is just the current time + the format string. | 
| Daniel Dunbar | 2b0d9a2 | 2009-10-18 02:09:17 +0000 | [diff] [blame] | 3297 | if (Kind == StrftimeFormat) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3298 | if (FirstArg != 0) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3299 | S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter) | 
|  | 3300 | << FirstArgExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3301 | return; | 
|  | 3302 | } | 
|  | 3303 | // if 0 it disables parameter checking (to use with e.g. va_list) | 
|  | 3304 | } else if (FirstArg != 0 && FirstArg != NumArgs) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3305 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3306 | << "format" << 3 << FirstArgExpr->getSourceRange(); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3307 | return; | 
|  | 3308 | } | 
|  | 3309 |  | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 3310 | FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), Format, | 
|  | 3311 | Idx.getZExtValue(), | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3312 | FirstArg.getZExtValue(), | 
|  | 3313 | Attr.getAttributeSpellingListIndex()); | 
| Rafael Espindola | 599f1b7 | 2012-05-13 03:25:18 +0000 | [diff] [blame] | 3314 | if (NewAttr) | 
|  | 3315 | D->addAttr(NewAttr); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3316 | } | 
|  | 3317 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3318 | static void handleTransparentUnionAttr(Sema &S, Decl *D, | 
|  | 3319 | const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3320 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3321 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3322 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3323 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3324 |  | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3325 | // Try to find the underlying union declaration. | 
|  | 3326 | RecordDecl *RD = 0; | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3327 | TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D); | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3328 | if (TD && TD->getUnderlyingType()->isUnionType()) | 
|  | 3329 | RD = TD->getUnderlyingType()->getAsUnionType()->getDecl(); | 
|  | 3330 | else | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3331 | RD = dyn_cast<RecordDecl>(D); | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3332 |  | 
|  | 3333 | if (!RD || !RD->isUnion()) { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3334 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3335 | << Attr.getName() << ExpectedUnion; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3336 | return; | 
|  | 3337 | } | 
|  | 3338 |  | 
| John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 3339 | if (!RD->isCompleteDefinition()) { | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3340 | S.Diag(Attr.getLoc(), | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3341 | diag::warn_transparent_union_attribute_not_definition); | 
|  | 3342 | return; | 
|  | 3343 | } | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3344 |  | 
| Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3345 | RecordDecl::field_iterator Field = RD->field_begin(), | 
|  | 3346 | FieldEnd = RD->field_end(); | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3347 | if (Field == FieldEnd) { | 
|  | 3348 | S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields); | 
|  | 3349 | return; | 
|  | 3350 | } | 
| Eli Friedman | bc88745 | 2008-09-02 05:19:23 +0000 | [diff] [blame] | 3351 |  | 
| David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 3352 | FieldDecl *FirstField = *Field; | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3353 | QualType FirstType = FirstField->getType(); | 
| Douglas Gregor | 90cd672 | 2010-06-30 17:24:13 +0000 | [diff] [blame] | 3354 | if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3355 | S.Diag(FirstField->getLocation(), | 
| Douglas Gregor | 90cd672 | 2010-06-30 17:24:13 +0000 | [diff] [blame] | 3356 | diag::warn_transparent_union_attribute_floating) | 
|  | 3357 | << FirstType->isVectorType() << FirstType; | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3358 | return; | 
|  | 3359 | } | 
|  | 3360 |  | 
|  | 3361 | uint64_t FirstSize = S.Context.getTypeSize(FirstType); | 
|  | 3362 | uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); | 
|  | 3363 | for (; Field != FieldEnd; ++Field) { | 
|  | 3364 | QualType FieldType = Field->getType(); | 
|  | 3365 | if (S.Context.getTypeSize(FieldType) != FirstSize || | 
|  | 3366 | S.Context.getTypeAlign(FieldType) != FirstAlign) { | 
|  | 3367 | // Warn if we drop the attribute. | 
|  | 3368 | bool isSize = S.Context.getTypeSize(FieldType) != FirstSize; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3369 | unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType) | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3370 | : S.Context.getTypeAlign(FieldType); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3371 | S.Diag(Field->getLocation(), | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3372 | diag::warn_transparent_union_attribute_field_size_align) | 
|  | 3373 | << isSize << Field->getDeclName() << FieldBits; | 
|  | 3374 | unsigned FirstBits = isSize? FirstSize : FirstAlign; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3375 | S.Diag(FirstField->getLocation(), | 
| Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3376 | diag::note_transparent_union_first_field_size_align) | 
|  | 3377 | << isSize << FirstBits; | 
| Eli Friedman | bc88745 | 2008-09-02 05:19:23 +0000 | [diff] [blame] | 3378 | return; | 
|  | 3379 | } | 
|  | 3380 | } | 
|  | 3381 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3382 | RD->addAttr(::new (S.Context) | 
|  | 3383 | TransparentUnionAttr(Attr.getRange(), S.Context, | 
|  | 3384 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3385 | } | 
|  | 3386 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3387 | static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3388 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3389 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3390 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3391 |  | 
| Peter Collingbourne | 7a73002 | 2010-11-23 20:45:58 +0000 | [diff] [blame] | 3392 | Expr *ArgExpr = Attr.getArg(0); | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 3393 | StringLiteral *SE = dyn_cast<StringLiteral>(ArgExpr); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3394 |  | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3395 | // Make sure that there is a string literal as the annotation's single | 
|  | 3396 | // argument. | 
|  | 3397 | if (!SE) { | 
| Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 3398 | S.Diag(ArgExpr->getLocStart(), diag::err_attribute_not_string) <<"annotate"; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3399 | return; | 
|  | 3400 | } | 
| Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 3401 |  | 
|  | 3402 | // Don't duplicate annotations that are already set. | 
|  | 3403 | for (specific_attr_iterator<AnnotateAttr> | 
|  | 3404 | i = D->specific_attr_begin<AnnotateAttr>(), | 
|  | 3405 | e = D->specific_attr_end<AnnotateAttr>(); i != e; ++i) { | 
|  | 3406 | if ((*i)->getAnnotation() == SE->getString()) | 
|  | 3407 | return; | 
|  | 3408 | } | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3409 |  | 
|  | 3410 | D->addAttr(::new (S.Context) | 
|  | 3411 | AnnotateAttr(Attr.getRange(), S.Context, SE->getString(), | 
|  | 3412 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3413 | } | 
|  | 3414 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3415 | static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3416 | // check the attribute arguments. | 
| Chris Lattner | 545dd34 | 2008-06-28 23:36:30 +0000 | [diff] [blame] | 3417 | if (Attr.getNumArgs() > 1) { | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3418 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3419 | return; | 
|  | 3420 | } | 
| Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 3421 |  | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3422 | if (Attr.getNumArgs() == 0) { | 
|  | 3423 | D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, | 
|  | 3424 | true, 0, Attr.getAttributeSpellingListIndex())); | 
|  | 3425 | return; | 
|  | 3426 | } | 
|  | 3427 |  | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3428 | Expr *E = Attr.getArg(0); | 
|  | 3429 | if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) { | 
|  | 3430 | S.Diag(Attr.getEllipsisLoc(), | 
|  | 3431 | diag::err_pack_expansion_without_parameter_packs); | 
|  | 3432 | return; | 
|  | 3433 | } | 
|  | 3434 |  | 
|  | 3435 | if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E)) | 
|  | 3436 | return; | 
|  | 3437 |  | 
|  | 3438 | S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(), | 
|  | 3439 | Attr.isPackExpansion()); | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3440 | } | 
|  | 3441 |  | 
|  | 3442 | void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E, | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3443 | unsigned SpellingListIndex, bool IsPackExpansion) { | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3444 | AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex); | 
|  | 3445 | SourceLocation AttrLoc = AttrRange.getBegin(); | 
|  | 3446 |  | 
| Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 3447 | // C++11 alignas(...) and C11 _Alignas(...) have additional requirements. | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3448 | if (TmpAttr.isAlignas()) { | 
| Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 3449 | // C++11 [dcl.align]p1: | 
|  | 3450 | //   An alignment-specifier may be applied to a variable or to a class | 
|  | 3451 | //   data member, but it shall not be applied to a bit-field, a function | 
|  | 3452 | //   parameter, the formal parameter of a catch clause, or a variable | 
|  | 3453 | //   declared with the register storage class specifier. An | 
|  | 3454 | //   alignment-specifier may also be applied to the declaration of a class | 
|  | 3455 | //   or enumeration type. | 
|  | 3456 | // C11 6.7.5/2: | 
|  | 3457 | //   An alignment attribute shall not be specified in a declaration of | 
|  | 3458 | //   a typedef, or a bit-field, or a function, or a parameter, or an | 
|  | 3459 | //   object declared with the register storage-class specifier. | 
|  | 3460 | int DiagKind = -1; | 
|  | 3461 | if (isa<ParmVarDecl>(D)) { | 
|  | 3462 | DiagKind = 0; | 
|  | 3463 | } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) { | 
|  | 3464 | if (VD->getStorageClass() == SC_Register) | 
|  | 3465 | DiagKind = 1; | 
|  | 3466 | if (VD->isExceptionVariable()) | 
|  | 3467 | DiagKind = 2; | 
|  | 3468 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { | 
|  | 3469 | if (FD->isBitField()) | 
|  | 3470 | DiagKind = 3; | 
|  | 3471 | } else if (!isa<TagDecl>(D)) { | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3472 | Diag(AttrLoc, diag::err_attribute_wrong_decl_type) | 
|  | 3473 | << (TmpAttr.isC11() ? "'_Alignas'" : "'alignas'") | 
| Richard Smith | 5f838aa | 2013-02-01 08:25:07 +0000 | [diff] [blame] | 3474 | << (TmpAttr.isC11() ? ExpectedVariableOrField | 
|  | 3475 | : ExpectedVariableFieldOrTag); | 
| Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 3476 | return; | 
|  | 3477 | } | 
|  | 3478 | if (DiagKind != -1) { | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3479 | Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type) | 
| Richard Smith | 671b321 | 2013-02-22 04:55:39 +0000 | [diff] [blame] | 3480 | << TmpAttr.isC11() << DiagKind; | 
| Richard Smith | 4cd81c5 | 2013-01-29 09:02:09 +0000 | [diff] [blame] | 3481 | return; | 
|  | 3482 | } | 
|  | 3483 | } | 
|  | 3484 |  | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 3485 | if (E->isTypeDependent() || E->isValueDependent()) { | 
|  | 3486 | // Save dependent expressions in the AST to be instantiated. | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3487 | AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr); | 
|  | 3488 | AA->setPackExpansion(IsPackExpansion); | 
|  | 3489 | D->addAttr(AA); | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 3490 | return; | 
|  | 3491 | } | 
| Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame] | 3492 |  | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 3493 | // FIXME: Cache the number on the Attr object? | 
| Chris Lattner | 49e2d34 | 2008-06-28 23:50:44 +0000 | [diff] [blame] | 3494 | llvm::APSInt Alignment(32); | 
| Douglas Gregor | ab41fe9 | 2012-05-04 22:38:52 +0000 | [diff] [blame] | 3495 | ExprResult ICE | 
|  | 3496 | = VerifyIntegerConstantExpression(E, &Alignment, | 
|  | 3497 | diag::err_aligned_attribute_argument_not_int, | 
|  | 3498 | /*AllowFold*/ false); | 
| Richard Smith | 282e7e6 | 2012-02-04 09:53:13 +0000 | [diff] [blame] | 3499 | if (ICE.isInvalid()) | 
| Chris Lattner | 49e2d34 | 2008-06-28 23:50:44 +0000 | [diff] [blame] | 3500 | return; | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3501 |  | 
|  | 3502 | // C++11 [dcl.align]p2: | 
|  | 3503 | //   -- if the constant expression evaluates to zero, the alignment | 
|  | 3504 | //      specifier shall have no effect | 
|  | 3505 | // C11 6.7.5p6: | 
|  | 3506 | //   An alignment specification of zero has no effect. | 
|  | 3507 | if (!(TmpAttr.isAlignas() && !Alignment) && | 
|  | 3508 | !llvm::isPowerOf2_64(Alignment.getZExtValue())) { | 
| Chandler Carruth | 4ced79f | 2010-06-25 03:22:07 +0000 | [diff] [blame] | 3509 | Diag(AttrLoc, diag::err_attribute_aligned_not_power_of_two) | 
|  | 3510 | << E->getSourceRange(); | 
| Daniel Dunbar | 396b2a2 | 2009-02-16 23:37:57 +0000 | [diff] [blame] | 3511 | return; | 
|  | 3512 | } | 
| Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame] | 3513 |  | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3514 | if (TmpAttr.isDeclspec()) { | 
| Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 3515 | // We've already verified it's a power of 2, now let's make sure it's | 
|  | 3516 | // 8192 or less. | 
|  | 3517 | if (Alignment.getZExtValue() > 8192) { | 
| Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame] | 3518 | Diag(AttrLoc, diag::err_attribute_aligned_greater_than_8192) | 
| Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 3519 | << E->getSourceRange(); | 
|  | 3520 | return; | 
|  | 3521 | } | 
|  | 3522 | } | 
| Daniel Dunbar | 396b2a2 | 2009-02-16 23:37:57 +0000 | [diff] [blame] | 3523 |  | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3524 | AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true, | 
|  | 3525 | ICE.take(), SpellingListIndex); | 
|  | 3526 | AA->setPackExpansion(IsPackExpansion); | 
|  | 3527 | D->addAttr(AA); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 3528 | } | 
|  | 3529 |  | 
| Michael Han | a31f65b | 2013-02-01 01:19:17 +0000 | [diff] [blame] | 3530 | void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS, | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3531 | unsigned SpellingListIndex, bool IsPackExpansion) { | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 3532 | // FIXME: Cache the number on the Attr object if non-dependent? | 
|  | 3533 | // FIXME: Perform checking of type validity | 
| Richard Smith | f6565a9 | 2013-02-22 08:32:16 +0000 | [diff] [blame] | 3534 | AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS, | 
|  | 3535 | SpellingListIndex); | 
|  | 3536 | AA->setPackExpansion(IsPackExpansion); | 
|  | 3537 | D->addAttr(AA); | 
| Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 3538 | } | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3539 |  | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3540 | void Sema::CheckAlignasUnderalignment(Decl *D) { | 
|  | 3541 | assert(D->hasAttrs() && "no attributes on decl"); | 
|  | 3542 |  | 
|  | 3543 | QualType Ty; | 
|  | 3544 | if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) | 
|  | 3545 | Ty = VD->getType(); | 
|  | 3546 | else | 
|  | 3547 | Ty = Context.getTagDeclType(cast<TagDecl>(D)); | 
| Richard Smith | 4da0903 | 2013-02-22 09:21:42 +0000 | [diff] [blame] | 3548 | if (Ty->isDependentType() || Ty->isIncompleteType()) | 
| Richard Smith | be507b6 | 2013-02-01 08:12:08 +0000 | [diff] [blame] | 3549 | return; | 
|  | 3550 |  | 
|  | 3551 | // C++11 [dcl.align]p5, C11 6.7.5/4: | 
|  | 3552 | //   The combined effect of all alignment attributes in a declaration shall | 
|  | 3553 | //   not specify an alignment that is less strict than the alignment that | 
|  | 3554 | //   would otherwise be required for the entity being declared. | 
|  | 3555 | AlignedAttr *AlignasAttr = 0; | 
|  | 3556 | unsigned Align = 0; | 
|  | 3557 | for (specific_attr_iterator<AlignedAttr> | 
|  | 3558 | I = D->specific_attr_begin<AlignedAttr>(), | 
|  | 3559 | E = D->specific_attr_end<AlignedAttr>(); I != E; ++I) { | 
|  | 3560 | if (I->isAlignmentDependent()) | 
|  | 3561 | return; | 
|  | 3562 | if (I->isAlignas()) | 
|  | 3563 | AlignasAttr = *I; | 
|  | 3564 | Align = std::max(Align, I->getAlignment(Context)); | 
|  | 3565 | } | 
|  | 3566 |  | 
|  | 3567 | if (AlignasAttr && Align) { | 
|  | 3568 | CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align); | 
|  | 3569 | CharUnits NaturalAlign = Context.getTypeAlignInChars(Ty); | 
|  | 3570 | if (NaturalAlign > RequestedAlign) | 
|  | 3571 | Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned) | 
|  | 3572 | << Ty << (unsigned)NaturalAlign.getQuantity(); | 
|  | 3573 | } | 
|  | 3574 | } | 
|  | 3575 |  | 
| Chandler Carruth | d309c81 | 2011-07-01 23:49:16 +0000 | [diff] [blame] | 3576 | /// handleModeAttr - This attribute modifies the width of a decl with primitive | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3577 | /// type. | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3578 | /// | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3579 | /// Despite what would be logical, the mode attribute is a decl attribute, not a | 
|  | 3580 | /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be | 
|  | 3581 | /// HImode, not an intermediate pointer. | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3582 | static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3583 | // This attribute isn't documented, but glibc uses it.  It changes | 
|  | 3584 | // the width of an int or unsigned int to the specified size. | 
|  | 3585 |  | 
|  | 3586 | // Check that there aren't any arguments | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3587 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3588 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3589 |  | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3590 |  | 
|  | 3591 | IdentifierInfo *Name = Attr.getParameterName(); | 
|  | 3592 | if (!Name) { | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3593 | S.Diag(Attr.getLoc(), diag::err_attribute_missing_parameter_name); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3594 | return; | 
|  | 3595 | } | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3596 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3597 | StringRef Str = Attr.getParameterName()->getName(); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3598 |  | 
|  | 3599 | // Normalize the attribute name, __foo__ becomes foo. | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3600 | if (Str.startswith("__") && Str.endswith("__")) | 
|  | 3601 | Str = Str.substr(2, Str.size() - 4); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3602 |  | 
|  | 3603 | unsigned DestWidth = 0; | 
|  | 3604 | bool IntegerMode = true; | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3605 | bool ComplexMode = false; | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3606 | switch (Str.size()) { | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3607 | case 2: | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3608 | switch (Str[0]) { | 
|  | 3609 | case 'Q': DestWidth = 8; break; | 
|  | 3610 | case 'H': DestWidth = 16; break; | 
|  | 3611 | case 'S': DestWidth = 32; break; | 
|  | 3612 | case 'D': DestWidth = 64; break; | 
|  | 3613 | case 'X': DestWidth = 96; break; | 
|  | 3614 | case 'T': DestWidth = 128; break; | 
|  | 3615 | } | 
|  | 3616 | if (Str[1] == 'F') { | 
|  | 3617 | IntegerMode = false; | 
|  | 3618 | } else if (Str[1] == 'C') { | 
|  | 3619 | IntegerMode = false; | 
|  | 3620 | ComplexMode = true; | 
|  | 3621 | } else if (Str[1] != 'I') { | 
|  | 3622 | DestWidth = 0; | 
|  | 3623 | } | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3624 | break; | 
|  | 3625 | case 4: | 
|  | 3626 | // FIXME: glibc uses 'word' to define register_t; this is narrower than a | 
|  | 3627 | // pointer on PIC16 and other embedded platforms. | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3628 | if (Str == "word") | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3629 | DestWidth = S.Context.getTargetInfo().getPointerWidth(0); | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3630 | else if (Str == "byte") | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3631 | DestWidth = S.Context.getTargetInfo().getCharWidth(); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3632 | break; | 
|  | 3633 | case 7: | 
| Daniel Dunbar | 210ae98 | 2009-10-18 02:09:24 +0000 | [diff] [blame] | 3634 | if (Str == "pointer") | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3635 | DestWidth = S.Context.getTargetInfo().getPointerWidth(0); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3636 | break; | 
| Rafael Espindola | 8e721b7 | 2013-01-07 19:58:54 +0000 | [diff] [blame] | 3637 | case 11: | 
|  | 3638 | if (Str == "unwind_word") | 
| Rafael Espindola | 0b1de54 | 2013-01-07 20:01:57 +0000 | [diff] [blame] | 3639 | DestWidth = S.Context.getTargetInfo().getUnwindWordWidth(); | 
| Rafael Espindola | 8e721b7 | 2013-01-07 19:58:54 +0000 | [diff] [blame] | 3640 | break; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3641 | } | 
|  | 3642 |  | 
|  | 3643 | QualType OldTy; | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 3644 | if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3645 | OldTy = TD->getUnderlyingType(); | 
|  | 3646 | else if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) | 
|  | 3647 | OldTy = VD->getType(); | 
|  | 3648 | else { | 
| Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3649 | S.Diag(D->getLocation(), diag::err_attr_wrong_decl) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 3650 | << "mode" << Attr.getRange(); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3651 | return; | 
|  | 3652 | } | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3653 |  | 
| John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3654 | if (!OldTy->getAs<BuiltinType>() && !OldTy->isComplexType()) | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3655 | S.Diag(Attr.getLoc(), diag::err_mode_not_primitive); | 
|  | 3656 | else if (IntegerMode) { | 
| Douglas Gregor | 2ade35e | 2010-06-16 00:17:44 +0000 | [diff] [blame] | 3657 | if (!OldTy->isIntegralOrEnumerationType()) | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3658 | S.Diag(Attr.getLoc(), diag::err_mode_wrong_type); | 
|  | 3659 | } else if (ComplexMode) { | 
|  | 3660 | if (!OldTy->isComplexType()) | 
|  | 3661 | S.Diag(Attr.getLoc(), diag::err_mode_wrong_type); | 
|  | 3662 | } else { | 
|  | 3663 | if (!OldTy->isFloatingType()) | 
|  | 3664 | S.Diag(Attr.getLoc(), diag::err_mode_wrong_type); | 
|  | 3665 | } | 
|  | 3666 |  | 
| Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 3667 | // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t | 
|  | 3668 | // and friends, at least with glibc. | 
|  | 3669 | // FIXME: Make sure 32/64-bit integers don't get defined to types of the wrong | 
|  | 3670 | // width on unusual platforms. | 
| Eli Friedman | f98aba3 | 2009-02-13 02:31:07 +0000 | [diff] [blame] | 3671 | // FIXME: Make sure floating-point mappings are accurate | 
|  | 3672 | // FIXME: Support XF and TF types | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3673 | QualType NewTy; | 
|  | 3674 | switch (DestWidth) { | 
|  | 3675 | case 0: | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3676 | S.Diag(Attr.getLoc(), diag::err_unknown_machine_mode) << Name; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3677 | return; | 
|  | 3678 | default: | 
| Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3679 | S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3680 | return; | 
|  | 3681 | case 8: | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3682 | if (!IntegerMode) { | 
|  | 3683 | S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name; | 
|  | 3684 | return; | 
|  | 3685 | } | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3686 | if (OldTy->isSignedIntegerType()) | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3687 | NewTy = S.Context.SignedCharTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3688 | else | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3689 | NewTy = S.Context.UnsignedCharTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3690 | break; | 
|  | 3691 | case 16: | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3692 | if (!IntegerMode) { | 
|  | 3693 | S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name; | 
|  | 3694 | return; | 
|  | 3695 | } | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3696 | if (OldTy->isSignedIntegerType()) | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3697 | NewTy = S.Context.ShortTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3698 | else | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3699 | NewTy = S.Context.UnsignedShortTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3700 | break; | 
|  | 3701 | case 32: | 
|  | 3702 | if (!IntegerMode) | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3703 | NewTy = S.Context.FloatTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3704 | else if (OldTy->isSignedIntegerType()) | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3705 | NewTy = S.Context.IntTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3706 | else | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3707 | NewTy = S.Context.UnsignedIntTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3708 | break; | 
|  | 3709 | case 64: | 
|  | 3710 | if (!IntegerMode) | 
| Chris Lattner | 0b2f4da | 2008-06-29 00:28:59 +0000 | [diff] [blame] | 3711 | NewTy = S.Context.DoubleTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3712 | else if (OldTy->isSignedIntegerType()) | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3713 | if (S.Context.getTargetInfo().getLongWidth() == 64) | 
| Chandler Carruth | aec7caa | 2010-01-26 06:39:24 +0000 | [diff] [blame] | 3714 | NewTy = S.Context.LongTy; | 
|  | 3715 | else | 
|  | 3716 | NewTy = S.Context.LongLongTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3717 | else | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 3718 | if (S.Context.getTargetInfo().getLongWidth() == 64) | 
| Chandler Carruth | aec7caa | 2010-01-26 06:39:24 +0000 | [diff] [blame] | 3719 | NewTy = S.Context.UnsignedLongTy; | 
|  | 3720 | else | 
|  | 3721 | NewTy = S.Context.UnsignedLongLongTy; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3722 | break; | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3723 | case 96: | 
|  | 3724 | NewTy = S.Context.LongDoubleTy; | 
|  | 3725 | break; | 
| Eli Friedman | f98aba3 | 2009-02-13 02:31:07 +0000 | [diff] [blame] | 3726 | case 128: | 
|  | 3727 | if (!IntegerMode) { | 
|  | 3728 | S.Diag(Attr.getLoc(), diag::err_unsupported_machine_mode) << Name; | 
|  | 3729 | return; | 
|  | 3730 | } | 
| Anders Carlsson | f5f7d86 | 2009-12-29 07:07:36 +0000 | [diff] [blame] | 3731 | if (OldTy->isSignedIntegerType()) | 
|  | 3732 | NewTy = S.Context.Int128Ty; | 
|  | 3733 | else | 
|  | 3734 | NewTy = S.Context.UnsignedInt128Ty; | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3735 | break; | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3736 | } | 
|  | 3737 |  | 
| Eli Friedman | 7339749 | 2009-03-03 06:41:03 +0000 | [diff] [blame] | 3738 | if (ComplexMode) { | 
|  | 3739 | NewTy = S.Context.getComplexType(NewTy); | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3740 | } | 
|  | 3741 |  | 
|  | 3742 | // Install the new type. | 
| Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 3743 | if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { | 
| John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 3744 | // FIXME: preserve existing source info. | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3745 | TD->setTypeSourceInfo(S.Context.getTrivialTypeSourceInfo(NewTy)); | 
| John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 3746 | } else | 
| Chris Lattner | fbf1347 | 2008-06-27 22:18:37 +0000 | [diff] [blame] | 3747 | cast<ValueDecl>(D)->setType(NewTy); | 
|  | 3748 | } | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 3749 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3750 | static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Anders Carlsson | d87df37 | 2009-02-13 06:46:13 +0000 | [diff] [blame] | 3751 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3752 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Anders Carlsson | d87df37 | 2009-02-13 06:46:13 +0000 | [diff] [blame] | 3753 | return; | 
| Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 3754 |  | 
| Nick Lewycky | 78d1a10 | 2012-07-24 01:40:49 +0000 | [diff] [blame] | 3755 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { | 
|  | 3756 | if (!VD->hasGlobalStorage()) | 
|  | 3757 | S.Diag(Attr.getLoc(), | 
|  | 3758 | diag::warn_attribute_requires_functions_or_static_globals) | 
|  | 3759 | << Attr.getName(); | 
|  | 3760 | } else if (!isFunctionOrMethod(D)) { | 
|  | 3761 | S.Diag(Attr.getLoc(), | 
|  | 3762 | diag::warn_attribute_requires_functions_or_static_globals) | 
|  | 3763 | << Attr.getName(); | 
| Anders Carlsson | d87df37 | 2009-02-13 06:46:13 +0000 | [diff] [blame] | 3764 | return; | 
|  | 3765 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3766 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3767 | D->addAttr(::new (S.Context) | 
|  | 3768 | NoDebugAttr(Attr.getRange(), S.Context, | 
|  | 3769 | Attr.getAttributeSpellingListIndex())); | 
| Anders Carlsson | d87df37 | 2009-02-13 06:46:13 +0000 | [diff] [blame] | 3770 | } | 
|  | 3771 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3772 | static void handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 3773 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3774 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 3775 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3776 |  | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3777 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3778 | if (!isa<FunctionDecl>(D)) { | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 3779 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3780 | << Attr.getName() << ExpectedFunction; | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 3781 | return; | 
|  | 3782 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3783 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3784 | D->addAttr(::new (S.Context) | 
|  | 3785 | NoInlineAttr(Attr.getRange(), S.Context, | 
|  | 3786 | Attr.getAttributeSpellingListIndex())); | 
| Anders Carlsson | 5bab788 | 2009-02-19 19:16:48 +0000 | [diff] [blame] | 3787 | } | 
|  | 3788 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3789 | static void handleNoInstrumentFunctionAttr(Sema &S, Decl *D, | 
|  | 3790 | const AttributeList &Attr) { | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3791 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3792 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3793 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3794 |  | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3795 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3796 | if (!isa<FunctionDecl>(D)) { | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3797 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3798 | << Attr.getName() << ExpectedFunction; | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3799 | return; | 
|  | 3800 | } | 
|  | 3801 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3802 | D->addAttr(::new (S.Context) | 
|  | 3803 | NoInstrumentFunctionAttr(Attr.getRange(), S.Context, | 
|  | 3804 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 3805 | } | 
|  | 3806 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3807 | static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3808 | if (S.LangOpts.CUDA) { | 
|  | 3809 | // check the attribute arguments. | 
| Ted Kremenek | 831efae | 2011-04-15 05:49:29 +0000 | [diff] [blame] | 3810 | if (Attr.hasParameterOrArguments()) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3811 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 3812 | return; | 
|  | 3813 | } | 
|  | 3814 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3815 | if (!isa<VarDecl>(D)) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3816 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3817 | << Attr.getName() << ExpectedVariable; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3818 | return; | 
|  | 3819 | } | 
|  | 3820 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3821 | D->addAttr(::new (S.Context) | 
|  | 3822 | CUDAConstantAttr(Attr.getRange(), S.Context, | 
|  | 3823 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3824 | } else { | 
|  | 3825 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "constant"; | 
|  | 3826 | } | 
|  | 3827 | } | 
|  | 3828 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3829 | static void handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3830 | if (S.LangOpts.CUDA) { | 
|  | 3831 | // check the attribute arguments. | 
|  | 3832 | if (Attr.getNumArgs() != 0) { | 
|  | 3833 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0; | 
|  | 3834 | return; | 
|  | 3835 | } | 
|  | 3836 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3837 | if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3838 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3839 | << Attr.getName() << ExpectedVariableOrFunction; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3840 | return; | 
|  | 3841 | } | 
|  | 3842 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3843 | D->addAttr(::new (S.Context) | 
|  | 3844 | CUDADeviceAttr(Attr.getRange(), S.Context, | 
|  | 3845 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3846 | } else { | 
|  | 3847 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "device"; | 
|  | 3848 | } | 
|  | 3849 | } | 
|  | 3850 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3851 | static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3852 | if (S.LangOpts.CUDA) { | 
|  | 3853 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3854 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3855 | return; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3856 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3857 | if (!isa<FunctionDecl>(D)) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3858 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3859 | << Attr.getName() << ExpectedFunction; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3860 | return; | 
|  | 3861 | } | 
|  | 3862 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3863 | FunctionDecl *FD = cast<FunctionDecl>(D); | 
| Peter Collingbourne | 2c2c8dd | 2010-12-12 23:02:57 +0000 | [diff] [blame] | 3864 | if (!FD->getResultType()->isVoidType()) { | 
| Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 3865 | TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc().IgnoreParens(); | 
| David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 3866 | if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) { | 
| Peter Collingbourne | 2c2c8dd | 2010-12-12 23:02:57 +0000 | [diff] [blame] | 3867 | S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return) | 
|  | 3868 | << FD->getType() | 
| David Blaikie | 39e6ab4 | 2013-02-18 22:06:02 +0000 | [diff] [blame] | 3869 | << FixItHint::CreateReplacement(FTL.getResultLoc().getSourceRange(), | 
| Peter Collingbourne | 2c2c8dd | 2010-12-12 23:02:57 +0000 | [diff] [blame] | 3870 | "void"); | 
|  | 3871 | } else { | 
|  | 3872 | S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return) | 
|  | 3873 | << FD->getType(); | 
|  | 3874 | } | 
|  | 3875 | return; | 
|  | 3876 | } | 
|  | 3877 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3878 | D->addAttr(::new (S.Context) | 
|  | 3879 | CUDAGlobalAttr(Attr.getRange(), S.Context, | 
|  | 3880 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3881 | } else { | 
|  | 3882 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "global"; | 
|  | 3883 | } | 
|  | 3884 | } | 
|  | 3885 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3886 | static void handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3887 | if (S.LangOpts.CUDA) { | 
|  | 3888 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3889 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3890 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3891 |  | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3892 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3893 | if (!isa<FunctionDecl>(D)) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3894 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3895 | << Attr.getName() << ExpectedFunction; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3896 | return; | 
|  | 3897 | } | 
|  | 3898 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3899 | D->addAttr(::new (S.Context) | 
|  | 3900 | CUDAHostAttr(Attr.getRange(), S.Context, | 
|  | 3901 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3902 | } else { | 
|  | 3903 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "host"; | 
|  | 3904 | } | 
|  | 3905 | } | 
|  | 3906 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3907 | static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3908 | if (S.LangOpts.CUDA) { | 
|  | 3909 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3910 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3911 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3912 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3913 | if (!isa<VarDecl>(D)) { | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3914 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3915 | << Attr.getName() << ExpectedVariable; | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3916 | return; | 
|  | 3917 | } | 
|  | 3918 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3919 | D->addAttr(::new (S.Context) | 
|  | 3920 | CUDASharedAttr(Attr.getRange(), S.Context, | 
|  | 3921 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 3922 | } else { | 
|  | 3923 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "shared"; | 
|  | 3924 | } | 
|  | 3925 | } | 
|  | 3926 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3927 | static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chris Lattner | 26e2554 | 2009-04-14 16:30:50 +0000 | [diff] [blame] | 3928 | // check the attribute arguments. | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 3929 | if (!checkAttributeNumArgs(S, Attr, 0)) | 
| Chris Lattner | 26e2554 | 2009-04-14 16:30:50 +0000 | [diff] [blame] | 3930 | return; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3931 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3932 | FunctionDecl *Fn = dyn_cast<FunctionDecl>(D); | 
| Chris Lattner | c519743 | 2009-04-14 17:02:11 +0000 | [diff] [blame] | 3933 | if (Fn == 0) { | 
| Chris Lattner | 26e2554 | 2009-04-14 16:30:50 +0000 | [diff] [blame] | 3934 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 3935 | << Attr.getName() << ExpectedFunction; | 
| Chris Lattner | 26e2554 | 2009-04-14 16:30:50 +0000 | [diff] [blame] | 3936 | return; | 
|  | 3937 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3938 |  | 
| Douglas Gregor | 0130f3c | 2009-10-27 21:01:01 +0000 | [diff] [blame] | 3939 | if (!Fn->isInlineSpecified()) { | 
| Chris Lattner | cf2a721 | 2009-04-20 19:12:28 +0000 | [diff] [blame] | 3940 | S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline); | 
| Chris Lattner | c519743 | 2009-04-14 17:02:11 +0000 | [diff] [blame] | 3941 | return; | 
|  | 3942 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 3943 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3944 | D->addAttr(::new (S.Context) | 
|  | 3945 | GNUInlineAttr(Attr.getRange(), S.Context, | 
|  | 3946 | Attr.getAttributeSpellingListIndex())); | 
| Chris Lattner | 26e2554 | 2009-04-14 16:30:50 +0000 | [diff] [blame] | 3947 | } | 
|  | 3948 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 3949 | static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3950 | if (hasDeclarator(D)) return; | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 3951 |  | 
| Aaron Ballman | fff3248 | 2012-12-09 17:45:41 +0000 | [diff] [blame] | 3952 | const FunctionDecl *FD = dyn_cast<FunctionDecl>(D); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3953 | // Diagnostic is emitted elsewhere: here we store the (valid) Attr | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 3954 | // in the Decl node for syntactic reasoning, e.g., pretty-printing. | 
|  | 3955 | CallingConv CC; | 
| Aaron Ballman | fff3248 | 2012-12-09 17:45:41 +0000 | [diff] [blame] | 3956 | if (S.CheckCallingConvAttr(Attr, CC, FD)) | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 3957 | return; | 
|  | 3958 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3959 | if (!isa<ObjCMethodDecl>(D)) { | 
|  | 3960 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 3961 | << Attr.getName() << ExpectedFunctionOrMethod; | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 3962 | return; | 
|  | 3963 | } | 
|  | 3964 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 3965 | switch (Attr.getKind()) { | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3966 | case AttributeList::AT_FastCall: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3967 | D->addAttr(::new (S.Context) | 
|  | 3968 | FastCallAttr(Attr.getRange(), S.Context, | 
|  | 3969 | Attr.getAttributeSpellingListIndex())); | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 3970 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3971 | case AttributeList::AT_StdCall: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3972 | D->addAttr(::new (S.Context) | 
|  | 3973 | StdCallAttr(Attr.getRange(), S.Context, | 
|  | 3974 | Attr.getAttributeSpellingListIndex())); | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 3975 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3976 | case AttributeList::AT_ThisCall: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3977 | D->addAttr(::new (S.Context) | 
|  | 3978 | ThisCallAttr(Attr.getRange(), S.Context, | 
|  | 3979 | Attr.getAttributeSpellingListIndex())); | 
| Douglas Gregor | 04633eb | 2010-08-30 23:30:49 +0000 | [diff] [blame] | 3980 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3981 | case AttributeList::AT_CDecl: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3982 | D->addAttr(::new (S.Context) | 
|  | 3983 | CDeclAttr(Attr.getRange(), S.Context, | 
|  | 3984 | Attr.getAttributeSpellingListIndex())); | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 3985 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3986 | case AttributeList::AT_Pascal: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 3987 | D->addAttr(::new (S.Context) | 
|  | 3988 | PascalAttr(Attr.getRange(), S.Context, | 
|  | 3989 | Attr.getAttributeSpellingListIndex())); | 
| Dawn Perchik | 52fc314 | 2010-09-03 01:29:35 +0000 | [diff] [blame] | 3990 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 3991 | case AttributeList::AT_Pcs: { | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 3992 | PcsAttr::PCSType PCS; | 
| Benjamin Kramer | 9071def | 2012-08-14 13:24:39 +0000 | [diff] [blame] | 3993 | switch (CC) { | 
|  | 3994 | case CC_AAPCS: | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 3995 | PCS = PcsAttr::AAPCS; | 
| Benjamin Kramer | 9071def | 2012-08-14 13:24:39 +0000 | [diff] [blame] | 3996 | break; | 
|  | 3997 | case CC_AAPCS_VFP: | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 3998 | PCS = PcsAttr::AAPCS_VFP; | 
| Benjamin Kramer | 9071def | 2012-08-14 13:24:39 +0000 | [diff] [blame] | 3999 | break; | 
|  | 4000 | default: | 
|  | 4001 | llvm_unreachable("unexpected calling convention in pcs attribute"); | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4002 | } | 
|  | 4003 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4004 | D->addAttr(::new (S.Context) | 
|  | 4005 | PcsAttr(Attr.getRange(), S.Context, PCS, | 
|  | 4006 | Attr.getAttributeSpellingListIndex())); | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4007 | return; | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4008 | } | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4009 | case AttributeList::AT_PnaclCall: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4010 | D->addAttr(::new (S.Context) | 
|  | 4011 | PnaclCallAttr(Attr.getRange(), S.Context, | 
|  | 4012 | Attr.getAttributeSpellingListIndex())); | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4013 | return; | 
| Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 4014 | case AttributeList::AT_IntelOclBicc: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4015 | D->addAttr(::new (S.Context) | 
|  | 4016 | IntelOclBiccAttr(Attr.getRange(), S.Context, | 
|  | 4017 | Attr.getAttributeSpellingListIndex())); | 
| Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 4018 | return; | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4019 |  | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 4020 | default: | 
|  | 4021 | llvm_unreachable("unexpected attribute kind"); | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 4022 | } | 
|  | 4023 | } | 
|  | 4024 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4025 | static void handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr){ | 
| Chandler Carruth | 56aeb40 | 2011-07-11 23:33:05 +0000 | [diff] [blame] | 4026 | assert(!Attr.isInvalid()); | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4027 | D->addAttr(::new (S.Context) OpenCLKernelAttr(Attr.getRange(), S.Context)); | 
| Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 4028 | } | 
|  | 4029 |  | 
| Guy Benyei | 1db7040 | 2013-03-24 13:58:12 +0000 | [diff] [blame] | 4030 | static void handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr){ | 
|  | 4031 | assert(!Attr.isInvalid()); | 
|  | 4032 |  | 
|  | 4033 | Expr *E = Attr.getArg(0); | 
|  | 4034 | llvm::APSInt ArgNum(32); | 
|  | 4035 | if (E->isTypeDependent() || E->isValueDependent() || | 
|  | 4036 | !E->isIntegerConstantExpr(ArgNum, S.Context)) { | 
|  | 4037 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
|  | 4038 | << Attr.getName()->getName() << E->getSourceRange(); | 
|  | 4039 | return; | 
|  | 4040 | } | 
|  | 4041 |  | 
|  | 4042 | D->addAttr(::new (S.Context) OpenCLImageAccessAttr( | 
|  | 4043 | Attr.getRange(), S.Context, ArgNum.getZExtValue())); | 
|  | 4044 | } | 
|  | 4045 |  | 
| Aaron Ballman | fff3248 | 2012-12-09 17:45:41 +0000 | [diff] [blame] | 4046 | bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC, | 
|  | 4047 | const FunctionDecl *FD) { | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4048 | if (attr.isInvalid()) | 
|  | 4049 | return true; | 
|  | 4050 |  | 
| Benjamin Kramer | fac8e43 | 2012-08-14 13:13:47 +0000 | [diff] [blame] | 4051 | unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0; | 
|  | 4052 | if (attr.getNumArgs() != ReqArgs || attr.getParameterName()) { | 
|  | 4053 | Diag(attr.getLoc(), diag::err_attribute_wrong_number_arguments) << ReqArgs; | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4054 | attr.setInvalid(); | 
|  | 4055 | return true; | 
|  | 4056 | } | 
|  | 4057 |  | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4058 | // TODO: diagnose uses of these conventions on the wrong target. Or, better | 
|  | 4059 | // move to TargetAttributesSema one day. | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4060 | switch (attr.getKind()) { | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4061 | case AttributeList::AT_CDecl: CC = CC_C; break; | 
|  | 4062 | case AttributeList::AT_FastCall: CC = CC_X86FastCall; break; | 
|  | 4063 | case AttributeList::AT_StdCall: CC = CC_X86StdCall; break; | 
|  | 4064 | case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break; | 
|  | 4065 | case AttributeList::AT_Pascal: CC = CC_X86Pascal; break; | 
|  | 4066 | case AttributeList::AT_Pcs: { | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4067 | Expr *Arg = attr.getArg(0); | 
|  | 4068 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
| Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 4069 | if (!Str || !Str->isAscii()) { | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4070 | Diag(attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
|  | 4071 | << "pcs" << 1; | 
|  | 4072 | attr.setInvalid(); | 
|  | 4073 | return true; | 
|  | 4074 | } | 
|  | 4075 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4076 | StringRef StrRef = Str->getString(); | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4077 | if (StrRef == "aapcs") { | 
|  | 4078 | CC = CC_AAPCS; | 
|  | 4079 | break; | 
|  | 4080 | } else if (StrRef == "aapcs-vfp") { | 
|  | 4081 | CC = CC_AAPCS_VFP; | 
|  | 4082 | break; | 
|  | 4083 | } | 
| Benjamin Kramer | fac8e43 | 2012-08-14 13:13:47 +0000 | [diff] [blame] | 4084 |  | 
|  | 4085 | attr.setInvalid(); | 
|  | 4086 | Diag(attr.getLoc(), diag::err_invalid_pcs); | 
|  | 4087 | return true; | 
| Anton Korobeynikov | 414d896 | 2011-04-14 20:06:49 +0000 | [diff] [blame] | 4088 | } | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4089 | case AttributeList::AT_PnaclCall: CC = CC_PnaclCall; break; | 
| Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 4090 | case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break; | 
| David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4091 | default: llvm_unreachable("unexpected attribute kind"); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4092 | } | 
|  | 4093 |  | 
| Aaron Ballman | 82bfa19 | 2012-10-02 14:26:08 +0000 | [diff] [blame] | 4094 | const TargetInfo &TI = Context.getTargetInfo(); | 
|  | 4095 | TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC); | 
|  | 4096 | if (A == TargetInfo::CCCR_Warning) { | 
|  | 4097 | Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName(); | 
| Aaron Ballman | fff3248 | 2012-12-09 17:45:41 +0000 | [diff] [blame] | 4098 |  | 
|  | 4099 | TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown; | 
|  | 4100 | if (FD) | 
|  | 4101 | MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member : | 
|  | 4102 | TargetInfo::CCMT_NonMember; | 
|  | 4103 | CC = TI.getDefaultCallingConv(MT); | 
| Aaron Ballman | 82bfa19 | 2012-10-02 14:26:08 +0000 | [diff] [blame] | 4104 | } | 
|  | 4105 |  | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4106 | return false; | 
|  | 4107 | } | 
|  | 4108 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4109 | static void handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4110 | if (hasDeclarator(D)) return; | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4111 |  | 
|  | 4112 | unsigned numParams; | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4113 | if (S.CheckRegparmAttr(Attr, numParams)) | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4114 | return; | 
|  | 4115 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4116 | if (!isa<ObjCMethodDecl>(D)) { | 
|  | 4117 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
|  | 4118 | << Attr.getName() << ExpectedFunctionOrMethod; | 
| Fariborz Jahanian | ee76033 | 2009-03-27 18:38:55 +0000 | [diff] [blame] | 4119 | return; | 
|  | 4120 | } | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4121 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4122 | D->addAttr(::new (S.Context) | 
|  | 4123 | RegparmAttr(Attr.getRange(), S.Context, numParams, | 
|  | 4124 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4125 | } | 
|  | 4126 |  | 
|  | 4127 | /// Checks a regparm attribute, returning true if it is ill-formed and | 
|  | 4128 | /// otherwise setting numParams to the appropriate value. | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4129 | bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) { | 
|  | 4130 | if (Attr.isInvalid()) | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4131 | return true; | 
|  | 4132 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4133 | if (Attr.getNumArgs() != 1) { | 
|  | 4134 | Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 1; | 
|  | 4135 | Attr.setInvalid(); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4136 | return true; | 
| Fariborz Jahanian | ee76033 | 2009-03-27 18:38:55 +0000 | [diff] [blame] | 4137 | } | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4138 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4139 | Expr *NumParamsExpr = Attr.getArg(0); | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4140 | llvm::APSInt NumParams(32); | 
| Douglas Gregor | ac06a0e | 2010-05-18 23:01:22 +0000 | [diff] [blame] | 4141 | if (NumParamsExpr->isTypeDependent() || NumParamsExpr->isValueDependent() || | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4142 | !NumParamsExpr->isIntegerConstantExpr(NumParams, Context)) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4143 | Diag(Attr.getLoc(), diag::err_attribute_argument_not_int) | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4144 | << "regparm" << NumParamsExpr->getSourceRange(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4145 | Attr.setInvalid(); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4146 | return true; | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4147 | } | 
|  | 4148 |  | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 4149 | if (Context.getTargetInfo().getRegParmMax() == 0) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4150 | Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform) | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4151 | << NumParamsExpr->getSourceRange(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4152 | Attr.setInvalid(); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4153 | return true; | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4154 | } | 
|  | 4155 |  | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4156 | numParams = NumParams.getZExtValue(); | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 4157 | if (numParams > Context.getTargetInfo().getRegParmMax()) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4158 | Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number) | 
| Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 4159 | << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4160 | Attr.setInvalid(); | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4161 | return true; | 
| Eli Friedman | 55d3aaf | 2009-03-27 21:06:47 +0000 | [diff] [blame] | 4162 | } | 
|  | 4163 |  | 
| John McCall | 711c52b | 2011-01-05 12:14:39 +0000 | [diff] [blame] | 4164 | return false; | 
| Fariborz Jahanian | ee76033 | 2009-03-27 18:38:55 +0000 | [diff] [blame] | 4165 | } | 
|  | 4166 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4167 | static void handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr){ | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4168 | if (S.LangOpts.CUDA) { | 
|  | 4169 | // check the attribute arguments. | 
|  | 4170 | if (Attr.getNumArgs() != 1 && Attr.getNumArgs() != 2) { | 
| John McCall | bdc49d3 | 2011-03-02 12:15:05 +0000 | [diff] [blame] | 4171 | // FIXME: 0 is not okay. | 
|  | 4172 | S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) << 2; | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4173 | return; | 
|  | 4174 | } | 
|  | 4175 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4176 | if (!isFunctionOrMethod(D)) { | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4177 | S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 4178 | << Attr.getName() << ExpectedFunctionOrMethod; | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4179 | return; | 
|  | 4180 | } | 
|  | 4181 |  | 
|  | 4182 | Expr *MaxThreadsExpr = Attr.getArg(0); | 
|  | 4183 | llvm::APSInt MaxThreads(32); | 
|  | 4184 | if (MaxThreadsExpr->isTypeDependent() || | 
|  | 4185 | MaxThreadsExpr->isValueDependent() || | 
|  | 4186 | !MaxThreadsExpr->isIntegerConstantExpr(MaxThreads, S.Context)) { | 
|  | 4187 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
|  | 4188 | << "launch_bounds" << 1 << MaxThreadsExpr->getSourceRange(); | 
|  | 4189 | return; | 
|  | 4190 | } | 
|  | 4191 |  | 
|  | 4192 | llvm::APSInt MinBlocks(32); | 
|  | 4193 | if (Attr.getNumArgs() > 1) { | 
|  | 4194 | Expr *MinBlocksExpr = Attr.getArg(1); | 
|  | 4195 | if (MinBlocksExpr->isTypeDependent() || | 
|  | 4196 | MinBlocksExpr->isValueDependent() || | 
|  | 4197 | !MinBlocksExpr->isIntegerConstantExpr(MinBlocks, S.Context)) { | 
|  | 4198 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_int) | 
|  | 4199 | << "launch_bounds" << 2 << MinBlocksExpr->getSourceRange(); | 
|  | 4200 | return; | 
|  | 4201 | } | 
|  | 4202 | } | 
|  | 4203 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4204 | D->addAttr(::new (S.Context) | 
|  | 4205 | CUDALaunchBoundsAttr(Attr.getRange(), S.Context, | 
|  | 4206 | MaxThreads.getZExtValue(), | 
|  | 4207 | MinBlocks.getZExtValue(), | 
|  | 4208 | Attr.getAttributeSpellingListIndex())); | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4209 | } else { | 
|  | 4210 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << "launch_bounds"; | 
|  | 4211 | } | 
|  | 4212 | } | 
|  | 4213 |  | 
| Dmitri Gribenko | 0d5a069 | 2012-08-17 00:08:38 +0000 | [diff] [blame] | 4214 | static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D, | 
|  | 4215 | const AttributeList &Attr) { | 
|  | 4216 | StringRef AttrName = Attr.getName()->getName(); | 
|  | 4217 | if (!Attr.getParameterName()) { | 
|  | 4218 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier) | 
|  | 4219 | << Attr.getName() << /* arg num = */ 1; | 
|  | 4220 | return; | 
|  | 4221 | } | 
|  | 4222 |  | 
|  | 4223 | if (Attr.getNumArgs() != 2) { | 
|  | 4224 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) | 
|  | 4225 | << /* required args = */ 3; | 
|  | 4226 | return; | 
|  | 4227 | } | 
|  | 4228 |  | 
|  | 4229 | IdentifierInfo *ArgumentKind = Attr.getParameterName(); | 
|  | 4230 |  | 
|  | 4231 | if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) { | 
|  | 4232 | S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) | 
|  | 4233 | << Attr.getName() << ExpectedFunctionOrMethod; | 
|  | 4234 | return; | 
|  | 4235 | } | 
|  | 4236 |  | 
|  | 4237 | uint64_t ArgumentIdx; | 
|  | 4238 | if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName, | 
|  | 4239 | Attr.getLoc(), 2, | 
|  | 4240 | Attr.getArg(0), ArgumentIdx)) | 
|  | 4241 | return; | 
|  | 4242 |  | 
|  | 4243 | uint64_t TypeTagIdx; | 
|  | 4244 | if (!checkFunctionOrMethodArgumentIndex(S, D, AttrName, | 
|  | 4245 | Attr.getLoc(), 3, | 
|  | 4246 | Attr.getArg(1), TypeTagIdx)) | 
|  | 4247 | return; | 
|  | 4248 |  | 
|  | 4249 | bool IsPointer = (AttrName == "pointer_with_type_tag"); | 
|  | 4250 | if (IsPointer) { | 
|  | 4251 | // Ensure that buffer has a pointer type. | 
|  | 4252 | QualType BufferTy = getFunctionOrMethodArgType(D, ArgumentIdx); | 
|  | 4253 | if (!BufferTy->isPointerType()) { | 
|  | 4254 | S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only) | 
|  | 4255 | << AttrName; | 
|  | 4256 | } | 
|  | 4257 | } | 
|  | 4258 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4259 | D->addAttr(::new (S.Context) | 
|  | 4260 | ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind, | 
|  | 4261 | ArgumentIdx, TypeTagIdx, IsPointer, | 
|  | 4262 | Attr.getAttributeSpellingListIndex())); | 
| Dmitri Gribenko | 0d5a069 | 2012-08-17 00:08:38 +0000 | [diff] [blame] | 4263 | } | 
|  | 4264 |  | 
|  | 4265 | static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D, | 
|  | 4266 | const AttributeList &Attr) { | 
|  | 4267 | IdentifierInfo *PointerKind = Attr.getParameterName(); | 
|  | 4268 | if (!PointerKind) { | 
|  | 4269 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_identifier) | 
|  | 4270 | << "type_tag_for_datatype" << 1; | 
|  | 4271 | return; | 
|  | 4272 | } | 
|  | 4273 |  | 
|  | 4274 | QualType MatchingCType = S.GetTypeFromParser(Attr.getMatchingCType(), NULL); | 
|  | 4275 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4276 | D->addAttr(::new (S.Context) | 
|  | 4277 | TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind, | 
|  | 4278 | MatchingCType, | 
|  | 4279 | Attr.getLayoutCompatible(), | 
|  | 4280 | Attr.getMustBeNull(), | 
|  | 4281 | Attr.getAttributeSpellingListIndex())); | 
| Dmitri Gribenko | 0d5a069 | 2012-08-17 00:08:38 +0000 | [diff] [blame] | 4282 | } | 
|  | 4283 |  | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 4284 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4285 | // Checker-specific attribute handlers. | 
|  | 4286 | //===----------------------------------------------------------------------===// | 
|  | 4287 |  | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4288 | static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) { | 
| Douglas Gregor | 6c73a29 | 2011-10-09 22:26:49 +0000 | [diff] [blame] | 4289 | return type->isDependentType() || | 
|  | 4290 | type->isObjCObjectPointerType() || | 
|  | 4291 | S.Context.isObjCNSObjectType(type); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4292 | } | 
|  | 4293 | static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) { | 
| Douglas Gregor | 6c73a29 | 2011-10-09 22:26:49 +0000 | [diff] [blame] | 4294 | return type->isDependentType() || | 
|  | 4295 | type->isPointerType() || | 
|  | 4296 | isValidSubjectOfNSAttribute(S, type); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4297 | } | 
|  | 4298 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4299 | static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4300 | ParmVarDecl *param = dyn_cast<ParmVarDecl>(D); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4301 | if (!param) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4302 | S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4303 | << Attr.getRange() << Attr.getName() << ExpectedParameter; | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4304 | return; | 
|  | 4305 | } | 
|  | 4306 |  | 
|  | 4307 | bool typeOK, cf; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4308 | if (Attr.getKind() == AttributeList::AT_NSConsumed) { | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4309 | typeOK = isValidSubjectOfNSAttribute(S, param->getType()); | 
|  | 4310 | cf = false; | 
|  | 4311 | } else { | 
|  | 4312 | typeOK = isValidSubjectOfCFAttribute(S, param->getType()); | 
|  | 4313 | cf = true; | 
|  | 4314 | } | 
|  | 4315 |  | 
|  | 4316 | if (!typeOK) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4317 | S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4318 | << Attr.getRange() << Attr.getName() << cf; | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4319 | return; | 
|  | 4320 | } | 
|  | 4321 |  | 
|  | 4322 | if (cf) | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4323 | param->addAttr(::new (S.Context) | 
|  | 4324 | CFConsumedAttr(Attr.getRange(), S.Context, | 
|  | 4325 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4326 | else | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4327 | param->addAttr(::new (S.Context) | 
|  | 4328 | NSConsumedAttr(Attr.getRange(), S.Context, | 
|  | 4329 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4330 | } | 
|  | 4331 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4332 | static void handleNSConsumesSelfAttr(Sema &S, Decl *D, | 
|  | 4333 | const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4334 | if (!isa<ObjCMethodDecl>(D)) { | 
|  | 4335 | S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4336 | << Attr.getRange() << Attr.getName() << ExpectedMethod; | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4337 | return; | 
|  | 4338 | } | 
|  | 4339 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4340 | D->addAttr(::new (S.Context) | 
|  | 4341 | NSConsumesSelfAttr(Attr.getRange(), S.Context, | 
|  | 4342 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4343 | } | 
|  | 4344 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4345 | static void handleNSReturnsRetainedAttr(Sema &S, Decl *D, | 
|  | 4346 | const AttributeList &Attr) { | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4347 |  | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4348 | QualType returnType; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4349 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4350 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4351 | returnType = MD->getResultType(); | 
| David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4352 | else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) && | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4353 | (Attr.getKind() == AttributeList::AT_NSReturnsRetained)) | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4354 | return; // ignore: was handled as a type attribute | 
| Fariborz Jahanian | a23bd4c | 2012-08-28 22:26:21 +0000 | [diff] [blame] | 4355 | else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) | 
|  | 4356 | returnType = PD->getType(); | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4357 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4358 | returnType = FD->getResultType(); | 
| Ted Kremenek | 5dc53c9 | 2009-05-13 21:07:32 +0000 | [diff] [blame] | 4359 | else { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4360 | S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4361 | << Attr.getRange() << Attr.getName() | 
| John McCall | 883cc2c | 2011-03-02 12:29:23 +0000 | [diff] [blame] | 4362 | << ExpectedFunctionOrMethod; | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4363 | return; | 
|  | 4364 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4365 |  | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4366 | bool typeOK; | 
|  | 4367 | bool cf; | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4368 | switch (Attr.getKind()) { | 
| David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 4369 | default: llvm_unreachable("invalid ownership attribute"); | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4370 | case AttributeList::AT_NSReturnsAutoreleased: | 
|  | 4371 | case AttributeList::AT_NSReturnsRetained: | 
|  | 4372 | case AttributeList::AT_NSReturnsNotRetained: | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4373 | typeOK = isValidSubjectOfNSAttribute(S, returnType); | 
|  | 4374 | cf = false; | 
|  | 4375 | break; | 
|  | 4376 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4377 | case AttributeList::AT_CFReturnsRetained: | 
|  | 4378 | case AttributeList::AT_CFReturnsNotRetained: | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4379 | typeOK = isValidSubjectOfCFAttribute(S, returnType); | 
|  | 4380 | cf = true; | 
|  | 4381 | break; | 
|  | 4382 | } | 
|  | 4383 |  | 
|  | 4384 | if (!typeOK) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4385 | S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type) | 
| Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 4386 | << Attr.getRange() << Attr.getName() << isa<ObjCMethodDecl>(D) << cf; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4387 | return; | 
| Ted Kremenek | 5dc53c9 | 2009-05-13 21:07:32 +0000 | [diff] [blame] | 4388 | } | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4389 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4390 | switch (Attr.getKind()) { | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4391 | default: | 
| David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4392 | llvm_unreachable("invalid ownership attribute"); | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4393 | case AttributeList::AT_NSReturnsAutoreleased: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4394 | D->addAttr(::new (S.Context) | 
|  | 4395 | NSReturnsAutoreleasedAttr(Attr.getRange(), S.Context, | 
|  | 4396 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4397 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4398 | case AttributeList::AT_CFReturnsNotRetained: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4399 | D->addAttr(::new (S.Context) | 
|  | 4400 | CFReturnsNotRetainedAttr(Attr.getRange(), S.Context, | 
|  | 4401 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 31c780d | 2010-02-18 00:05:45 +0000 | [diff] [blame] | 4402 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4403 | case AttributeList::AT_NSReturnsNotRetained: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4404 | D->addAttr(::new (S.Context) | 
|  | 4405 | NSReturnsNotRetainedAttr(Attr.getRange(), S.Context, | 
|  | 4406 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | 31c780d | 2010-02-18 00:05:45 +0000 | [diff] [blame] | 4407 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4408 | case AttributeList::AT_CFReturnsRetained: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4409 | D->addAttr(::new (S.Context) | 
|  | 4410 | CFReturnsRetainedAttr(Attr.getRange(), S.Context, | 
|  | 4411 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4412 | return; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4413 | case AttributeList::AT_NSReturnsRetained: | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4414 | D->addAttr(::new (S.Context) | 
|  | 4415 | NSReturnsRetainedAttr(Attr.getRange(), S.Context, | 
|  | 4416 | Attr.getAttributeSpellingListIndex())); | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4417 | return; | 
|  | 4418 | }; | 
|  | 4419 | } | 
|  | 4420 |  | 
| John McCall | dc7c5ad | 2011-07-22 08:53:00 +0000 | [diff] [blame] | 4421 | static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D, | 
|  | 4422 | const AttributeList &attr) { | 
|  | 4423 | SourceLocation loc = attr.getLoc(); | 
|  | 4424 |  | 
|  | 4425 | ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D); | 
|  | 4426 |  | 
| Fariborz Jahanian | 94d55d7 | 2012-04-21 17:51:44 +0000 | [diff] [blame] | 4427 | if (!method) { | 
| Fariborz Jahanian | 0e78afb | 2012-04-20 22:00:46 +0000 | [diff] [blame] | 4428 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4429 | << SourceRange(loc, loc) << attr.getName() << ExpectedMethod; | 
| John McCall | dc7c5ad | 2011-07-22 08:53:00 +0000 | [diff] [blame] | 4430 | return; | 
|  | 4431 | } | 
|  | 4432 |  | 
|  | 4433 | // Check that the method returns a normal pointer. | 
|  | 4434 | QualType resultType = method->getResultType(); | 
| Fariborz Jahanian | f2e5945 | 2011-09-30 20:50:23 +0000 | [diff] [blame] | 4435 |  | 
|  | 4436 | if (!resultType->isReferenceType() && | 
|  | 4437 | (!resultType->isPointerType() || resultType->isObjCRetainableType())) { | 
| John McCall | dc7c5ad | 2011-07-22 08:53:00 +0000 | [diff] [blame] | 4438 | S.Diag(method->getLocStart(), diag::warn_ns_attribute_wrong_return_type) | 
|  | 4439 | << SourceRange(loc) | 
|  | 4440 | << attr.getName() << /*method*/ 1 << /*non-retainable pointer*/ 2; | 
|  | 4441 |  | 
|  | 4442 | // Drop the attribute. | 
|  | 4443 | return; | 
|  | 4444 | } | 
|  | 4445 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4446 | method->addAttr(::new (S.Context) | 
|  | 4447 | ObjCReturnsInnerPointerAttr(attr.getRange(), S.Context, | 
|  | 4448 | attr.getAttributeSpellingListIndex())); | 
| John McCall | dc7c5ad | 2011-07-22 08:53:00 +0000 | [diff] [blame] | 4449 | } | 
|  | 4450 |  | 
| Fariborz Jahanian | 8410113 | 2012-09-07 23:46:23 +0000 | [diff] [blame] | 4451 | static void handleObjCRequiresSuperAttr(Sema &S, Decl *D, | 
|  | 4452 | const AttributeList &attr) { | 
|  | 4453 | SourceLocation loc = attr.getLoc(); | 
|  | 4454 | ObjCMethodDecl *method = dyn_cast<ObjCMethodDecl>(D); | 
|  | 4455 |  | 
|  | 4456 | if (!method) { | 
|  | 4457 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
|  | 4458 | << SourceRange(loc, loc) << attr.getName() << ExpectedMethod; | 
|  | 4459 | return; | 
|  | 4460 | } | 
|  | 4461 | DeclContext *DC = method->getDeclContext(); | 
|  | 4462 | if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) { | 
|  | 4463 | S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) | 
|  | 4464 | << attr.getName() << 0; | 
|  | 4465 | S.Diag(PDecl->getLocation(), diag::note_protocol_decl); | 
|  | 4466 | return; | 
|  | 4467 | } | 
|  | 4468 | if (method->getMethodFamily() == OMF_dealloc) { | 
|  | 4469 | S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) | 
|  | 4470 | << attr.getName() << 1; | 
|  | 4471 | return; | 
|  | 4472 | } | 
|  | 4473 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4474 | method->addAttr(::new (S.Context) | 
|  | 4475 | ObjCRequiresSuperAttr(attr.getRange(), S.Context, | 
|  | 4476 | attr.getAttributeSpellingListIndex())); | 
| Fariborz Jahanian | 8410113 | 2012-09-07 23:46:23 +0000 | [diff] [blame] | 4477 | } | 
|  | 4478 |  | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4479 | /// Handle cf_audited_transfer and cf_unknown_transfer. | 
|  | 4480 | static void handleCFTransferAttr(Sema &S, Decl *D, const AttributeList &A) { | 
|  | 4481 | if (!isa<FunctionDecl>(D)) { | 
|  | 4482 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4483 | << A.getRange() << A.getName() << ExpectedFunction; | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4484 | return; | 
|  | 4485 | } | 
|  | 4486 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4487 | bool IsAudited = (A.getKind() == AttributeList::AT_CFAuditedTransfer); | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4488 |  | 
|  | 4489 | // Check whether there's a conflicting attribute already present. | 
|  | 4490 | Attr *Existing; | 
|  | 4491 | if (IsAudited) { | 
|  | 4492 | Existing = D->getAttr<CFUnknownTransferAttr>(); | 
|  | 4493 | } else { | 
|  | 4494 | Existing = D->getAttr<CFAuditedTransferAttr>(); | 
|  | 4495 | } | 
|  | 4496 | if (Existing) { | 
|  | 4497 | S.Diag(D->getLocStart(), diag::err_attributes_are_not_compatible) | 
|  | 4498 | << A.getName() | 
|  | 4499 | << (IsAudited ? "cf_unknown_transfer" : "cf_audited_transfer") | 
|  | 4500 | << A.getRange() << Existing->getRange(); | 
|  | 4501 | return; | 
|  | 4502 | } | 
|  | 4503 |  | 
|  | 4504 | // All clear;  add the attribute. | 
|  | 4505 | if (IsAudited) { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4506 | D->addAttr(::new (S.Context) | 
|  | 4507 | CFAuditedTransferAttr(A.getRange(), S.Context, | 
|  | 4508 | A.getAttributeSpellingListIndex())); | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4509 | } else { | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4510 | D->addAttr(::new (S.Context) | 
|  | 4511 | CFUnknownTransferAttr(A.getRange(), S.Context, | 
|  | 4512 | A.getAttributeSpellingListIndex())); | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4513 | } | 
|  | 4514 | } | 
|  | 4515 |  | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 4516 | static void handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D, | 
|  | 4517 | const AttributeList &Attr) { | 
|  | 4518 | RecordDecl *RD = dyn_cast<RecordDecl>(D); | 
|  | 4519 | if (!RD || RD->isUnion()) { | 
|  | 4520 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4521 | << Attr.getRange() << Attr.getName() << ExpectedStruct; | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 4522 | } | 
|  | 4523 |  | 
|  | 4524 | IdentifierInfo *ParmName = Attr.getParameterName(); | 
|  | 4525 |  | 
|  | 4526 | // In Objective-C, verify that the type names an Objective-C type. | 
|  | 4527 | // We don't want to check this outside of ObjC because people sometimes | 
|  | 4528 | // do crazy C declarations of Objective-C types. | 
| David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4529 | if (ParmName && S.getLangOpts().ObjC1) { | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 4530 | // Check for an existing type with this name. | 
|  | 4531 | LookupResult R(S, DeclarationName(ParmName), Attr.getParameterLoc(), | 
|  | 4532 | Sema::LookupOrdinaryName); | 
|  | 4533 | if (S.LookupName(R, Sc)) { | 
|  | 4534 | NamedDecl *Target = R.getFoundDecl(); | 
|  | 4535 | if (Target && !isa<ObjCInterfaceDecl>(Target)) { | 
|  | 4536 | S.Diag(D->getLocStart(), diag::err_ns_bridged_not_interface); | 
|  | 4537 | S.Diag(Target->getLocStart(), diag::note_declared_at); | 
|  | 4538 | } | 
|  | 4539 | } | 
|  | 4540 | } | 
|  | 4541 |  | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4542 | D->addAttr(::new (S.Context) | 
|  | 4543 | NSBridgedAttr(Attr.getRange(), S.Context, ParmName, | 
|  | 4544 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 4545 | } | 
|  | 4546 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4547 | static void handleObjCOwnershipAttr(Sema &S, Decl *D, | 
|  | 4548 | const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4549 | if (hasDeclarator(D)) return; | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4550 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4551 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4552 | << Attr.getRange() << Attr.getName() << ExpectedVariable; | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4553 | } | 
|  | 4554 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4555 | static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D, | 
|  | 4556 | const AttributeList &Attr) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4557 | if (!isa<VarDecl>(D) && !isa<FieldDecl>(D)) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4558 | S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4559 | << Attr.getRange() << Attr.getName() << ExpectedVariable; | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4560 | return; | 
|  | 4561 | } | 
|  | 4562 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4563 | ValueDecl *vd = cast<ValueDecl>(D); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4564 | QualType type = vd->getType(); | 
|  | 4565 |  | 
|  | 4566 | if (!type->isDependentType() && | 
|  | 4567 | !type->isObjCLifetimeType()) { | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4568 | S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type) | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4569 | << type; | 
|  | 4570 | return; | 
|  | 4571 | } | 
|  | 4572 |  | 
|  | 4573 | Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); | 
|  | 4574 |  | 
|  | 4575 | // If we have no lifetime yet, check the lifetime we're presumably | 
|  | 4576 | // going to infer. | 
|  | 4577 | if (lifetime == Qualifiers::OCL_None && !type->isDependentType()) | 
|  | 4578 | lifetime = type->getObjCARCImplicitLifetime(); | 
|  | 4579 |  | 
|  | 4580 | switch (lifetime) { | 
|  | 4581 | case Qualifiers::OCL_None: | 
|  | 4582 | assert(type->isDependentType() && | 
|  | 4583 | "didn't infer lifetime for non-dependent type?"); | 
|  | 4584 | break; | 
|  | 4585 |  | 
|  | 4586 | case Qualifiers::OCL_Weak:   // meaningful | 
|  | 4587 | case Qualifiers::OCL_Strong: // meaningful | 
|  | 4588 | break; | 
|  | 4589 |  | 
|  | 4590 | case Qualifiers::OCL_ExplicitNone: | 
|  | 4591 | case Qualifiers::OCL_Autoreleasing: | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4592 | S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless) | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4593 | << (lifetime == Qualifiers::OCL_Autoreleasing); | 
|  | 4594 | break; | 
|  | 4595 | } | 
|  | 4596 |  | 
| Chandler Carruth | 87c4460 | 2011-07-01 23:49:12 +0000 | [diff] [blame] | 4597 | D->addAttr(::new (S.Context) | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4598 | ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context, | 
|  | 4599 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4600 | } | 
|  | 4601 |  | 
| Francois Pichet | 1154214 | 2010-12-19 06:50:37 +0000 | [diff] [blame] | 4602 | //===----------------------------------------------------------------------===// | 
|  | 4603 | // Microsoft specific attribute handlers. | 
|  | 4604 | //===----------------------------------------------------------------------===// | 
|  | 4605 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4606 | // Check if MS extensions or some other language extensions are enabled.  If | 
|  | 4607 | // not, issue a diagnostic that the given attribute is unused. | 
|  | 4608 | static bool checkMicrosoftExt(Sema &S, const AttributeList &Attr, | 
|  | 4609 | bool OtherExtension = false) { | 
|  | 4610 | if (S.LangOpts.MicrosoftExt || OtherExtension) | 
|  | 4611 | return true; | 
|  | 4612 | S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); | 
|  | 4613 | return false; | 
|  | 4614 | } | 
|  | 4615 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4616 | static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4617 | if (!checkMicrosoftExt(S, Attr, S.LangOpts.Borland)) | 
|  | 4618 | return; | 
| Chandler Carruth | 1731e20 | 2011-07-11 23:30:35 +0000 | [diff] [blame] | 4619 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4620 | // check the attribute arguments. | 
|  | 4621 | if (!checkAttributeNumArgs(S, Attr, 1)) | 
|  | 4622 | return; | 
| Francois Pichet | d3d3be9 | 2010-12-20 01:41:49 +0000 | [diff] [blame] | 4623 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4624 | Expr *Arg = Attr.getArg(0); | 
|  | 4625 | StringLiteral *Str = dyn_cast<StringLiteral>(Arg); | 
|  | 4626 | if (!Str || !Str->isAscii()) { | 
|  | 4627 | S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_not_string) | 
|  | 4628 | << "uuid" << 1; | 
|  | 4629 | return; | 
|  | 4630 | } | 
| Francois Pichet | d3d3be9 | 2010-12-20 01:41:49 +0000 | [diff] [blame] | 4631 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4632 | StringRef StrRef = Str->getString(); | 
| Douglas Gregor | f6b8b58 | 2012-03-14 16:55:17 +0000 | [diff] [blame] | 4633 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4634 | bool IsCurly = StrRef.size() > 1 && StrRef.front() == '{' && | 
|  | 4635 | StrRef.back() == '}'; | 
| Francois Pichet | d3d3be9 | 2010-12-20 01:41:49 +0000 | [diff] [blame] | 4636 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4637 | // Validate GUID length. | 
|  | 4638 | if (IsCurly && StrRef.size() != 38) { | 
|  | 4639 | S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid); | 
|  | 4640 | return; | 
|  | 4641 | } | 
|  | 4642 | if (!IsCurly && StrRef.size() != 36) { | 
|  | 4643 | S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid); | 
|  | 4644 | return; | 
|  | 4645 | } | 
| Anders Carlsson | f89e042 | 2011-01-23 21:07:30 +0000 | [diff] [blame] | 4646 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4647 | // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or | 
|  | 4648 | // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}" | 
|  | 4649 | StringRef::iterator I = StrRef.begin(); | 
|  | 4650 | if (IsCurly) // Skip the optional '{' | 
|  | 4651 | ++I; | 
|  | 4652 |  | 
|  | 4653 | for (int i = 0; i < 36; ++i) { | 
|  | 4654 | if (i == 8 || i == 13 || i == 18 || i == 23) { | 
|  | 4655 | if (*I != '-') { | 
| Francois Pichet | d3d3be9 | 2010-12-20 01:41:49 +0000 | [diff] [blame] | 4656 | S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid); | 
|  | 4657 | return; | 
|  | 4658 | } | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4659 | } else if (!isHexDigit(*I)) { | 
|  | 4660 | S.Diag(Attr.getLoc(), diag::err_attribute_uuid_malformed_guid); | 
|  | 4661 | return; | 
| Francois Pichet | d3d3be9 | 2010-12-20 01:41:49 +0000 | [diff] [blame] | 4662 | } | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4663 | I++; | 
|  | 4664 | } | 
| Francois Pichet | 1154214 | 2010-12-19 06:50:37 +0000 | [diff] [blame] | 4665 |  | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4666 | D->addAttr(::new (S.Context) | 
|  | 4667 | UuidAttr(Attr.getRange(), S.Context, Str->getString(), | 
|  | 4668 | Attr.getAttributeSpellingListIndex())); | 
| Charles Davis | f0122fe | 2010-02-16 18:27:26 +0000 | [diff] [blame] | 4669 | } | 
|  | 4670 |  | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4671 | static void handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4672 | if (!checkMicrosoftExt(S, Attr)) | 
| Nico Weber | 7b89ab7 | 2012-11-07 21:31:36 +0000 | [diff] [blame] | 4673 | return; | 
| Nico Weber | 7b89ab7 | 2012-11-07 21:31:36 +0000 | [diff] [blame] | 4674 |  | 
|  | 4675 | AttributeList::Kind Kind = Attr.getKind(); | 
|  | 4676 | if (Kind == AttributeList::AT_SingleInheritance) | 
|  | 4677 | D->addAttr( | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4678 | ::new (S.Context) | 
|  | 4679 | SingleInheritanceAttr(Attr.getRange(), S.Context, | 
|  | 4680 | Attr.getAttributeSpellingListIndex())); | 
| Nico Weber | 7b89ab7 | 2012-11-07 21:31:36 +0000 | [diff] [blame] | 4681 | else if (Kind == AttributeList::AT_MultipleInheritance) | 
|  | 4682 | D->addAttr( | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4683 | ::new (S.Context) | 
|  | 4684 | MultipleInheritanceAttr(Attr.getRange(), S.Context, | 
|  | 4685 | Attr.getAttributeSpellingListIndex())); | 
| Nico Weber | 7b89ab7 | 2012-11-07 21:31:36 +0000 | [diff] [blame] | 4686 | else if (Kind == AttributeList::AT_VirtualInheritance) | 
|  | 4687 | D->addAttr( | 
| Michael Han | 51d8c52 | 2013-01-24 16:46:58 +0000 | [diff] [blame] | 4688 | ::new (S.Context) | 
|  | 4689 | VirtualInheritanceAttr(Attr.getRange(), S.Context, | 
|  | 4690 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4691 | } | 
|  | 4692 |  | 
|  | 4693 | static void handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4694 | if (!checkMicrosoftExt(S, Attr)) | 
|  | 4695 | return; | 
|  | 4696 |  | 
|  | 4697 | AttributeList::Kind Kind = Attr.getKind(); | 
|  | 4698 | if (Kind == AttributeList::AT_Ptr32) | 
|  | 4699 | D->addAttr( | 
|  | 4700 | ::new (S.Context) Ptr32Attr(Attr.getRange(), S.Context, | 
|  | 4701 | Attr.getAttributeSpellingListIndex())); | 
|  | 4702 | else if (Kind == AttributeList::AT_Ptr64) | 
|  | 4703 | D->addAttr( | 
|  | 4704 | ::new (S.Context) Ptr64Attr(Attr.getRange(), S.Context, | 
|  | 4705 | Attr.getAttributeSpellingListIndex())); | 
|  | 4706 | else if (Kind == AttributeList::AT_Win64) | 
|  | 4707 | D->addAttr( | 
|  | 4708 | ::new (S.Context) Win64Attr(Attr.getRange(), S.Context, | 
|  | 4709 | Attr.getAttributeSpellingListIndex())); | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4710 | } | 
|  | 4711 |  | 
| Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 4712 | static void handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
| Reid Kleckner | 8fbda8e | 2013-05-17 14:04:52 +0000 | [diff] [blame] | 4713 | if (!checkMicrosoftExt(S, Attr)) | 
|  | 4714 | return; | 
|  | 4715 | D->addAttr(::new (S.Context) | 
|  | 4716 | ForceInlineAttr(Attr.getRange(), S.Context, | 
|  | 4717 | Attr.getAttributeSpellingListIndex())); | 
| Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 4718 | } | 
|  | 4719 |  | 
| Reid Kleckner | a722534 | 2013-05-20 14:02:37 +0000 | [diff] [blame] | 4720 | static void handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) { | 
|  | 4721 | if (!checkMicrosoftExt(S, Attr)) | 
|  | 4722 | return; | 
|  | 4723 | // Check linkage after possibly merging declaratinos.  See | 
|  | 4724 | // checkAttributesAfterMerging(). | 
|  | 4725 | D->addAttr(::new (S.Context) | 
|  | 4726 | SelectAnyAttr(Attr.getRange(), S.Context, | 
|  | 4727 | Attr.getAttributeSpellingListIndex())); | 
|  | 4728 | } | 
|  | 4729 |  | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4730 | //===----------------------------------------------------------------------===// | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 4731 | // Top Level Sema Entry Points | 
|  | 4732 | //===----------------------------------------------------------------------===// | 
|  | 4733 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4734 | static void ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D, | 
|  | 4735 | const AttributeList &Attr) { | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 4736 | switch (Attr.getKind()) { | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4737 | case AttributeList::AT_CUDADevice:  handleDeviceAttr      (S, D, Attr); break; | 
|  | 4738 | case AttributeList::AT_CUDAHost:    handleHostAttr        (S, D, Attr); break; | 
|  | 4739 | case AttributeList::AT_Overloadable:handleOverloadableAttr(S, D, Attr); break; | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 4740 | default: | 
|  | 4741 | break; | 
|  | 4742 | } | 
|  | 4743 | } | 
| Abramo Bagnara | e215f72 | 2010-04-30 13:10:51 +0000 | [diff] [blame] | 4744 |  | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4745 | static void ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D, | 
|  | 4746 | const AttributeList &Attr) { | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 4747 | switch (Attr.getKind()) { | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4748 | case AttributeList::AT_IBAction:    handleIBAction(S, D, Attr); break; | 
|  | 4749 | case AttributeList::AT_IBOutlet:    handleIBOutlet(S, D, Attr); break; | 
|  | 4750 | case AttributeList::AT_IBOutletCollection: | 
|  | 4751 | handleIBOutletCollection(S, D, Attr); break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4752 | case AttributeList::AT_AddressSpace: | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4753 | case AttributeList::AT_ObjCGC: | 
|  | 4754 | case AttributeList::AT_VectorSize: | 
|  | 4755 | case AttributeList::AT_NeonVectorType: | 
|  | 4756 | case AttributeList::AT_NeonPolyVectorType: | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4757 | // Ignore these, these are type attributes, handled by | 
|  | 4758 | // ProcessTypeAttributes. | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 4759 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4760 | case AttributeList::AT_CUDADevice: | 
|  | 4761 | case AttributeList::AT_CUDAHost: | 
|  | 4762 | case AttributeList::AT_Overloadable: | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 4763 | // Ignore, this is a non-inheritable attribute, handled | 
|  | 4764 | // by ProcessNonInheritableDeclAttr. | 
|  | 4765 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4766 | case AttributeList::AT_Alias:       handleAliasAttr       (S, D, Attr); break; | 
|  | 4767 | case AttributeList::AT_Aligned:     handleAlignedAttr     (S, D, Attr); break; | 
|  | 4768 | case AttributeList::AT_AllocSize:   handleAllocSizeAttr   (S, D, Attr); break; | 
|  | 4769 | case AttributeList::AT_AlwaysInline: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4770 | handleAlwaysInlineAttr  (S, D, Attr); break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4771 | case AttributeList::AT_AnalyzerNoReturn: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4772 | handleAnalyzerNoReturnAttr  (S, D, Attr); break; | 
| Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 4773 | case AttributeList::AT_TLSModel:    handleTLSModelAttr    (S, D, Attr); break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4774 | case AttributeList::AT_Annotate:    handleAnnotateAttr    (S, D, Attr); break; | 
|  | 4775 | case AttributeList::AT_Availability:handleAvailabilityAttr(S, D, Attr); break; | 
|  | 4776 | case AttributeList::AT_CarriesDependency: | 
| Richard Smith | 3a2b7a1 | 2013-01-28 22:42:45 +0000 | [diff] [blame] | 4777 | handleDependencyAttr(S, scope, D, Attr); | 
|  | 4778 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4779 | case AttributeList::AT_Common:      handleCommonAttr      (S, D, Attr); break; | 
|  | 4780 | case AttributeList::AT_CUDAConstant:handleConstantAttr    (S, D, Attr); break; | 
|  | 4781 | case AttributeList::AT_Constructor: handleConstructorAttr (S, D, Attr); break; | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 4782 | case AttributeList::AT_CXX11NoReturn: | 
|  | 4783 | handleCXX11NoReturnAttr(S, D, Attr); | 
|  | 4784 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4785 | case AttributeList::AT_Deprecated: | 
| Benjamin Kramer | bc3260d | 2012-05-16 12:19:08 +0000 | [diff] [blame] | 4786 | handleAttrWithMessage<DeprecatedAttr>(S, D, Attr, "deprecated"); | 
|  | 4787 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4788 | case AttributeList::AT_Destructor:  handleDestructorAttr  (S, D, Attr); break; | 
|  | 4789 | case AttributeList::AT_ExtVectorType: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4790 | handleExtVectorTypeAttr(S, scope, D, Attr); | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 4791 | break; | 
| Quentin Colombet | aee56fa | 2012-11-01 23:55:47 +0000 | [diff] [blame] | 4792 | case AttributeList::AT_MinSize: | 
|  | 4793 | handleMinSizeAttr(S, D, Attr); | 
|  | 4794 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4795 | case AttributeList::AT_Format:      handleFormatAttr      (S, D, Attr); break; | 
|  | 4796 | case AttributeList::AT_FormatArg:   handleFormatArgAttr   (S, D, Attr); break; | 
|  | 4797 | case AttributeList::AT_CUDAGlobal:  handleGlobalAttr      (S, D, Attr); break; | 
|  | 4798 | case AttributeList::AT_GNUInline:   handleGNUInlineAttr   (S, D, Attr); break; | 
|  | 4799 | case AttributeList::AT_CUDALaunchBounds: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4800 | handleLaunchBoundsAttr(S, D, Attr); | 
| Peter Collingbourne | 7b38198 | 2010-12-12 23:03:07 +0000 | [diff] [blame] | 4801 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4802 | case AttributeList::AT_Mode:        handleModeAttr        (S, D, Attr); break; | 
|  | 4803 | case AttributeList::AT_Malloc:      handleMallocAttr      (S, D, Attr); break; | 
|  | 4804 | case AttributeList::AT_MayAlias:    handleMayAliasAttr    (S, D, Attr); break; | 
|  | 4805 | case AttributeList::AT_NoCommon:    handleNoCommonAttr    (S, D, Attr); break; | 
|  | 4806 | case AttributeList::AT_NonNull:     handleNonNullAttr     (S, D, Attr); break; | 
| Ted Kremenek | dd0e490 | 2010-07-31 01:52:11 +0000 | [diff] [blame] | 4807 | case AttributeList::AT_ownership_returns: | 
|  | 4808 | case AttributeList::AT_ownership_takes: | 
|  | 4809 | case AttributeList::AT_ownership_holds: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4810 | handleOwnershipAttr     (S, D, Attr); break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4811 | case AttributeList::AT_Cold:        handleColdAttr        (S, D, Attr); break; | 
|  | 4812 | case AttributeList::AT_Hot:         handleHotAttr         (S, D, Attr); break; | 
|  | 4813 | case AttributeList::AT_Naked:       handleNakedAttr       (S, D, Attr); break; | 
|  | 4814 | case AttributeList::AT_NoReturn:    handleNoReturnAttr    (S, D, Attr); break; | 
|  | 4815 | case AttributeList::AT_NoThrow:     handleNothrowAttr     (S, D, Attr); break; | 
|  | 4816 | case AttributeList::AT_CUDAShared:  handleSharedAttr      (S, D, Attr); break; | 
|  | 4817 | case AttributeList::AT_VecReturn:   handleVecReturnAttr   (S, D, Attr); break; | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4818 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4819 | case AttributeList::AT_ObjCOwnership: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4820 | handleObjCOwnershipAttr(S, D, Attr); break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4821 | case AttributeList::AT_ObjCPreciseLifetime: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4822 | handleObjCPreciseLifetimeAttr(S, D, Attr); break; | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 4823 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4824 | case AttributeList::AT_ObjCReturnsInnerPointer: | 
| John McCall | dc7c5ad | 2011-07-22 08:53:00 +0000 | [diff] [blame] | 4825 | handleObjCReturnsInnerPointerAttr(S, D, Attr); break; | 
|  | 4826 |  | 
| Fariborz Jahanian | 8410113 | 2012-09-07 23:46:23 +0000 | [diff] [blame] | 4827 | case AttributeList::AT_ObjCRequiresSuper: | 
|  | 4828 | handleObjCRequiresSuperAttr(S, D, Attr); break; | 
|  | 4829 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4830 | case AttributeList::AT_NSBridged: | 
| John McCall | fe98da0 | 2011-09-29 07:17:38 +0000 | [diff] [blame] | 4831 | handleNSBridgedAttr(S, scope, D, Attr); break; | 
|  | 4832 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4833 | case AttributeList::AT_CFAuditedTransfer: | 
|  | 4834 | case AttributeList::AT_CFUnknownTransfer: | 
| John McCall | 8dfac0b | 2011-09-30 05:12:12 +0000 | [diff] [blame] | 4835 | handleCFTransferAttr(S, D, Attr); break; | 
|  | 4836 |  | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4837 | // Checker-specific. | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4838 | case AttributeList::AT_CFConsumed: | 
|  | 4839 | case AttributeList::AT_NSConsumed:  handleNSConsumedAttr  (S, D, Attr); break; | 
|  | 4840 | case AttributeList::AT_NSConsumesSelf: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4841 | handleNSConsumesSelfAttr(S, D, Attr); break; | 
| John McCall | c7ad381 | 2011-01-25 03:31:58 +0000 | [diff] [blame] | 4842 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4843 | case AttributeList::AT_NSReturnsAutoreleased: | 
|  | 4844 | case AttributeList::AT_NSReturnsNotRetained: | 
|  | 4845 | case AttributeList::AT_CFReturnsNotRetained: | 
|  | 4846 | case AttributeList::AT_NSReturnsRetained: | 
|  | 4847 | case AttributeList::AT_CFReturnsRetained: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4848 | handleNSReturnsRetainedAttr(S, D, Attr); break; | 
| Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 4849 |  | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 4850 | case AttributeList::AT_WorkGroupSizeHint: | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4851 | case AttributeList::AT_ReqdWorkGroupSize: | 
| Tanya Lattner | 0df579e | 2012-07-09 22:06:01 +0000 | [diff] [blame] | 4852 | handleWorkGroupSize(S, D, Attr); break; | 
| Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 4853 |  | 
| Joey Gouly | 37453b9 | 2013-03-08 09:42:32 +0000 | [diff] [blame] | 4854 | case AttributeList::AT_VecTypeHint: | 
|  | 4855 | handleVecTypeHint(S, D, Attr); break; | 
|  | 4856 |  | 
| Joey Gouly | 96cead5 | 2013-03-14 09:54:43 +0000 | [diff] [blame] | 4857 | case AttributeList::AT_Endian: | 
|  | 4858 | handleEndianAttr(S, D, Attr); | 
|  | 4859 | break; | 
|  | 4860 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4861 | case AttributeList::AT_InitPriority: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4862 | handleInitPriorityAttr(S, D, Attr); break; | 
| Fariborz Jahanian | 521f12d | 2010-06-18 21:44:06 +0000 | [diff] [blame] | 4863 |  | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4864 | case AttributeList::AT_Packed:      handlePackedAttr      (S, D, Attr); break; | 
|  | 4865 | case AttributeList::AT_Section:     handleSectionAttr     (S, D, Attr); break; | 
|  | 4866 | case AttributeList::AT_Unavailable: | 
| Benjamin Kramer | bc3260d | 2012-05-16 12:19:08 +0000 | [diff] [blame] | 4867 | handleAttrWithMessage<UnavailableAttr>(S, D, Attr, "unavailable"); | 
|  | 4868 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4869 | case AttributeList::AT_ArcWeakrefUnavailable: | 
| Fariborz Jahanian | 742352a | 2011-07-06 19:24:05 +0000 | [diff] [blame] | 4870 | handleArcWeakrefUnavailableAttr (S, D, Attr); | 
|  | 4871 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4872 | case AttributeList::AT_ObjCRootClass: | 
| Patrick Beard | b2f6820 | 2012-04-06 18:12:22 +0000 | [diff] [blame] | 4873 | handleObjCRootClassAttr(S, D, Attr); | 
|  | 4874 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4875 | case AttributeList::AT_ObjCRequiresPropertyDefs: | 
| Ted Kremenek | 71207fc | 2012-01-05 22:47:47 +0000 | [diff] [blame] | 4876 | handleObjCRequiresPropertyDefsAttr (S, D, Attr); | 
| Fariborz Jahanian | e23dcf3 | 2012-01-03 18:45:41 +0000 | [diff] [blame] | 4877 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4878 | case AttributeList::AT_Unused:      handleUnusedAttr      (S, D, Attr); break; | 
|  | 4879 | case AttributeList::AT_ReturnsTwice: | 
| Rafael Espindola | f87cced | 2011-10-03 14:59:42 +0000 | [diff] [blame] | 4880 | handleReturnsTwiceAttr(S, D, Attr); | 
|  | 4881 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4882 | case AttributeList::AT_Used:        handleUsedAttr        (S, D, Attr); break; | 
| John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 4883 | case AttributeList::AT_Visibility: | 
|  | 4884 | handleVisibilityAttr(S, D, Attr, false); | 
|  | 4885 | break; | 
|  | 4886 | case AttributeList::AT_TypeVisibility: | 
|  | 4887 | handleVisibilityAttr(S, D, Attr, true); | 
|  | 4888 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4889 | case AttributeList::AT_WarnUnusedResult: handleWarnUnusedResult(S, D, Attr); | 
| Chris Lattner | 026dc96 | 2009-02-14 07:37:35 +0000 | [diff] [blame] | 4890 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4891 | case AttributeList::AT_Weak:        handleWeakAttr        (S, D, Attr); break; | 
|  | 4892 | case AttributeList::AT_WeakRef:     handleWeakRefAttr     (S, D, Attr); break; | 
|  | 4893 | case AttributeList::AT_WeakImport:  handleWeakImportAttr  (S, D, Attr); break; | 
|  | 4894 | case AttributeList::AT_TransparentUnion: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4895 | handleTransparentUnionAttr(S, D, Attr); | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 4896 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4897 | case AttributeList::AT_ObjCException: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4898 | handleObjCExceptionAttr(S, D, Attr); | 
| Chris Lattner | 0db29ec | 2009-02-14 08:09:34 +0000 | [diff] [blame] | 4899 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4900 | case AttributeList::AT_ObjCMethodFamily: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4901 | handleObjCMethodFamilyAttr(S, D, Attr); | 
| John McCall | d5313b0 | 2011-03-02 11:33:24 +0000 | [diff] [blame] | 4902 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4903 | case AttributeList::AT_ObjCNSObject:handleObjCNSObject    (S, D, Attr); break; | 
|  | 4904 | case AttributeList::AT_Blocks:      handleBlocksAttr      (S, D, Attr); break; | 
|  | 4905 | case AttributeList::AT_Sentinel:    handleSentinelAttr    (S, D, Attr); break; | 
|  | 4906 | case AttributeList::AT_Const:       handleConstAttr       (S, D, Attr); break; | 
|  | 4907 | case AttributeList::AT_Pure:        handlePureAttr        (S, D, Attr); break; | 
|  | 4908 | case AttributeList::AT_Cleanup:     handleCleanupAttr     (S, D, Attr); break; | 
|  | 4909 | case AttributeList::AT_NoDebug:     handleNoDebugAttr     (S, D, Attr); break; | 
|  | 4910 | case AttributeList::AT_NoInline:    handleNoInlineAttr    (S, D, Attr); break; | 
|  | 4911 | case AttributeList::AT_Regparm:     handleRegparmAttr     (S, D, Attr); break; | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 4912 | case AttributeList::IgnoredAttribute: | 
| Anders Carlsson | 05f8e47 | 2009-02-13 08:16:43 +0000 | [diff] [blame] | 4913 | // Just ignore | 
|  | 4914 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4915 | case AttributeList::AT_NoInstrumentFunction:  // Interacts with -pg. | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4916 | handleNoInstrumentFunctionAttr(S, D, Attr); | 
| Chris Lattner | 7255a2d | 2010-06-22 00:03:40 +0000 | [diff] [blame] | 4917 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4918 | case AttributeList::AT_StdCall: | 
|  | 4919 | case AttributeList::AT_CDecl: | 
|  | 4920 | case AttributeList::AT_FastCall: | 
|  | 4921 | case AttributeList::AT_ThisCall: | 
|  | 4922 | case AttributeList::AT_Pascal: | 
|  | 4923 | case AttributeList::AT_Pcs: | 
| Derek Schuff | 263366f | 2012-10-16 22:30:41 +0000 | [diff] [blame] | 4924 | case AttributeList::AT_PnaclCall: | 
| Guy Benyei | 3898008 | 2012-12-25 08:53:55 +0000 | [diff] [blame] | 4925 | case AttributeList::AT_IntelOclBicc: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4926 | handleCallConvAttr(S, D, Attr); | 
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 4927 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4928 | case AttributeList::AT_OpenCLKernel: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4929 | handleOpenCLKernelAttr(S, D, Attr); | 
| Peter Collingbourne | f315fa8 | 2011-02-14 01:42:53 +0000 | [diff] [blame] | 4930 | break; | 
| Guy Benyei | 1db7040 | 2013-03-24 13:58:12 +0000 | [diff] [blame] | 4931 | case AttributeList::AT_OpenCLImageAccess: | 
|  | 4932 | handleOpenCLImageAccessAttr(S, D, Attr); | 
|  | 4933 | break; | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4934 |  | 
|  | 4935 | // Microsoft attributes: | 
| John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 4936 | case AttributeList::AT_MsProperty: break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4937 | case AttributeList::AT_MsStruct: | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4938 | handleMsStructAttr(S, D, Attr); | 
|  | 4939 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4940 | case AttributeList::AT_Uuid: | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 4941 | handleUuidAttr(S, D, Attr); | 
| Francois Pichet | 1154214 | 2010-12-19 06:50:37 +0000 | [diff] [blame] | 4942 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4943 | case AttributeList::AT_SingleInheritance: | 
|  | 4944 | case AttributeList::AT_MultipleInheritance: | 
|  | 4945 | case AttributeList::AT_VirtualInheritance: | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4946 | handleInheritanceAttr(S, D, Attr); | 
|  | 4947 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4948 | case AttributeList::AT_Win64: | 
|  | 4949 | case AttributeList::AT_Ptr32: | 
|  | 4950 | case AttributeList::AT_Ptr64: | 
| John McCall | c052dbb | 2012-05-22 21:28:12 +0000 | [diff] [blame] | 4951 | handlePortabilityAttr(S, D, Attr); | 
|  | 4952 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4953 | case AttributeList::AT_ForceInline: | 
| Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 4954 | handleForceInlineAttr(S, D, Attr); | 
|  | 4955 | break; | 
| Reid Kleckner | a722534 | 2013-05-20 14:02:37 +0000 | [diff] [blame] | 4956 | case AttributeList::AT_SelectAny: | 
|  | 4957 | handleSelectAnyAttr(S, D, Attr); | 
|  | 4958 | break; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4959 |  | 
|  | 4960 | // Thread safety attributes: | 
| DeLesley Hutchins | 5c6134f | 2013-05-17 23:02:59 +0000 | [diff] [blame] | 4961 | case AttributeList::AT_AssertExclusiveLock: | 
|  | 4962 | handleAssertExclusiveLockAttr(S, D, Attr); | 
|  | 4963 | break; | 
|  | 4964 | case AttributeList::AT_AssertSharedLock: | 
|  | 4965 | handleAssertSharedLockAttr(S, D, Attr); | 
|  | 4966 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4967 | case AttributeList::AT_GuardedVar: | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4968 | handleGuardedVarAttr(S, D, Attr); | 
|  | 4969 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4970 | case AttributeList::AT_PtGuardedVar: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 4971 | handlePtGuardedVarAttr(S, D, Attr); | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4972 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4973 | case AttributeList::AT_ScopedLockable: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 4974 | handleScopedLockableAttr(S, D, Attr); | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4975 | break; | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 4976 | case AttributeList::AT_NoSanitizeAddress: | 
|  | 4977 | handleNoSanitizeAddressAttr(S, D, Attr); | 
| Kostya Serebryany | 71efba0 | 2012-01-24 19:25:38 +0000 | [diff] [blame] | 4978 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4979 | case AttributeList::AT_NoThreadSafetyAnalysis: | 
| Kostya Serebryany | 85aee96 | 2013-02-26 06:58:27 +0000 | [diff] [blame] | 4980 | handleNoThreadSafetyAnalysis(S, D, Attr); | 
|  | 4981 | break; | 
|  | 4982 | case AttributeList::AT_NoSanitizeThread: | 
|  | 4983 | handleNoSanitizeThread(S, D, Attr); | 
|  | 4984 | break; | 
|  | 4985 | case AttributeList::AT_NoSanitizeMemory: | 
|  | 4986 | handleNoSanitizeMemory(S, D, Attr); | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4987 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4988 | case AttributeList::AT_Lockable: | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 4989 | handleLockableAttr(S, D, Attr); | 
|  | 4990 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4991 | case AttributeList::AT_GuardedBy: | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 4992 | handleGuardedByAttr(S, D, Attr); | 
|  | 4993 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4994 | case AttributeList::AT_PtGuardedBy: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 4995 | handlePtGuardedByAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 4996 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 4997 | case AttributeList::AT_ExclusiveLockFunction: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 4998 | handleExclusiveLockFunctionAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 4999 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5000 | case AttributeList::AT_ExclusiveLocksRequired: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5001 | handleExclusiveLocksRequiredAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5002 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5003 | case AttributeList::AT_ExclusiveTrylockFunction: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5004 | handleExclusiveTrylockFunctionAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5005 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5006 | case AttributeList::AT_LockReturned: | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5007 | handleLockReturnedAttr(S, D, Attr); | 
|  | 5008 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5009 | case AttributeList::AT_LocksExcluded: | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5010 | handleLocksExcludedAttr(S, D, Attr); | 
|  | 5011 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5012 | case AttributeList::AT_SharedLockFunction: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5013 | handleSharedLockFunctionAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5014 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5015 | case AttributeList::AT_SharedLocksRequired: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5016 | handleSharedLocksRequiredAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5017 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5018 | case AttributeList::AT_SharedTrylockFunction: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5019 | handleSharedTrylockFunctionAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5020 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5021 | case AttributeList::AT_UnlockFunction: | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5022 | handleUnlockFunAttr(S, D, Attr); | 
|  | 5023 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5024 | case AttributeList::AT_AcquiredBefore: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5025 | handleAcquiredBeforeAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5026 | break; | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5027 | case AttributeList::AT_AcquiredAfter: | 
| Michael Han | dc69157 | 2012-07-23 18:48:41 +0000 | [diff] [blame] | 5028 | handleAcquiredAfterAttr(S, D, Attr); | 
| Caitlin Sadowski | db33e14 | 2011-07-28 20:12:35 +0000 | [diff] [blame] | 5029 | break; | 
| Caitlin Sadowski | fdde9e7 | 2011-07-28 17:21:07 +0000 | [diff] [blame] | 5030 |  | 
| Dmitri Gribenko | 0d5a069 | 2012-08-17 00:08:38 +0000 | [diff] [blame] | 5031 | // Type safety attributes. | 
|  | 5032 | case AttributeList::AT_ArgumentWithTypeTag: | 
|  | 5033 | handleArgumentWithTypeTagAttr(S, D, Attr); | 
|  | 5034 | break; | 
|  | 5035 | case AttributeList::AT_TypeTagForDatatype: | 
|  | 5036 | handleTypeTagForDatatypeAttr(S, D, Attr); | 
|  | 5037 | break; | 
|  | 5038 |  | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 5039 | default: | 
| Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 5040 | // Ask target about the attribute. | 
|  | 5041 | const TargetAttributesSema &TargetAttrs = S.getTargetAttributesSema(); | 
|  | 5042 | if (!TargetAttrs.ProcessDeclAttribute(scope, D, Attr, S)) | 
| Aaron Ballman | fc685ac | 2012-06-19 22:09:27 +0000 | [diff] [blame] | 5043 | S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() ? | 
|  | 5044 | diag::warn_unhandled_ms_attribute_ignored : | 
|  | 5045 | diag::warn_unknown_attribute_ignored) << Attr.getName(); | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 5046 | break; | 
|  | 5047 | } | 
|  | 5048 | } | 
|  | 5049 |  | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5050 | /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if | 
|  | 5051 | /// the attribute applies to decls.  If the attribute is a type attribute, just | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 5052 | /// silently ignore it if a GNU attribute. | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 5053 | static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, | 
|  | 5054 | const AttributeList &Attr, | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 5055 | bool NonInheritable, bool Inheritable, | 
|  | 5056 | bool IncludeCXX11Attributes) { | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5057 | if (Attr.isInvalid()) | 
|  | 5058 | return; | 
|  | 5059 |  | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 5060 | // Ignore C++11 attributes on declarator chunks: they appertain to the type | 
|  | 5061 | // instead. | 
|  | 5062 | if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes) | 
|  | 5063 | return; | 
|  | 5064 |  | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5065 | if (NonInheritable) | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 5066 | ProcessNonInheritableDeclAttr(S, scope, D, Attr); | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5067 |  | 
|  | 5068 | if (Inheritable) | 
| Chandler Carruth | 1b03c87 | 2011-07-02 00:01:44 +0000 | [diff] [blame] | 5069 | ProcessInheritableDeclAttr(S, scope, D, Attr); | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5070 | } | 
|  | 5071 |  | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 5072 | /// ProcessDeclAttributeList - Apply all the decl attributes in the specified | 
|  | 5073 | /// attribute list to the specified decl, ignoring any type attributes. | 
| Eric Christopher | f48f367 | 2010-12-01 22:13:54 +0000 | [diff] [blame] | 5074 | void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5075 | const AttributeList *AttrList, | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 5076 | bool NonInheritable, bool Inheritable, | 
|  | 5077 | bool IncludeCXX11Attributes) { | 
|  | 5078 | for (const AttributeList* l = AttrList; l; l = l->getNext()) | 
|  | 5079 | ProcessDeclAttribute(*this, S, D, *l, NonInheritable, Inheritable, | 
|  | 5080 | IncludeCXX11Attributes); | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 5081 |  | 
|  | 5082 | // GCC accepts | 
|  | 5083 | // static int a9 __attribute__((weakref)); | 
|  | 5084 | // but that looks really pointless. We reject it. | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5085 | if (Inheritable && D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) { | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 5086 | Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) << | 
| Rafael Espindola | 4d8a33b | 2013-01-16 23:49:06 +0000 | [diff] [blame] | 5087 | cast<NamedDecl>(D)->getNameAsString(); | 
|  | 5088 | D->dropAttr<WeakRefAttr>(); | 
| Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 5089 | return; | 
| Chris Lattner | 803d080 | 2008-06-29 00:43:07 +0000 | [diff] [blame] | 5090 | } | 
|  | 5091 | } | 
|  | 5092 |  | 
| Erik Verbruggen | 5f1c822 | 2011-10-13 09:41:32 +0000 | [diff] [blame] | 5093 | // Annotation attributes are the only attributes allowed after an access | 
|  | 5094 | // specifier. | 
|  | 5095 | bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl, | 
|  | 5096 | const AttributeList *AttrList) { | 
|  | 5097 | for (const AttributeList* l = AttrList; l; l = l->getNext()) { | 
| Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 5098 | if (l->getKind() == AttributeList::AT_Annotate) { | 
| Erik Verbruggen | 5f1c822 | 2011-10-13 09:41:32 +0000 | [diff] [blame] | 5099 | handleAnnotateAttr(*this, ASDecl, *l); | 
|  | 5100 | } else { | 
|  | 5101 | Diag(l->getLoc(), diag::err_only_annotate_after_access_spec); | 
|  | 5102 | return true; | 
|  | 5103 | } | 
|  | 5104 | } | 
|  | 5105 |  | 
|  | 5106 | return false; | 
|  | 5107 | } | 
|  | 5108 |  | 
| John McCall | e82247a | 2011-10-01 05:17:03 +0000 | [diff] [blame] | 5109 | /// checkUnusedDeclAttributes - Check a list of attributes to see if it | 
|  | 5110 | /// contains any decl attributes that we should warn about. | 
|  | 5111 | static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) { | 
|  | 5112 | for ( ; A; A = A->getNext()) { | 
|  | 5113 | // Only warn if the attribute is an unignored, non-type attribute. | 
| Richard Smith | d03de6a | 2013-01-29 10:02:16 +0000 | [diff] [blame] | 5114 | if (A->isUsedAsTypeAttr() || A->isInvalid()) continue; | 
| John McCall | e82247a | 2011-10-01 05:17:03 +0000 | [diff] [blame] | 5115 | if (A->getKind() == AttributeList::IgnoredAttribute) continue; | 
|  | 5116 |  | 
|  | 5117 | if (A->getKind() == AttributeList::UnknownAttribute) { | 
|  | 5118 | S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored) | 
|  | 5119 | << A->getName() << A->getRange(); | 
|  | 5120 | } else { | 
|  | 5121 | S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl) | 
|  | 5122 | << A->getName() << A->getRange(); | 
|  | 5123 | } | 
|  | 5124 | } | 
|  | 5125 | } | 
|  | 5126 |  | 
|  | 5127 | /// checkUnusedDeclAttributes - Given a declarator which is not being | 
|  | 5128 | /// used to build a declaration, complain about any decl attributes | 
|  | 5129 | /// which might be lying around on it. | 
|  | 5130 | void Sema::checkUnusedDeclAttributes(Declarator &D) { | 
|  | 5131 | ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList()); | 
|  | 5132 | ::checkUnusedDeclAttributes(*this, D.getAttributes()); | 
|  | 5133 | for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) | 
|  | 5134 | ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs()); | 
|  | 5135 | } | 
|  | 5136 |  | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5137 | /// DeclClonePragmaWeak - clone existing decl (maybe definition), | 
| James Dennett | 1dfbd92 | 2012-06-14 21:40:34 +0000 | [diff] [blame] | 5138 | /// \#pragma weak needs a non-definition decl and source may not have one. | 
| Eli Friedman | 900693b | 2011-09-07 04:05:06 +0000 | [diff] [blame] | 5139 | NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II, | 
|  | 5140 | SourceLocation Loc) { | 
| Ryan Flynn | 7b1fdbd | 2009-07-31 02:52:19 +0000 | [diff] [blame] | 5141 | assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND)); | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5142 | NamedDecl *NewD = 0; | 
|  | 5143 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { | 
| Eli Friedman | 900693b | 2011-09-07 04:05:06 +0000 | [diff] [blame] | 5144 | FunctionDecl *NewFD; | 
|  | 5145 | // FIXME: Missing call to CheckFunctionDeclaration(). | 
|  | 5146 | // FIXME: Mangling? | 
|  | 5147 | // FIXME: Is the qualifier info correct? | 
|  | 5148 | // FIXME: Is the DeclContext correct? | 
|  | 5149 | NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(), | 
|  | 5150 | Loc, Loc, DeclarationName(II), | 
|  | 5151 | FD->getType(), FD->getTypeSourceInfo(), | 
| Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 5152 | SC_None, false/*isInlineSpecified*/, | 
| Eli Friedman | 900693b | 2011-09-07 04:05:06 +0000 | [diff] [blame] | 5153 | FD->hasPrototype(), | 
|  | 5154 | false/*isConstexprSpecified*/); | 
|  | 5155 | NewD = NewFD; | 
|  | 5156 |  | 
|  | 5157 | if (FD->getQualifier()) | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 5158 | NewFD->setQualifierInfo(FD->getQualifierLoc()); | 
| Eli Friedman | 900693b | 2011-09-07 04:05:06 +0000 | [diff] [blame] | 5159 |  | 
|  | 5160 | // Fake up parameter variables; they are declared as if this were | 
|  | 5161 | // a typedef. | 
|  | 5162 | QualType FDTy = FD->getType(); | 
|  | 5163 | if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) { | 
|  | 5164 | SmallVector<ParmVarDecl*, 16> Params; | 
|  | 5165 | for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(), | 
|  | 5166 | AE = FT->arg_type_end(); AI != AE; ++AI) { | 
|  | 5167 | ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, *AI); | 
|  | 5168 | Param->setScopeInfo(0, Params.size()); | 
|  | 5169 | Params.push_back(Param); | 
|  | 5170 | } | 
| David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 5171 | NewFD->setParams(Params); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 5172 | } | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5173 | } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) { | 
|  | 5174 | NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(), | 
| Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 5175 | VD->getInnerLocStart(), VD->getLocation(), II, | 
| John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5176 | VD->getType(), VD->getTypeSourceInfo(), | 
| Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 5177 | VD->getStorageClass()); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 5178 | if (VD->getQualifier()) { | 
|  | 5179 | VarDecl *NewVD = cast<VarDecl>(NewD); | 
| Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 5180 | NewVD->setQualifierInfo(VD->getQualifierLoc()); | 
| John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 5181 | } | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5182 | } | 
|  | 5183 | return NewD; | 
|  | 5184 | } | 
|  | 5185 |  | 
| James Dennett | 1dfbd92 | 2012-06-14 21:40:34 +0000 | [diff] [blame] | 5186 | /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5187 | /// applied to it, possibly with an alias. | 
| Ryan Flynn | 7b1fdbd | 2009-07-31 02:52:19 +0000 | [diff] [blame] | 5188 | void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) { | 
| Chris Lattner | c4f1fb1 | 2009-09-08 18:10:11 +0000 | [diff] [blame] | 5189 | if (W.getUsed()) return; // only do this once | 
|  | 5190 | W.setUsed(true); | 
|  | 5191 | if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...)) | 
|  | 5192 | IdentifierInfo *NDId = ND->getIdentifier(); | 
| Eli Friedman | 900693b | 2011-09-07 04:05:06 +0000 | [diff] [blame] | 5193 | NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation()); | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 5194 | NewD->addAttr(::new (Context) AliasAttr(W.getLocation(), Context, | 
|  | 5195 | NDId->getName())); | 
|  | 5196 | NewD->addAttr(::new (Context) WeakAttr(W.getLocation(), Context)); | 
| Chris Lattner | c4f1fb1 | 2009-09-08 18:10:11 +0000 | [diff] [blame] | 5197 | WeakTopLevelDecl.push_back(NewD); | 
|  | 5198 | // FIXME: "hideous" code from Sema::LazilyCreateBuiltin | 
|  | 5199 | // to insert Decl at TU scope, sorry. | 
|  | 5200 | DeclContext *SavedContext = CurContext; | 
|  | 5201 | CurContext = Context.getTranslationUnitDecl(); | 
|  | 5202 | PushOnScopeChains(NewD, S); | 
|  | 5203 | CurContext = SavedContext; | 
|  | 5204 | } else { // just add weak to existing | 
| Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 5205 | ND->addAttr(::new (Context) WeakAttr(W.getLocation(), Context)); | 
| Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 5206 | } | 
|  | 5207 | } | 
|  | 5208 |  | 
| Rafael Espindola | 65611bf | 2013-03-02 21:41:48 +0000 | [diff] [blame] | 5209 | void Sema::ProcessPragmaWeak(Scope *S, Decl *D) { | 
|  | 5210 | // It's valid to "forward-declare" #pragma weak, in which case we | 
|  | 5211 | // have to do this. | 
|  | 5212 | LoadExternalWeakUndeclaredIdentifiers(); | 
|  | 5213 | if (!WeakUndeclaredIdentifiers.empty()) { | 
|  | 5214 | NamedDecl *ND = NULL; | 
|  | 5215 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) | 
|  | 5216 | if (VD->isExternC()) | 
|  | 5217 | ND = VD; | 
|  | 5218 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) | 
|  | 5219 | if (FD->isExternC()) | 
|  | 5220 | ND = FD; | 
|  | 5221 | if (ND) { | 
|  | 5222 | if (IdentifierInfo *Id = ND->getIdentifier()) { | 
|  | 5223 | llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator I | 
|  | 5224 | = WeakUndeclaredIdentifiers.find(Id); | 
|  | 5225 | if (I != WeakUndeclaredIdentifiers.end()) { | 
|  | 5226 | WeakInfo W = I->second; | 
|  | 5227 | DeclApplyPragmaWeak(S, ND, W); | 
|  | 5228 | WeakUndeclaredIdentifiers[Id] = W; | 
|  | 5229 | } | 
|  | 5230 | } | 
|  | 5231 | } | 
|  | 5232 | } | 
|  | 5233 | } | 
|  | 5234 |  | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 5235 | /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in | 
|  | 5236 | /// it, apply them to D.  This is a bit tricky because PD can have attributes | 
|  | 5237 | /// specified in many different places, and we need to find and apply them all. | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5238 | void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD, | 
|  | 5239 | bool NonInheritable, bool Inheritable) { | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 5240 | // Apply decl attributes from the DeclSpec if present. | 
| John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 5241 | if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList()) | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5242 | ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 5243 |  | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 5244 | // Walk the declarator structure, applying decl attributes that were in a type | 
|  | 5245 | // position to the decl itself.  This handles cases like: | 
|  | 5246 | //   int *__attr__(x)** D; | 
|  | 5247 | // when X is a decl attribute. | 
|  | 5248 | for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i) | 
|  | 5249 | if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs()) | 
| Richard Smith | cd8ab51 | 2013-01-17 01:30:42 +0000 | [diff] [blame] | 5250 | ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable, | 
|  | 5251 | /*IncludeCXX11Attributes=*/false); | 
| Mike Stump | bf91650 | 2009-07-24 19:02:52 +0000 | [diff] [blame] | 5252 |  | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 5253 | // Finally, apply any attributes on the decl itself. | 
|  | 5254 | if (const AttributeList *Attrs = PD.getAttributes()) | 
| Peter Collingbourne | 6070039 | 2011-01-21 02:08:45 +0000 | [diff] [blame] | 5255 | ProcessDeclAttributeList(S, D, Attrs, NonInheritable, Inheritable); | 
| Chris Lattner | 0744e5f | 2008-06-29 00:23:49 +0000 | [diff] [blame] | 5256 | } | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5257 |  | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5258 | /// Is the given declaration allowed to use a forbidden type? | 
|  | 5259 | static bool isForbiddenTypeAllowed(Sema &S, Decl *decl) { | 
|  | 5260 | // Private ivars are always okay.  Unfortunately, people don't | 
|  | 5261 | // always properly make their ivars private, even in system headers. | 
|  | 5262 | // Plus we need to make fields okay, too. | 
| Fariborz Jahanian | a6b3380 | 2011-09-26 21:23:35 +0000 | [diff] [blame] | 5263 | // Function declarations in sys headers will be marked unavailable. | 
|  | 5264 | if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) && | 
|  | 5265 | !isa<FunctionDecl>(decl)) | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5266 | return false; | 
|  | 5267 |  | 
|  | 5268 | // Require it to be declared in a system header. | 
|  | 5269 | return S.Context.getSourceManager().isInSystemHeader(decl->getLocation()); | 
|  | 5270 | } | 
|  | 5271 |  | 
|  | 5272 | /// Handle a delayed forbidden-type diagnostic. | 
|  | 5273 | static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag, | 
|  | 5274 | Decl *decl) { | 
|  | 5275 | if (decl && isForbiddenTypeAllowed(S, decl)) { | 
|  | 5276 | decl->addAttr(new (S.Context) UnavailableAttr(diag.Loc, S.Context, | 
|  | 5277 | "this system declaration uses an unsupported type")); | 
|  | 5278 | return; | 
|  | 5279 | } | 
| David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5280 | if (S.getLangOpts().ObjCAutoRefCount) | 
| Fariborz Jahanian | 175fb10 | 2011-10-03 22:11:57 +0000 | [diff] [blame] | 5281 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) { | 
| Benjamin Kramer | 48d798c | 2012-06-02 10:20:41 +0000 | [diff] [blame] | 5282 | // FIXME: we may want to suppress diagnostics for all | 
| Fariborz Jahanian | 175fb10 | 2011-10-03 22:11:57 +0000 | [diff] [blame] | 5283 | // kind of forbidden type messages on unavailable functions. | 
|  | 5284 | if (FD->hasAttr<UnavailableAttr>() && | 
|  | 5285 | diag.getForbiddenTypeDiagnostic() == | 
|  | 5286 | diag::err_arc_array_param_no_ownership) { | 
|  | 5287 | diag.Triggered = true; | 
|  | 5288 | return; | 
|  | 5289 | } | 
|  | 5290 | } | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5291 |  | 
|  | 5292 | S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic()) | 
|  | 5293 | << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument(); | 
|  | 5294 | diag.Triggered = true; | 
|  | 5295 | } | 
|  | 5296 |  | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5297 | void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) { | 
|  | 5298 | assert(DelayedDiagnostics.getCurrentPool()); | 
| John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 5299 | DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool(); | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5300 | DelayedDiagnostics.popWithoutEmitting(state); | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 5301 |  | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5302 | // When delaying diagnostics to run in the context of a parsed | 
|  | 5303 | // declaration, we only want to actually emit anything if parsing | 
|  | 5304 | // succeeds. | 
|  | 5305 | if (!decl) return; | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 5306 |  | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5307 | // We emit all the active diagnostics in this pool or any of its | 
|  | 5308 | // parents.  In general, we'll get one pool for the decl spec | 
|  | 5309 | // and a child pool for each declarator; in a decl group like: | 
|  | 5310 | //   deprecated_typedef foo, *bar, baz(); | 
|  | 5311 | // only the declarator pops will be passed decls.  This is correct; | 
|  | 5312 | // we really do need to consider delayed diagnostics from the decl spec | 
|  | 5313 | // for each of the different declarations. | 
| John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 5314 | const DelayedDiagnosticPool *pool = &poppedPool; | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5315 | do { | 
| John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 5316 | for (DelayedDiagnosticPool::pool_iterator | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5317 | i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) { | 
|  | 5318 | // This const_cast is a bit lame.  Really, Triggered should be mutable. | 
|  | 5319 | DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i); | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 5320 | if (diag.Triggered) | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5321 | continue; | 
|  | 5322 |  | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 5323 | switch (diag.Kind) { | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5324 | case DelayedDiagnostic::Deprecation: | 
| John McCall | e8c904f | 2012-01-26 20:04:03 +0000 | [diff] [blame] | 5325 | // Don't bother giving deprecation diagnostics if the decl is invalid. | 
|  | 5326 | if (!decl->isInvalidDecl()) | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5327 | HandleDelayedDeprecationCheck(diag, decl); | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5328 | break; | 
|  | 5329 |  | 
|  | 5330 | case DelayedDiagnostic::Access: | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5331 | HandleDelayedAccessCheck(diag, decl); | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5332 | break; | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5333 |  | 
|  | 5334 | case DelayedDiagnostic::ForbiddenType: | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5335 | handleDelayedForbiddenType(*this, diag, decl); | 
| John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5336 | break; | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5337 | } | 
|  | 5338 | } | 
| John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 5339 | } while ((pool = pool->getParent())); | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5340 | } | 
|  | 5341 |  | 
| John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 5342 | /// Given a set of delayed diagnostics, re-emit them as if they had | 
|  | 5343 | /// been delayed in the current context instead of in the given pool. | 
|  | 5344 | /// Essentially, this just moves them to the current pool. | 
|  | 5345 | void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) { | 
|  | 5346 | DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool(); | 
|  | 5347 | assert(curPool && "re-emitting in undelayed context not supported"); | 
|  | 5348 | curPool->steal(pool); | 
|  | 5349 | } | 
|  | 5350 |  | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5351 | static bool isDeclDeprecated(Decl *D) { | 
|  | 5352 | do { | 
| Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 5353 | if (D->isDeprecated()) | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5354 | return true; | 
| Argyrios Kyrtzidis | c076e37 | 2011-10-06 23:23:27 +0000 | [diff] [blame] | 5355 | // A category implicitly has the availability of the interface. | 
|  | 5356 | if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D)) | 
|  | 5357 | return CatD->getClassInterface()->isDeprecated(); | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5358 | } while ((D = cast_or_null<Decl>(D->getDeclContext()))); | 
|  | 5359 | return false; | 
|  | 5360 | } | 
|  | 5361 |  | 
| Eli Friedman | c3b2308 | 2012-08-08 21:52:41 +0000 | [diff] [blame] | 5362 | static void | 
|  | 5363 | DoEmitDeprecationWarning(Sema &S, const NamedDecl *D, StringRef Message, | 
|  | 5364 | SourceLocation Loc, | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5365 | const ObjCInterfaceDecl *UnknownObjCClass, | 
|  | 5366 | const ObjCPropertyDecl *ObjCPropery) { | 
| Eli Friedman | c3b2308 | 2012-08-08 21:52:41 +0000 | [diff] [blame] | 5367 | DeclarationName Name = D->getDeclName(); | 
|  | 5368 | if (!Message.empty()) { | 
|  | 5369 | S.Diag(Loc, diag::warn_deprecated_message) << Name << Message; | 
|  | 5370 | S.Diag(D->getLocation(), | 
|  | 5371 | isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at | 
|  | 5372 | : diag::note_previous_decl) << Name; | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5373 | if (ObjCPropery) | 
|  | 5374 | S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute) | 
|  | 5375 | << ObjCPropery->getDeclName() << 0; | 
| Eli Friedman | c3b2308 | 2012-08-08 21:52:41 +0000 | [diff] [blame] | 5376 | } else if (!UnknownObjCClass) { | 
|  | 5377 | S.Diag(Loc, diag::warn_deprecated) << D->getDeclName(); | 
|  | 5378 | S.Diag(D->getLocation(), | 
|  | 5379 | isa<ObjCMethodDecl>(D) ? diag::note_method_declared_at | 
|  | 5380 | : diag::note_previous_decl) << Name; | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5381 | if (ObjCPropery) | 
|  | 5382 | S.Diag(ObjCPropery->getLocation(), diag::note_property_attribute) | 
|  | 5383 | << ObjCPropery->getDeclName() << 0; | 
| Eli Friedman | c3b2308 | 2012-08-08 21:52:41 +0000 | [diff] [blame] | 5384 | } else { | 
|  | 5385 | S.Diag(Loc, diag::warn_deprecated_fwdclass_message) << Name; | 
|  | 5386 | S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class); | 
|  | 5387 | } | 
|  | 5388 | } | 
|  | 5389 |  | 
| John McCall | 9c3087b | 2010-08-26 02:13:20 +0000 | [diff] [blame] | 5390 | void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD, | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5391 | Decl *Ctx) { | 
|  | 5392 | if (isDeclDeprecated(Ctx)) | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5393 | return; | 
|  | 5394 |  | 
| John McCall | 2f51448 | 2010-01-27 03:50:35 +0000 | [diff] [blame] | 5395 | DD.Triggered = true; | 
| Eli Friedman | c3b2308 | 2012-08-08 21:52:41 +0000 | [diff] [blame] | 5396 | DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(), | 
|  | 5397 | DD.getDeprecationMessage(), DD.Loc, | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5398 | DD.getUnknownObjCClass(), | 
|  | 5399 | DD.getObjCProperty()); | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5400 | } | 
|  | 5401 |  | 
| Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5402 | void Sema::EmitDeprecationWarning(NamedDecl *D, StringRef Message, | 
| Fariborz Jahanian | 8e5fc9b | 2010-12-21 00:44:01 +0000 | [diff] [blame] | 5403 | SourceLocation Loc, | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5404 | const ObjCInterfaceDecl *UnknownObjCClass, | 
|  | 5405 | const ObjCPropertyDecl  *ObjCProperty) { | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5406 | // Delay if we're currently parsing a declaration. | 
| John McCall | eee1d54 | 2011-02-14 07:13:47 +0000 | [diff] [blame] | 5407 | if (DelayedDiagnostics.shouldDelayDiagnostics()) { | 
| Fariborz Jahanian | b0a6615 | 2012-03-02 21:50:02 +0000 | [diff] [blame] | 5408 | DelayedDiagnostics.add(DelayedDiagnostic::makeDeprecation(Loc, D, | 
|  | 5409 | UnknownObjCClass, | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5410 | ObjCProperty, | 
| Fariborz Jahanian | b0a6615 | 2012-03-02 21:50:02 +0000 | [diff] [blame] | 5411 | Message)); | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5412 | return; | 
|  | 5413 | } | 
|  | 5414 |  | 
|  | 5415 | // Otherwise, don't warn if our current context is deprecated. | 
| Argyrios Kyrtzidis | 3a38744 | 2011-10-06 23:23:20 +0000 | [diff] [blame] | 5416 | if (isDeclDeprecated(cast<Decl>(getCurLexicalContext()))) | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5417 | return; | 
| Fariborz Jahanian | fd09088 | 2012-09-21 20:46:37 +0000 | [diff] [blame] | 5418 | DoEmitDeprecationWarning(*this, D, Message, Loc, UnknownObjCClass, ObjCProperty); | 
| John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 5419 | } |