blob: 8fdb07029a565b835b0968054fd01ea2d2aefcd1 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declaration specifiers.
11//
12//===----------------------------------------------------------------------===//
13
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency!
15#include "clang/Sema/DeclSpec.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000016#include "clang/Sema/LocInfoType.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/ParsedTemplate.h"
Richard Smith841804b2011-10-17 23:06:20 +000018#include "clang/Sema/SemaDiagnostic.h"
Peter Collingbourneb8b0e752011-10-06 03:01:00 +000019#include "clang/Sema/Sema.h"
Douglas Gregorc34348a2011-02-24 17:54:50 +000020#include "clang/AST/ASTContext.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000021#include "clang/AST/Expr.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000022#include "clang/AST/NestedNameSpecifier.h"
23#include "clang/AST/TypeLoc.h"
Douglas Gregor9b3064b2009-04-01 22:41:11 +000024#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "clang/Basic/LangOptions.h"
Chris Lattner5af2f352009-01-20 19:11:22 +000026#include "llvm/ADT/STLExtras.h"
John McCall32d335e2009-08-03 18:47:27 +000027#include "llvm/Support/ErrorHandling.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000028#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
Chris Lattner254be6a2008-11-22 08:32:36 +000031
David Blaikied6471f72011-09-25 23:23:43 +000032static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000033 unsigned DiagID) {
34 return D.Report(Loc, DiagID);
Chris Lattner254be6a2008-11-22 08:32:36 +000035}
36
Douglas Gregor314b97f2009-11-10 19:49:08 +000037
38void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) {
39 assert(TemplateId && "NULL template-id annotation?");
40 Kind = IK_TemplateId;
41 this->TemplateId = TemplateId;
42 StartLocation = TemplateId->TemplateNameLoc;
43 EndLocation = TemplateId->RAngleLoc;
44}
45
Douglas Gregor0efc2c12010-01-13 17:31:36 +000046void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) {
47 assert(TemplateId && "NULL template-id annotation?");
48 Kind = IK_ConstructorTemplateId;
49 this->TemplateId = TemplateId;
50 StartLocation = TemplateId->TemplateNameLoc;
51 EndLocation = TemplateId->RAngleLoc;
52}
53
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000054void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
55 TypeLoc TL, SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000056 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000057 if (Range.getBegin().isInvalid())
58 Range.setBegin(TL.getBeginLoc());
59 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000060
Douglas Gregor5f791bb2011-02-28 23:58:31 +000061 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000062 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000063}
64
65void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
66 SourceLocation IdentifierLoc,
67 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000068 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
69
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000070 if (Range.getBegin().isInvalid())
71 Range.setBegin(IdentifierLoc);
72 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000073
Douglas Gregor5f791bb2011-02-28 23:58:31 +000074 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000075 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000076}
77
78void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
79 SourceLocation NamespaceLoc,
80 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000081 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
82
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000083 if (Range.getBegin().isInvalid())
84 Range.setBegin(NamespaceLoc);
85 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000086
Douglas Gregor5f791bb2011-02-28 23:58:31 +000087 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000088 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000089}
90
Douglas Gregor14aba762011-02-24 02:36:08 +000091void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
92 SourceLocation AliasLoc,
93 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000094 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
95
Douglas Gregor14aba762011-02-24 02:36:08 +000096 if (Range.getBegin().isInvalid())
97 Range.setBegin(AliasLoc);
98 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000099
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000100 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000101 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor14aba762011-02-24 02:36:08 +0000102}
103
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000104void CXXScopeSpec::MakeGlobal(ASTContext &Context,
105 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000106 Builder.MakeGlobal(Context, ColonColonLoc);
107
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000108 Range = SourceRange(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000109
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000110 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000111 "NestedNameSpecifierLoc range computation incorrect");
112}
113
114void CXXScopeSpec::MakeTrivial(ASTContext &Context,
115 NestedNameSpecifier *Qualifier, SourceRange R) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000116 Builder.MakeTrivial(Context, Qualifier, R);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000117 Range = R;
Douglas Gregorc34348a2011-02-24 17:54:50 +0000118}
119
120void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) {
121 if (!Other) {
122 Range = SourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000123 Builder.Clear();
Douglas Gregorc34348a2011-02-24 17:54:50 +0000124 return;
125 }
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000126
Douglas Gregorc34348a2011-02-24 17:54:50 +0000127 Range = Other.getSourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000128 Builder.Adopt(Other);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000129}
130
John McCall9dc71d22011-07-06 06:57:57 +0000131SourceLocation CXXScopeSpec::getLastQualifierNameLoc() const {
132 if (!Builder.getRepresentation())
133 return SourceLocation();
134 return Builder.getTemporary().getLocalBeginLoc();
135}
136
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000137NestedNameSpecifierLoc
138CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregorb46ae392011-03-03 21:48:55 +0000139 if (!Builder.getRepresentation())
Douglas Gregorc34348a2011-02-24 17:54:50 +0000140 return NestedNameSpecifierLoc();
141
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000142 return Builder.getWithLocInContext(Context);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000143}
144
Chris Lattner5af2f352009-01-20 19:11:22 +0000145/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
146/// "TheDeclarator" is the declarator that this will be added to.
John McCall0b7e6782011-03-24 11:26:52 +0000147DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
Richard Smithb9c62612012-07-30 21:30:52 +0000148 bool isAmbiguous,
Douglas Gregor965acbb2009-02-18 07:07:28 +0000149 SourceLocation EllipsisLoc,
Chris Lattner5af2f352009-01-20 19:11:22 +0000150 ParamInfo *ArgInfo,
151 unsigned NumArgs,
152 unsigned TypeQuals,
Douglas Gregor83f51722011-01-26 03:43:54 +0000153 bool RefQualifierIsLvalueRef,
154 SourceLocation RefQualifierLoc,
Douglas Gregor43f51032011-10-19 06:04:55 +0000155 SourceLocation ConstQualifierLoc,
156 SourceLocation
157 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +0000158 SourceLocation MutableLoc,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000159 ExceptionSpecificationType
160 ESpecType,
161 SourceLocation ESpecLoc,
John McCallb3d87482010-08-24 05:47:05 +0000162 ParsedType *Exceptions,
Sebastian Redlef65f062009-05-29 18:02:33 +0000163 SourceRange *ExceptionRanges,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000164 unsigned NumExceptions,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000165 Expr *NoexceptExpr,
Abramo Bagnara796aa442011-03-12 11:17:06 +0000166 SourceLocation LocalRangeBegin,
167 SourceLocation LocalRangeEnd,
Douglas Gregordab60ad2010-10-01 18:44:50 +0000168 Declarator &TheDeclarator,
Richard Smith54655be2012-06-12 01:51:59 +0000169 TypeResult TrailingReturnType) {
Chris Lattner5af2f352009-01-20 19:11:22 +0000170 DeclaratorChunk I;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000171 I.Kind = Function;
Abramo Bagnara796aa442011-03-12 11:17:06 +0000172 I.Loc = LocalRangeBegin;
173 I.EndLoc = LocalRangeEnd;
John McCall0b7e6782011-03-24 11:26:52 +0000174 I.Fun.AttrList = 0;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000175 I.Fun.hasPrototype = hasProto;
176 I.Fun.isVariadic = isVariadic;
Richard Smithb9c62612012-07-30 21:30:52 +0000177 I.Fun.isAmbiguous = isAmbiguous;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000178 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding();
179 I.Fun.DeleteArgInfo = false;
180 I.Fun.TypeQuals = TypeQuals;
181 I.Fun.NumArgs = NumArgs;
182 I.Fun.ArgInfo = 0;
Douglas Gregor83f51722011-01-26 03:43:54 +0000183 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000184 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Douglas Gregor43f51032011-10-19 06:04:55 +0000185 I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding();
186 I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding();
Douglas Gregor90ebed02011-07-13 21:47:47 +0000187 I.Fun.MutableLoc = MutableLoc.getRawEncoding();
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000188 I.Fun.ExceptionSpecType = ESpecType;
189 I.Fun.ExceptionSpecLoc = ESpecLoc.getRawEncoding();
190 I.Fun.NumExceptions = 0;
191 I.Fun.Exceptions = 0;
192 I.Fun.NoexceptExpr = 0;
Richard Smith54655be2012-06-12 01:51:59 +0000193 I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() ||
194 TrailingReturnType.isInvalid();
195 I.Fun.TrailingReturnType = TrailingReturnType.get();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000196
Chris Lattner5af2f352009-01-20 19:11:22 +0000197 // new[] an argument array if needed.
198 if (NumArgs) {
199 // If the 'InlineParams' in Declarator is unused and big enough, put our
200 // parameter list there (in an effort to avoid new/delete traffic). If it
201 // is already used (consider a function returning a function pointer) or too
202 // small (function taking too many arguments), go to the heap.
Mike Stump1eb44332009-09-09 15:08:12 +0000203 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner5af2f352009-01-20 19:11:22 +0000204 NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) {
205 I.Fun.ArgInfo = TheDeclarator.InlineParams;
206 I.Fun.DeleteArgInfo = false;
207 TheDeclarator.InlineParamsUsed = true;
208 } else {
209 I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs];
210 I.Fun.DeleteArgInfo = true;
211 }
212 memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs);
213 }
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000214
215 // Check what exception specification information we should actually store.
216 switch (ESpecType) {
217 default: break; // By default, save nothing.
218 case EST_Dynamic:
219 // new[] an exception array if needed
220 if (NumExceptions) {
221 I.Fun.NumExceptions = NumExceptions;
222 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
223 for (unsigned i = 0; i != NumExceptions; ++i) {
224 I.Fun.Exceptions[i].Ty = Exceptions[i];
225 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
226 }
Sebastian Redlef65f062009-05-29 18:02:33 +0000227 }
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000228 break;
229
230 case EST_ComputedNoexcept:
231 I.Fun.NoexceptExpr = NoexceptExpr;
232 break;
Sebastian Redl7dc81342009-04-29 17:30:04 +0000233 }
Chris Lattner5af2f352009-01-20 19:11:22 +0000234 return I;
235}
Chris Lattner254be6a2008-11-22 08:32:36 +0000236
Douglas Gregor555f57e2011-06-25 00:56:27 +0000237bool Declarator::isDeclarationOfFunction() const {
Richard Smith1ab0d902011-06-25 02:28:38 +0000238 for (unsigned i = 0, i_end = DeclTypeInfo.size(); i < i_end; ++i) {
239 switch (DeclTypeInfo[i].Kind) {
240 case DeclaratorChunk::Function:
241 return true;
242 case DeclaratorChunk::Paren:
243 continue;
244 case DeclaratorChunk::Pointer:
245 case DeclaratorChunk::Reference:
246 case DeclaratorChunk::Array:
247 case DeclaratorChunk::BlockPointer:
248 case DeclaratorChunk::MemberPointer:
249 return false;
250 }
251 llvm_unreachable("Invalid type chunk");
Richard Smith1ab0d902011-06-25 02:28:38 +0000252 }
Douglas Gregor555f57e2011-06-25 00:56:27 +0000253
254 switch (DS.getTypeSpecType()) {
Eli Friedmanb001de72011-10-06 23:00:33 +0000255 case TST_atomic:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000256 case TST_auto:
257 case TST_bool:
258 case TST_char:
259 case TST_char16:
260 case TST_char32:
261 case TST_class:
262 case TST_decimal128:
263 case TST_decimal32:
264 case TST_decimal64:
265 case TST_double:
266 case TST_enum:
267 case TST_error:
268 case TST_float:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000269 case TST_half:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000270 case TST_int:
Richard Smith5a5a9712012-04-04 06:24:32 +0000271 case TST_int128:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000272 case TST_struct:
273 case TST_union:
274 case TST_unknown_anytype:
275 case TST_unspecified:
276 case TST_void:
277 case TST_wchar:
278 return false;
279
280 case TST_decltype:
281 case TST_typeofExpr:
282 if (Expr *E = DS.getRepAsExpr())
283 return E->getType()->isFunctionType();
284 return false;
285
286 case TST_underlyingType:
287 case TST_typename:
288 case TST_typeofType: {
289 QualType QT = DS.getRepAsType().get();
290 if (QT.isNull())
291 return false;
292
293 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT))
294 QT = LIT->getType();
295
296 if (QT.isNull())
297 return false;
298
299 return QT->isFunctionType();
300 }
301 }
David Blaikie7530c032012-01-17 06:56:22 +0000302
303 llvm_unreachable("Invalid TypeSpecType!");
Douglas Gregor555f57e2011-06-25 00:56:27 +0000304}
305
Reid Spencer5f016e22007-07-11 17:01:13 +0000306/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattner2a327d12009-02-27 18:35:46 +0000307/// declaration specifier includes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000308///
309unsigned DeclSpec::getParsedSpecifiers() const {
310 unsigned Res = 0;
311 if (StorageClassSpec != SCS_unspecified ||
312 SCS_thread_specified)
313 Res |= PQ_StorageClassSpecifier;
Mike Stumpd4204332008-06-19 19:52:46 +0000314
Reid Spencer5f016e22007-07-11 17:01:13 +0000315 if (TypeQualifiers != TQ_unspecified)
316 Res |= PQ_TypeQualifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Reid Spencer5f016e22007-07-11 17:01:13 +0000318 if (hasTypeSpecifier())
319 Res |= PQ_TypeSpecifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Douglas Gregorb48fe382008-10-31 09:07:45 +0000321 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Reid Spencer5f016e22007-07-11 17:01:13 +0000322 Res |= PQ_FunctionSpecifier;
323 return Res;
324}
325
John McCallfec54012009-08-03 20:12:06 +0000326template <class T> static bool BadSpecifier(T TNew, T TPrev,
327 const char *&PrevSpec,
Aaron Ballmanc8286202012-08-28 20:55:40 +0000328 unsigned &DiagID,
329 bool IsExtension = true) {
John McCall32d335e2009-08-03 18:47:27 +0000330 PrevSpec = DeclSpec::getSpecifierName(TPrev);
Aaron Ballmanc8286202012-08-28 20:55:40 +0000331 if (TNew != TPrev)
332 DiagID = diag::err_invalid_decl_spec_combination;
333 else
334 DiagID = IsExtension ? diag::ext_duplicate_declspec :
335 diag::warn_duplicate_declspec;
John McCall32d335e2009-08-03 18:47:27 +0000336 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000337}
John McCall32d335e2009-08-03 18:47:27 +0000338
Reid Spencer5f016e22007-07-11 17:01:13 +0000339const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
340 switch (S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000341 case DeclSpec::SCS_unspecified: return "unspecified";
342 case DeclSpec::SCS_typedef: return "typedef";
343 case DeclSpec::SCS_extern: return "extern";
344 case DeclSpec::SCS_static: return "static";
345 case DeclSpec::SCS_auto: return "auto";
346 case DeclSpec::SCS_register: return "register";
Eli Friedman63054b32009-04-19 20:27:55 +0000347 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redl669d5d72008-11-14 23:42:31 +0000348 case DeclSpec::SCS_mutable: return "mutable";
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000350 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000351}
352
John McCall32d335e2009-08-03 18:47:27 +0000353const char *DeclSpec::getSpecifierName(TSW W) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 switch (W) {
John McCall32d335e2009-08-03 18:47:27 +0000355 case TSW_unspecified: return "unspecified";
356 case TSW_short: return "short";
357 case TSW_long: return "long";
358 case TSW_longlong: return "long long";
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000360 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000361}
362
John McCall32d335e2009-08-03 18:47:27 +0000363const char *DeclSpec::getSpecifierName(TSC C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000364 switch (C) {
John McCall32d335e2009-08-03 18:47:27 +0000365 case TSC_unspecified: return "unspecified";
366 case TSC_imaginary: return "imaginary";
367 case TSC_complex: return "complex";
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000369 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000370}
371
372
John McCall32d335e2009-08-03 18:47:27 +0000373const char *DeclSpec::getSpecifierName(TSS S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 switch (S) {
John McCall32d335e2009-08-03 18:47:27 +0000375 case TSS_unspecified: return "unspecified";
376 case TSS_signed: return "signed";
377 case TSS_unsigned: return "unsigned";
Reid Spencer5f016e22007-07-11 17:01:13 +0000378 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000379 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000380}
381
382const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
383 switch (T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 case DeclSpec::TST_unspecified: return "unspecified";
385 case DeclSpec::TST_void: return "void";
386 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000387 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000388 case DeclSpec::TST_char16: return "char16_t";
389 case DeclSpec::TST_char32: return "char32_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000390 case DeclSpec::TST_int: return "int";
Richard Smith5a5a9712012-04-04 06:24:32 +0000391 case DeclSpec::TST_int128: return "__int128";
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000392 case DeclSpec::TST_half: return "half";
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 case DeclSpec::TST_float: return "float";
394 case DeclSpec::TST_double: return "double";
395 case DeclSpec::TST_bool: return "_Bool";
396 case DeclSpec::TST_decimal32: return "_Decimal32";
397 case DeclSpec::TST_decimal64: return "_Decimal64";
398 case DeclSpec::TST_decimal128: return "_Decimal128";
399 case DeclSpec::TST_enum: return "enum";
Chris Lattner99dc9142008-04-13 18:59:07 +0000400 case DeclSpec::TST_class: return "class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 case DeclSpec::TST_union: return "union";
402 case DeclSpec::TST_struct: return "struct";
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000403 case DeclSpec::TST_typename: return "type-name";
Steve Naroffd1861fd2007-07-31 12:34:36 +0000404 case DeclSpec::TST_typeofType:
405 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall32d335e2009-08-03 18:47:27 +0000406 case DeclSpec::TST_auto: return "auto";
407 case DeclSpec::TST_decltype: return "(decltype)";
Sean Huntca63c202011-05-24 22:41:36 +0000408 case DeclSpec::TST_underlyingType: return "__underlying_type";
John McCalla5fc4722011-04-09 22:50:59 +0000409 case DeclSpec::TST_unknown_anytype: return "__unknown_anytype";
Eli Friedmanb001de72011-10-06 23:00:33 +0000410 case DeclSpec::TST_atomic: return "_Atomic";
John McCall32d335e2009-08-03 18:47:27 +0000411 case DeclSpec::TST_error: return "(error)";
Reid Spencer5f016e22007-07-11 17:01:13 +0000412 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000413 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000414}
415
John McCall32d335e2009-08-03 18:47:27 +0000416const char *DeclSpec::getSpecifierName(TQ T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000417 switch (T) {
John McCall32d335e2009-08-03 18:47:27 +0000418 case DeclSpec::TQ_unspecified: return "unspecified";
419 case DeclSpec::TQ_const: return "const";
420 case DeclSpec::TQ_restrict: return "restrict";
421 case DeclSpec::TQ_volatile: return "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +0000422 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000423 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000424}
425
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000426bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000427 const char *&PrevSpec,
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000428 unsigned &DiagID) {
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000429 // OpenCL v1.1 s6.8g: "The extern, static, auto and register storage-class
430 // specifiers are not supported.
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000431 // It seems sensible to prohibit private_extern too
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000432 // The cl_clang_storage_class_specifiers extension enables support for
433 // these storage-class specifiers.
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000434 // OpenCL v1.2 s6.8 changes this to "The auto and register storage-class
435 // specifiers are not supported."
David Blaikie4e4d0842012-03-11 07:00:24 +0000436 if (S.getLangOpts().OpenCL &&
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000437 !S.getOpenCLOptions().cl_clang_storage_class_specifiers) {
438 switch (SC) {
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000439 case SCS_extern:
440 case SCS_private_extern:
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000441 case SCS_static:
442 if (S.getLangOpts().OpenCLVersion < 120) {
443 DiagID = diag::err_not_opencl_storage_class_specifier;
444 PrevSpec = getSpecifierName(SC);
445 return true;
446 }
447 break;
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000448 case SCS_auto:
449 case SCS_register:
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000450 DiagID = diag::err_not_opencl_storage_class_specifier;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000451 PrevSpec = getSpecifierName(SC);
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000452 return true;
453 default:
454 break;
455 }
456 }
457
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000458 if (StorageClassSpec != SCS_unspecified) {
Richard Smith8f4fb192011-09-04 19:54:14 +0000459 // Maybe this is an attempt to use C++0x 'auto' outside of C++0x mode.
460 bool isInvalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000461 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000462 if (SC == SCS_auto)
Richard Smith8f4fb192011-09-04 19:54:14 +0000463 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID);
464 if (StorageClassSpec == SCS_auto) {
465 isInvalid = SetTypeSpecType(TST_auto, StorageClassSpecLoc,
466 PrevSpec, DiagID);
467 assert(!isInvalid && "auto SCS -> TST recovery failed");
468 }
469 }
470
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000471 // Changing storage class is allowed only if the previous one
472 // was the 'extern' that is part of a linkage specification and
473 // the new storage class is 'typedef'.
Richard Smith8f4fb192011-09-04 19:54:14 +0000474 if (isInvalid &&
475 !(SCS_extern_in_linkage_spec &&
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000476 StorageClassSpec == SCS_extern &&
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000477 SC == SCS_typedef))
478 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000479 }
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000480 StorageClassSpec = SC;
Reid Spencer5f016e22007-07-11 17:01:13 +0000481 StorageClassSpecLoc = Loc;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000482 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 return false;
484}
485
Mike Stump1eb44332009-09-09 15:08:12 +0000486bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000487 const char *&PrevSpec,
488 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000489 if (SCS_thread_specified) {
490 PrevSpec = "__thread";
John McCallfec54012009-08-03 20:12:06 +0000491 DiagID = diag::ext_duplicate_declspec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 return true;
493 }
494 SCS_thread_specified = true;
495 SCS_threadLoc = Loc;
496 return false;
497}
498
Reid Spencer5f016e22007-07-11 17:01:13 +0000499/// These methods set the specified attribute of the DeclSpec, but return true
500/// and ignore the request if invalid (e.g. "extern" then "auto" is
501/// specified).
502bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000503 const char *&PrevSpec,
504 unsigned &DiagID) {
Abramo Bagnara2553eaf2011-03-06 22:21:56 +0000505 // Overwrite TSWLoc only if TypeSpecWidth was unspecified, so that
506 // for 'long long' we will keep the source location of the first 'long'.
507 if (TypeSpecWidth == TSW_unspecified)
508 TSWLoc = Loc;
509 // Allow turning long -> long long.
510 else if (W != TSW_longlong || TypeSpecWidth != TSW_long)
John McCallfec54012009-08-03 20:12:06 +0000511 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000512 TypeSpecWidth = W;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000513 if (TypeAltiVecVector && !TypeAltiVecBool &&
514 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson82287d12010-02-05 00:12:22 +0000515 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
516 DiagID = diag::warn_vector_long_decl_spec_combination;
517 return true;
518 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000519 return false;
520}
521
Mike Stump1eb44332009-09-09 15:08:12 +0000522bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000523 const char *&PrevSpec,
524 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000525 if (TypeSpecComplex != TSC_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000526 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000527 TypeSpecComplex = C;
528 TSCLoc = Loc;
529 return false;
530}
531
Mike Stump1eb44332009-09-09 15:08:12 +0000532bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000533 const char *&PrevSpec,
534 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000535 if (TypeSpecSign != TSS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000536 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000537 TypeSpecSign = S;
538 TSSLoc = Loc;
539 return false;
540}
541
542bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000543 const char *&PrevSpec,
544 unsigned &DiagID,
John McCallb3d87482010-08-24 05:47:05 +0000545 ParsedType Rep) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000546 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep);
547}
548
549bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
550 SourceLocation TagNameLoc,
551 const char *&PrevSpec,
552 unsigned &DiagID,
553 ParsedType Rep) {
John McCallb3d87482010-08-24 05:47:05 +0000554 assert(isTypeRep(T) && "T does not store a type");
555 assert(Rep && "no type provided!");
556 if (TypeSpecType != TST_unspecified) {
557 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
558 DiagID = diag::err_invalid_decl_spec_combination;
559 return true;
560 }
561 TypeSpecType = T;
562 TypeRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000563 TSTLoc = TagKwLoc;
564 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000565 TypeSpecOwned = false;
566 return false;
567}
568
569bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
570 const char *&PrevSpec,
571 unsigned &DiagID,
572 Expr *Rep) {
573 assert(isExprRep(T) && "T does not store an expr");
574 assert(Rep && "no expression provided!");
575 if (TypeSpecType != TST_unspecified) {
576 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
577 DiagID = diag::err_invalid_decl_spec_combination;
578 return true;
579 }
580 TypeSpecType = T;
581 ExprRep = Rep;
582 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000583 TSTNameLoc = Loc;
John McCallb3d87482010-08-24 05:47:05 +0000584 TypeSpecOwned = false;
585 return false;
586}
587
588bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
589 const char *&PrevSpec,
590 unsigned &DiagID,
591 Decl *Rep, bool Owned) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000592 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned);
593}
594
595bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
596 SourceLocation TagNameLoc,
597 const char *&PrevSpec,
598 unsigned &DiagID,
599 Decl *Rep, bool Owned) {
John McCallb3d87482010-08-24 05:47:05 +0000600 assert(isDeclRep(T) && "T does not store a decl");
601 // Unlike the other cases, we don't assert that we actually get a decl.
602
603 if (TypeSpecType != TST_unspecified) {
604 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
605 DiagID = diag::err_invalid_decl_spec_combination;
606 return true;
607 }
608 TypeSpecType = T;
609 DeclRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000610 TSTLoc = TagKwLoc;
611 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000612 TypeSpecOwned = Owned;
613 return false;
614}
615
616bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
617 const char *&PrevSpec,
618 unsigned &DiagID) {
619 assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) &&
620 "rep required for these type-spec kinds!");
John McCallfec54012009-08-03 20:12:06 +0000621 if (TypeSpecType != TST_unspecified) {
622 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
623 DiagID = diag::err_invalid_decl_spec_combination;
624 return true;
625 }
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000626 TSTLoc = Loc;
627 TSTNameLoc = Loc;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000628 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
629 TypeAltiVecBool = true;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000630 return false;
631 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000632 TypeSpecType = T;
John McCallb3d87482010-08-24 05:47:05 +0000633 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000634 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson82287d12010-02-05 00:12:22 +0000635 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner788b0fd2010-06-23 06:00:24 +0000636 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson82287d12010-02-05 00:12:22 +0000637 return true;
638 }
639 return false;
640}
641
642bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
643 const char *&PrevSpec, unsigned &DiagID) {
644 if (TypeSpecType != TST_unspecified) {
645 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
646 DiagID = diag::err_invalid_vector_decl_spec_combination;
647 return true;
648 }
649 TypeAltiVecVector = isAltiVecVector;
650 AltiVecLoc = Loc;
651 return false;
652}
653
654bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
655 const char *&PrevSpec, unsigned &DiagID) {
Chris Lattner788b0fd2010-06-23 06:00:24 +0000656 if (!TypeAltiVecVector || TypeAltiVecPixel ||
657 (TypeSpecType != TST_unspecified)) {
John Thompson82287d12010-02-05 00:12:22 +0000658 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
659 DiagID = diag::err_invalid_pixel_decl_spec_combination;
660 return true;
661 }
John Thompson82287d12010-02-05 00:12:22 +0000662 TypeAltiVecPixel = isAltiVecPixel;
663 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000664 TSTNameLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 return false;
666}
667
Douglas Gregorddc29e12009-02-06 22:42:48 +0000668bool DeclSpec::SetTypeSpecError() {
669 TypeSpecType = TST_error;
John McCall9e46b8c2010-08-26 17:22:34 +0000670 TypeSpecOwned = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000671 TSTLoc = SourceLocation();
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000672 TSTNameLoc = SourceLocation();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000673 return false;
674}
675
Reid Spencer5f016e22007-07-11 17:01:13 +0000676bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
Richard Smith42926a02012-07-24 20:24:58 +0000677 unsigned &DiagID, const LangOptions &Lang,
678 bool IsTypeSpec) {
679 // Duplicates are permitted in C99, and are permitted in C++11 unless the
Aaron Ballmanc8286202012-08-28 20:55:40 +0000680 // cv-qualifier appears as a type-specifier. However, since this is likely
681 // not what the user intended, we will always warn. We do not need to set the
682 // qualifier's location since we already have it.
683 if (TypeQualifiers & T) {
Aaron Ballmana14f4002012-08-29 12:35:14 +0000684 bool IsExtension = true;
Aaron Ballmanc8286202012-08-28 20:55:40 +0000685 if (Lang.C99 || (Lang.CPlusPlus0x && !IsTypeSpec))
Aaron Ballmana14f4002012-08-29 12:35:14 +0000686 IsExtension = false;
Aaron Ballmanc8286202012-08-28 20:55:40 +0000687 return BadSpecifier(T, T, PrevSpec, DiagID, IsExtension);
688 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000689 TypeQualifiers |= T;
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 switch (T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000692 default: llvm_unreachable("Unknown type qualifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000693 case TQ_const: TQ_constLoc = Loc; break;
694 case TQ_restrict: TQ_restrictLoc = Loc; break;
695 case TQ_volatile: TQ_volatileLoc = Loc; break;
696 }
697 return false;
698}
699
John McCallfec54012009-08-03 20:12:06 +0000700bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
701 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000702 // 'inline inline' is ok.
703 FS_inline_specified = true;
704 FS_inlineLoc = Loc;
705 return false;
706}
707
John McCallfec54012009-08-03 20:12:06 +0000708bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
709 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000710 // 'virtual virtual' is ok.
711 FS_virtual_specified = true;
712 FS_virtualLoc = Loc;
713 return false;
714}
715
John McCallfec54012009-08-03 20:12:06 +0000716bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
717 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000718 // 'explicit explicit' is ok.
719 FS_explicit_specified = true;
720 FS_explicitLoc = Loc;
721 return false;
722}
723
John McCallfec54012009-08-03 20:12:06 +0000724bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
725 unsigned &DiagID) {
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000726 if (Friend_specified) {
727 PrevSpec = "friend";
John McCallfec54012009-08-03 20:12:06 +0000728 DiagID = diag::ext_duplicate_declspec;
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000729 return true;
730 }
John McCallfec54012009-08-03 20:12:06 +0000731
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000732 Friend_specified = true;
733 FriendLoc = Loc;
734 return false;
735}
Reid Spencer5f016e22007-07-11 17:01:13 +0000736
Douglas Gregor8d267c52011-09-09 02:06:17 +0000737bool DeclSpec::setModulePrivateSpec(SourceLocation Loc, const char *&PrevSpec,
738 unsigned &DiagID) {
739 if (isModulePrivateSpecified()) {
740 PrevSpec = "__module_private__";
741 DiagID = diag::ext_duplicate_declspec;
742 return true;
743 }
744
745 ModulePrivateLoc = Loc;
746 return false;
747}
748
Sebastian Redl2ac67232009-11-05 15:47:02 +0000749bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
750 unsigned &DiagID) {
751 // 'constexpr constexpr' is ok.
752 Constexpr_specified = true;
753 ConstexprLoc = Loc;
754 return false;
755}
756
John McCalld226f652010-08-21 09:40:31 +0000757void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000758 unsigned NP,
759 SourceLocation *ProtoLocs,
760 SourceLocation LAngleLoc) {
761 if (NP == 0) return;
John McCalld226f652010-08-21 09:40:31 +0000762 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000763 ProtocolLocs = new SourceLocation[NP];
John McCalld226f652010-08-21 09:40:31 +0000764 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000765 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
766 NumProtocolQualifiers = NP;
767 ProtocolLAngleLoc = LAngleLoc;
768}
769
Douglas Gregorddf889a2010-01-18 18:04:31 +0000770void DeclSpec::SaveWrittenBuiltinSpecs() {
771 writtenBS.Sign = getTypeSpecSign();
772 writtenBS.Width = getTypeSpecWidth();
773 writtenBS.Type = getTypeSpecType();
774 // Search the list of attributes for the presence of a mode attribute.
775 writtenBS.ModeAttr = false;
John McCall7f040a92010-12-24 02:08:15 +0000776 AttributeList* attrs = getAttributes().getList();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000777 while (attrs) {
Sean Hunt8e083e72012-06-19 23:57:03 +0000778 if (attrs->getKind() == AttributeList::AT_Mode) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000779 writtenBS.ModeAttr = true;
780 break;
781 }
782 attrs = attrs->getNext();
783 }
784}
785
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000786void DeclSpec::SaveStorageSpecifierAsWritten() {
787 if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
788 // If 'extern' is part of a linkage specification,
789 // then it is not a storage class "as written".
790 StorageClassSpecAsWritten = SCS_unspecified;
791 else
792 StorageClassSpecAsWritten = StorageClassSpec;
793}
794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795/// Finish - This does final analysis of the declspec, rejecting things like
796/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
797/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
798/// DeclSpec is guaranteed self-consistent, even if an error occurred.
David Blaikied6471f72011-09-25 23:23:43 +0000799void DeclSpec::Finish(DiagnosticsEngine &D, Preprocessor &PP) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000800 // Before possibly changing their values, save specs as written.
801 SaveWrittenBuiltinSpecs();
Douglas Gregor16573fa2010-04-19 22:54:31 +0000802 SaveStorageSpecifierAsWritten();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000803
Reid Spencer5f016e22007-07-11 17:01:13 +0000804 // Check the type specifier components first.
805
Chris Lattner788b0fd2010-06-23 06:00:24 +0000806 // Validate and finalize AltiVec vector declspec.
807 if (TypeAltiVecVector) {
808 if (TypeAltiVecBool) {
809 // Sign specifiers are not allowed with vector bool. (PIM 2.1)
810 if (TypeSpecSign != TSS_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000811 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000812 << getSpecifierName((TSS)TypeSpecSign);
813 }
814
815 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sands2e964a922010-06-23 19:34:52 +0000816 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
817 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000818 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000819 << (TypeAltiVecPixel ? "__pixel" :
820 getSpecifierName((TST)TypeSpecType));
821 }
822
823 // Only 'short' is valid with vector bool. (PIM 2.1)
824 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000825 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000826 << getSpecifierName((TSW)TypeSpecWidth);
827
828 // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
829 if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
830 (TypeSpecWidth != TSW_unspecified))
831 TypeSpecSign = TSS_unsigned;
832 }
833
834 if (TypeAltiVecPixel) {
835 //TODO: perform validation
836 TypeSpecType = TST_int;
837 TypeSpecSign = TSS_unsigned;
838 TypeSpecWidth = TSW_short;
John McCall9e46b8c2010-08-26 17:22:34 +0000839 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000840 }
841 }
842
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000843 // signed/unsigned are only valid with int/char/wchar_t.
Reid Spencer5f016e22007-07-11 17:01:13 +0000844 if (TypeSpecSign != TSS_unspecified) {
845 if (TypeSpecType == TST_unspecified)
846 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Richard Smith5a5a9712012-04-04 06:24:32 +0000847 else if (TypeSpecType != TST_int && TypeSpecType != TST_int128 &&
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000848 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000849 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000850 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000851 // signed double -> double.
852 TypeSpecSign = TSS_unspecified;
853 }
854 }
855
856 // Validate the width of the type.
857 switch (TypeSpecWidth) {
858 case TSW_unspecified: break;
859 case TSW_short: // short int
860 case TSW_longlong: // long long int
861 if (TypeSpecType == TST_unspecified)
862 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
863 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000864 Diag(D, TSWLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000865 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner254be6a2008-11-22 08:32:36 +0000866 : diag::err_invalid_longlong_spec)
867 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000868 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000869 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000870 }
871 break;
872 case TSW_long: // long double, long int
873 if (TypeSpecType == TST_unspecified)
874 TypeSpecType = TST_int; // long -> long int.
875 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000876 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000877 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000879 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000880 }
881 break;
882 }
Mike Stump1eb44332009-09-09 15:08:12 +0000883
Reid Spencer5f016e22007-07-11 17:01:13 +0000884 // TODO: if the implementation does not implement _Complex or _Imaginary,
885 // disallow their use. Need information about the backend.
886 if (TypeSpecComplex != TSC_unspecified) {
887 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000888 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregor849b2432010-03-31 17:46:05 +0000889 << FixItHint::CreateInsertion(
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000890 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
891 " double");
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 TypeSpecType = TST_double; // _Complex -> _Complex double.
893 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
894 // Note that this intentionally doesn't include _Complex _Bool.
David Blaikie4e4d0842012-03-11 07:00:24 +0000895 if (!PP.getLangOpts().CPlusPlus)
Eli Friedman7ead5c72012-01-10 04:58:17 +0000896 Diag(D, TSTLoc, diag::ext_integer_complex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000897 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000898 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000899 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000900 TypeSpecComplex = TSC_unspecified;
901 }
902 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000903
Richard Smith8f4fb192011-09-04 19:54:14 +0000904 // If no type specifier was provided and we're parsing a language where
905 // the type specifier is not optional, but we got 'auto' as a storage
906 // class specifier, then assume this is an attempt to use C++0x's 'auto'
907 // type specifier.
908 // FIXME: Does Microsoft really support implicit int in C++?
David Blaikie4e4d0842012-03-11 07:00:24 +0000909 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().MicrosoftExt &&
Richard Smith8f4fb192011-09-04 19:54:14 +0000910 TypeSpecType == TST_unspecified && StorageClassSpec == SCS_auto) {
911 TypeSpecType = TST_auto;
912 StorageClassSpec = StorageClassSpecAsWritten = SCS_unspecified;
913 TSTLoc = TSTNameLoc = StorageClassSpecLoc;
914 StorageClassSpecLoc = SourceLocation();
915 }
916 // Diagnose if we've recovered from an ill-formed 'auto' storage class
917 // specifier in a pre-C++0x dialect of C++.
David Blaikie4e4d0842012-03-11 07:00:24 +0000918 if (!PP.getLangOpts().CPlusPlus0x && TypeSpecType == TST_auto)
Richard Smith8f4fb192011-09-04 19:54:14 +0000919 Diag(D, TSTLoc, diag::ext_auto_type_specifier);
David Blaikie4e4d0842012-03-11 07:00:24 +0000920 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().CPlusPlus0x &&
Richard Smith8f4fb192011-09-04 19:54:14 +0000921 StorageClassSpec == SCS_auto)
922 Diag(D, StorageClassSpecLoc, diag::warn_auto_storage_class)
923 << FixItHint::CreateRemoval(StorageClassSpecLoc);
Richard Smith841804b2011-10-17 23:06:20 +0000924 if (TypeSpecType == TST_char16 || TypeSpecType == TST_char32)
925 Diag(D, TSTLoc, diag::warn_cxx98_compat_unicode_type)
926 << (TypeSpecType == TST_char16 ? "char16_t" : "char32_t");
Richard Smith841804b2011-10-17 23:06:20 +0000927 if (Constexpr_specified)
928 Diag(D, ConstexprLoc, diag::warn_cxx98_compat_constexpr);
Richard Smith8f4fb192011-09-04 19:54:14 +0000929
John McCall67d1a672009-08-06 02:15:43 +0000930 // C++ [class.friend]p6:
931 // No storage-class-specifier shall appear in the decl-specifier-seq
932 // of a friend declaration.
933 if (isFriendSpecified() && getStorageClassSpec()) {
934 DeclSpec::SCS SC = getStorageClassSpec();
935 const char *SpecName = getSpecifierName(SC);
936
937 SourceLocation SCLoc = getStorageClassSpecLoc();
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000938 SourceLocation SCEndLoc = SCLoc.getLocWithOffset(strlen(SpecName));
John McCall67d1a672009-08-06 02:15:43 +0000939
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000940 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall67d1a672009-08-06 02:15:43 +0000941 << SpecName
Douglas Gregor849b2432010-03-31 17:46:05 +0000942 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall67d1a672009-08-06 02:15:43 +0000943
944 ClearStorageClassSpecs();
945 }
946
Douglas Gregor6274d302011-09-09 21:14:29 +0000947 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
948
Reid Spencer5f016e22007-07-11 17:01:13 +0000949 // Okay, now we can infer the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000950
Reid Spencer5f016e22007-07-11 17:01:13 +0000951 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Reid Spencer5f016e22007-07-11 17:01:13 +0000953 // 'data definition has no type or storage class'?
954}
Daniel Dunbare4858a62008-08-11 03:45:03 +0000955
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000956bool DeclSpec::isMissingDeclaratorOk() {
957 TST tst = getTypeSpecType();
John McCallb3d87482010-08-24 05:47:05 +0000958 return isDeclRep(tst) && getRepAsDecl() != 0 &&
959 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000960}
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000961
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000962void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc,
963 OverloadedOperatorKind Op,
964 SourceLocation SymbolLocations[3]) {
965 Kind = IK_OperatorFunctionId;
966 StartLocation = OperatorLoc;
967 EndLocation = OperatorLoc;
968 OperatorFunctionId.Operator = Op;
969 for (unsigned I = 0; I != 3; ++I) {
970 OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding();
971
972 if (SymbolLocations[I].isValid())
973 EndLocation = SymbolLocations[I];
974 }
975}
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000976
Anders Carlssoncc54d592011-01-22 16:56:46 +0000977bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlsson46127a92011-01-22 15:58:16 +0000978 const char *&PrevSpec) {
Douglas Gregorf5251602011-03-08 17:10:18 +0000979 LastLocation = Loc;
980
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000981 if (Specifiers & VS) {
982 PrevSpec = getSpecifierName(VS);
983 return true;
984 }
985
986 Specifiers |= VS;
987
988 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000989 default: llvm_unreachable("Unknown specifier!");
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000990 case VS_Override: VS_overrideLoc = Loc; break;
991 case VS_Final: VS_finalLoc = Loc; break;
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000992 }
Anders Carlsson46127a92011-01-22 15:58:16 +0000993
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000994 return false;
995}
996
Anders Carlssoncc54d592011-01-22 16:56:46 +0000997const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000998 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000999 default: llvm_unreachable("Unknown specifier");
Anders Carlssonc46bb7d2011-01-22 15:11:37 +00001000 case VS_Override: return "override";
1001 case VS_Final: return "final";
Anders Carlssonc46bb7d2011-01-22 15:11:37 +00001002 }
1003}