blob: 80078660b65dc5efab47d95df6e5b1b9d43e9f7f [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
14#include "clang/Parse/DeclSpec.h"
Chris Lattner500d3292009-01-29 05:15:15 +000015#include "clang/Parse/ParseDiagnostic.h"
Douglas Gregor9b3064b2009-04-01 22:41:11 +000016#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Basic/LangOptions.h"
Chris Lattner5af2f352009-01-20 19:11:22 +000018#include "llvm/ADT/STLExtras.h"
John McCall32d335e2009-08-03 18:47:27 +000019#include "llvm/Support/ErrorHandling.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000020#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22
Chris Lattner254be6a2008-11-22 08:32:36 +000023
24static DiagnosticBuilder Diag(Diagnostic &D, SourceLocation Loc,
25 SourceManager &SrcMgr, unsigned DiagID) {
26 return D.Report(FullSourceLoc(Loc, SrcMgr), DiagID);
27}
28
Chris Lattner5af2f352009-01-20 19:11:22 +000029/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
30/// "TheDeclarator" is the declarator that this will be added to.
31DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +000032 SourceLocation EllipsisLoc,
Chris Lattner5af2f352009-01-20 19:11:22 +000033 ParamInfo *ArgInfo,
34 unsigned NumArgs,
35 unsigned TypeQuals,
Sebastian Redl7dc81342009-04-29 17:30:04 +000036 bool hasExceptionSpec,
Sebastian Redl3cc97262009-05-31 11:47:27 +000037 SourceLocation ThrowLoc,
Sebastian Redl7dc81342009-04-29 17:30:04 +000038 bool hasAnyExceptionSpec,
39 ActionBase::TypeTy **Exceptions,
Sebastian Redlef65f062009-05-29 18:02:33 +000040 SourceRange *ExceptionRanges,
Sebastian Redl7dc81342009-04-29 17:30:04 +000041 unsigned NumExceptions,
Chris Lattner5af2f352009-01-20 19:11:22 +000042 SourceLocation Loc,
43 Declarator &TheDeclarator) {
44 DeclaratorChunk I;
Sebastian Redl7dc81342009-04-29 17:30:04 +000045 I.Kind = Function;
46 I.Loc = Loc;
47 I.Fun.hasPrototype = hasProto;
48 I.Fun.isVariadic = isVariadic;
49 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding();
50 I.Fun.DeleteArgInfo = false;
51 I.Fun.TypeQuals = TypeQuals;
52 I.Fun.NumArgs = NumArgs;
53 I.Fun.ArgInfo = 0;
54 I.Fun.hasExceptionSpec = hasExceptionSpec;
Sebastian Redl3cc97262009-05-31 11:47:27 +000055 I.Fun.ThrowLoc = ThrowLoc.getRawEncoding();
Sebastian Redl7dc81342009-04-29 17:30:04 +000056 I.Fun.hasAnyExceptionSpec = hasAnyExceptionSpec;
57 I.Fun.NumExceptions = NumExceptions;
58 I.Fun.Exceptions = 0;
59
Chris Lattner5af2f352009-01-20 19:11:22 +000060 // new[] an argument array if needed.
61 if (NumArgs) {
62 // If the 'InlineParams' in Declarator is unused and big enough, put our
63 // parameter list there (in an effort to avoid new/delete traffic). If it
64 // is already used (consider a function returning a function pointer) or too
65 // small (function taking too many arguments), go to the heap.
66 if (!TheDeclarator.InlineParamsUsed &&
67 NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) {
68 I.Fun.ArgInfo = TheDeclarator.InlineParams;
69 I.Fun.DeleteArgInfo = false;
70 TheDeclarator.InlineParamsUsed = true;
71 } else {
72 I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs];
73 I.Fun.DeleteArgInfo = true;
74 }
75 memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs);
76 }
Sebastian Redl7dc81342009-04-29 17:30:04 +000077 // new[] an exception array if needed
78 if (NumExceptions) {
Sebastian Redlef65f062009-05-29 18:02:33 +000079 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
80 for (unsigned i = 0; i != NumExceptions; ++i) {
81 I.Fun.Exceptions[i].Ty = Exceptions[i];
82 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
83 }
Sebastian Redl7dc81342009-04-29 17:30:04 +000084 }
Chris Lattner5af2f352009-01-20 19:11:22 +000085 return I;
86}
Chris Lattner254be6a2008-11-22 08:32:36 +000087
Reid Spencer5f016e22007-07-11 17:01:13 +000088/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattner2a327d12009-02-27 18:35:46 +000089/// declaration specifier includes.
Reid Spencer5f016e22007-07-11 17:01:13 +000090///
91unsigned DeclSpec::getParsedSpecifiers() const {
92 unsigned Res = 0;
93 if (StorageClassSpec != SCS_unspecified ||
94 SCS_thread_specified)
95 Res |= PQ_StorageClassSpecifier;
Mike Stumpd4204332008-06-19 19:52:46 +000096
Reid Spencer5f016e22007-07-11 17:01:13 +000097 if (TypeQualifiers != TQ_unspecified)
98 Res |= PQ_TypeQualifier;
99
100 if (hasTypeSpecifier())
101 Res |= PQ_TypeSpecifier;
102
Douglas Gregorb48fe382008-10-31 09:07:45 +0000103 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Reid Spencer5f016e22007-07-11 17:01:13 +0000104 Res |= PQ_FunctionSpecifier;
105 return Res;
106}
107
John McCallfec54012009-08-03 20:12:06 +0000108template <class T> static bool BadSpecifier(T TNew, T TPrev,
109 const char *&PrevSpec,
110 unsigned &DiagID) {
John McCall32d335e2009-08-03 18:47:27 +0000111 PrevSpec = DeclSpec::getSpecifierName(TPrev);
John McCallfec54012009-08-03 20:12:06 +0000112 DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
113 : diag::err_invalid_decl_spec_combination);
John McCall32d335e2009-08-03 18:47:27 +0000114 return true;
115}
116
Reid Spencer5f016e22007-07-11 17:01:13 +0000117const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
118 switch (S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 case DeclSpec::SCS_unspecified: return "unspecified";
120 case DeclSpec::SCS_typedef: return "typedef";
121 case DeclSpec::SCS_extern: return "extern";
122 case DeclSpec::SCS_static: return "static";
123 case DeclSpec::SCS_auto: return "auto";
124 case DeclSpec::SCS_register: return "register";
Eli Friedman63054b32009-04-19 20:27:55 +0000125 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redl669d5d72008-11-14 23:42:31 +0000126 case DeclSpec::SCS_mutable: return "mutable";
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 }
John McCall32d335e2009-08-03 18:47:27 +0000128 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000129}
130
John McCall32d335e2009-08-03 18:47:27 +0000131const char *DeclSpec::getSpecifierName(TSW W) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000132 switch (W) {
John McCall32d335e2009-08-03 18:47:27 +0000133 case TSW_unspecified: return "unspecified";
134 case TSW_short: return "short";
135 case TSW_long: return "long";
136 case TSW_longlong: return "long long";
Reid Spencer5f016e22007-07-11 17:01:13 +0000137 }
John McCall32d335e2009-08-03 18:47:27 +0000138 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000139}
140
John McCall32d335e2009-08-03 18:47:27 +0000141const char *DeclSpec::getSpecifierName(TSC C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000142 switch (C) {
John McCall32d335e2009-08-03 18:47:27 +0000143 case TSC_unspecified: return "unspecified";
144 case TSC_imaginary: return "imaginary";
145 case TSC_complex: return "complex";
Reid Spencer5f016e22007-07-11 17:01:13 +0000146 }
John McCall32d335e2009-08-03 18:47:27 +0000147 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000148}
149
150
John McCall32d335e2009-08-03 18:47:27 +0000151const char *DeclSpec::getSpecifierName(TSS S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 switch (S) {
John McCall32d335e2009-08-03 18:47:27 +0000153 case TSS_unspecified: return "unspecified";
154 case TSS_signed: return "signed";
155 case TSS_unsigned: return "unsigned";
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 }
John McCall32d335e2009-08-03 18:47:27 +0000157 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000158}
159
160const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
161 switch (T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000162 case DeclSpec::TST_unspecified: return "unspecified";
163 case DeclSpec::TST_void: return "void";
164 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000165 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000166 case DeclSpec::TST_char16: return "char16_t";
167 case DeclSpec::TST_char32: return "char32_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 case DeclSpec::TST_int: return "int";
169 case DeclSpec::TST_float: return "float";
170 case DeclSpec::TST_double: return "double";
171 case DeclSpec::TST_bool: return "_Bool";
172 case DeclSpec::TST_decimal32: return "_Decimal32";
173 case DeclSpec::TST_decimal64: return "_Decimal64";
174 case DeclSpec::TST_decimal128: return "_Decimal128";
175 case DeclSpec::TST_enum: return "enum";
Chris Lattner99dc9142008-04-13 18:59:07 +0000176 case DeclSpec::TST_class: return "class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000177 case DeclSpec::TST_union: return "union";
178 case DeclSpec::TST_struct: return "struct";
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000179 case DeclSpec::TST_typename: return "type-name";
Steve Naroffd1861fd2007-07-31 12:34:36 +0000180 case DeclSpec::TST_typeofType:
181 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall32d335e2009-08-03 18:47:27 +0000182 case DeclSpec::TST_auto: return "auto";
183 case DeclSpec::TST_decltype: return "(decltype)";
184 case DeclSpec::TST_error: return "(error)";
Reid Spencer5f016e22007-07-11 17:01:13 +0000185 }
John McCall32d335e2009-08-03 18:47:27 +0000186 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000187}
188
John McCall32d335e2009-08-03 18:47:27 +0000189const char *DeclSpec::getSpecifierName(TQ T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000190 switch (T) {
John McCall32d335e2009-08-03 18:47:27 +0000191 case DeclSpec::TQ_unspecified: return "unspecified";
192 case DeclSpec::TQ_const: return "const";
193 case DeclSpec::TQ_restrict: return "restrict";
194 case DeclSpec::TQ_volatile: return "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 }
John McCall32d335e2009-08-03 18:47:27 +0000196 llvm::llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000197}
198
199bool DeclSpec::SetStorageClassSpec(SCS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000200 const char *&PrevSpec,
201 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 if (StorageClassSpec != SCS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000203 return BadSpecifier(S, (SCS)StorageClassSpec, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 StorageClassSpec = S;
205 StorageClassSpecLoc = Loc;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000206 assert((unsigned)S == StorageClassSpec && "SCS constants overflow bitfield");
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 return false;
208}
209
210bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000211 const char *&PrevSpec,
212 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000213 if (SCS_thread_specified) {
214 PrevSpec = "__thread";
John McCallfec54012009-08-03 20:12:06 +0000215 DiagID = diag::ext_duplicate_declspec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000216 return true;
217 }
218 SCS_thread_specified = true;
219 SCS_threadLoc = Loc;
220 return false;
221}
222
223
224/// These methods set the specified attribute of the DeclSpec, but return true
225/// and ignore the request if invalid (e.g. "extern" then "auto" is
226/// specified).
227bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000228 const char *&PrevSpec,
229 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000230 if (TypeSpecWidth != TSW_unspecified &&
231 // Allow turning long -> long long.
232 (W != TSW_longlong || TypeSpecWidth != TSW_long))
John McCallfec54012009-08-03 20:12:06 +0000233 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000234 TypeSpecWidth = W;
235 TSWLoc = Loc;
236 return false;
237}
238
239bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000240 const char *&PrevSpec,
241 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000242 if (TypeSpecComplex != TSC_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000243 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000244 TypeSpecComplex = C;
245 TSCLoc = Loc;
246 return false;
247}
248
249bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000250 const char *&PrevSpec,
251 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000252 if (TypeSpecSign != TSS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000253 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000254 TypeSpecSign = S;
255 TSSLoc = Loc;
256 return false;
257}
258
259bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000260 const char *&PrevSpec,
261 unsigned &DiagID,
262 void *Rep, bool Owned) {
263 if (TypeSpecType != TST_unspecified) {
264 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
265 DiagID = diag::err_invalid_decl_spec_combination;
266 return true;
267 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000268 TypeSpecType = T;
269 TypeRep = Rep;
270 TSTLoc = Loc;
Douglas Gregor402abb52009-05-28 23:31:59 +0000271 TypeSpecOwned = Owned;
Reid Spencer5f016e22007-07-11 17:01:13 +0000272 return false;
273}
274
Douglas Gregorddc29e12009-02-06 22:42:48 +0000275bool DeclSpec::SetTypeSpecError() {
276 TypeSpecType = TST_error;
277 TypeRep = 0;
278 TSTLoc = SourceLocation();
279 return false;
280}
281
Reid Spencer5f016e22007-07-11 17:01:13 +0000282bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000283 unsigned &DiagID, const LangOptions &Lang) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000284 // Duplicates turn into warnings pre-C99.
285 if ((TypeQualifiers & T) && !Lang.C99)
John McCallfec54012009-08-03 20:12:06 +0000286 return BadSpecifier(T, T, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000287 TypeQualifiers |= T;
288
289 switch (T) {
290 default: assert(0 && "Unknown type qualifier!");
291 case TQ_const: TQ_constLoc = Loc; break;
292 case TQ_restrict: TQ_restrictLoc = Loc; break;
293 case TQ_volatile: TQ_volatileLoc = Loc; break;
294 }
295 return false;
296}
297
John McCallfec54012009-08-03 20:12:06 +0000298bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
299 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000300 // 'inline inline' is ok.
301 FS_inline_specified = true;
302 FS_inlineLoc = Loc;
303 return false;
304}
305
John McCallfec54012009-08-03 20:12:06 +0000306bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
307 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000308 // 'virtual virtual' is ok.
309 FS_virtual_specified = true;
310 FS_virtualLoc = Loc;
311 return false;
312}
313
John McCallfec54012009-08-03 20:12:06 +0000314bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
315 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000316 // 'explicit explicit' is ok.
317 FS_explicit_specified = true;
318 FS_explicitLoc = Loc;
319 return false;
320}
321
John McCallfec54012009-08-03 20:12:06 +0000322bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
323 unsigned &DiagID) {
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000324 if (Friend_specified) {
325 PrevSpec = "friend";
John McCallfec54012009-08-03 20:12:06 +0000326 DiagID = diag::ext_duplicate_declspec;
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000327 return true;
328 }
John McCallfec54012009-08-03 20:12:06 +0000329
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000330 Friend_specified = true;
331 FriendLoc = Loc;
332 return false;
333}
Reid Spencer5f016e22007-07-11 17:01:13 +0000334
335/// Finish - This does final analysis of the declspec, rejecting things like
336/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
337/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
338/// DeclSpec is guaranteed self-consistent, even if an error occurred.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000339void DeclSpec::Finish(Diagnostic &D, Preprocessor &PP) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000340 // Check the type specifier components first.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000341 SourceManager &SrcMgr = PP.getSourceManager();
Reid Spencer5f016e22007-07-11 17:01:13 +0000342
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000343 // signed/unsigned are only valid with int/char/wchar_t.
Reid Spencer5f016e22007-07-11 17:01:13 +0000344 if (TypeSpecSign != TSS_unspecified) {
345 if (TypeSpecType == TST_unspecified)
346 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000347 else if (TypeSpecType != TST_int &&
348 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Chris Lattner254be6a2008-11-22 08:32:36 +0000349 Diag(D, TSSLoc, SrcMgr, diag::err_invalid_sign_spec)
350 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000351 // signed double -> double.
352 TypeSpecSign = TSS_unspecified;
353 }
354 }
355
356 // Validate the width of the type.
357 switch (TypeSpecWidth) {
358 case TSW_unspecified: break;
359 case TSW_short: // short int
360 case TSW_longlong: // long long int
361 if (TypeSpecType == TST_unspecified)
362 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
363 else if (TypeSpecType != TST_int) {
Ted Kremenek7a9d49f2007-12-11 21:27:55 +0000364 Diag(D, TSWLoc, SrcMgr,
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner254be6a2008-11-22 08:32:36 +0000366 : diag::err_invalid_longlong_spec)
367 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 TypeSpecType = TST_int;
369 }
370 break;
371 case TSW_long: // long double, long int
372 if (TypeSpecType == TST_unspecified)
373 TypeSpecType = TST_int; // long -> long int.
374 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Chris Lattner254be6a2008-11-22 08:32:36 +0000375 Diag(D, TSWLoc, SrcMgr, diag::err_invalid_long_spec)
376 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000377 TypeSpecType = TST_int;
378 }
379 break;
380 }
381
382 // TODO: if the implementation does not implement _Complex or _Imaginary,
383 // disallow their use. Need information about the backend.
384 if (TypeSpecComplex != TSC_unspecified) {
385 if (TypeSpecType == TST_unspecified) {
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000386 Diag(D, TSCLoc, SrcMgr, diag::ext_plain_complex)
387 << CodeModificationHint::CreateInsertion(
388 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
389 " double");
Reid Spencer5f016e22007-07-11 17:01:13 +0000390 TypeSpecType = TST_double; // _Complex -> _Complex double.
391 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
392 // Note that this intentionally doesn't include _Complex _Bool.
Ted Kremenek7a9d49f2007-12-11 21:27:55 +0000393 Diag(D, TSTLoc, SrcMgr, diag::ext_integer_complex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000394 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Chris Lattner254be6a2008-11-22 08:32:36 +0000395 Diag(D, TSCLoc, SrcMgr, diag::err_invalid_complex_spec)
396 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000397 TypeSpecComplex = TSC_unspecified;
398 }
399 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000400
401 // Okay, now we can infer the real type.
Reid Spencer5f016e22007-07-11 17:01:13 +0000402
403 // TODO: return "auto function" and other bad things based on the real type.
404
405 // 'data definition has no type or storage class'?
406}
Daniel Dunbare4858a62008-08-11 03:45:03 +0000407
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000408bool DeclSpec::isMissingDeclaratorOk() {
409 TST tst = getTypeSpecType();
410 return (tst == TST_union
411 || tst == TST_struct
412 || tst == TST_class
413 || tst == TST_enum
Douglas Gregor4920f1f2009-01-12 22:49:06 +0000414 ) && getTypeRep() != 0 && StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000415}