blob: 037594a44a1c6125cdf147d2b769cca2fc7e5078 [file] [log] [blame]
Chris Lattner289ab7b2006-11-08 06:54:53 +00001//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner289ab7b2006-11-08 06:54:53 +000010// This file implements semantic analysis for declaration specifiers.
Chris Lattnerb9093cd2006-08-04 04:39:53 +000011//
12//===----------------------------------------------------------------------===//
13
John McCall8b0666c2010-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 Gregor869ad452011-02-24 17:54:50 +000017#include "clang/AST/ASTContext.h"
Douglas Gregor90c99722011-02-24 00:17:56 +000018#include "clang/AST/NestedNameSpecifier.h"
19#include "clang/AST/TypeLoc.h"
Douglas Gregore3e01a22009-04-01 22:41:11 +000020#include "clang/Lex/Preprocessor.h"
Chris Lattnerda48a8e2006-08-04 05:25:55 +000021#include "clang/Basic/LangOptions.h"
Chris Lattner1ce41ed2009-01-20 19:11:22 +000022#include "llvm/ADT/STLExtras.h"
John McCall898cd0f2009-08-03 18:47:27 +000023#include "llvm/Support/ErrorHandling.h"
Douglas Gregor52537682009-03-19 00:18:19 +000024#include <cstring>
Chris Lattnerb9093cd2006-08-04 04:39:53 +000025using namespace clang;
26
Chris Lattner3b0f3ef2008-11-22 08:32:36 +000027
28static DiagnosticBuilder Diag(Diagnostic &D, SourceLocation Loc,
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +000029 unsigned DiagID) {
30 return D.Report(Loc, DiagID);
Chris Lattner3b0f3ef2008-11-22 08:32:36 +000031}
32
Douglas Gregorb53edfb2009-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 Gregor9de54ea2010-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 Gregor869ad452011-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 Gregor90c99722011-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 Gregor869ad452011-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 Gregor90c99722011-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 Gregor869ad452011-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 Gregor90c99722011-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 Gregor869ad452011-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 Gregor90c99722011-02-24 00:17:56 +0000176}
177
Douglas Gregor7b26ff92011-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 Gregor869ad452011-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 Gregor7b26ff92011-02-24 02:36:08 +0000192}
193
Douglas Gregor90c99722011-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 Gregor869ad452011-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 Gregor14454802011-02-25 02:25:35 +0000268NestedNameSpecifierLoc
269CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregor869ad452011-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 Gregor90c99722011-02-24 00:17:56 +0000281}
282
Chris Lattner1ce41ed2009-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 McCall53fa7142010-12-24 02:08:15 +0000285DeclaratorChunk DeclaratorChunk::getFunction(const ParsedAttributes &attrs,
286 bool hasProto, bool isVariadic,
Douglas Gregor94349fd2009-02-18 07:07:28 +0000287 SourceLocation EllipsisLoc,
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000288 ParamInfo *ArgInfo,
289 unsigned NumArgs,
290 unsigned TypeQuals,
Douglas Gregor54992352011-01-26 03:43:54 +0000291 bool RefQualifierIsLvalueRef,
292 SourceLocation RefQualifierLoc,
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000293 bool hasExceptionSpec,
Sebastian Redlfb3f1792009-05-31 11:47:27 +0000294 SourceLocation ThrowLoc,
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000295 bool hasAnyExceptionSpec,
John McCallba7bf592010-08-24 05:47:05 +0000296 ParsedType *Exceptions,
Sebastian Redld6434562009-05-29 18:02:33 +0000297 SourceRange *ExceptionRanges,
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000298 unsigned NumExceptions,
Argyrios Kyrtzidis20cf1912009-08-19 23:14:54 +0000299 SourceLocation LPLoc,
300 SourceLocation RPLoc,
Douglas Gregor7fb25412010-10-01 18:44:50 +0000301 Declarator &TheDeclarator,
302 ParsedType TrailingReturnType) {
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000303 DeclaratorChunk I;
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000304 I.Kind = Function;
Argyrios Kyrtzidis20cf1912009-08-19 23:14:54 +0000305 I.Loc = LPLoc;
306 I.EndLoc = RPLoc;
John McCall53fa7142010-12-24 02:08:15 +0000307 I.Fun.AttrList = attrs.getList();
Sebastian Redl2b9cacb2009-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 Gregor54992352011-01-26 03:43:54 +0000315 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
316 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000317 I.Fun.hasExceptionSpec = hasExceptionSpec;
Sebastian Redlfb3f1792009-05-31 11:47:27 +0000318 I.Fun.ThrowLoc = ThrowLoc.getRawEncoding();
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000319 I.Fun.hasAnyExceptionSpec = hasAnyExceptionSpec;
320 I.Fun.NumExceptions = NumExceptions;
321 I.Fun.Exceptions = 0;
Douglas Gregor7fb25412010-10-01 18:44:50 +0000322 I.Fun.TrailingReturnType = TrailingReturnType.getAsOpaquePtr();
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000323
Chris Lattner1ce41ed2009-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 Stump11289f42009-09-09 15:08:12 +0000330 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner1ce41ed2009-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 Redl2b9cacb2009-04-29 17:30:04 +0000341 // new[] an exception array if needed
342 if (NumExceptions) {
Sebastian Redld6434562009-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 Redl2b9cacb2009-04-29 17:30:04 +0000348 }
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000349 return I;
350}
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000351
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000352/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattnere0c51162009-02-27 18:35:46 +0000353/// declaration specifier includes.
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000354///
355unsigned DeclSpec::getParsedSpecifiers() const {
356 unsigned Res = 0;
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000357 if (StorageClassSpec != SCS_unspecified ||
358 SCS_thread_specified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000359 Res |= PQ_StorageClassSpecifier;
Mike Stump65643c62008-06-19 19:52:46 +0000360
Chris Lattner4d8f8732006-11-28 05:05:08 +0000361 if (TypeQualifiers != TQ_unspecified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000362 Res |= PQ_TypeQualifier;
Mike Stump11289f42009-09-09 15:08:12 +0000363
Chris Lattnerf055d432006-11-28 04:28:12 +0000364 if (hasTypeSpecifier())
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000365 Res |= PQ_TypeSpecifier;
Mike Stump11289f42009-09-09 15:08:12 +0000366
Douglas Gregor61956c42008-10-31 09:07:45 +0000367 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000368 Res |= PQ_FunctionSpecifier;
369 return Res;
370}
371
John McCall49bfce42009-08-03 20:12:06 +0000372template <class T> static bool BadSpecifier(T TNew, T TPrev,
373 const char *&PrevSpec,
374 unsigned &DiagID) {
John McCall898cd0f2009-08-03 18:47:27 +0000375 PrevSpec = DeclSpec::getSpecifierName(TPrev);
John McCall49bfce42009-08-03 20:12:06 +0000376 DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
377 : diag::err_invalid_decl_spec_combination);
John McCall898cd0f2009-08-03 18:47:27 +0000378 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000379}
John McCall898cd0f2009-08-03 18:47:27 +0000380
Chris Lattner7bd11fe2007-01-23 04:35:33 +0000381const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000382 switch (S) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +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 Friedmand5c0eed2009-04-19 20:27:55 +0000389 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000390 case DeclSpec::SCS_mutable: return "mutable";
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000391 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000392 llvm_unreachable("Unknown typespec!");
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000393}
394
John McCall898cd0f2009-08-03 18:47:27 +0000395const char *DeclSpec::getSpecifierName(TSW W) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000396 switch (W) {
John McCall898cd0f2009-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";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000401 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000402 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000403}
404
John McCall898cd0f2009-08-03 18:47:27 +0000405const char *DeclSpec::getSpecifierName(TSC C) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000406 switch (C) {
John McCall898cd0f2009-08-03 18:47:27 +0000407 case TSC_unspecified: return "unspecified";
408 case TSC_imaginary: return "imaginary";
409 case TSC_complex: return "complex";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000410 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000411 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000412}
413
414
John McCall898cd0f2009-08-03 18:47:27 +0000415const char *DeclSpec::getSpecifierName(TSS S) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000416 switch (S) {
John McCall898cd0f2009-08-03 18:47:27 +0000417 case TSS_unspecified: return "unspecified";
418 case TSS_signed: return "signed";
419 case TSS_unsigned: return "unsigned";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000420 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000421 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000422}
423
Chris Lattner69680ea2007-01-23 04:34:43 +0000424const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000425 switch (T) {
Chris Lattner839713c2006-08-04 06:15:52 +0000426 case DeclSpec::TST_unspecified: return "unspecified";
427 case DeclSpec::TST_void: return "void";
428 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000429 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +0000430 case DeclSpec::TST_char16: return "char16_t";
431 case DeclSpec::TST_char32: return "char32_t";
Chris Lattner839713c2006-08-04 06:15:52 +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";
Chris Lattnerda72c822006-08-13 22:16:42 +0000439 case DeclSpec::TST_enum: return "enum";
Chris Lattner861a2262008-04-13 18:59:07 +0000440 case DeclSpec::TST_class: return "class";
Chris Lattnerda72c822006-08-13 22:16:42 +0000441 case DeclSpec::TST_union: return "union";
442 case DeclSpec::TST_struct: return "struct";
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000443 case DeclSpec::TST_typename: return "type-name";
Steve Naroffad373bd2007-07-31 12:34:36 +0000444 case DeclSpec::TST_typeofType:
445 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall898cd0f2009-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)";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000449 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000450 llvm_unreachable("Unknown typespec!");
Chris Lattner839713c2006-08-04 06:15:52 +0000451}
452
John McCall898cd0f2009-08-03 18:47:27 +0000453const char *DeclSpec::getSpecifierName(TQ T) {
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000454 switch (T) {
John McCall898cd0f2009-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";
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000459 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000460 llvm_unreachable("Unknown typespec!");
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000461}
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000462
Chris Lattner4d8f8732006-11-28 05:05:08 +0000463bool DeclSpec::SetStorageClassSpec(SCS S, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000464 const char *&PrevSpec,
Peter Collingbournede32b202011-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 Bagnaraed5b6892010-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 }
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000493 StorageClassSpec = S;
Chris Lattner4d8f8732006-11-28 05:05:08 +0000494 StorageClassSpecLoc = Loc;
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000495 assert((unsigned)S == StorageClassSpec && "SCS constants overflow bitfield");
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000496 return false;
497}
498
Mike Stump11289f42009-09-09 15:08:12 +0000499bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000500 const char *&PrevSpec,
501 unsigned &DiagID) {
Chris Lattner353f5742006-11-28 04:50:12 +0000502 if (SCS_thread_specified) {
503 PrevSpec = "__thread";
John McCall49bfce42009-08-03 20:12:06 +0000504 DiagID = diag::ext_duplicate_declspec;
Chris Lattner353f5742006-11-28 04:50:12 +0000505 return true;
506 }
507 SCS_thread_specified = true;
Chris Lattner4d8f8732006-11-28 05:05:08 +0000508 SCS_threadLoc = Loc;
Chris Lattner353f5742006-11-28 04:50:12 +0000509 return false;
510}
511
Chris Lattnerb9093cd2006-08-04 04:39:53 +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).
Chris Lattnerb20e8942006-11-28 05:30:29 +0000515bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000516 const char *&PrevSpec,
517 unsigned &DiagID) {
Chris Lattner353f5742006-11-28 04:50:12 +0000518 if (TypeSpecWidth != TSW_unspecified &&
519 // Allow turning long -> long long.
520 (W != TSW_longlong || TypeSpecWidth != TSW_long))
John McCall49bfce42009-08-03 20:12:06 +0000521 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000522 TypeSpecWidth = W;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000523 TSWLoc = Loc;
Chris Lattner37141f42010-06-23 06:00:24 +0000524 if (TypeAltiVecVector && !TypeAltiVecBool &&
525 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson22334602010-02-05 00:12:22 +0000526 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
527 DiagID = diag::warn_vector_long_decl_spec_combination;
528 return true;
529 }
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000530 return false;
531}
532
Mike Stump11289f42009-09-09 15:08:12 +0000533bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000534 const char *&PrevSpec,
535 unsigned &DiagID) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000536 if (TypeSpecComplex != TSC_unspecified)
John McCall49bfce42009-08-03 20:12:06 +0000537 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000538 TypeSpecComplex = C;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000539 TSCLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000540 return false;
541}
542
Mike Stump11289f42009-09-09 15:08:12 +0000543bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000544 const char *&PrevSpec,
545 unsigned &DiagID) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000546 if (TypeSpecSign != TSS_unspecified)
John McCall49bfce42009-08-03 20:12:06 +0000547 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Chris Lattnerdeb42f52006-08-04 05:26:52 +0000548 TypeSpecSign = S;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000549 TSSLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000550 return false;
551}
552
Chris Lattnerb20e8942006-11-28 05:30:29 +0000553bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000554 const char *&PrevSpec,
555 unsigned &DiagID,
John McCallba7bf592010-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 McCall49bfce42009-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 Lattner37141f42010-06-23 06:00:24 +0000618 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
619 TypeAltiVecBool = true;
620 TSTLoc = Loc;
621 return false;
622 }
Chris Lattnerdeb42f52006-08-04 05:26:52 +0000623 TypeSpecType = T;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000624 TSTLoc = Loc;
John McCallba7bf592010-08-24 05:47:05 +0000625 TypeSpecOwned = false;
Chris Lattner37141f42010-06-23 06:00:24 +0000626 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson22334602010-02-05 00:12:22 +0000627 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner37141f42010-06-23 06:00:24 +0000628 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson22334602010-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 Lattner37141f42010-06-23 06:00:24 +0000648 if (!TypeAltiVecVector || TypeAltiVecPixel ||
649 (TypeSpecType != TST_unspecified)) {
John Thompson22334602010-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 Thompson22334602010-02-05 00:12:22 +0000654 TypeAltiVecPixel = isAltiVecPixel;
655 TSTLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000656 return false;
657}
658
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000659bool DeclSpec::SetTypeSpecError() {
660 TypeSpecType = TST_error;
John McCalla3707cc2010-08-26 17:22:34 +0000661 TypeSpecOwned = false;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000662 TSTLoc = SourceLocation();
663 return false;
664}
665
Chris Lattner60809f52006-11-28 05:18:46 +0000666bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
John McCall49bfce42009-08-03 20:12:06 +0000667 unsigned &DiagID, const LangOptions &Lang) {
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000668 // Duplicates turn into warnings pre-C99.
669 if ((TypeQualifiers & T) && !Lang.C99)
John McCall49bfce42009-08-03 20:12:06 +0000670 return BadSpecifier(T, T, PrevSpec, DiagID);
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000671 TypeQualifiers |= T;
Mike Stump11289f42009-09-09 15:08:12 +0000672
Chris Lattner60809f52006-11-28 05:18:46 +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 }
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000679 return false;
680}
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000681
John McCall49bfce42009-08-03 20:12:06 +0000682bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
683 unsigned &DiagID) {
Chris Lattnera925dc62006-11-28 04:33:46 +0000684 // 'inline inline' is ok.
685 FS_inline_specified = true;
Chris Lattner1b22eed2006-11-28 05:12:07 +0000686 FS_inlineLoc = Loc;
Chris Lattnera925dc62006-11-28 04:33:46 +0000687 return false;
688}
689
John McCall49bfce42009-08-03 20:12:06 +0000690bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
691 unsigned &DiagID) {
Douglas Gregor61956c42008-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 McCall49bfce42009-08-03 20:12:06 +0000698bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
699 unsigned &DiagID) {
Douglas Gregor61956c42008-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 McCall49bfce42009-08-03 20:12:06 +0000706bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
707 unsigned &DiagID) {
Anders Carlssoncd8db412009-05-06 04:46:28 +0000708 if (Friend_specified) {
709 PrevSpec = "friend";
John McCall49bfce42009-08-03 20:12:06 +0000710 DiagID = diag::ext_duplicate_declspec;
Anders Carlssoncd8db412009-05-06 04:46:28 +0000711 return true;
712 }
John McCall49bfce42009-08-03 20:12:06 +0000713
Anders Carlssoncd8db412009-05-06 04:46:28 +0000714 Friend_specified = true;
715 FriendLoc = Loc;
716 return false;
717}
Chris Lattnera925dc62006-11-28 04:33:46 +0000718
Sebastian Redl39c2a8b2009-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 McCall48871652010-08-21 09:40:31 +0000727void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000728 unsigned NP,
729 SourceLocation *ProtoLocs,
730 SourceLocation LAngleLoc) {
731 if (NP == 0) return;
John McCall48871652010-08-21 09:40:31 +0000732 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000733 ProtocolLocs = new SourceLocation[NP];
John McCall48871652010-08-21 09:40:31 +0000734 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000735 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
736 NumProtocolQualifiers = NP;
737 ProtocolLAngleLoc = LAngleLoc;
738}
739
Douglas Gregorc9b7a592010-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 McCall53fa7142010-12-24 02:08:15 +0000746 AttributeList* attrs = getAttributes().getList();
Douglas Gregorc9b7a592010-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 Bagnaraed5b6892010-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
Chris Lattnerb9093cd2006-08-04 04:39:53 +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 Gregore3e01a22009-04-01 22:41:11 +0000769void DeclSpec::Finish(Diagnostic &D, Preprocessor &PP) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000770 // Before possibly changing their values, save specs as written.
771 SaveWrittenBuiltinSpecs();
Douglas Gregorc4df4072010-04-19 22:54:31 +0000772 SaveStorageSpecifierAsWritten();
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000773
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000774 // Check the type specifier components first.
775
Chris Lattner37141f42010-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 Kyrtzidisd0040642010-11-18 20:06:41 +0000781 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-06-23 06:00:24 +0000782 << getSpecifierName((TSS)TypeSpecSign);
783 }
784
785 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sandsd3e231e2010-06-23 19:34:52 +0000786 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
787 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000788 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-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 Kyrtzidisd0040642010-11-18 20:06:41 +0000795 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-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 McCalla3707cc2010-08-26 17:22:34 +0000809 TypeSpecOwned = false;
Chris Lattner37141f42010-06-23 06:00:24 +0000810 }
811 }
812
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000813 // signed/unsigned are only valid with int/char/wchar_t.
Chris Lattner839713c2006-08-04 06:15:52 +0000814 if (TypeSpecSign != TSS_unspecified) {
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000815 if (TypeSpecType == TST_unspecified)
816 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000817 else if (TypeSpecType != TST_int &&
818 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000819 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000820 << getSpecifierName((TST)TypeSpecType);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000821 // signed double -> double.
Chris Lattner839713c2006-08-04 06:15:52 +0000822 TypeSpecSign = TSS_unspecified;
823 }
824 }
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000825
Chris Lattner839713c2006-08-04 06:15:52 +0000826 // 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
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000831 if (TypeSpecType == TST_unspecified)
832 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
833 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000834 Diag(D, TSWLoc,
Chris Lattner36982e42007-05-16 17:49:37 +0000835 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000836 : diag::err_invalid_longlong_spec)
837 << getSpecifierName((TST)TypeSpecType);
Chris Lattner839713c2006-08-04 06:15:52 +0000838 TypeSpecType = TST_int;
John McCalla3707cc2010-08-26 17:22:34 +0000839 TypeSpecOwned = false;
Chris Lattner839713c2006-08-04 06:15:52 +0000840 }
841 break;
842 case TSW_long: // long double, long int
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000843 if (TypeSpecType == TST_unspecified)
844 TypeSpecType = TST_int; // long -> long int.
845 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000846 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000847 << getSpecifierName((TST)TypeSpecType);
Chris Lattner839713c2006-08-04 06:15:52 +0000848 TypeSpecType = TST_int;
John McCalla3707cc2010-08-26 17:22:34 +0000849 TypeSpecOwned = false;
Chris Lattner839713c2006-08-04 06:15:52 +0000850 }
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000851 break;
Chris Lattner839713c2006-08-04 06:15:52 +0000852 }
Mike Stump11289f42009-09-09 15:08:12 +0000853
Chris Lattner0e894622006-08-13 19:58:17 +0000854 // TODO: if the implementation does not implement _Complex or _Imaginary,
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000855 // disallow their use. Need information about the backend.
856 if (TypeSpecComplex != TSC_unspecified) {
857 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000858 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregora771f462010-03-31 17:46:05 +0000859 << FixItHint::CreateInsertion(
Douglas Gregore3e01a22009-04-01 22:41:11 +0000860 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
861 " double");
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000862 TypeSpecType = TST_double; // _Complex -> _Complex double.
863 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000864 // Note that this intentionally doesn't include _Complex _Bool.
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000865 Diag(D, TSTLoc, diag::ext_integer_complex);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000866 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000867 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000868 << getSpecifierName((TST)TypeSpecType);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000869 TypeSpecComplex = TSC_unspecified;
870 }
871 }
Chris Lattner8e90ef62006-08-05 03:30:45 +0000872
John McCall07e91c02009-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 Kyrtzidisd0040642010-11-18 20:06:41 +0000883 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall07e91c02009-08-06 02:15:43 +0000884 << SpecName
Douglas Gregora771f462010-03-31 17:46:05 +0000885 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall07e91c02009-08-06 02:15:43 +0000886
887 ClearStorageClassSpecs();
888 }
889
John McCalla3707cc2010-08-26 17:22:34 +0000890 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
891
Chris Lattner8e90ef62006-08-05 03:30:45 +0000892 // Okay, now we can infer the real type.
Mike Stump11289f42009-09-09 15:08:12 +0000893
Chris Lattner0e894622006-08-13 19:58:17 +0000894 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump11289f42009-09-09 15:08:12 +0000895
Chris Lattner1ae23292006-08-04 06:42:31 +0000896 // 'data definition has no type or storage class'?
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000897}
Daniel Dunbarc74b5cc2008-08-11 03:45:03 +0000898
Sebastian Redla2b5e312008-12-28 15:28:59 +0000899bool DeclSpec::isMissingDeclaratorOk() {
900 TST tst = getTypeSpecType();
John McCallba7bf592010-08-24 05:47:05 +0000901 return isDeclRep(tst) && getRepAsDecl() != 0 &&
902 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla2b5e312008-12-28 15:28:59 +0000903}
Douglas Gregor7861a802009-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 Carlsson56104902011-01-17 03:05:47 +0000929
Anders Carlsson4b63d0e2011-01-22 16:56:46 +0000930bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlssonf2ca3892011-01-22 15:58:16 +0000931 const char *&PrevSpec) {
Anders Carlsson56104902011-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 Carlssonf2ca3892011-01-22 15:58:16 +0000945
Anders Carlsson56104902011-01-17 03:05:47 +0000946 return false;
947}
948
Anders Carlsson4b63d0e2011-01-22 16:56:46 +0000949const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssona6d35012011-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 Carlssonf2ca3892011-01-22 15:58:16 +0000957
Anders Carlsson4b63d0e2011-01-22 16:56:46 +0000958bool ClassVirtSpecifiers::SetSpecifier(Specifier CVS, SourceLocation Loc,
Anders Carlssonf2ca3892011-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 Carlsson4b63d0e2011-01-22 16:56:46 +0000976const char *ClassVirtSpecifiers::getSpecifierName(Specifier CVS) {
Anders Carlssonf2ca3892011-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