blob: 037594a44a1c6125cdf147d2b769cca2fc7e5078 [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"
16#include "clang/Sema/ParsedTemplate.h"
Douglas Gregorc34348a2011-02-24 17:54:50 +000017#include "clang/AST/ASTContext.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000018#include "clang/AST/NestedNameSpecifier.h"
19#include "clang/AST/TypeLoc.h"
Douglas Gregor9b3064b2009-04-01 22:41:11 +000020#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Basic/LangOptions.h"
Chris Lattner5af2f352009-01-20 19:11:22 +000022#include "llvm/ADT/STLExtras.h"
John McCall32d335e2009-08-03 18:47:27 +000023#include "llvm/Support/ErrorHandling.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000024#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
Chris Lattner254be6a2008-11-22 08:32:36 +000027
28static DiagnosticBuilder Diag(Diagnostic &D, SourceLocation Loc,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000029 unsigned DiagID) {
30 return D.Report(Loc, DiagID);
Chris Lattner254be6a2008-11-22 08:32:36 +000031}
32
Douglas Gregor314b97f2009-11-10 19:49:08 +000033
34void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) {
35 assert(TemplateId && "NULL template-id annotation?");
36 Kind = IK_TemplateId;
37 this->TemplateId = TemplateId;
38 StartLocation = TemplateId->TemplateNameLoc;
39 EndLocation = TemplateId->RAngleLoc;
40}
41
Douglas Gregor0efc2c12010-01-13 17:31:36 +000042void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) {
43 assert(TemplateId && "NULL template-id annotation?");
44 Kind = IK_ConstructorTemplateId;
45 this->TemplateId = TemplateId;
46 StartLocation = TemplateId->TemplateNameLoc;
47 EndLocation = TemplateId->RAngleLoc;
48}
49
Douglas Gregorc34348a2011-02-24 17:54:50 +000050CXXScopeSpec::CXXScopeSpec(const CXXScopeSpec &Other)
51 : Range(Other.Range), ScopeRep(Other.ScopeRep), Buffer(0),
52 BufferSize(Other.BufferSize), BufferCapacity(Other.BufferSize)
53{
54 if (BufferSize) {
55 Buffer = static_cast<char *>(malloc(BufferSize));
56 memcpy(Buffer, Other.Buffer, BufferSize);
57 }
58}
59
60CXXScopeSpec &CXXScopeSpec::operator=(const CXXScopeSpec &Other) {
61 Range = Other.Range;
62 ScopeRep = Other.ScopeRep;
63 if (Buffer && Other.Buffer && BufferCapacity >= Other.BufferSize) {
64 // Re-use our storage.
65 BufferSize = Other.BufferSize;
66 memcpy(Buffer, Other.Buffer, BufferSize);
67 return *this;
68 }
69
70 if (BufferCapacity)
71 free(Buffer);
72 if (Other.Buffer) {
73 BufferSize = Other.BufferSize;
74 BufferCapacity = BufferSize;
75 Buffer = static_cast<char *>(malloc(BufferSize));
76 memcpy(Buffer, Other.Buffer, BufferSize);
77 } else {
78 Buffer = 0;
79 BufferSize = 0;
80 BufferCapacity = 0;
81 }
82 return *this;
83}
84
85CXXScopeSpec::~CXXScopeSpec() {
86 if (BufferCapacity)
87 free(Buffer);
88}
89
90namespace {
91 void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize,
92 unsigned &BufferCapacity) {
93 if (BufferSize + (End - Start) > BufferCapacity) {
94 // Reallocate the buffer.
95 unsigned NewCapacity
96 = std::max((unsigned)(BufferCapacity? BufferCapacity * 2
97 : sizeof(void*) * 2),
98 (unsigned)(BufferSize + (End - Start)));
99 char *NewBuffer = static_cast<char *>(malloc(NewCapacity));
100 memcpy(NewBuffer, Buffer, BufferSize);
101
102 if (BufferCapacity)
103 free(Buffer);
104 Buffer = NewBuffer;
105 BufferCapacity = NewCapacity;
106 }
107
108 memcpy(Buffer + BufferSize, Start, End - Start);
109 BufferSize += End-Start;
110 }
111
112 /// \brief Save a source location to the given buffer.
113 void SaveSourceLocation(SourceLocation Loc, char *&Buffer,
114 unsigned &BufferSize, unsigned &BufferCapacity) {
115 unsigned Raw = Loc.getRawEncoding();
116 Append(reinterpret_cast<char *>(&Raw),
117 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
118 Buffer, BufferSize, BufferCapacity);
119 }
120
121 /// \brief Save a pointer to the given buffer.
122 void SavePointer(void *Ptr, char *&Buffer, unsigned &BufferSize,
123 unsigned &BufferCapacity) {
124 Append(reinterpret_cast<char *>(&Ptr),
125 reinterpret_cast<char *>(&Ptr) + sizeof(void *),
126 Buffer, BufferSize, BufferCapacity);
127 }
128}
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000129void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
130 TypeLoc TL, SourceLocation ColonColonLoc) {
131 ScopeRep = NestedNameSpecifier::Create(Context, ScopeRep,
132 TemplateKWLoc.isValid(),
133 TL.getTypePtr());
134 if (Range.getBegin().isInvalid())
135 Range.setBegin(TL.getBeginLoc());
136 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000137
138 // Push source-location info into the buffer.
139 SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity);
140 SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity);
141
142 assert(Range == NestedNameSpecifierLoc(ScopeRep, Buffer).getSourceRange() &&
143 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000144}
145
146void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
147 SourceLocation IdentifierLoc,
148 SourceLocation ColonColonLoc) {
149 ScopeRep = NestedNameSpecifier::Create(Context, ScopeRep, Identifier);
150 if (Range.getBegin().isInvalid())
151 Range.setBegin(IdentifierLoc);
152 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000153
154 // Push source-location info into the buffer.
155 SaveSourceLocation(IdentifierLoc, Buffer, BufferSize, BufferCapacity);
156 SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity);
157
158 assert(Range == NestedNameSpecifierLoc(ScopeRep, Buffer).getSourceRange() &&
159 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000160}
161
162void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
163 SourceLocation NamespaceLoc,
164 SourceLocation ColonColonLoc) {
165 ScopeRep = NestedNameSpecifier::Create(Context, ScopeRep, Namespace);
166 if (Range.getBegin().isInvalid())
167 Range.setBegin(NamespaceLoc);
168 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000169
170 // Push source-location info into the buffer.
171 SaveSourceLocation(NamespaceLoc, Buffer, BufferSize, BufferCapacity);
172 SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity);
173
174 assert(Range == NestedNameSpecifierLoc(ScopeRep, Buffer).getSourceRange() &&
175 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000176}
177
Douglas Gregor14aba762011-02-24 02:36:08 +0000178void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
179 SourceLocation AliasLoc,
180 SourceLocation ColonColonLoc) {
181 ScopeRep = NestedNameSpecifier::Create(Context, ScopeRep, Alias);
182 if (Range.getBegin().isInvalid())
183 Range.setBegin(AliasLoc);
184 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000185
186 // Push source-location info into the buffer.
187 SaveSourceLocation(AliasLoc, Buffer, BufferSize, BufferCapacity);
188 SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity);
189
190 assert(Range == NestedNameSpecifierLoc(ScopeRep, Buffer).getSourceRange() &&
191 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor14aba762011-02-24 02:36:08 +0000192}
193
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000194void CXXScopeSpec::MakeGlobal(ASTContext &Context,
195 SourceLocation ColonColonLoc) {
196 assert(!ScopeRep && "Already have a nested-name-specifier!?");
197 ScopeRep = NestedNameSpecifier::GlobalSpecifier(Context);
198 Range = SourceRange(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000199
200 // Push source-location info into the buffer.
201 SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity);
202
203 assert(Range == NestedNameSpecifierLoc(ScopeRep, Buffer).getSourceRange() &&
204 "NestedNameSpecifierLoc range computation incorrect");
205}
206
207void CXXScopeSpec::MakeTrivial(ASTContext &Context,
208 NestedNameSpecifier *Qualifier, SourceRange R) {
209 ScopeRep = Qualifier;
210 Range = R;
211
212 // Construct bogus (but well-formed) source information for the
213 // nested-name-specifier.
214 BufferSize = 0;
215 llvm::SmallVector<NestedNameSpecifier *, 4> Stack;
216 for (NestedNameSpecifier *NNS = Qualifier; NNS; NNS = NNS->getPrefix())
217 Stack.push_back(NNS);
218 while (!Stack.empty()) {
219 NestedNameSpecifier *NNS = Stack.back();
220 Stack.pop_back();
221 switch (NNS->getKind()) {
222 case NestedNameSpecifier::Identifier:
223 case NestedNameSpecifier::Namespace:
224 case NestedNameSpecifier::NamespaceAlias:
225 SaveSourceLocation(R.getBegin(), Buffer, BufferSize, BufferCapacity);
226 break;
227
228 case NestedNameSpecifier::TypeSpec:
229 case NestedNameSpecifier::TypeSpecWithTemplate: {
230 TypeSourceInfo *TSInfo
231 = Context.getTrivialTypeSourceInfo(QualType(NNS->getAsType(), 0),
232 R.getBegin());
233 SavePointer(TSInfo->getTypeLoc().getOpaqueData(), Buffer, BufferSize,
234 BufferCapacity);
235 break;
236 }
237
238 case NestedNameSpecifier::Global:
239 break;
240 }
241
242 // Save the location of the '::'.
243 SaveSourceLocation(Stack.empty()? R.getEnd() : R.getBegin(),
244 Buffer, BufferSize, BufferCapacity);
245 }
246}
247
248void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) {
249 if (!Other) {
250 Range = SourceRange();
251 ScopeRep = 0;
252 return;
253 }
254
255 if (BufferCapacity)
256 free(Buffer);
257
258 // Rather than copying the data (which is wasteful), "adopt" the
259 // pointer (which points into the ASTContext) but set the capacity to zero to
260 // indicate that we don't own it.
261 Range = Other.getSourceRange();
262 ScopeRep = Other.getNestedNameSpecifier();
263 Buffer = static_cast<char *>(Other.getOpaqueData());
264 BufferSize = Other.getDataLength();
265 BufferCapacity = 0;
266}
267
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000268NestedNameSpecifierLoc
269CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregorc34348a2011-02-24 17:54:50 +0000270 if (isEmpty() || isInvalid())
271 return NestedNameSpecifierLoc();
272
273 // If we adopted our data pointer from elsewhere in the AST context, there's
274 // no need to copy the memory.
275 if (BufferCapacity == 0)
276 return NestedNameSpecifierLoc(ScopeRep, Buffer);
277
278 void *Mem = Context.Allocate(BufferSize, llvm::alignOf<void *>());
279 memcpy(Mem, Buffer, BufferSize);
280 return NestedNameSpecifierLoc(ScopeRep, Mem);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000281}
282
Chris Lattner5af2f352009-01-20 19:11:22 +0000283/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
284/// "TheDeclarator" is the declarator that this will be added to.
John McCall7f040a92010-12-24 02:08:15 +0000285DeclaratorChunk DeclaratorChunk::getFunction(const ParsedAttributes &attrs,
286 bool hasProto, bool isVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +0000287 SourceLocation EllipsisLoc,
Chris Lattner5af2f352009-01-20 19:11:22 +0000288 ParamInfo *ArgInfo,
289 unsigned NumArgs,
290 unsigned TypeQuals,
Douglas Gregor83f51722011-01-26 03:43:54 +0000291 bool RefQualifierIsLvalueRef,
292 SourceLocation RefQualifierLoc,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000293 bool hasExceptionSpec,
Sebastian Redl3cc97262009-05-31 11:47:27 +0000294 SourceLocation ThrowLoc,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000295 bool hasAnyExceptionSpec,
John McCallb3d87482010-08-24 05:47:05 +0000296 ParsedType *Exceptions,
Sebastian Redlef65f062009-05-29 18:02:33 +0000297 SourceRange *ExceptionRanges,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000298 unsigned NumExceptions,
Argyrios Kyrtzidis82bf0102009-08-19 23:14:54 +0000299 SourceLocation LPLoc,
300 SourceLocation RPLoc,
Douglas Gregordab60ad2010-10-01 18:44:50 +0000301 Declarator &TheDeclarator,
302 ParsedType TrailingReturnType) {
Chris Lattner5af2f352009-01-20 19:11:22 +0000303 DeclaratorChunk I;
Sebastian Redl7dc81342009-04-29 17:30:04 +0000304 I.Kind = Function;
Argyrios Kyrtzidis82bf0102009-08-19 23:14:54 +0000305 I.Loc = LPLoc;
306 I.EndLoc = RPLoc;
John McCall7f040a92010-12-24 02:08:15 +0000307 I.Fun.AttrList = attrs.getList();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000308 I.Fun.hasPrototype = hasProto;
309 I.Fun.isVariadic = isVariadic;
310 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding();
311 I.Fun.DeleteArgInfo = false;
312 I.Fun.TypeQuals = TypeQuals;
313 I.Fun.NumArgs = NumArgs;
314 I.Fun.ArgInfo = 0;
Douglas Gregor83f51722011-01-26 03:43:54 +0000315 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
316 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000317 I.Fun.hasExceptionSpec = hasExceptionSpec;
Sebastian Redl3cc97262009-05-31 11:47:27 +0000318 I.Fun.ThrowLoc = ThrowLoc.getRawEncoding();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000319 I.Fun.hasAnyExceptionSpec = hasAnyExceptionSpec;
320 I.Fun.NumExceptions = NumExceptions;
321 I.Fun.Exceptions = 0;
Douglas Gregordab60ad2010-10-01 18:44:50 +0000322 I.Fun.TrailingReturnType = TrailingReturnType.getAsOpaquePtr();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000323
Chris Lattner5af2f352009-01-20 19:11:22 +0000324 // new[] an argument array if needed.
325 if (NumArgs) {
326 // If the 'InlineParams' in Declarator is unused and big enough, put our
327 // parameter list there (in an effort to avoid new/delete traffic). If it
328 // is already used (consider a function returning a function pointer) or too
329 // small (function taking too many arguments), go to the heap.
Mike Stump1eb44332009-09-09 15:08:12 +0000330 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner5af2f352009-01-20 19:11:22 +0000331 NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) {
332 I.Fun.ArgInfo = TheDeclarator.InlineParams;
333 I.Fun.DeleteArgInfo = false;
334 TheDeclarator.InlineParamsUsed = true;
335 } else {
336 I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs];
337 I.Fun.DeleteArgInfo = true;
338 }
339 memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs);
340 }
Sebastian Redl7dc81342009-04-29 17:30:04 +0000341 // new[] an exception array if needed
342 if (NumExceptions) {
Sebastian Redlef65f062009-05-29 18:02:33 +0000343 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
344 for (unsigned i = 0; i != NumExceptions; ++i) {
345 I.Fun.Exceptions[i].Ty = Exceptions[i];
346 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
347 }
Sebastian Redl7dc81342009-04-29 17:30:04 +0000348 }
Chris Lattner5af2f352009-01-20 19:11:22 +0000349 return I;
350}
Chris Lattner254be6a2008-11-22 08:32:36 +0000351
Reid Spencer5f016e22007-07-11 17:01:13 +0000352/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattner2a327d12009-02-27 18:35:46 +0000353/// declaration specifier includes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000354///
355unsigned DeclSpec::getParsedSpecifiers() const {
356 unsigned Res = 0;
357 if (StorageClassSpec != SCS_unspecified ||
358 SCS_thread_specified)
359 Res |= PQ_StorageClassSpecifier;
Mike Stumpd4204332008-06-19 19:52:46 +0000360
Reid Spencer5f016e22007-07-11 17:01:13 +0000361 if (TypeQualifiers != TQ_unspecified)
362 Res |= PQ_TypeQualifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 if (hasTypeSpecifier())
365 Res |= PQ_TypeSpecifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Douglas Gregorb48fe382008-10-31 09:07:45 +0000367 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 Res |= PQ_FunctionSpecifier;
369 return Res;
370}
371
John McCallfec54012009-08-03 20:12:06 +0000372template <class T> static bool BadSpecifier(T TNew, T TPrev,
373 const char *&PrevSpec,
374 unsigned &DiagID) {
John McCall32d335e2009-08-03 18:47:27 +0000375 PrevSpec = DeclSpec::getSpecifierName(TPrev);
John McCallfec54012009-08-03 20:12:06 +0000376 DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
377 : diag::err_invalid_decl_spec_combination);
John McCall32d335e2009-08-03 18:47:27 +0000378 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000379}
John McCall32d335e2009-08-03 18:47:27 +0000380
Reid Spencer5f016e22007-07-11 17:01:13 +0000381const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
382 switch (S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 case DeclSpec::SCS_unspecified: return "unspecified";
384 case DeclSpec::SCS_typedef: return "typedef";
385 case DeclSpec::SCS_extern: return "extern";
386 case DeclSpec::SCS_static: return "static";
387 case DeclSpec::SCS_auto: return "auto";
388 case DeclSpec::SCS_register: return "register";
Eli Friedman63054b32009-04-19 20:27:55 +0000389 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redl669d5d72008-11-14 23:42:31 +0000390 case DeclSpec::SCS_mutable: return "mutable";
Reid Spencer5f016e22007-07-11 17:01:13 +0000391 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000392 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000393}
394
John McCall32d335e2009-08-03 18:47:27 +0000395const char *DeclSpec::getSpecifierName(TSW W) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 switch (W) {
John McCall32d335e2009-08-03 18:47:27 +0000397 case TSW_unspecified: return "unspecified";
398 case TSW_short: return "short";
399 case TSW_long: return "long";
400 case TSW_longlong: return "long long";
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000402 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000403}
404
John McCall32d335e2009-08-03 18:47:27 +0000405const char *DeclSpec::getSpecifierName(TSC C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000406 switch (C) {
John McCall32d335e2009-08-03 18:47:27 +0000407 case TSC_unspecified: return "unspecified";
408 case TSC_imaginary: return "imaginary";
409 case TSC_complex: return "complex";
Reid Spencer5f016e22007-07-11 17:01:13 +0000410 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000411 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000412}
413
414
John McCall32d335e2009-08-03 18:47:27 +0000415const char *DeclSpec::getSpecifierName(TSS S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 switch (S) {
John McCall32d335e2009-08-03 18:47:27 +0000417 case TSS_unspecified: return "unspecified";
418 case TSS_signed: return "signed";
419 case TSS_unsigned: return "unsigned";
Reid Spencer5f016e22007-07-11 17:01:13 +0000420 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000421 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000422}
423
424const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
425 switch (T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000426 case DeclSpec::TST_unspecified: return "unspecified";
427 case DeclSpec::TST_void: return "void";
428 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000429 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000430 case DeclSpec::TST_char16: return "char16_t";
431 case DeclSpec::TST_char32: return "char32_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 case DeclSpec::TST_int: return "int";
433 case DeclSpec::TST_float: return "float";
434 case DeclSpec::TST_double: return "double";
435 case DeclSpec::TST_bool: return "_Bool";
436 case DeclSpec::TST_decimal32: return "_Decimal32";
437 case DeclSpec::TST_decimal64: return "_Decimal64";
438 case DeclSpec::TST_decimal128: return "_Decimal128";
439 case DeclSpec::TST_enum: return "enum";
Chris Lattner99dc9142008-04-13 18:59:07 +0000440 case DeclSpec::TST_class: return "class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000441 case DeclSpec::TST_union: return "union";
442 case DeclSpec::TST_struct: return "struct";
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000443 case DeclSpec::TST_typename: return "type-name";
Steve Naroffd1861fd2007-07-31 12:34:36 +0000444 case DeclSpec::TST_typeofType:
445 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall32d335e2009-08-03 18:47:27 +0000446 case DeclSpec::TST_auto: return "auto";
447 case DeclSpec::TST_decltype: return "(decltype)";
448 case DeclSpec::TST_error: return "(error)";
Reid Spencer5f016e22007-07-11 17:01:13 +0000449 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000450 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000451}
452
John McCall32d335e2009-08-03 18:47:27 +0000453const char *DeclSpec::getSpecifierName(TQ T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000454 switch (T) {
John McCall32d335e2009-08-03 18:47:27 +0000455 case DeclSpec::TQ_unspecified: return "unspecified";
456 case DeclSpec::TQ_const: return "const";
457 case DeclSpec::TQ_restrict: return "restrict";
458 case DeclSpec::TQ_volatile: return "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000460 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000461}
462
463bool DeclSpec::SetStorageClassSpec(SCS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000464 const char *&PrevSpec,
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000465 unsigned &DiagID,
466 const LangOptions &Lang) {
467 // OpenCL prohibits extern, auto, register, and static
468 // It seems sensible to prohibit private_extern too
469 if (Lang.OpenCL) {
470 switch (S) {
471 case SCS_extern:
472 case SCS_private_extern:
473 case SCS_auto:
474 case SCS_register:
475 case SCS_static:
476 DiagID = diag::err_not_opencl_storage_class_specifier;
477 PrevSpec = getSpecifierName(S);
478 return true;
479 default:
480 break;
481 }
482 }
483
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000484 if (StorageClassSpec != SCS_unspecified) {
485 // Changing storage class is allowed only if the previous one
486 // was the 'extern' that is part of a linkage specification and
487 // the new storage class is 'typedef'.
488 if (!(SCS_extern_in_linkage_spec &&
489 StorageClassSpec == SCS_extern &&
490 S == SCS_typedef))
491 return BadSpecifier(S, (SCS)StorageClassSpec, PrevSpec, DiagID);
492 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000493 StorageClassSpec = S;
494 StorageClassSpecLoc = Loc;
Sebastian Redl669d5d72008-11-14 23:42:31 +0000495 assert((unsigned)S == StorageClassSpec && "SCS constants overflow bitfield");
Reid Spencer5f016e22007-07-11 17:01:13 +0000496 return false;
497}
498
Mike Stump1eb44332009-09-09 15:08:12 +0000499bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000500 const char *&PrevSpec,
501 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000502 if (SCS_thread_specified) {
503 PrevSpec = "__thread";
John McCallfec54012009-08-03 20:12:06 +0000504 DiagID = diag::ext_duplicate_declspec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000505 return true;
506 }
507 SCS_thread_specified = true;
508 SCS_threadLoc = Loc;
509 return false;
510}
511
Reid Spencer5f016e22007-07-11 17:01:13 +0000512/// These methods set the specified attribute of the DeclSpec, but return true
513/// and ignore the request if invalid (e.g. "extern" then "auto" is
514/// specified).
515bool DeclSpec::SetTypeSpecWidth(TSW W, 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 (TypeSpecWidth != TSW_unspecified &&
519 // Allow turning long -> long long.
520 (W != TSW_longlong || TypeSpecWidth != TSW_long))
John McCallfec54012009-08-03 20:12:06 +0000521 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000522 TypeSpecWidth = W;
523 TSWLoc = Loc;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000524 if (TypeAltiVecVector && !TypeAltiVecBool &&
525 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson82287d12010-02-05 00:12:22 +0000526 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
527 DiagID = diag::warn_vector_long_decl_spec_combination;
528 return true;
529 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000530 return false;
531}
532
Mike Stump1eb44332009-09-09 15:08:12 +0000533bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000534 const char *&PrevSpec,
535 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000536 if (TypeSpecComplex != TSC_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000537 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000538 TypeSpecComplex = C;
539 TSCLoc = Loc;
540 return false;
541}
542
Mike Stump1eb44332009-09-09 15:08:12 +0000543bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000544 const char *&PrevSpec,
545 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000546 if (TypeSpecSign != TSS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000547 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000548 TypeSpecSign = S;
549 TSSLoc = Loc;
550 return false;
551}
552
553bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000554 const char *&PrevSpec,
555 unsigned &DiagID,
John McCallb3d87482010-08-24 05:47:05 +0000556 ParsedType Rep) {
557 assert(isTypeRep(T) && "T does not store a type");
558 assert(Rep && "no type 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 TypeRep = Rep;
566 TSTLoc = Loc;
567 TypeSpecOwned = false;
568 return false;
569}
570
571bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
572 const char *&PrevSpec,
573 unsigned &DiagID,
574 Expr *Rep) {
575 assert(isExprRep(T) && "T does not store an expr");
576 assert(Rep && "no expression provided!");
577 if (TypeSpecType != TST_unspecified) {
578 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
579 DiagID = diag::err_invalid_decl_spec_combination;
580 return true;
581 }
582 TypeSpecType = T;
583 ExprRep = Rep;
584 TSTLoc = Loc;
585 TypeSpecOwned = false;
586 return false;
587}
588
589bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
590 const char *&PrevSpec,
591 unsigned &DiagID,
592 Decl *Rep, bool Owned) {
593 assert(isDeclRep(T) && "T does not store a decl");
594 // Unlike the other cases, we don't assert that we actually get a decl.
595
596 if (TypeSpecType != TST_unspecified) {
597 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
598 DiagID = diag::err_invalid_decl_spec_combination;
599 return true;
600 }
601 TypeSpecType = T;
602 DeclRep = Rep;
603 TSTLoc = Loc;
604 TypeSpecOwned = Owned;
605 return false;
606}
607
608bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
609 const char *&PrevSpec,
610 unsigned &DiagID) {
611 assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) &&
612 "rep required for these type-spec kinds!");
John McCallfec54012009-08-03 20:12:06 +0000613 if (TypeSpecType != TST_unspecified) {
614 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
615 DiagID = diag::err_invalid_decl_spec_combination;
616 return true;
617 }
Chris Lattner788b0fd2010-06-23 06:00:24 +0000618 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
619 TypeAltiVecBool = true;
620 TSTLoc = Loc;
621 return false;
622 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000623 TypeSpecType = T;
Reid Spencer5f016e22007-07-11 17:01:13 +0000624 TSTLoc = Loc;
John McCallb3d87482010-08-24 05:47:05 +0000625 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000626 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson82287d12010-02-05 00:12:22 +0000627 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner788b0fd2010-06-23 06:00:24 +0000628 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson82287d12010-02-05 00:12:22 +0000629 return true;
630 }
631 return false;
632}
633
634bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
635 const char *&PrevSpec, unsigned &DiagID) {
636 if (TypeSpecType != TST_unspecified) {
637 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
638 DiagID = diag::err_invalid_vector_decl_spec_combination;
639 return true;
640 }
641 TypeAltiVecVector = isAltiVecVector;
642 AltiVecLoc = Loc;
643 return false;
644}
645
646bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
647 const char *&PrevSpec, unsigned &DiagID) {
Chris Lattner788b0fd2010-06-23 06:00:24 +0000648 if (!TypeAltiVecVector || TypeAltiVecPixel ||
649 (TypeSpecType != TST_unspecified)) {
John Thompson82287d12010-02-05 00:12:22 +0000650 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
651 DiagID = diag::err_invalid_pixel_decl_spec_combination;
652 return true;
653 }
John Thompson82287d12010-02-05 00:12:22 +0000654 TypeAltiVecPixel = isAltiVecPixel;
655 TSTLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 return false;
657}
658
Douglas Gregorddc29e12009-02-06 22:42:48 +0000659bool DeclSpec::SetTypeSpecError() {
660 TypeSpecType = TST_error;
John McCall9e46b8c2010-08-26 17:22:34 +0000661 TypeSpecOwned = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000662 TSTLoc = SourceLocation();
663 return false;
664}
665
Reid Spencer5f016e22007-07-11 17:01:13 +0000666bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000667 unsigned &DiagID, const LangOptions &Lang) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000668 // Duplicates turn into warnings pre-C99.
669 if ((TypeQualifiers & T) && !Lang.C99)
John McCallfec54012009-08-03 20:12:06 +0000670 return BadSpecifier(T, T, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 TypeQualifiers |= T;
Mike Stump1eb44332009-09-09 15:08:12 +0000672
Reid Spencer5f016e22007-07-11 17:01:13 +0000673 switch (T) {
674 default: assert(0 && "Unknown type qualifier!");
675 case TQ_const: TQ_constLoc = Loc; break;
676 case TQ_restrict: TQ_restrictLoc = Loc; break;
677 case TQ_volatile: TQ_volatileLoc = Loc; break;
678 }
679 return false;
680}
681
John McCallfec54012009-08-03 20:12:06 +0000682bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
683 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000684 // 'inline inline' is ok.
685 FS_inline_specified = true;
686 FS_inlineLoc = Loc;
687 return false;
688}
689
John McCallfec54012009-08-03 20:12:06 +0000690bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
691 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000692 // 'virtual virtual' is ok.
693 FS_virtual_specified = true;
694 FS_virtualLoc = Loc;
695 return false;
696}
697
John McCallfec54012009-08-03 20:12:06 +0000698bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
699 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000700 // 'explicit explicit' is ok.
701 FS_explicit_specified = true;
702 FS_explicitLoc = Loc;
703 return false;
704}
705
John McCallfec54012009-08-03 20:12:06 +0000706bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
707 unsigned &DiagID) {
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000708 if (Friend_specified) {
709 PrevSpec = "friend";
John McCallfec54012009-08-03 20:12:06 +0000710 DiagID = diag::ext_duplicate_declspec;
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000711 return true;
712 }
John McCallfec54012009-08-03 20:12:06 +0000713
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000714 Friend_specified = true;
715 FriendLoc = Loc;
716 return false;
717}
Reid Spencer5f016e22007-07-11 17:01:13 +0000718
Sebastian Redl2ac67232009-11-05 15:47:02 +0000719bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
720 unsigned &DiagID) {
721 // 'constexpr constexpr' is ok.
722 Constexpr_specified = true;
723 ConstexprLoc = Loc;
724 return false;
725}
726
John McCalld226f652010-08-21 09:40:31 +0000727void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000728 unsigned NP,
729 SourceLocation *ProtoLocs,
730 SourceLocation LAngleLoc) {
731 if (NP == 0) return;
John McCalld226f652010-08-21 09:40:31 +0000732 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000733 ProtocolLocs = new SourceLocation[NP];
John McCalld226f652010-08-21 09:40:31 +0000734 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000735 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
736 NumProtocolQualifiers = NP;
737 ProtocolLAngleLoc = LAngleLoc;
738}
739
Douglas Gregorddf889a2010-01-18 18:04:31 +0000740void DeclSpec::SaveWrittenBuiltinSpecs() {
741 writtenBS.Sign = getTypeSpecSign();
742 writtenBS.Width = getTypeSpecWidth();
743 writtenBS.Type = getTypeSpecType();
744 // Search the list of attributes for the presence of a mode attribute.
745 writtenBS.ModeAttr = false;
John McCall7f040a92010-12-24 02:08:15 +0000746 AttributeList* attrs = getAttributes().getList();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000747 while (attrs) {
748 if (attrs->getKind() == AttributeList::AT_mode) {
749 writtenBS.ModeAttr = true;
750 break;
751 }
752 attrs = attrs->getNext();
753 }
754}
755
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000756void DeclSpec::SaveStorageSpecifierAsWritten() {
757 if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
758 // If 'extern' is part of a linkage specification,
759 // then it is not a storage class "as written".
760 StorageClassSpecAsWritten = SCS_unspecified;
761 else
762 StorageClassSpecAsWritten = StorageClassSpec;
763}
764
Reid Spencer5f016e22007-07-11 17:01:13 +0000765/// Finish - This does final analysis of the declspec, rejecting things like
766/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
767/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
768/// DeclSpec is guaranteed self-consistent, even if an error occurred.
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000769void DeclSpec::Finish(Diagnostic &D, Preprocessor &PP) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000770 // Before possibly changing their values, save specs as written.
771 SaveWrittenBuiltinSpecs();
Douglas Gregor16573fa2010-04-19 22:54:31 +0000772 SaveStorageSpecifierAsWritten();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000773
Reid Spencer5f016e22007-07-11 17:01:13 +0000774 // Check the type specifier components first.
775
Chris Lattner788b0fd2010-06-23 06:00:24 +0000776 // Validate and finalize AltiVec vector declspec.
777 if (TypeAltiVecVector) {
778 if (TypeAltiVecBool) {
779 // Sign specifiers are not allowed with vector bool. (PIM 2.1)
780 if (TypeSpecSign != TSS_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000781 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000782 << getSpecifierName((TSS)TypeSpecSign);
783 }
784
785 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sands2e964a922010-06-23 19:34:52 +0000786 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
787 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000788 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000789 << (TypeAltiVecPixel ? "__pixel" :
790 getSpecifierName((TST)TypeSpecType));
791 }
792
793 // Only 'short' is valid with vector bool. (PIM 2.1)
794 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000795 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000796 << getSpecifierName((TSW)TypeSpecWidth);
797
798 // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
799 if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
800 (TypeSpecWidth != TSW_unspecified))
801 TypeSpecSign = TSS_unsigned;
802 }
803
804 if (TypeAltiVecPixel) {
805 //TODO: perform validation
806 TypeSpecType = TST_int;
807 TypeSpecSign = TSS_unsigned;
808 TypeSpecWidth = TSW_short;
John McCall9e46b8c2010-08-26 17:22:34 +0000809 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000810 }
811 }
812
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000813 // signed/unsigned are only valid with int/char/wchar_t.
Reid Spencer5f016e22007-07-11 17:01:13 +0000814 if (TypeSpecSign != TSS_unspecified) {
815 if (TypeSpecType == TST_unspecified)
816 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000817 else if (TypeSpecType != TST_int &&
818 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000819 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000820 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000821 // signed double -> double.
822 TypeSpecSign = TSS_unspecified;
823 }
824 }
825
826 // Validate the width of the type.
827 switch (TypeSpecWidth) {
828 case TSW_unspecified: break;
829 case TSW_short: // short int
830 case TSW_longlong: // long long int
831 if (TypeSpecType == TST_unspecified)
832 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
833 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000834 Diag(D, TSWLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000835 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner254be6a2008-11-22 08:32:36 +0000836 : diag::err_invalid_longlong_spec)
837 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000838 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000839 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000840 }
841 break;
842 case TSW_long: // long double, long int
843 if (TypeSpecType == TST_unspecified)
844 TypeSpecType = TST_int; // long -> long int.
845 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000846 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000847 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000848 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000849 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000850 }
851 break;
852 }
Mike Stump1eb44332009-09-09 15:08:12 +0000853
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 // TODO: if the implementation does not implement _Complex or _Imaginary,
855 // disallow their use. Need information about the backend.
856 if (TypeSpecComplex != TSC_unspecified) {
857 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000858 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregor849b2432010-03-31 17:46:05 +0000859 << FixItHint::CreateInsertion(
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000860 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
861 " double");
Reid Spencer5f016e22007-07-11 17:01:13 +0000862 TypeSpecType = TST_double; // _Complex -> _Complex double.
863 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
864 // Note that this intentionally doesn't include _Complex _Bool.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000865 Diag(D, TSTLoc, diag::ext_integer_complex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000866 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000867 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000868 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000869 TypeSpecComplex = TSC_unspecified;
870 }
871 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000872
John McCall67d1a672009-08-06 02:15:43 +0000873 // C++ [class.friend]p6:
874 // No storage-class-specifier shall appear in the decl-specifier-seq
875 // of a friend declaration.
876 if (isFriendSpecified() && getStorageClassSpec()) {
877 DeclSpec::SCS SC = getStorageClassSpec();
878 const char *SpecName = getSpecifierName(SC);
879
880 SourceLocation SCLoc = getStorageClassSpecLoc();
881 SourceLocation SCEndLoc = SCLoc.getFileLocWithOffset(strlen(SpecName));
882
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000883 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall67d1a672009-08-06 02:15:43 +0000884 << SpecName
Douglas Gregor849b2432010-03-31 17:46:05 +0000885 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall67d1a672009-08-06 02:15:43 +0000886
887 ClearStorageClassSpecs();
888 }
889
John McCall9e46b8c2010-08-26 17:22:34 +0000890 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
891
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 // Okay, now we can infer the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000893
Reid Spencer5f016e22007-07-11 17:01:13 +0000894 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Reid Spencer5f016e22007-07-11 17:01:13 +0000896 // 'data definition has no type or storage class'?
897}
Daniel Dunbare4858a62008-08-11 03:45:03 +0000898
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000899bool DeclSpec::isMissingDeclaratorOk() {
900 TST tst = getTypeSpecType();
John McCallb3d87482010-08-24 05:47:05 +0000901 return isDeclRep(tst) && getRepAsDecl() != 0 &&
902 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000903}
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000904
905void UnqualifiedId::clear() {
906 if (Kind == IK_TemplateId)
907 TemplateId->Destroy();
908
909 Kind = IK_Identifier;
910 Identifier = 0;
911 StartLocation = SourceLocation();
912 EndLocation = SourceLocation();
913}
914
915void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc,
916 OverloadedOperatorKind Op,
917 SourceLocation SymbolLocations[3]) {
918 Kind = IK_OperatorFunctionId;
919 StartLocation = OperatorLoc;
920 EndLocation = OperatorLoc;
921 OperatorFunctionId.Operator = Op;
922 for (unsigned I = 0; I != 3; ++I) {
923 OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding();
924
925 if (SymbolLocations[I].isValid())
926 EndLocation = SymbolLocations[I];
927 }
928}
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000929
Anders Carlssoncc54d592011-01-22 16:56:46 +0000930bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlsson46127a92011-01-22 15:58:16 +0000931 const char *&PrevSpec) {
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000932 if (Specifiers & VS) {
933 PrevSpec = getSpecifierName(VS);
934 return true;
935 }
936
937 Specifiers |= VS;
938
939 switch (VS) {
940 default: assert(0 && "Unknown specifier!");
941 case VS_Override: VS_overrideLoc = Loc; break;
942 case VS_Final: VS_finalLoc = Loc; break;
943 case VS_New: VS_newLoc = Loc; break;
944 }
Anders Carlsson46127a92011-01-22 15:58:16 +0000945
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000946 return false;
947}
948
Anders Carlssoncc54d592011-01-22 16:56:46 +0000949const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000950 switch (VS) {
951 default: assert(0 && "Unknown specifier");
952 case VS_Override: return "override";
953 case VS_Final: return "final";
954 case VS_New: return "new";
955 }
956}
Anders Carlsson46127a92011-01-22 15:58:16 +0000957
Anders Carlssoncc54d592011-01-22 16:56:46 +0000958bool ClassVirtSpecifiers::SetSpecifier(Specifier CVS, SourceLocation Loc,
Anders Carlsson46127a92011-01-22 15:58:16 +0000959 const char *&PrevSpec) {
960 if (Specifiers & CVS) {
961 PrevSpec = getSpecifierName(CVS);
962 return true;
963 }
964
965 Specifiers |= CVS;
966
967 switch (CVS) {
968 default: assert(0 && "Unknown specifier!");
969 case CVS_Final: CVS_finalLoc = Loc; break;
970 case CVS_Explicit: CVS_explicitLoc = Loc; break;
971 }
972
973 return false;
974}
975
Anders Carlssoncc54d592011-01-22 16:56:46 +0000976const char *ClassVirtSpecifiers::getSpecifierName(Specifier CVS) {
Anders Carlsson46127a92011-01-22 15:58:16 +0000977 switch (CVS) {
978 default: assert(0 && "Unknown specifier");
979 case CVS_Final: return "final";
980 case CVS_Explicit: return "explicit";
981 }
982}
983