Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for declaration specifiers. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 14 | #include "clang/Sema/DeclSpec.h" |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 16 | #include "clang/AST/Expr.h" |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 17 | #include "clang/AST/NestedNameSpecifier.h" |
| 18 | #include "clang/AST/TypeLoc.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 19 | #include "clang/Basic/LangOptions.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency! |
| 22 | #include "clang/Sema/LocInfoType.h" |
| 23 | #include "clang/Sema/ParsedTemplate.h" |
| 24 | #include "clang/Sema/Sema.h" |
| 25 | #include "clang/Sema/SemaDiagnostic.h" |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/STLExtras.h" |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 27 | #include "llvm/Support/ErrorHandling.h" |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 28 | #include <cstring> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 29 | using namespace clang; |
| 30 | |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 31 | |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 32 | static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc, |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 33 | unsigned DiagID) { |
| 34 | return D.Report(Loc, DiagID); |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 35 | } |
| 36 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 37 | |
| 38 | void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) { |
| 39 | assert(TemplateId && "NULL template-id annotation?"); |
| 40 | Kind = IK_TemplateId; |
| 41 | this->TemplateId = TemplateId; |
| 42 | StartLocation = TemplateId->TemplateNameLoc; |
| 43 | EndLocation = TemplateId->RAngleLoc; |
| 44 | } |
| 45 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 46 | void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) { |
| 47 | assert(TemplateId && "NULL template-id annotation?"); |
| 48 | Kind = IK_ConstructorTemplateId; |
| 49 | this->TemplateId = TemplateId; |
| 50 | StartLocation = TemplateId->TemplateNameLoc; |
| 51 | EndLocation = TemplateId->RAngleLoc; |
| 52 | } |
| 53 | |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 54 | void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc, |
| 55 | TypeLoc TL, SourceLocation ColonColonLoc) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 56 | Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc); |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 57 | if (Range.getBegin().isInvalid()) |
| 58 | Range.setBegin(TL.getBeginLoc()); |
| 59 | Range.setEnd(ColonColonLoc); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 60 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 61 | assert(Range == Builder.getSourceRange() && |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 62 | "NestedNameSpecifierLoc range computation incorrect"); |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier, |
| 66 | SourceLocation IdentifierLoc, |
| 67 | SourceLocation ColonColonLoc) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 68 | Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc); |
| 69 | |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 70 | if (Range.getBegin().isInvalid()) |
| 71 | Range.setBegin(IdentifierLoc); |
| 72 | Range.setEnd(ColonColonLoc); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 73 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 74 | assert(Range == Builder.getSourceRange() && |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 75 | "NestedNameSpecifierLoc range computation incorrect"); |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace, |
| 79 | SourceLocation NamespaceLoc, |
| 80 | SourceLocation ColonColonLoc) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 81 | Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc); |
| 82 | |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 83 | if (Range.getBegin().isInvalid()) |
| 84 | Range.setBegin(NamespaceLoc); |
| 85 | Range.setEnd(ColonColonLoc); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 86 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 87 | assert(Range == Builder.getSourceRange() && |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 88 | "NestedNameSpecifierLoc range computation incorrect"); |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Douglas Gregor | 14aba76 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 91 | void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias, |
| 92 | SourceLocation AliasLoc, |
| 93 | SourceLocation ColonColonLoc) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 94 | Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc); |
| 95 | |
Douglas Gregor | 14aba76 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 96 | if (Range.getBegin().isInvalid()) |
| 97 | Range.setBegin(AliasLoc); |
| 98 | Range.setEnd(ColonColonLoc); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 99 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 100 | assert(Range == Builder.getSourceRange() && |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 101 | "NestedNameSpecifierLoc range computation incorrect"); |
Douglas Gregor | 14aba76 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 104 | void CXXScopeSpec::MakeGlobal(ASTContext &Context, |
| 105 | SourceLocation ColonColonLoc) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 106 | Builder.MakeGlobal(Context, ColonColonLoc); |
| 107 | |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 108 | Range = SourceRange(ColonColonLoc); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 109 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 110 | assert(Range == Builder.getSourceRange() && |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 111 | "NestedNameSpecifierLoc range computation incorrect"); |
| 112 | } |
| 113 | |
| 114 | void CXXScopeSpec::MakeTrivial(ASTContext &Context, |
| 115 | NestedNameSpecifier *Qualifier, SourceRange R) { |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 116 | Builder.MakeTrivial(Context, Qualifier, R); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 117 | Range = R; |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) { |
| 121 | if (!Other) { |
| 122 | Range = SourceRange(); |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 123 | Builder.Clear(); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 124 | return; |
| 125 | } |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 126 | |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 127 | Range = Other.getSourceRange(); |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 128 | Builder.Adopt(Other); |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 129 | } |
| 130 | |
John McCall | 9dc71d2 | 2011-07-06 06:57:57 +0000 | [diff] [blame] | 131 | SourceLocation CXXScopeSpec::getLastQualifierNameLoc() const { |
| 132 | if (!Builder.getRepresentation()) |
| 133 | return SourceLocation(); |
| 134 | return Builder.getTemporary().getLocalBeginLoc(); |
| 135 | } |
| 136 | |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 137 | NestedNameSpecifierLoc |
| 138 | CXXScopeSpec::getWithLocInContext(ASTContext &Context) const { |
Douglas Gregor | b46ae39 | 2011-03-03 21:48:55 +0000 | [diff] [blame] | 139 | if (!Builder.getRepresentation()) |
Douglas Gregor | c34348a | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 140 | return NestedNameSpecifierLoc(); |
| 141 | |
Douglas Gregor | 5f791bb | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 142 | return Builder.getWithLocInContext(Context); |
Douglas Gregor | 2e4c34a | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 145 | /// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function. |
| 146 | /// "TheDeclarator" is the declarator that this will be added to. |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 147 | DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, |
Richard Smith | b9c6261 | 2012-07-30 21:30:52 +0000 | [diff] [blame] | 148 | bool isAmbiguous, |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 149 | SourceLocation LParenLoc, |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 150 | ParamInfo *ArgInfo, |
| 151 | unsigned NumArgs, |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 152 | SourceLocation EllipsisLoc, |
| 153 | SourceLocation RParenLoc, |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 154 | unsigned TypeQuals, |
Douglas Gregor | 83f5172 | 2011-01-26 03:43:54 +0000 | [diff] [blame] | 155 | bool RefQualifierIsLvalueRef, |
| 156 | SourceLocation RefQualifierLoc, |
Douglas Gregor | 43f5103 | 2011-10-19 06:04:55 +0000 | [diff] [blame] | 157 | SourceLocation ConstQualifierLoc, |
| 158 | SourceLocation |
| 159 | VolatileQualifierLoc, |
Douglas Gregor | 90ebed0 | 2011-07-13 21:47:47 +0000 | [diff] [blame] | 160 | SourceLocation MutableLoc, |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 161 | ExceptionSpecificationType |
| 162 | ESpecType, |
| 163 | SourceLocation ESpecLoc, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 164 | ParsedType *Exceptions, |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 165 | SourceRange *ExceptionRanges, |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 166 | unsigned NumExceptions, |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 167 | Expr *NoexceptExpr, |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 168 | SourceLocation LocalRangeBegin, |
| 169 | SourceLocation LocalRangeEnd, |
Douglas Gregor | dab60ad | 2010-10-01 18:44:50 +0000 | [diff] [blame] | 170 | Declarator &TheDeclarator, |
Richard Smith | 54655be | 2012-06-12 01:51:59 +0000 | [diff] [blame] | 171 | TypeResult TrailingReturnType) { |
Richard Smith | 4cf4a5e | 2013-03-28 01:55:44 +0000 | [diff] [blame] | 172 | assert(!(TypeQuals & DeclSpec::TQ_atomic) && |
| 173 | "function cannot have _Atomic qualifier"); |
| 174 | |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 175 | DeclaratorChunk I; |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 176 | I.Kind = Function; |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 177 | I.Loc = LocalRangeBegin; |
| 178 | I.EndLoc = LocalRangeEnd; |
John McCall | 0b7e678 | 2011-03-24 11:26:52 +0000 | [diff] [blame] | 179 | I.Fun.AttrList = 0; |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 180 | I.Fun.hasPrototype = hasProto; |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 181 | I.Fun.isVariadic = EllipsisLoc.isValid(); |
Richard Smith | b9c6261 | 2012-07-30 21:30:52 +0000 | [diff] [blame] | 182 | I.Fun.isAmbiguous = isAmbiguous; |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 183 | I.Fun.LParenLoc = LParenLoc.getRawEncoding(); |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 184 | I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding(); |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 185 | I.Fun.RParenLoc = RParenLoc.getRawEncoding(); |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 186 | I.Fun.DeleteArgInfo = false; |
| 187 | I.Fun.TypeQuals = TypeQuals; |
| 188 | I.Fun.NumArgs = NumArgs; |
| 189 | I.Fun.ArgInfo = 0; |
Douglas Gregor | 83f5172 | 2011-01-26 03:43:54 +0000 | [diff] [blame] | 190 | I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef; |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 191 | I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding(); |
Douglas Gregor | 43f5103 | 2011-10-19 06:04:55 +0000 | [diff] [blame] | 192 | I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding(); |
| 193 | I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding(); |
Douglas Gregor | 90ebed0 | 2011-07-13 21:47:47 +0000 | [diff] [blame] | 194 | I.Fun.MutableLoc = MutableLoc.getRawEncoding(); |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 195 | I.Fun.ExceptionSpecType = ESpecType; |
| 196 | I.Fun.ExceptionSpecLoc = ESpecLoc.getRawEncoding(); |
| 197 | I.Fun.NumExceptions = 0; |
| 198 | I.Fun.Exceptions = 0; |
| 199 | I.Fun.NoexceptExpr = 0; |
Richard Smith | 54655be | 2012-06-12 01:51:59 +0000 | [diff] [blame] | 200 | I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() || |
| 201 | TrailingReturnType.isInvalid(); |
| 202 | I.Fun.TrailingReturnType = TrailingReturnType.get(); |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 203 | |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 204 | // new[] an argument array if needed. |
| 205 | if (NumArgs) { |
| 206 | // If the 'InlineParams' in Declarator is unused and big enough, put our |
| 207 | // parameter list there (in an effort to avoid new/delete traffic). If it |
| 208 | // is already used (consider a function returning a function pointer) or too |
| 209 | // small (function taking too many arguments), go to the heap. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 210 | if (!TheDeclarator.InlineParamsUsed && |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 211 | NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) { |
| 212 | I.Fun.ArgInfo = TheDeclarator.InlineParams; |
| 213 | I.Fun.DeleteArgInfo = false; |
| 214 | TheDeclarator.InlineParamsUsed = true; |
| 215 | } else { |
| 216 | I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs]; |
| 217 | I.Fun.DeleteArgInfo = true; |
| 218 | } |
| 219 | memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs); |
| 220 | } |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 221 | |
| 222 | // Check what exception specification information we should actually store. |
| 223 | switch (ESpecType) { |
| 224 | default: break; // By default, save nothing. |
| 225 | case EST_Dynamic: |
| 226 | // new[] an exception array if needed |
| 227 | if (NumExceptions) { |
| 228 | I.Fun.NumExceptions = NumExceptions; |
| 229 | I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions]; |
| 230 | for (unsigned i = 0; i != NumExceptions; ++i) { |
| 231 | I.Fun.Exceptions[i].Ty = Exceptions[i]; |
| 232 | I.Fun.Exceptions[i].Range = ExceptionRanges[i]; |
| 233 | } |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 234 | } |
Sebastian Redl | 6e5d319 | 2011-03-05 22:42:13 +0000 | [diff] [blame] | 235 | break; |
| 236 | |
| 237 | case EST_ComputedNoexcept: |
| 238 | I.Fun.NoexceptExpr = NoexceptExpr; |
| 239 | break; |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 240 | } |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 241 | return I; |
| 242 | } |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 243 | |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 244 | bool Declarator::isDeclarationOfFunction() const { |
Richard Smith | 1ab0d90 | 2011-06-25 02:28:38 +0000 | [diff] [blame] | 245 | for (unsigned i = 0, i_end = DeclTypeInfo.size(); i < i_end; ++i) { |
| 246 | switch (DeclTypeInfo[i].Kind) { |
| 247 | case DeclaratorChunk::Function: |
| 248 | return true; |
| 249 | case DeclaratorChunk::Paren: |
| 250 | continue; |
| 251 | case DeclaratorChunk::Pointer: |
| 252 | case DeclaratorChunk::Reference: |
| 253 | case DeclaratorChunk::Array: |
| 254 | case DeclaratorChunk::BlockPointer: |
| 255 | case DeclaratorChunk::MemberPointer: |
| 256 | return false; |
| 257 | } |
| 258 | llvm_unreachable("Invalid type chunk"); |
Richard Smith | 1ab0d90 | 2011-06-25 02:28:38 +0000 | [diff] [blame] | 259 | } |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 260 | |
| 261 | switch (DS.getTypeSpecType()) { |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 262 | case TST_atomic: |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 263 | case TST_auto: |
| 264 | case TST_bool: |
| 265 | case TST_char: |
| 266 | case TST_char16: |
| 267 | case TST_char32: |
| 268 | case TST_class: |
| 269 | case TST_decimal128: |
| 270 | case TST_decimal32: |
| 271 | case TST_decimal64: |
| 272 | case TST_double: |
| 273 | case TST_enum: |
| 274 | case TST_error: |
| 275 | case TST_float: |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 276 | case TST_half: |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 277 | case TST_int: |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 278 | case TST_int128: |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 279 | case TST_struct: |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 280 | case TST_interface: |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 281 | case TST_union: |
| 282 | case TST_unknown_anytype: |
| 283 | case TST_unspecified: |
| 284 | case TST_void: |
| 285 | case TST_wchar: |
Guy Benyei | b13621d | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 286 | case TST_image1d_t: |
| 287 | case TST_image1d_array_t: |
| 288 | case TST_image1d_buffer_t: |
| 289 | case TST_image2d_t: |
| 290 | case TST_image2d_array_t: |
| 291 | case TST_image3d_t: |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 292 | case TST_sampler_t: |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 293 | case TST_event_t: |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 294 | return false; |
| 295 | |
| 296 | case TST_decltype: |
| 297 | case TST_typeofExpr: |
| 298 | if (Expr *E = DS.getRepAsExpr()) |
| 299 | return E->getType()->isFunctionType(); |
| 300 | return false; |
| 301 | |
| 302 | case TST_underlyingType: |
| 303 | case TST_typename: |
| 304 | case TST_typeofType: { |
| 305 | QualType QT = DS.getRepAsType().get(); |
| 306 | if (QT.isNull()) |
| 307 | return false; |
| 308 | |
| 309 | if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) |
| 310 | QT = LIT->getType(); |
| 311 | |
| 312 | if (QT.isNull()) |
| 313 | return false; |
| 314 | |
| 315 | return QT->isFunctionType(); |
| 316 | } |
| 317 | } |
David Blaikie | 7530c03 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 318 | |
| 319 | llvm_unreachable("Invalid TypeSpecType!"); |
Douglas Gregor | 555f57e | 2011-06-25 00:56:27 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 322 | /// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this |
Chris Lattner | 2a327d1 | 2009-02-27 18:35:46 +0000 | [diff] [blame] | 323 | /// declaration specifier includes. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 324 | /// |
| 325 | unsigned DeclSpec::getParsedSpecifiers() const { |
| 326 | unsigned Res = 0; |
| 327 | if (StorageClassSpec != SCS_unspecified || |
| 328 | SCS_thread_specified) |
| 329 | Res |= PQ_StorageClassSpecifier; |
Mike Stump | d420433 | 2008-06-19 19:52:46 +0000 | [diff] [blame] | 330 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 331 | if (TypeQualifiers != TQ_unspecified) |
| 332 | Res |= PQ_TypeQualifier; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 333 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 334 | if (hasTypeSpecifier()) |
| 335 | Res |= PQ_TypeSpecifier; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 336 | |
Richard Smith | de03c15 | 2013-01-17 22:16:11 +0000 | [diff] [blame] | 337 | if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified || |
| 338 | FS_noreturn_specified) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 339 | Res |= PQ_FunctionSpecifier; |
| 340 | return Res; |
| 341 | } |
| 342 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 343 | template <class T> static bool BadSpecifier(T TNew, T TPrev, |
| 344 | const char *&PrevSpec, |
Aaron Ballman | c828620 | 2012-08-28 20:55:40 +0000 | [diff] [blame] | 345 | unsigned &DiagID, |
| 346 | bool IsExtension = true) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 347 | PrevSpec = DeclSpec::getSpecifierName(TPrev); |
Aaron Ballman | c828620 | 2012-08-28 20:55:40 +0000 | [diff] [blame] | 348 | if (TNew != TPrev) |
| 349 | DiagID = diag::err_invalid_decl_spec_combination; |
| 350 | else |
| 351 | DiagID = IsExtension ? diag::ext_duplicate_declspec : |
| 352 | diag::warn_duplicate_declspec; |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 353 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 354 | } |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 355 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 356 | const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) { |
| 357 | switch (S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 358 | case DeclSpec::SCS_unspecified: return "unspecified"; |
| 359 | case DeclSpec::SCS_typedef: return "typedef"; |
| 360 | case DeclSpec::SCS_extern: return "extern"; |
| 361 | case DeclSpec::SCS_static: return "static"; |
| 362 | case DeclSpec::SCS_auto: return "auto"; |
| 363 | case DeclSpec::SCS_register: return "register"; |
Eli Friedman | 63054b3 | 2009-04-19 20:27:55 +0000 | [diff] [blame] | 364 | case DeclSpec::SCS_private_extern: return "__private_extern__"; |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 365 | case DeclSpec::SCS_mutable: return "mutable"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 366 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 367 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 368 | } |
| 369 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 370 | const char *DeclSpec::getSpecifierName(TSW W) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 371 | switch (W) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 372 | case TSW_unspecified: return "unspecified"; |
| 373 | case TSW_short: return "short"; |
| 374 | case TSW_long: return "long"; |
| 375 | case TSW_longlong: return "long long"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 376 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 377 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 378 | } |
| 379 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 380 | const char *DeclSpec::getSpecifierName(TSC C) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 381 | switch (C) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 382 | case TSC_unspecified: return "unspecified"; |
| 383 | case TSC_imaginary: return "imaginary"; |
| 384 | case TSC_complex: return "complex"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 385 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 386 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 390 | const char *DeclSpec::getSpecifierName(TSS S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 391 | switch (S) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 392 | case TSS_unspecified: return "unspecified"; |
| 393 | case TSS_signed: return "signed"; |
| 394 | case TSS_unsigned: return "unsigned"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 395 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 396 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | const char *DeclSpec::getSpecifierName(DeclSpec::TST T) { |
| 400 | switch (T) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 401 | case DeclSpec::TST_unspecified: return "unspecified"; |
| 402 | case DeclSpec::TST_void: return "void"; |
| 403 | case DeclSpec::TST_char: return "char"; |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 404 | case DeclSpec::TST_wchar: return "wchar_t"; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 405 | case DeclSpec::TST_char16: return "char16_t"; |
| 406 | case DeclSpec::TST_char32: return "char32_t"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 407 | case DeclSpec::TST_int: return "int"; |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 408 | case DeclSpec::TST_int128: return "__int128"; |
Anton Korobeynikov | aa4a99b | 2011-10-14 23:23:15 +0000 | [diff] [blame] | 409 | case DeclSpec::TST_half: return "half"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 410 | case DeclSpec::TST_float: return "float"; |
| 411 | case DeclSpec::TST_double: return "double"; |
| 412 | case DeclSpec::TST_bool: return "_Bool"; |
| 413 | case DeclSpec::TST_decimal32: return "_Decimal32"; |
| 414 | case DeclSpec::TST_decimal64: return "_Decimal64"; |
| 415 | case DeclSpec::TST_decimal128: return "_Decimal128"; |
| 416 | case DeclSpec::TST_enum: return "enum"; |
Chris Lattner | 99dc914 | 2008-04-13 18:59:07 +0000 | [diff] [blame] | 417 | case DeclSpec::TST_class: return "class"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 418 | case DeclSpec::TST_union: return "union"; |
| 419 | case DeclSpec::TST_struct: return "struct"; |
Joao Matos | 6666ed4 | 2012-08-31 18:45:21 +0000 | [diff] [blame] | 420 | case DeclSpec::TST_interface: return "__interface"; |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 421 | case DeclSpec::TST_typename: return "type-name"; |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 422 | case DeclSpec::TST_typeofType: |
| 423 | case DeclSpec::TST_typeofExpr: return "typeof"; |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 424 | case DeclSpec::TST_auto: return "auto"; |
| 425 | case DeclSpec::TST_decltype: return "(decltype)"; |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 426 | case DeclSpec::TST_underlyingType: return "__underlying_type"; |
John McCall | a5fc472 | 2011-04-09 22:50:59 +0000 | [diff] [blame] | 427 | case DeclSpec::TST_unknown_anytype: return "__unknown_anytype"; |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 428 | case DeclSpec::TST_atomic: return "_Atomic"; |
Guy Benyei | b13621d | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 429 | case DeclSpec::TST_image1d_t: return "image1d_t"; |
| 430 | case DeclSpec::TST_image1d_array_t: return "image1d_array_t"; |
| 431 | case DeclSpec::TST_image1d_buffer_t: return "image1d_buffer_t"; |
| 432 | case DeclSpec::TST_image2d_t: return "image2d_t"; |
| 433 | case DeclSpec::TST_image2d_array_t: return "image2d_array_t"; |
| 434 | case DeclSpec::TST_image3d_t: return "image3d_t"; |
Guy Benyei | 21f18c4 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 435 | case DeclSpec::TST_sampler_t: return "sampler_t"; |
Guy Benyei | e6b9d80 | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 436 | case DeclSpec::TST_event_t: return "event_t"; |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 437 | case DeclSpec::TST_error: return "(error)"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 438 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 439 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 440 | } |
| 441 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 442 | const char *DeclSpec::getSpecifierName(TQ T) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 443 | switch (T) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 444 | case DeclSpec::TQ_unspecified: return "unspecified"; |
| 445 | case DeclSpec::TQ_const: return "const"; |
| 446 | case DeclSpec::TQ_restrict: return "restrict"; |
| 447 | case DeclSpec::TQ_volatile: return "volatile"; |
Richard Smith | 4cf4a5e | 2013-03-28 01:55:44 +0000 | [diff] [blame] | 448 | case DeclSpec::TQ_atomic: return "_Atomic"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 449 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 450 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 453 | bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 454 | const char *&PrevSpec, |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 455 | unsigned &DiagID) { |
Tanya Lattner | 5e94d6f | 2012-06-19 23:09:52 +0000 | [diff] [blame] | 456 | // OpenCL v1.1 s6.8g: "The extern, static, auto and register storage-class |
| 457 | // specifiers are not supported. |
Peter Collingbourne | e2f82f7 | 2011-02-11 19:59:54 +0000 | [diff] [blame] | 458 | // It seems sensible to prohibit private_extern too |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 459 | // The cl_clang_storage_class_specifiers extension enables support for |
| 460 | // these storage-class specifiers. |
Tanya Lattner | 5e94d6f | 2012-06-19 23:09:52 +0000 | [diff] [blame] | 461 | // OpenCL v1.2 s6.8 changes this to "The auto and register storage-class |
| 462 | // specifiers are not supported." |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 463 | if (S.getLangOpts().OpenCL && |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 464 | !S.getOpenCLOptions().cl_clang_storage_class_specifiers) { |
| 465 | switch (SC) { |
Peter Collingbourne | e2f82f7 | 2011-02-11 19:59:54 +0000 | [diff] [blame] | 466 | case SCS_extern: |
| 467 | case SCS_private_extern: |
Tanya Lattner | 5e94d6f | 2012-06-19 23:09:52 +0000 | [diff] [blame] | 468 | case SCS_static: |
| 469 | if (S.getLangOpts().OpenCLVersion < 120) { |
| 470 | DiagID = diag::err_not_opencl_storage_class_specifier; |
| 471 | PrevSpec = getSpecifierName(SC); |
| 472 | return true; |
| 473 | } |
| 474 | break; |
Peter Collingbourne | e2f82f7 | 2011-02-11 19:59:54 +0000 | [diff] [blame] | 475 | case SCS_auto: |
| 476 | case SCS_register: |
Peter Collingbourne | e2f82f7 | 2011-02-11 19:59:54 +0000 | [diff] [blame] | 477 | DiagID = diag::err_not_opencl_storage_class_specifier; |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 478 | PrevSpec = getSpecifierName(SC); |
Peter Collingbourne | e2f82f7 | 2011-02-11 19:59:54 +0000 | [diff] [blame] | 479 | return true; |
| 480 | default: |
| 481 | break; |
| 482 | } |
| 483 | } |
| 484 | |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 485 | if (StorageClassSpec != SCS_unspecified) { |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 486 | // Maybe this is an attempt to use C++0x 'auto' outside of C++0x mode. |
| 487 | bool isInvalid = true; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 488 | if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) { |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 489 | if (SC == SCS_auto) |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 490 | return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID); |
| 491 | if (StorageClassSpec == SCS_auto) { |
| 492 | isInvalid = SetTypeSpecType(TST_auto, StorageClassSpecLoc, |
| 493 | PrevSpec, DiagID); |
| 494 | assert(!isInvalid && "auto SCS -> TST recovery failed"); |
| 495 | } |
| 496 | } |
| 497 | |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 498 | // Changing storage class is allowed only if the previous one |
| 499 | // was the 'extern' that is part of a linkage specification and |
| 500 | // the new storage class is 'typedef'. |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 501 | if (isInvalid && |
| 502 | !(SCS_extern_in_linkage_spec && |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 503 | StorageClassSpec == SCS_extern && |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 504 | SC == SCS_typedef)) |
| 505 | return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID); |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 506 | } |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 507 | StorageClassSpec = SC; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 508 | StorageClassSpecLoc = Loc; |
Peter Collingbourne | b8b0e75 | 2011-10-06 03:01:00 +0000 | [diff] [blame] | 509 | assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 510 | return false; |
| 511 | } |
| 512 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 513 | bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 514 | const char *&PrevSpec, |
| 515 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 516 | if (SCS_thread_specified) { |
| 517 | PrevSpec = "__thread"; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 518 | DiagID = diag::ext_duplicate_declspec; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 519 | return true; |
| 520 | } |
| 521 | SCS_thread_specified = true; |
| 522 | SCS_threadLoc = Loc; |
| 523 | return false; |
| 524 | } |
| 525 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 526 | /// These methods set the specified attribute of the DeclSpec, but return true |
| 527 | /// and ignore the request if invalid (e.g. "extern" then "auto" is |
| 528 | /// specified). |
| 529 | bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 530 | const char *&PrevSpec, |
| 531 | unsigned &DiagID) { |
Abramo Bagnara | 2553eaf | 2011-03-06 22:21:56 +0000 | [diff] [blame] | 532 | // Overwrite TSWLoc only if TypeSpecWidth was unspecified, so that |
| 533 | // for 'long long' we will keep the source location of the first 'long'. |
| 534 | if (TypeSpecWidth == TSW_unspecified) |
| 535 | TSWLoc = Loc; |
| 536 | // Allow turning long -> long long. |
| 537 | else if (W != TSW_longlong || TypeSpecWidth != TSW_long) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 538 | return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 539 | TypeSpecWidth = W; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 540 | if (TypeAltiVecVector && !TypeAltiVecBool && |
| 541 | ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 542 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 543 | DiagID = diag::warn_vector_long_decl_spec_combination; |
| 544 | return true; |
| 545 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 546 | return false; |
| 547 | } |
| 548 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 549 | bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 550 | const char *&PrevSpec, |
| 551 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 552 | if (TypeSpecComplex != TSC_unspecified) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 553 | return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 554 | TypeSpecComplex = C; |
| 555 | TSCLoc = Loc; |
| 556 | return false; |
| 557 | } |
| 558 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 559 | bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 560 | const char *&PrevSpec, |
| 561 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 562 | if (TypeSpecSign != TSS_unspecified) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 563 | return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 564 | TypeSpecSign = S; |
| 565 | TSSLoc = Loc; |
| 566 | return false; |
| 567 | } |
| 568 | |
| 569 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 570 | const char *&PrevSpec, |
| 571 | unsigned &DiagID, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 572 | ParsedType Rep) { |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 573 | return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep); |
| 574 | } |
| 575 | |
| 576 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc, |
| 577 | SourceLocation TagNameLoc, |
| 578 | const char *&PrevSpec, |
| 579 | unsigned &DiagID, |
| 580 | ParsedType Rep) { |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 581 | assert(isTypeRep(T) && "T does not store a type"); |
| 582 | assert(Rep && "no type provided!"); |
| 583 | if (TypeSpecType != TST_unspecified) { |
| 584 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 585 | DiagID = diag::err_invalid_decl_spec_combination; |
| 586 | return true; |
| 587 | } |
| 588 | TypeSpecType = T; |
| 589 | TypeRep = Rep; |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 590 | TSTLoc = TagKwLoc; |
| 591 | TSTNameLoc = TagNameLoc; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 592 | TypeSpecOwned = false; |
| 593 | return false; |
| 594 | } |
| 595 | |
| 596 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 597 | const char *&PrevSpec, |
| 598 | unsigned &DiagID, |
| 599 | Expr *Rep) { |
| 600 | assert(isExprRep(T) && "T does not store an expr"); |
| 601 | assert(Rep && "no expression provided!"); |
| 602 | if (TypeSpecType != TST_unspecified) { |
| 603 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 604 | DiagID = diag::err_invalid_decl_spec_combination; |
| 605 | return true; |
| 606 | } |
| 607 | TypeSpecType = T; |
| 608 | ExprRep = Rep; |
| 609 | TSTLoc = Loc; |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 610 | TSTNameLoc = Loc; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 611 | TypeSpecOwned = false; |
| 612 | return false; |
| 613 | } |
| 614 | |
| 615 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 616 | const char *&PrevSpec, |
| 617 | unsigned &DiagID, |
| 618 | Decl *Rep, bool Owned) { |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 619 | return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned); |
| 620 | } |
| 621 | |
| 622 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc, |
| 623 | SourceLocation TagNameLoc, |
| 624 | const char *&PrevSpec, |
| 625 | unsigned &DiagID, |
| 626 | Decl *Rep, bool Owned) { |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 627 | assert(isDeclRep(T) && "T does not store a decl"); |
| 628 | // Unlike the other cases, we don't assert that we actually get a decl. |
| 629 | |
| 630 | if (TypeSpecType != TST_unspecified) { |
| 631 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 632 | DiagID = diag::err_invalid_decl_spec_combination; |
| 633 | return true; |
| 634 | } |
| 635 | TypeSpecType = T; |
| 636 | DeclRep = Rep; |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 637 | TSTLoc = TagKwLoc; |
| 638 | TSTNameLoc = TagNameLoc; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 639 | TypeSpecOwned = Owned; |
| 640 | return false; |
| 641 | } |
| 642 | |
| 643 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 644 | const char *&PrevSpec, |
| 645 | unsigned &DiagID) { |
| 646 | assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) && |
| 647 | "rep required for these type-spec kinds!"); |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 648 | if (TypeSpecType != TST_unspecified) { |
| 649 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 650 | DiagID = diag::err_invalid_decl_spec_combination; |
| 651 | return true; |
| 652 | } |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 653 | TSTLoc = Loc; |
| 654 | TSTNameLoc = Loc; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 655 | if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) { |
| 656 | TypeAltiVecBool = true; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 657 | return false; |
| 658 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 659 | TypeSpecType = T; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 660 | TypeSpecOwned = false; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 661 | if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 662 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 663 | DiagID = diag::err_invalid_vector_decl_spec; |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 664 | return true; |
| 665 | } |
| 666 | return false; |
| 667 | } |
| 668 | |
| 669 | bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc, |
| 670 | const char *&PrevSpec, unsigned &DiagID) { |
| 671 | if (TypeSpecType != TST_unspecified) { |
| 672 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 673 | DiagID = diag::err_invalid_vector_decl_spec_combination; |
| 674 | return true; |
| 675 | } |
| 676 | TypeAltiVecVector = isAltiVecVector; |
| 677 | AltiVecLoc = Loc; |
| 678 | return false; |
| 679 | } |
| 680 | |
| 681 | bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc, |
| 682 | const char *&PrevSpec, unsigned &DiagID) { |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 683 | if (!TypeAltiVecVector || TypeAltiVecPixel || |
| 684 | (TypeSpecType != TST_unspecified)) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 685 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 686 | DiagID = diag::err_invalid_pixel_decl_spec_combination; |
| 687 | return true; |
| 688 | } |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 689 | TypeAltiVecPixel = isAltiVecPixel; |
| 690 | TSTLoc = Loc; |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 691 | TSTNameLoc = Loc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 692 | return false; |
| 693 | } |
| 694 | |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 695 | bool DeclSpec::SetTypeSpecError() { |
| 696 | TypeSpecType = TST_error; |
John McCall | 9e46b8c | 2010-08-26 17:22:34 +0000 | [diff] [blame] | 697 | TypeSpecOwned = false; |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 698 | TSTLoc = SourceLocation(); |
Abramo Bagnara | 0daaf32 | 2011-03-16 20:16:18 +0000 | [diff] [blame] | 699 | TSTNameLoc = SourceLocation(); |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 700 | return false; |
| 701 | } |
| 702 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 703 | bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec, |
Richard Smith | d654f2d | 2012-10-17 23:31:46 +0000 | [diff] [blame] | 704 | unsigned &DiagID, const LangOptions &Lang) { |
| 705 | // Duplicates are permitted in C99, but are not permitted in C++. However, |
| 706 | // since this is likely not what the user intended, we will always warn. We |
| 707 | // do not need to set the qualifier's location since we already have it. |
Aaron Ballman | c828620 | 2012-08-28 20:55:40 +0000 | [diff] [blame] | 708 | if (TypeQualifiers & T) { |
Aaron Ballman | a14f400 | 2012-08-29 12:35:14 +0000 | [diff] [blame] | 709 | bool IsExtension = true; |
Richard Smith | d654f2d | 2012-10-17 23:31:46 +0000 | [diff] [blame] | 710 | if (Lang.C99) |
Aaron Ballman | a14f400 | 2012-08-29 12:35:14 +0000 | [diff] [blame] | 711 | IsExtension = false; |
Aaron Ballman | c828620 | 2012-08-28 20:55:40 +0000 | [diff] [blame] | 712 | return BadSpecifier(T, T, PrevSpec, DiagID, IsExtension); |
| 713 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 714 | TypeQualifiers |= T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 715 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 716 | switch (T) { |
Richard Smith | 4cf4a5e | 2013-03-28 01:55:44 +0000 | [diff] [blame] | 717 | case TQ_unspecified: break; |
| 718 | case TQ_const: TQ_constLoc = Loc; return false; |
| 719 | case TQ_restrict: TQ_restrictLoc = Loc; return false; |
| 720 | case TQ_volatile: TQ_volatileLoc = Loc; return false; |
| 721 | case TQ_atomic: TQ_atomicLoc = Loc; return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 722 | } |
Richard Smith | 4cf4a5e | 2013-03-28 01:55:44 +0000 | [diff] [blame] | 723 | |
| 724 | llvm_unreachable("Unknown type qualifier!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Chad Rosier | 22aa690 | 2012-12-21 22:24:43 +0000 | [diff] [blame] | 727 | bool DeclSpec::setFunctionSpecInline(SourceLocation Loc) { |
Chad Rosier | 67a0f6e | 2012-12-21 22:38:37 +0000 | [diff] [blame] | 728 | // 'inline inline' is ok. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 729 | FS_inline_specified = true; |
| 730 | FS_inlineLoc = Loc; |
| 731 | return false; |
| 732 | } |
| 733 | |
Chad Rosier | 22aa690 | 2012-12-21 22:24:43 +0000 | [diff] [blame] | 734 | bool DeclSpec::setFunctionSpecVirtual(SourceLocation Loc) { |
Chad Rosier | 67a0f6e | 2012-12-21 22:38:37 +0000 | [diff] [blame] | 735 | // 'virtual virtual' is ok. |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 736 | FS_virtual_specified = true; |
| 737 | FS_virtualLoc = Loc; |
| 738 | return false; |
| 739 | } |
| 740 | |
Chad Rosier | 22aa690 | 2012-12-21 22:24:43 +0000 | [diff] [blame] | 741 | bool DeclSpec::setFunctionSpecExplicit(SourceLocation Loc) { |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 742 | // 'explicit explicit' is ok. |
| 743 | FS_explicit_specified = true; |
| 744 | FS_explicitLoc = Loc; |
| 745 | return false; |
| 746 | } |
| 747 | |
Richard Smith | de03c15 | 2013-01-17 22:16:11 +0000 | [diff] [blame] | 748 | bool DeclSpec::setFunctionSpecNoreturn(SourceLocation Loc) { |
| 749 | // '_Noreturn _Noreturn' is ok. |
| 750 | FS_noreturn_specified = true; |
| 751 | FS_noreturnLoc = Loc; |
| 752 | return false; |
| 753 | } |
| 754 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 755 | bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec, |
| 756 | unsigned &DiagID) { |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 757 | if (Friend_specified) { |
| 758 | PrevSpec = "friend"; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 759 | DiagID = diag::ext_duplicate_declspec; |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 760 | return true; |
| 761 | } |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 762 | |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 763 | Friend_specified = true; |
| 764 | FriendLoc = Loc; |
| 765 | return false; |
| 766 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 767 | |
Douglas Gregor | 8d267c5 | 2011-09-09 02:06:17 +0000 | [diff] [blame] | 768 | bool DeclSpec::setModulePrivateSpec(SourceLocation Loc, const char *&PrevSpec, |
| 769 | unsigned &DiagID) { |
| 770 | if (isModulePrivateSpecified()) { |
| 771 | PrevSpec = "__module_private__"; |
| 772 | DiagID = diag::ext_duplicate_declspec; |
| 773 | return true; |
| 774 | } |
| 775 | |
| 776 | ModulePrivateLoc = Loc; |
| 777 | return false; |
| 778 | } |
| 779 | |
Sebastian Redl | 2ac6723 | 2009-11-05 15:47:02 +0000 | [diff] [blame] | 780 | bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec, |
| 781 | unsigned &DiagID) { |
| 782 | // 'constexpr constexpr' is ok. |
| 783 | Constexpr_specified = true; |
| 784 | ConstexprLoc = Loc; |
| 785 | return false; |
| 786 | } |
| 787 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 788 | void DeclSpec::setProtocolQualifiers(Decl * const *Protos, |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 789 | unsigned NP, |
| 790 | SourceLocation *ProtoLocs, |
| 791 | SourceLocation LAngleLoc) { |
| 792 | if (NP == 0) return; |
David Greene | c23e69d | 2013-01-15 22:09:39 +0000 | [diff] [blame] | 793 | Decl **ProtoQuals = new Decl*[NP]; |
| 794 | memcpy(ProtoQuals, Protos, sizeof(Decl*)*NP); |
| 795 | ProtocolQualifiers = ProtoQuals; |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 796 | ProtocolLocs = new SourceLocation[NP]; |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 797 | memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP); |
| 798 | NumProtocolQualifiers = NP; |
| 799 | ProtocolLAngleLoc = LAngleLoc; |
| 800 | } |
| 801 | |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 802 | void DeclSpec::SaveWrittenBuiltinSpecs() { |
| 803 | writtenBS.Sign = getTypeSpecSign(); |
| 804 | writtenBS.Width = getTypeSpecWidth(); |
| 805 | writtenBS.Type = getTypeSpecType(); |
| 806 | // Search the list of attributes for the presence of a mode attribute. |
| 807 | writtenBS.ModeAttr = false; |
John McCall | 7f040a9 | 2010-12-24 02:08:15 +0000 | [diff] [blame] | 808 | AttributeList* attrs = getAttributes().getList(); |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 809 | while (attrs) { |
Sean Hunt | 8e083e7 | 2012-06-19 23:57:03 +0000 | [diff] [blame] | 810 | if (attrs->getKind() == AttributeList::AT_Mode) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 811 | writtenBS.ModeAttr = true; |
| 812 | break; |
| 813 | } |
| 814 | attrs = attrs->getNext(); |
| 815 | } |
| 816 | } |
| 817 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 818 | /// Finish - This does final analysis of the declspec, rejecting things like |
| 819 | /// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or |
| 820 | /// diag::NUM_DIAGNOSTICS if there is no error. After calling this method, |
| 821 | /// DeclSpec is guaranteed self-consistent, even if an error occurred. |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 822 | void DeclSpec::Finish(DiagnosticsEngine &D, Preprocessor &PP) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 823 | // Before possibly changing their values, save specs as written. |
| 824 | SaveWrittenBuiltinSpecs(); |
| 825 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 826 | // Check the type specifier components first. |
| 827 | |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 828 | // Validate and finalize AltiVec vector declspec. |
| 829 | if (TypeAltiVecVector) { |
| 830 | if (TypeAltiVecBool) { |
| 831 | // Sign specifiers are not allowed with vector bool. (PIM 2.1) |
| 832 | if (TypeSpecSign != TSS_unspecified) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 833 | Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec) |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 834 | << getSpecifierName((TSS)TypeSpecSign); |
| 835 | } |
| 836 | |
| 837 | // Only char/int are valid with vector bool. (PIM 2.1) |
Duncan Sands | 2e964a92 | 2010-06-23 19:34:52 +0000 | [diff] [blame] | 838 | if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) && |
| 839 | (TypeSpecType != TST_int)) || TypeAltiVecPixel) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 840 | Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec) |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 841 | << (TypeAltiVecPixel ? "__pixel" : |
| 842 | getSpecifierName((TST)TypeSpecType)); |
| 843 | } |
| 844 | |
| 845 | // Only 'short' is valid with vector bool. (PIM 2.1) |
| 846 | if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short)) |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 847 | Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec) |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 848 | << getSpecifierName((TSW)TypeSpecWidth); |
| 849 | |
| 850 | // Elements of vector bool are interpreted as unsigned. (PIM 2.1) |
| 851 | if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) || |
| 852 | (TypeSpecWidth != TSW_unspecified)) |
| 853 | TypeSpecSign = TSS_unsigned; |
| 854 | } |
| 855 | |
| 856 | if (TypeAltiVecPixel) { |
| 857 | //TODO: perform validation |
| 858 | TypeSpecType = TST_int; |
| 859 | TypeSpecSign = TSS_unsigned; |
| 860 | TypeSpecWidth = TSW_short; |
John McCall | 9e46b8c | 2010-08-26 17:22:34 +0000 | [diff] [blame] | 861 | TypeSpecOwned = false; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 862 | } |
| 863 | } |
| 864 | |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 865 | // signed/unsigned are only valid with int/char/wchar_t. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 866 | if (TypeSpecSign != TSS_unspecified) { |
| 867 | if (TypeSpecType == TST_unspecified) |
| 868 | TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int. |
Richard Smith | 5a5a971 | 2012-04-04 06:24:32 +0000 | [diff] [blame] | 869 | else if (TypeSpecType != TST_int && TypeSpecType != TST_int128 && |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 870 | TypeSpecType != TST_char && TypeSpecType != TST_wchar) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 871 | Diag(D, TSSLoc, diag::err_invalid_sign_spec) |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 872 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 873 | // signed double -> double. |
| 874 | TypeSpecSign = TSS_unspecified; |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | // Validate the width of the type. |
| 879 | switch (TypeSpecWidth) { |
| 880 | case TSW_unspecified: break; |
| 881 | case TSW_short: // short int |
| 882 | case TSW_longlong: // long long int |
| 883 | if (TypeSpecType == TST_unspecified) |
| 884 | TypeSpecType = TST_int; // short -> short int, long long -> long long int. |
| 885 | else if (TypeSpecType != TST_int) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 886 | Diag(D, TSWLoc, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 887 | TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 888 | : diag::err_invalid_longlong_spec) |
| 889 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 890 | TypeSpecType = TST_int; |
John McCall | 9e46b8c | 2010-08-26 17:22:34 +0000 | [diff] [blame] | 891 | TypeSpecOwned = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 892 | } |
| 893 | break; |
| 894 | case TSW_long: // long double, long int |
| 895 | if (TypeSpecType == TST_unspecified) |
| 896 | TypeSpecType = TST_int; // long -> long int. |
| 897 | else if (TypeSpecType != TST_int && TypeSpecType != TST_double) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 898 | Diag(D, TSWLoc, diag::err_invalid_long_spec) |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 899 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 900 | TypeSpecType = TST_int; |
John McCall | 9e46b8c | 2010-08-26 17:22:34 +0000 | [diff] [blame] | 901 | TypeSpecOwned = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 902 | } |
| 903 | break; |
| 904 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 905 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 906 | // TODO: if the implementation does not implement _Complex or _Imaginary, |
| 907 | // disallow their use. Need information about the backend. |
| 908 | if (TypeSpecComplex != TSC_unspecified) { |
| 909 | if (TypeSpecType == TST_unspecified) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 910 | Diag(D, TSCLoc, diag::ext_plain_complex) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 911 | << FixItHint::CreateInsertion( |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 912 | PP.getLocForEndOfToken(getTypeSpecComplexLoc()), |
| 913 | " double"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 914 | TypeSpecType = TST_double; // _Complex -> _Complex double. |
| 915 | } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) { |
| 916 | // Note that this intentionally doesn't include _Complex _Bool. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 917 | if (!PP.getLangOpts().CPlusPlus) |
Eli Friedman | 7ead5c7 | 2012-01-10 04:58:17 +0000 | [diff] [blame] | 918 | Diag(D, TSTLoc, diag::ext_integer_complex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 919 | } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 920 | Diag(D, TSCLoc, diag::err_invalid_complex_spec) |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 921 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 922 | TypeSpecComplex = TSC_unspecified; |
| 923 | } |
| 924 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 925 | |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 926 | // If no type specifier was provided and we're parsing a language where |
| 927 | // the type specifier is not optional, but we got 'auto' as a storage |
| 928 | // class specifier, then assume this is an attempt to use C++0x's 'auto' |
| 929 | // type specifier. |
| 930 | // FIXME: Does Microsoft really support implicit int in C++? |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 931 | if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().MicrosoftExt && |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 932 | TypeSpecType == TST_unspecified && StorageClassSpec == SCS_auto) { |
| 933 | TypeSpecType = TST_auto; |
Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 934 | StorageClassSpec = SCS_unspecified; |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 935 | TSTLoc = TSTNameLoc = StorageClassSpecLoc; |
| 936 | StorageClassSpecLoc = SourceLocation(); |
| 937 | } |
| 938 | // Diagnose if we've recovered from an ill-formed 'auto' storage class |
| 939 | // specifier in a pre-C++0x dialect of C++. |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 940 | if (!PP.getLangOpts().CPlusPlus11 && TypeSpecType == TST_auto) |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 941 | Diag(D, TSTLoc, diag::ext_auto_type_specifier); |
Richard Smith | 80ad52f | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 942 | if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().CPlusPlus11 && |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 943 | StorageClassSpec == SCS_auto) |
| 944 | Diag(D, StorageClassSpecLoc, diag::warn_auto_storage_class) |
| 945 | << FixItHint::CreateRemoval(StorageClassSpecLoc); |
Richard Smith | 841804b | 2011-10-17 23:06:20 +0000 | [diff] [blame] | 946 | if (TypeSpecType == TST_char16 || TypeSpecType == TST_char32) |
| 947 | Diag(D, TSTLoc, diag::warn_cxx98_compat_unicode_type) |
| 948 | << (TypeSpecType == TST_char16 ? "char16_t" : "char32_t"); |
Richard Smith | 841804b | 2011-10-17 23:06:20 +0000 | [diff] [blame] | 949 | if (Constexpr_specified) |
| 950 | Diag(D, ConstexprLoc, diag::warn_cxx98_compat_constexpr); |
Richard Smith | 8f4fb19 | 2011-09-04 19:54:14 +0000 | [diff] [blame] | 951 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 952 | // C++ [class.friend]p6: |
| 953 | // No storage-class-specifier shall appear in the decl-specifier-seq |
| 954 | // of a friend declaration. |
| 955 | if (isFriendSpecified() && getStorageClassSpec()) { |
| 956 | DeclSpec::SCS SC = getStorageClassSpec(); |
| 957 | const char *SpecName = getSpecifierName(SC); |
| 958 | |
| 959 | SourceLocation SCLoc = getStorageClassSpecLoc(); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 960 | SourceLocation SCEndLoc = SCLoc.getLocWithOffset(strlen(SpecName)); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 961 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 962 | Diag(D, SCLoc, diag::err_friend_storage_spec) |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 963 | << SpecName |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 964 | << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc)); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 965 | |
| 966 | ClearStorageClassSpecs(); |
| 967 | } |
| 968 | |
Douglas Gregor | 6274d30 | 2011-09-09 21:14:29 +0000 | [diff] [blame] | 969 | assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType)); |
| 970 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 971 | // Okay, now we can infer the real type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 972 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 973 | // TODO: return "auto function" and other bad things based on the real type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 974 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 975 | // 'data definition has no type or storage class'? |
| 976 | } |
Daniel Dunbar | e4858a6 | 2008-08-11 03:45:03 +0000 | [diff] [blame] | 977 | |
Sebastian Redl | a4ed0d8 | 2008-12-28 15:28:59 +0000 | [diff] [blame] | 978 | bool DeclSpec::isMissingDeclaratorOk() { |
| 979 | TST tst = getTypeSpecType(); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 980 | return isDeclRep(tst) && getRepAsDecl() != 0 && |
| 981 | StorageClassSpec != DeclSpec::SCS_typedef; |
Sebastian Redl | a4ed0d8 | 2008-12-28 15:28:59 +0000 | [diff] [blame] | 982 | } |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 983 | |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 984 | void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc, |
| 985 | OverloadedOperatorKind Op, |
| 986 | SourceLocation SymbolLocations[3]) { |
| 987 | Kind = IK_OperatorFunctionId; |
| 988 | StartLocation = OperatorLoc; |
| 989 | EndLocation = OperatorLoc; |
| 990 | OperatorFunctionId.Operator = Op; |
| 991 | for (unsigned I = 0; I != 3; ++I) { |
| 992 | OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding(); |
| 993 | |
| 994 | if (SymbolLocations[I].isValid()) |
| 995 | EndLocation = SymbolLocations[I]; |
| 996 | } |
| 997 | } |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 998 | |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 999 | bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc, |
Anders Carlsson | 46127a9 | 2011-01-22 15:58:16 +0000 | [diff] [blame] | 1000 | const char *&PrevSpec) { |
Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 1001 | LastLocation = Loc; |
| 1002 | |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1003 | if (Specifiers & VS) { |
| 1004 | PrevSpec = getSpecifierName(VS); |
| 1005 | return true; |
| 1006 | } |
| 1007 | |
| 1008 | Specifiers |= VS; |
| 1009 | |
| 1010 | switch (VS) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1011 | default: llvm_unreachable("Unknown specifier!"); |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1012 | case VS_Override: VS_overrideLoc = Loc; break; |
| 1013 | case VS_Final: VS_finalLoc = Loc; break; |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1014 | } |
Anders Carlsson | 46127a9 | 2011-01-22 15:58:16 +0000 | [diff] [blame] | 1015 | |
Anders Carlsson | b971dbd | 2011-01-17 03:05:47 +0000 | [diff] [blame] | 1016 | return false; |
| 1017 | } |
| 1018 | |
Anders Carlsson | cc54d59 | 2011-01-22 16:56:46 +0000 | [diff] [blame] | 1019 | const char *VirtSpecifiers::getSpecifierName(Specifier VS) { |
Anders Carlsson | c46bb7d | 2011-01-22 15:11:37 +0000 | [diff] [blame] | 1020 | switch (VS) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1021 | default: llvm_unreachable("Unknown specifier"); |
Anders Carlsson | c46bb7d | 2011-01-22 15:11:37 +0000 | [diff] [blame] | 1022 | case VS_Override: return "override"; |
| 1023 | case VS_Final: return "final"; |
Anders Carlsson | c46bb7d | 2011-01-22 15:11:37 +0000 | [diff] [blame] | 1024 | } |
| 1025 | } |