blob: 2fb4f35cd8124ad66a9edeec87dd2f575349b1db [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declaration specifiers.
11//
12//===----------------------------------------------------------------------===//
13
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency!
15#include "clang/Sema/DeclSpec.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000016#include "clang/Sema/LocInfoType.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/ParsedTemplate.h"
Richard Smith841804b2011-10-17 23:06:20 +000018#include "clang/Sema/SemaDiagnostic.h"
Peter Collingbourneb8b0e752011-10-06 03:01:00 +000019#include "clang/Sema/Sema.h"
Douglas Gregorc34348a2011-02-24 17:54:50 +000020#include "clang/AST/ASTContext.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000021#include "clang/AST/Expr.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000022#include "clang/AST/NestedNameSpecifier.h"
23#include "clang/AST/TypeLoc.h"
Douglas Gregor9b3064b2009-04-01 22:41:11 +000024#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "clang/Basic/LangOptions.h"
Chris Lattner5af2f352009-01-20 19:11:22 +000026#include "llvm/ADT/STLExtras.h"
John McCall32d335e2009-08-03 18:47:27 +000027#include "llvm/Support/ErrorHandling.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000028#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
Chris Lattner254be6a2008-11-22 08:32:36 +000031
David Blaikied6471f72011-09-25 23:23:43 +000032static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000033 unsigned DiagID) {
34 return D.Report(Loc, DiagID);
Chris Lattner254be6a2008-11-22 08:32:36 +000035}
36
Douglas Gregor314b97f2009-11-10 19:49:08 +000037
38void 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 Gregor0efc2c12010-01-13 17:31:36 +000046void 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 Gregor2e4c34a2011-02-24 00:17:56 +000054void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
55 TypeLoc TL, SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000056 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000057 if (Range.getBegin().isInvalid())
58 Range.setBegin(TL.getBeginLoc());
59 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000060
Douglas Gregor5f791bb2011-02-28 23:58:31 +000061 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000062 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000063}
64
65void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
66 SourceLocation IdentifierLoc,
67 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000068 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
69
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000070 if (Range.getBegin().isInvalid())
71 Range.setBegin(IdentifierLoc);
72 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000073
Douglas Gregor5f791bb2011-02-28 23:58:31 +000074 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000075 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000076}
77
78void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
79 SourceLocation NamespaceLoc,
80 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000081 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
82
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000083 if (Range.getBegin().isInvalid())
84 Range.setBegin(NamespaceLoc);
85 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000086
Douglas Gregor5f791bb2011-02-28 23:58:31 +000087 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000088 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000089}
90
Douglas Gregor14aba762011-02-24 02:36:08 +000091void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
92 SourceLocation AliasLoc,
93 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000094 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
95
Douglas Gregor14aba762011-02-24 02:36:08 +000096 if (Range.getBegin().isInvalid())
97 Range.setBegin(AliasLoc);
98 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000099
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000100 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000101 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor14aba762011-02-24 02:36:08 +0000102}
103
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000104void CXXScopeSpec::MakeGlobal(ASTContext &Context,
105 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000106 Builder.MakeGlobal(Context, ColonColonLoc);
107
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000108 Range = SourceRange(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000109
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000110 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000111 "NestedNameSpecifierLoc range computation incorrect");
112}
113
114void CXXScopeSpec::MakeTrivial(ASTContext &Context,
115 NestedNameSpecifier *Qualifier, SourceRange R) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000116 Builder.MakeTrivial(Context, Qualifier, R);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000117 Range = R;
Douglas Gregorc34348a2011-02-24 17:54:50 +0000118}
119
120void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) {
121 if (!Other) {
122 Range = SourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000123 Builder.Clear();
Douglas Gregorc34348a2011-02-24 17:54:50 +0000124 return;
125 }
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000126
Douglas Gregorc34348a2011-02-24 17:54:50 +0000127 Range = Other.getSourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000128 Builder.Adopt(Other);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000129}
130
John McCall9dc71d22011-07-06 06:57:57 +0000131SourceLocation CXXScopeSpec::getLastQualifierNameLoc() const {
132 if (!Builder.getRepresentation())
133 return SourceLocation();
134 return Builder.getTemporary().getLocalBeginLoc();
135}
136
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000137NestedNameSpecifierLoc
138CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregorb46ae392011-03-03 21:48:55 +0000139 if (!Builder.getRepresentation())
Douglas Gregorc34348a2011-02-24 17:54:50 +0000140 return NestedNameSpecifierLoc();
141
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000142 return Builder.getWithLocInContext(Context);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000143}
144
Chris Lattner5af2f352009-01-20 19:11:22 +0000145/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
146/// "TheDeclarator" is the declarator that this will be added to.
John McCall0b7e6782011-03-24 11:26:52 +0000147DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +0000148 SourceLocation EllipsisLoc,
Chris Lattner5af2f352009-01-20 19:11:22 +0000149 ParamInfo *ArgInfo,
150 unsigned NumArgs,
151 unsigned TypeQuals,
Douglas Gregor83f51722011-01-26 03:43:54 +0000152 bool RefQualifierIsLvalueRef,
153 SourceLocation RefQualifierLoc,
Douglas Gregor43f51032011-10-19 06:04:55 +0000154 SourceLocation ConstQualifierLoc,
155 SourceLocation
156 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +0000157 SourceLocation MutableLoc,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000158 ExceptionSpecificationType
159 ESpecType,
160 SourceLocation ESpecLoc,
John McCallb3d87482010-08-24 05:47:05 +0000161 ParsedType *Exceptions,
Sebastian Redlef65f062009-05-29 18:02:33 +0000162 SourceRange *ExceptionRanges,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000163 unsigned NumExceptions,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000164 Expr *NoexceptExpr,
Abramo Bagnara796aa442011-03-12 11:17:06 +0000165 SourceLocation LocalRangeBegin,
166 SourceLocation LocalRangeEnd,
Douglas Gregordab60ad2010-10-01 18:44:50 +0000167 Declarator &TheDeclarator,
168 ParsedType TrailingReturnType) {
Chris Lattner5af2f352009-01-20 19:11:22 +0000169 DeclaratorChunk I;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000170 I.Kind = Function;
Abramo Bagnara796aa442011-03-12 11:17:06 +0000171 I.Loc = LocalRangeBegin;
172 I.EndLoc = LocalRangeEnd;
John McCall0b7e6782011-03-24 11:26:52 +0000173 I.Fun.AttrList = 0;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000174 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 Gregor83f51722011-01-26 03:43:54 +0000181 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000182 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Douglas Gregor43f51032011-10-19 06:04:55 +0000183 I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding();
184 I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding();
Douglas Gregor90ebed02011-07-13 21:47:47 +0000185 I.Fun.MutableLoc = MutableLoc.getRawEncoding();
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000186 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 Gregordab60ad2010-10-01 18:44:50 +0000191 I.Fun.TrailingReturnType = TrailingReturnType.getAsOpaquePtr();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000192
Chris Lattner5af2f352009-01-20 19:11:22 +0000193 // 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 Stump1eb44332009-09-09 15:08:12 +0000199 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner5af2f352009-01-20 19:11:22 +0000200 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 Redl6e5d3192011-03-05 22:42:13 +0000210
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 Redlef65f062009-05-29 18:02:33 +0000223 }
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000224 break;
225
226 case EST_ComputedNoexcept:
227 I.Fun.NoexceptExpr = NoexceptExpr;
228 break;
Sebastian Redl7dc81342009-04-29 17:30:04 +0000229 }
Chris Lattner5af2f352009-01-20 19:11:22 +0000230 return I;
231}
Chris Lattner254be6a2008-11-22 08:32:36 +0000232
Douglas Gregor555f57e2011-06-25 00:56:27 +0000233bool Declarator::isDeclarationOfFunction() const {
Richard Smith1ab0d902011-06-25 02:28:38 +0000234 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");
248 return false;
249 }
Douglas Gregor555f57e2011-06-25 00:56:27 +0000250
251 switch (DS.getTypeSpecType()) {
Eli Friedmanb001de72011-10-06 23:00:33 +0000252 case TST_atomic:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000253 case TST_auto:
254 case TST_bool:
255 case TST_char:
256 case TST_char16:
257 case TST_char32:
258 case TST_class:
259 case TST_decimal128:
260 case TST_decimal32:
261 case TST_decimal64:
262 case TST_double:
263 case TST_enum:
264 case TST_error:
265 case TST_float:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000266 case TST_half:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000267 case TST_int:
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 }
298
299 return false;
300}
301
Reid Spencer5f016e22007-07-11 17:01:13 +0000302/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattner2a327d12009-02-27 18:35:46 +0000303/// declaration specifier includes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000304///
305unsigned DeclSpec::getParsedSpecifiers() const {
306 unsigned Res = 0;
307 if (StorageClassSpec != SCS_unspecified ||
308 SCS_thread_specified)
309 Res |= PQ_StorageClassSpecifier;
Mike Stumpd4204332008-06-19 19:52:46 +0000310
Reid Spencer5f016e22007-07-11 17:01:13 +0000311 if (TypeQualifiers != TQ_unspecified)
312 Res |= PQ_TypeQualifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Reid Spencer5f016e22007-07-11 17:01:13 +0000314 if (hasTypeSpecifier())
315 Res |= PQ_TypeSpecifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Douglas Gregorb48fe382008-10-31 09:07:45 +0000317 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 Res |= PQ_FunctionSpecifier;
319 return Res;
320}
321
John McCallfec54012009-08-03 20:12:06 +0000322template <class T> static bool BadSpecifier(T TNew, T TPrev,
323 const char *&PrevSpec,
324 unsigned &DiagID) {
John McCall32d335e2009-08-03 18:47:27 +0000325 PrevSpec = DeclSpec::getSpecifierName(TPrev);
John McCallfec54012009-08-03 20:12:06 +0000326 DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
327 : diag::err_invalid_decl_spec_combination);
John McCall32d335e2009-08-03 18:47:27 +0000328 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000329}
John McCall32d335e2009-08-03 18:47:27 +0000330
Reid Spencer5f016e22007-07-11 17:01:13 +0000331const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
332 switch (S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000333 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 Friedman63054b32009-04-19 20:27:55 +0000339 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redl669d5d72008-11-14 23:42:31 +0000340 case DeclSpec::SCS_mutable: return "mutable";
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000342 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000343}
344
John McCall32d335e2009-08-03 18:47:27 +0000345const char *DeclSpec::getSpecifierName(TSW W) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000346 switch (W) {
John McCall32d335e2009-08-03 18:47:27 +0000347 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 Spencer5f016e22007-07-11 17:01:13 +0000351 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000352 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000353}
354
John McCall32d335e2009-08-03 18:47:27 +0000355const char *DeclSpec::getSpecifierName(TSC C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 switch (C) {
John McCall32d335e2009-08-03 18:47:27 +0000357 case TSC_unspecified: return "unspecified";
358 case TSC_imaginary: return "imaginary";
359 case TSC_complex: return "complex";
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000361 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000362}
363
364
John McCall32d335e2009-08-03 18:47:27 +0000365const char *DeclSpec::getSpecifierName(TSS S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000366 switch (S) {
John McCall32d335e2009-08-03 18:47:27 +0000367 case TSS_unspecified: return "unspecified";
368 case TSS_signed: return "signed";
369 case TSS_unsigned: return "unsigned";
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000371 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000372}
373
374const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
375 switch (T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 case DeclSpec::TST_unspecified: return "unspecified";
377 case DeclSpec::TST_void: return "void";
378 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000379 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000380 case DeclSpec::TST_char16: return "char16_t";
381 case DeclSpec::TST_char32: return "char32_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 case DeclSpec::TST_int: return "int";
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000383 case DeclSpec::TST_half: return "half";
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 case DeclSpec::TST_float: return "float";
385 case DeclSpec::TST_double: return "double";
386 case DeclSpec::TST_bool: return "_Bool";
387 case DeclSpec::TST_decimal32: return "_Decimal32";
388 case DeclSpec::TST_decimal64: return "_Decimal64";
389 case DeclSpec::TST_decimal128: return "_Decimal128";
390 case DeclSpec::TST_enum: return "enum";
Chris Lattner99dc9142008-04-13 18:59:07 +0000391 case DeclSpec::TST_class: return "class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000392 case DeclSpec::TST_union: return "union";
393 case DeclSpec::TST_struct: return "struct";
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000394 case DeclSpec::TST_typename: return "type-name";
Steve Naroffd1861fd2007-07-31 12:34:36 +0000395 case DeclSpec::TST_typeofType:
396 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall32d335e2009-08-03 18:47:27 +0000397 case DeclSpec::TST_auto: return "auto";
398 case DeclSpec::TST_decltype: return "(decltype)";
Sean Huntca63c202011-05-24 22:41:36 +0000399 case DeclSpec::TST_underlyingType: return "__underlying_type";
John McCalla5fc4722011-04-09 22:50:59 +0000400 case DeclSpec::TST_unknown_anytype: return "__unknown_anytype";
Eli Friedmanb001de72011-10-06 23:00:33 +0000401 case DeclSpec::TST_atomic: return "_Atomic";
John McCall32d335e2009-08-03 18:47:27 +0000402 case DeclSpec::TST_error: return "(error)";
Reid Spencer5f016e22007-07-11 17:01:13 +0000403 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000404 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000405}
406
John McCall32d335e2009-08-03 18:47:27 +0000407const char *DeclSpec::getSpecifierName(TQ T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000408 switch (T) {
John McCall32d335e2009-08-03 18:47:27 +0000409 case DeclSpec::TQ_unspecified: return "unspecified";
410 case DeclSpec::TQ_const: return "const";
411 case DeclSpec::TQ_restrict: return "restrict";
412 case DeclSpec::TQ_volatile: return "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +0000413 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000414 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000415}
416
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000417bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000418 const char *&PrevSpec,
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000419 unsigned &DiagID) {
420 // OpenCL 1.1 6.8g: "The extern, static, auto and register storage-class
421 // specifiers are not supported."
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000422 // It seems sensible to prohibit private_extern too
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000423 // The cl_clang_storage_class_specifiers extension enables support for
424 // these storage-class specifiers.
425 if (S.getLangOptions().OpenCL &&
426 !S.getOpenCLOptions().cl_clang_storage_class_specifiers) {
427 switch (SC) {
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000428 case SCS_extern:
429 case SCS_private_extern:
430 case SCS_auto:
431 case SCS_register:
432 case SCS_static:
433 DiagID = diag::err_not_opencl_storage_class_specifier;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000434 PrevSpec = getSpecifierName(SC);
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000435 return true;
436 default:
437 break;
438 }
439 }
440
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000441 if (StorageClassSpec != SCS_unspecified) {
Richard Smith8f4fb192011-09-04 19:54:14 +0000442 // Maybe this is an attempt to use C++0x 'auto' outside of C++0x mode.
443 bool isInvalid = true;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000444 if (TypeSpecType == TST_unspecified && S.getLangOptions().CPlusPlus) {
445 if (SC == SCS_auto)
Richard Smith8f4fb192011-09-04 19:54:14 +0000446 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID);
447 if (StorageClassSpec == SCS_auto) {
448 isInvalid = SetTypeSpecType(TST_auto, StorageClassSpecLoc,
449 PrevSpec, DiagID);
450 assert(!isInvalid && "auto SCS -> TST recovery failed");
451 }
452 }
453
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000454 // Changing storage class is allowed only if the previous one
455 // was the 'extern' that is part of a linkage specification and
456 // the new storage class is 'typedef'.
Richard Smith8f4fb192011-09-04 19:54:14 +0000457 if (isInvalid &&
458 !(SCS_extern_in_linkage_spec &&
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000459 StorageClassSpec == SCS_extern &&
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000460 SC == SCS_typedef))
461 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000462 }
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000463 StorageClassSpec = SC;
Reid Spencer5f016e22007-07-11 17:01:13 +0000464 StorageClassSpecLoc = Loc;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000465 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
Reid Spencer5f016e22007-07-11 17:01:13 +0000466 return false;
467}
468
Mike Stump1eb44332009-09-09 15:08:12 +0000469bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000470 const char *&PrevSpec,
471 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000472 if (SCS_thread_specified) {
473 PrevSpec = "__thread";
John McCallfec54012009-08-03 20:12:06 +0000474 DiagID = diag::ext_duplicate_declspec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000475 return true;
476 }
477 SCS_thread_specified = true;
478 SCS_threadLoc = Loc;
479 return false;
480}
481
Reid Spencer5f016e22007-07-11 17:01:13 +0000482/// These methods set the specified attribute of the DeclSpec, but return true
483/// and ignore the request if invalid (e.g. "extern" then "auto" is
484/// specified).
485bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000486 const char *&PrevSpec,
487 unsigned &DiagID) {
Abramo Bagnara2553eaf2011-03-06 22:21:56 +0000488 // Overwrite TSWLoc only if TypeSpecWidth was unspecified, so that
489 // for 'long long' we will keep the source location of the first 'long'.
490 if (TypeSpecWidth == TSW_unspecified)
491 TSWLoc = Loc;
492 // Allow turning long -> long long.
493 else if (W != TSW_longlong || TypeSpecWidth != TSW_long)
John McCallfec54012009-08-03 20:12:06 +0000494 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000495 TypeSpecWidth = W;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000496 if (TypeAltiVecVector && !TypeAltiVecBool &&
497 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson82287d12010-02-05 00:12:22 +0000498 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
499 DiagID = diag::warn_vector_long_decl_spec_combination;
500 return true;
501 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 return false;
503}
504
Mike Stump1eb44332009-09-09 15:08:12 +0000505bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000506 const char *&PrevSpec,
507 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000508 if (TypeSpecComplex != TSC_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000509 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000510 TypeSpecComplex = C;
511 TSCLoc = Loc;
512 return false;
513}
514
Mike Stump1eb44332009-09-09 15:08:12 +0000515bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000516 const char *&PrevSpec,
517 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000518 if (TypeSpecSign != TSS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000519 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000520 TypeSpecSign = S;
521 TSSLoc = Loc;
522 return false;
523}
524
525bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000526 const char *&PrevSpec,
527 unsigned &DiagID,
John McCallb3d87482010-08-24 05:47:05 +0000528 ParsedType Rep) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000529 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep);
530}
531
532bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
533 SourceLocation TagNameLoc,
534 const char *&PrevSpec,
535 unsigned &DiagID,
536 ParsedType Rep) {
John McCallb3d87482010-08-24 05:47:05 +0000537 assert(isTypeRep(T) && "T does not store a type");
538 assert(Rep && "no type provided!");
539 if (TypeSpecType != TST_unspecified) {
540 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
541 DiagID = diag::err_invalid_decl_spec_combination;
542 return true;
543 }
544 TypeSpecType = T;
545 TypeRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000546 TSTLoc = TagKwLoc;
547 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000548 TypeSpecOwned = false;
549 return false;
550}
551
552bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
553 const char *&PrevSpec,
554 unsigned &DiagID,
555 Expr *Rep) {
556 assert(isExprRep(T) && "T does not store an expr");
557 assert(Rep && "no expression provided!");
558 if (TypeSpecType != TST_unspecified) {
559 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
560 DiagID = diag::err_invalid_decl_spec_combination;
561 return true;
562 }
563 TypeSpecType = T;
564 ExprRep = Rep;
565 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000566 TSTNameLoc = Loc;
John McCallb3d87482010-08-24 05:47:05 +0000567 TypeSpecOwned = false;
568 return false;
569}
570
571bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
572 const char *&PrevSpec,
573 unsigned &DiagID,
574 Decl *Rep, bool Owned) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000575 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned);
576}
577
578bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
579 SourceLocation TagNameLoc,
580 const char *&PrevSpec,
581 unsigned &DiagID,
582 Decl *Rep, bool Owned) {
John McCallb3d87482010-08-24 05:47:05 +0000583 assert(isDeclRep(T) && "T does not store a decl");
584 // Unlike the other cases, we don't assert that we actually get a decl.
585
586 if (TypeSpecType != TST_unspecified) {
587 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
588 DiagID = diag::err_invalid_decl_spec_combination;
589 return true;
590 }
591 TypeSpecType = T;
592 DeclRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000593 TSTLoc = TagKwLoc;
594 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000595 TypeSpecOwned = Owned;
596 return false;
597}
598
599bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
600 const char *&PrevSpec,
601 unsigned &DiagID) {
602 assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) &&
603 "rep required for these type-spec kinds!");
John McCallfec54012009-08-03 20:12:06 +0000604 if (TypeSpecType != TST_unspecified) {
605 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
606 DiagID = diag::err_invalid_decl_spec_combination;
607 return true;
608 }
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000609 TSTLoc = Loc;
610 TSTNameLoc = Loc;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000611 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
612 TypeAltiVecBool = true;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000613 return false;
614 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000615 TypeSpecType = T;
John McCallb3d87482010-08-24 05:47:05 +0000616 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000617 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson82287d12010-02-05 00:12:22 +0000618 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner788b0fd2010-06-23 06:00:24 +0000619 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson82287d12010-02-05 00:12:22 +0000620 return true;
621 }
622 return false;
623}
624
625bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
626 const char *&PrevSpec, unsigned &DiagID) {
627 if (TypeSpecType != TST_unspecified) {
628 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
629 DiagID = diag::err_invalid_vector_decl_spec_combination;
630 return true;
631 }
632 TypeAltiVecVector = isAltiVecVector;
633 AltiVecLoc = Loc;
634 return false;
635}
636
637bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
638 const char *&PrevSpec, unsigned &DiagID) {
Chris Lattner788b0fd2010-06-23 06:00:24 +0000639 if (!TypeAltiVecVector || TypeAltiVecPixel ||
640 (TypeSpecType != TST_unspecified)) {
John Thompson82287d12010-02-05 00:12:22 +0000641 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
642 DiagID = diag::err_invalid_pixel_decl_spec_combination;
643 return true;
644 }
John Thompson82287d12010-02-05 00:12:22 +0000645 TypeAltiVecPixel = isAltiVecPixel;
646 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000647 TSTNameLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000648 return false;
649}
650
Douglas Gregorddc29e12009-02-06 22:42:48 +0000651bool DeclSpec::SetTypeSpecError() {
652 TypeSpecType = TST_error;
John McCall9e46b8c2010-08-26 17:22:34 +0000653 TypeSpecOwned = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000654 TSTLoc = SourceLocation();
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000655 TSTNameLoc = SourceLocation();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000656 return false;
657}
658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000660 unsigned &DiagID, const LangOptions &Lang) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000661 // Duplicates turn into warnings pre-C99.
662 if ((TypeQualifiers & T) && !Lang.C99)
John McCallfec54012009-08-03 20:12:06 +0000663 return BadSpecifier(T, T, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000664 TypeQualifiers |= T;
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Reid Spencer5f016e22007-07-11 17:01:13 +0000666 switch (T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000667 default: llvm_unreachable("Unknown type qualifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000668 case TQ_const: TQ_constLoc = Loc; break;
669 case TQ_restrict: TQ_restrictLoc = Loc; break;
670 case TQ_volatile: TQ_volatileLoc = Loc; break;
671 }
672 return false;
673}
674
John McCallfec54012009-08-03 20:12:06 +0000675bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
676 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 // 'inline inline' is ok.
678 FS_inline_specified = true;
679 FS_inlineLoc = Loc;
680 return false;
681}
682
John McCallfec54012009-08-03 20:12:06 +0000683bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
684 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000685 // 'virtual virtual' is ok.
686 FS_virtual_specified = true;
687 FS_virtualLoc = Loc;
688 return false;
689}
690
John McCallfec54012009-08-03 20:12:06 +0000691bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
692 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000693 // 'explicit explicit' is ok.
694 FS_explicit_specified = true;
695 FS_explicitLoc = Loc;
696 return false;
697}
698
John McCallfec54012009-08-03 20:12:06 +0000699bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
700 unsigned &DiagID) {
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000701 if (Friend_specified) {
702 PrevSpec = "friend";
John McCallfec54012009-08-03 20:12:06 +0000703 DiagID = diag::ext_duplicate_declspec;
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000704 return true;
705 }
John McCallfec54012009-08-03 20:12:06 +0000706
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000707 Friend_specified = true;
708 FriendLoc = Loc;
709 return false;
710}
Reid Spencer5f016e22007-07-11 17:01:13 +0000711
Douglas Gregor8d267c52011-09-09 02:06:17 +0000712bool DeclSpec::setModulePrivateSpec(SourceLocation Loc, const char *&PrevSpec,
713 unsigned &DiagID) {
714 if (isModulePrivateSpecified()) {
715 PrevSpec = "__module_private__";
716 DiagID = diag::ext_duplicate_declspec;
717 return true;
718 }
719
720 ModulePrivateLoc = Loc;
721 return false;
722}
723
Sebastian Redl2ac67232009-11-05 15:47:02 +0000724bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
725 unsigned &DiagID) {
726 // 'constexpr constexpr' is ok.
727 Constexpr_specified = true;
728 ConstexprLoc = Loc;
729 return false;
730}
731
John McCalld226f652010-08-21 09:40:31 +0000732void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000733 unsigned NP,
734 SourceLocation *ProtoLocs,
735 SourceLocation LAngleLoc) {
736 if (NP == 0) return;
John McCalld226f652010-08-21 09:40:31 +0000737 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000738 ProtocolLocs = new SourceLocation[NP];
John McCalld226f652010-08-21 09:40:31 +0000739 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000740 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
741 NumProtocolQualifiers = NP;
742 ProtocolLAngleLoc = LAngleLoc;
743}
744
Douglas Gregorddf889a2010-01-18 18:04:31 +0000745void DeclSpec::SaveWrittenBuiltinSpecs() {
746 writtenBS.Sign = getTypeSpecSign();
747 writtenBS.Width = getTypeSpecWidth();
748 writtenBS.Type = getTypeSpecType();
749 // Search the list of attributes for the presence of a mode attribute.
750 writtenBS.ModeAttr = false;
John McCall7f040a92010-12-24 02:08:15 +0000751 AttributeList* attrs = getAttributes().getList();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000752 while (attrs) {
753 if (attrs->getKind() == AttributeList::AT_mode) {
754 writtenBS.ModeAttr = true;
755 break;
756 }
757 attrs = attrs->getNext();
758 }
759}
760
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000761void DeclSpec::SaveStorageSpecifierAsWritten() {
762 if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
763 // If 'extern' is part of a linkage specification,
764 // then it is not a storage class "as written".
765 StorageClassSpecAsWritten = SCS_unspecified;
766 else
767 StorageClassSpecAsWritten = StorageClassSpec;
768}
769
Reid Spencer5f016e22007-07-11 17:01:13 +0000770/// Finish - This does final analysis of the declspec, rejecting things like
771/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
772/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
773/// DeclSpec is guaranteed self-consistent, even if an error occurred.
David Blaikied6471f72011-09-25 23:23:43 +0000774void DeclSpec::Finish(DiagnosticsEngine &D, Preprocessor &PP) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000775 // Before possibly changing their values, save specs as written.
776 SaveWrittenBuiltinSpecs();
Douglas Gregor16573fa2010-04-19 22:54:31 +0000777 SaveStorageSpecifierAsWritten();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000778
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 // Check the type specifier components first.
780
Chris Lattner788b0fd2010-06-23 06:00:24 +0000781 // Validate and finalize AltiVec vector declspec.
782 if (TypeAltiVecVector) {
783 if (TypeAltiVecBool) {
784 // Sign specifiers are not allowed with vector bool. (PIM 2.1)
785 if (TypeSpecSign != TSS_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000786 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000787 << getSpecifierName((TSS)TypeSpecSign);
788 }
789
790 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sands2e964a922010-06-23 19:34:52 +0000791 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
792 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000793 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000794 << (TypeAltiVecPixel ? "__pixel" :
795 getSpecifierName((TST)TypeSpecType));
796 }
797
798 // Only 'short' is valid with vector bool. (PIM 2.1)
799 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000800 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000801 << getSpecifierName((TSW)TypeSpecWidth);
802
803 // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
804 if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
805 (TypeSpecWidth != TSW_unspecified))
806 TypeSpecSign = TSS_unsigned;
807 }
808
809 if (TypeAltiVecPixel) {
810 //TODO: perform validation
811 TypeSpecType = TST_int;
812 TypeSpecSign = TSS_unsigned;
813 TypeSpecWidth = TSW_short;
John McCall9e46b8c2010-08-26 17:22:34 +0000814 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000815 }
816 }
817
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000818 // signed/unsigned are only valid with int/char/wchar_t.
Reid Spencer5f016e22007-07-11 17:01:13 +0000819 if (TypeSpecSign != TSS_unspecified) {
820 if (TypeSpecType == TST_unspecified)
821 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000822 else if (TypeSpecType != TST_int &&
823 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000824 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000825 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000826 // signed double -> double.
827 TypeSpecSign = TSS_unspecified;
828 }
829 }
830
831 // Validate the width of the type.
832 switch (TypeSpecWidth) {
833 case TSW_unspecified: break;
834 case TSW_short: // short int
835 case TSW_longlong: // long long int
836 if (TypeSpecType == TST_unspecified)
837 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
838 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000839 Diag(D, TSWLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner254be6a2008-11-22 08:32:36 +0000841 : diag::err_invalid_longlong_spec)
842 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000843 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000844 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000845 }
846 break;
847 case TSW_long: // long double, long int
848 if (TypeSpecType == TST_unspecified)
849 TypeSpecType = TST_int; // long -> long int.
850 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000851 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000852 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000854 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000855 }
856 break;
857 }
Mike Stump1eb44332009-09-09 15:08:12 +0000858
Reid Spencer5f016e22007-07-11 17:01:13 +0000859 // TODO: if the implementation does not implement _Complex or _Imaginary,
860 // disallow their use. Need information about the backend.
861 if (TypeSpecComplex != TSC_unspecified) {
862 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000863 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregor849b2432010-03-31 17:46:05 +0000864 << FixItHint::CreateInsertion(
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000865 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
866 " double");
Reid Spencer5f016e22007-07-11 17:01:13 +0000867 TypeSpecType = TST_double; // _Complex -> _Complex double.
868 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
869 // Note that this intentionally doesn't include _Complex _Bool.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000870 Diag(D, TSTLoc, diag::ext_integer_complex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000871 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000872 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000873 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000874 TypeSpecComplex = TSC_unspecified;
875 }
876 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000877
Richard Smith8f4fb192011-09-04 19:54:14 +0000878 // If no type specifier was provided and we're parsing a language where
879 // the type specifier is not optional, but we got 'auto' as a storage
880 // class specifier, then assume this is an attempt to use C++0x's 'auto'
881 // type specifier.
882 // FIXME: Does Microsoft really support implicit int in C++?
Francois Pichet62ec1f22011-09-17 17:15:52 +0000883 if (PP.getLangOptions().CPlusPlus && !PP.getLangOptions().MicrosoftExt &&
Richard Smith8f4fb192011-09-04 19:54:14 +0000884 TypeSpecType == TST_unspecified && StorageClassSpec == SCS_auto) {
885 TypeSpecType = TST_auto;
886 StorageClassSpec = StorageClassSpecAsWritten = SCS_unspecified;
887 TSTLoc = TSTNameLoc = StorageClassSpecLoc;
888 StorageClassSpecLoc = SourceLocation();
889 }
890 // Diagnose if we've recovered from an ill-formed 'auto' storage class
891 // specifier in a pre-C++0x dialect of C++.
892 if (!PP.getLangOptions().CPlusPlus0x && TypeSpecType == TST_auto)
893 Diag(D, TSTLoc, diag::ext_auto_type_specifier);
894 if (PP.getLangOptions().CPlusPlus && !PP.getLangOptions().CPlusPlus0x &&
895 StorageClassSpec == SCS_auto)
896 Diag(D, StorageClassSpecLoc, diag::warn_auto_storage_class)
897 << FixItHint::CreateRemoval(StorageClassSpecLoc);
Richard Smith841804b2011-10-17 23:06:20 +0000898 if (TypeSpecType == TST_char16 || TypeSpecType == TST_char32)
899 Diag(D, TSTLoc, diag::warn_cxx98_compat_unicode_type)
900 << (TypeSpecType == TST_char16 ? "char16_t" : "char32_t");
901 if (TypeSpecType == TST_decltype)
902 Diag(D, TSTLoc, diag::warn_cxx98_compat_decltype);
903 if (Constexpr_specified)
904 Diag(D, ConstexprLoc, diag::warn_cxx98_compat_constexpr);
Richard Smith8f4fb192011-09-04 19:54:14 +0000905
John McCall67d1a672009-08-06 02:15:43 +0000906 // 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 Kyrtzidisa64ccef2011-09-19 20:40:19 +0000914 SourceLocation SCEndLoc = SCLoc.getLocWithOffset(strlen(SpecName));
John McCall67d1a672009-08-06 02:15:43 +0000915
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000916 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall67d1a672009-08-06 02:15:43 +0000917 << SpecName
Douglas Gregor849b2432010-03-31 17:46:05 +0000918 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall67d1a672009-08-06 02:15:43 +0000919
920 ClearStorageClassSpecs();
921 }
922
Douglas Gregor6274d302011-09-09 21:14:29 +0000923 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
924
Reid Spencer5f016e22007-07-11 17:01:13 +0000925 // Okay, now we can infer the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000926
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Reid Spencer5f016e22007-07-11 17:01:13 +0000929 // 'data definition has no type or storage class'?
930}
Daniel Dunbare4858a62008-08-11 03:45:03 +0000931
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000932bool DeclSpec::isMissingDeclaratorOk() {
933 TST tst = getTypeSpecType();
John McCallb3d87482010-08-24 05:47:05 +0000934 return isDeclRep(tst) && getRepAsDecl() != 0 &&
935 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000936}
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000937
938void UnqualifiedId::clear() {
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000939 Kind = IK_Identifier;
940 Identifier = 0;
941 StartLocation = SourceLocation();
942 EndLocation = SourceLocation();
943}
944
945void 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 Carlssonb971dbd2011-01-17 03:05:47 +0000959
Anders Carlssoncc54d592011-01-22 16:56:46 +0000960bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlsson46127a92011-01-22 15:58:16 +0000961 const char *&PrevSpec) {
Douglas Gregorf5251602011-03-08 17:10:18 +0000962 LastLocation = Loc;
963
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000964 if (Specifiers & VS) {
965 PrevSpec = getSpecifierName(VS);
966 return true;
967 }
968
969 Specifiers |= VS;
970
971 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000972 default: llvm_unreachable("Unknown specifier!");
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000973 case VS_Override: VS_overrideLoc = Loc; break;
974 case VS_Final: VS_finalLoc = Loc; break;
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000975 }
Anders Carlsson46127a92011-01-22 15:58:16 +0000976
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000977 return false;
978}
979
Anders Carlssoncc54d592011-01-22 16:56:46 +0000980const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000981 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000982 default: llvm_unreachable("Unknown specifier");
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000983 case VS_Override: return "override";
984 case VS_Final: return "final";
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000985 }
986}