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