blob: 3cce8cb44493f6b6e4237ca28c830c0ead819723 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declaration specifiers.
11//
12//===----------------------------------------------------------------------===//
13
John McCall19510852010-08-20 18:27:03 +000014#include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency!
15#include "clang/Sema/DeclSpec.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000016#include "clang/Sema/LocInfoType.h"
John McCall19510852010-08-20 18:27:03 +000017#include "clang/Sema/ParsedTemplate.h"
Richard Smith841804b2011-10-17 23:06:20 +000018#include "clang/Sema/SemaDiagnostic.h"
Peter Collingbourneb8b0e752011-10-06 03:01:00 +000019#include "clang/Sema/Sema.h"
Douglas Gregorc34348a2011-02-24 17:54:50 +000020#include "clang/AST/ASTContext.h"
Douglas Gregor555f57e2011-06-25 00:56:27 +000021#include "clang/AST/Expr.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000022#include "clang/AST/NestedNameSpecifier.h"
23#include "clang/AST/TypeLoc.h"
Douglas Gregor9b3064b2009-04-01 22:41:11 +000024#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025#include "clang/Basic/LangOptions.h"
Chris Lattner5af2f352009-01-20 19:11:22 +000026#include "llvm/ADT/STLExtras.h"
John McCall32d335e2009-08-03 18:47:27 +000027#include "llvm/Support/ErrorHandling.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000028#include <cstring>
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
30
Chris Lattner254be6a2008-11-22 08:32:36 +000031
David Blaikied6471f72011-09-25 23:23:43 +000032static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc,
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +000033 unsigned DiagID) {
34 return D.Report(Loc, DiagID);
Chris Lattner254be6a2008-11-22 08:32:36 +000035}
36
Douglas Gregor314b97f2009-11-10 19:49:08 +000037
38void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) {
39 assert(TemplateId && "NULL template-id annotation?");
40 Kind = IK_TemplateId;
41 this->TemplateId = TemplateId;
42 StartLocation = TemplateId->TemplateNameLoc;
43 EndLocation = TemplateId->RAngleLoc;
44}
45
Douglas Gregor0efc2c12010-01-13 17:31:36 +000046void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) {
47 assert(TemplateId && "NULL template-id annotation?");
48 Kind = IK_ConstructorTemplateId;
49 this->TemplateId = TemplateId;
50 StartLocation = TemplateId->TemplateNameLoc;
51 EndLocation = TemplateId->RAngleLoc;
52}
53
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000054void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
55 TypeLoc TL, SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000056 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000057 if (Range.getBegin().isInvalid())
58 Range.setBegin(TL.getBeginLoc());
59 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000060
Douglas Gregor5f791bb2011-02-28 23:58:31 +000061 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000062 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000063}
64
65void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
66 SourceLocation IdentifierLoc,
67 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000068 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
69
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000070 if (Range.getBegin().isInvalid())
71 Range.setBegin(IdentifierLoc);
72 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000073
Douglas Gregor5f791bb2011-02-28 23:58:31 +000074 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000075 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000076}
77
78void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
79 SourceLocation NamespaceLoc,
80 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000081 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
82
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000083 if (Range.getBegin().isInvalid())
84 Range.setBegin(NamespaceLoc);
85 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000086
Douglas Gregor5f791bb2011-02-28 23:58:31 +000087 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +000088 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000089}
90
Douglas Gregor14aba762011-02-24 02:36:08 +000091void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
92 SourceLocation AliasLoc,
93 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +000094 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
95
Douglas Gregor14aba762011-02-24 02:36:08 +000096 if (Range.getBegin().isInvalid())
97 Range.setBegin(AliasLoc);
98 Range.setEnd(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +000099
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000100 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000101 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor14aba762011-02-24 02:36:08 +0000102}
103
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000104void CXXScopeSpec::MakeGlobal(ASTContext &Context,
105 SourceLocation ColonColonLoc) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000106 Builder.MakeGlobal(Context, ColonColonLoc);
107
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000108 Range = SourceRange(ColonColonLoc);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000109
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000110 assert(Range == Builder.getSourceRange() &&
Douglas Gregorc34348a2011-02-24 17:54:50 +0000111 "NestedNameSpecifierLoc range computation incorrect");
112}
113
114void CXXScopeSpec::MakeTrivial(ASTContext &Context,
115 NestedNameSpecifier *Qualifier, SourceRange R) {
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000116 Builder.MakeTrivial(Context, Qualifier, R);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000117 Range = R;
Douglas Gregorc34348a2011-02-24 17:54:50 +0000118}
119
120void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) {
121 if (!Other) {
122 Range = SourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000123 Builder.Clear();
Douglas Gregorc34348a2011-02-24 17:54:50 +0000124 return;
125 }
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000126
Douglas Gregorc34348a2011-02-24 17:54:50 +0000127 Range = Other.getSourceRange();
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000128 Builder.Adopt(Other);
Douglas Gregorc34348a2011-02-24 17:54:50 +0000129}
130
John McCall9dc71d22011-07-06 06:57:57 +0000131SourceLocation CXXScopeSpec::getLastQualifierNameLoc() const {
132 if (!Builder.getRepresentation())
133 return SourceLocation();
134 return Builder.getTemporary().getLocalBeginLoc();
135}
136
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000137NestedNameSpecifierLoc
138CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregorb46ae392011-03-03 21:48:55 +0000139 if (!Builder.getRepresentation())
Douglas Gregorc34348a2011-02-24 17:54:50 +0000140 return NestedNameSpecifierLoc();
141
Douglas Gregor5f791bb2011-02-28 23:58:31 +0000142 return Builder.getWithLocInContext(Context);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000143}
144
Chris Lattner5af2f352009-01-20 19:11:22 +0000145/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
146/// "TheDeclarator" is the declarator that this will be added to.
John McCall0b7e6782011-03-24 11:26:52 +0000147DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
Douglas Gregor965acbb2009-02-18 07:07:28 +0000148 SourceLocation EllipsisLoc,
Chris Lattner5af2f352009-01-20 19:11:22 +0000149 ParamInfo *ArgInfo,
150 unsigned NumArgs,
151 unsigned TypeQuals,
Douglas Gregor83f51722011-01-26 03:43:54 +0000152 bool RefQualifierIsLvalueRef,
153 SourceLocation RefQualifierLoc,
Douglas Gregor43f51032011-10-19 06:04:55 +0000154 SourceLocation ConstQualifierLoc,
155 SourceLocation
156 VolatileQualifierLoc,
Douglas Gregor90ebed02011-07-13 21:47:47 +0000157 SourceLocation MutableLoc,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000158 ExceptionSpecificationType
159 ESpecType,
160 SourceLocation ESpecLoc,
John McCallb3d87482010-08-24 05:47:05 +0000161 ParsedType *Exceptions,
Sebastian Redlef65f062009-05-29 18:02:33 +0000162 SourceRange *ExceptionRanges,
Sebastian Redl7dc81342009-04-29 17:30:04 +0000163 unsigned NumExceptions,
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000164 Expr *NoexceptExpr,
Abramo Bagnara796aa442011-03-12 11:17:06 +0000165 SourceLocation LocalRangeBegin,
166 SourceLocation LocalRangeEnd,
Douglas Gregordab60ad2010-10-01 18:44:50 +0000167 Declarator &TheDeclarator,
Richard Smith54655be2012-06-12 01:51:59 +0000168 TypeResult TrailingReturnType) {
Chris Lattner5af2f352009-01-20 19:11:22 +0000169 DeclaratorChunk I;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000170 I.Kind = Function;
Abramo Bagnara796aa442011-03-12 11:17:06 +0000171 I.Loc = LocalRangeBegin;
172 I.EndLoc = LocalRangeEnd;
John McCall0b7e6782011-03-24 11:26:52 +0000173 I.Fun.AttrList = 0;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000174 I.Fun.hasPrototype = hasProto;
175 I.Fun.isVariadic = isVariadic;
176 I.Fun.EllipsisLoc = EllipsisLoc.getRawEncoding();
177 I.Fun.DeleteArgInfo = false;
178 I.Fun.TypeQuals = TypeQuals;
179 I.Fun.NumArgs = NumArgs;
180 I.Fun.ArgInfo = 0;
Douglas Gregor83f51722011-01-26 03:43:54 +0000181 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000182 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Douglas Gregor43f51032011-10-19 06:04:55 +0000183 I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding();
184 I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding();
Douglas Gregor90ebed02011-07-13 21:47:47 +0000185 I.Fun.MutableLoc = MutableLoc.getRawEncoding();
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000186 I.Fun.ExceptionSpecType = ESpecType;
187 I.Fun.ExceptionSpecLoc = ESpecLoc.getRawEncoding();
188 I.Fun.NumExceptions = 0;
189 I.Fun.Exceptions = 0;
190 I.Fun.NoexceptExpr = 0;
Richard Smith54655be2012-06-12 01:51:59 +0000191 I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() ||
192 TrailingReturnType.isInvalid();
193 I.Fun.TrailingReturnType = TrailingReturnType.get();
Sebastian Redl7dc81342009-04-29 17:30:04 +0000194
Chris Lattner5af2f352009-01-20 19:11:22 +0000195 // new[] an argument array if needed.
196 if (NumArgs) {
197 // If the 'InlineParams' in Declarator is unused and big enough, put our
198 // parameter list there (in an effort to avoid new/delete traffic). If it
199 // is already used (consider a function returning a function pointer) or too
200 // small (function taking too many arguments), go to the heap.
Mike Stump1eb44332009-09-09 15:08:12 +0000201 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner5af2f352009-01-20 19:11:22 +0000202 NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) {
203 I.Fun.ArgInfo = TheDeclarator.InlineParams;
204 I.Fun.DeleteArgInfo = false;
205 TheDeclarator.InlineParamsUsed = true;
206 } else {
207 I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs];
208 I.Fun.DeleteArgInfo = true;
209 }
210 memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs);
211 }
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000212
213 // Check what exception specification information we should actually store.
214 switch (ESpecType) {
215 default: break; // By default, save nothing.
216 case EST_Dynamic:
217 // new[] an exception array if needed
218 if (NumExceptions) {
219 I.Fun.NumExceptions = NumExceptions;
220 I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
221 for (unsigned i = 0; i != NumExceptions; ++i) {
222 I.Fun.Exceptions[i].Ty = Exceptions[i];
223 I.Fun.Exceptions[i].Range = ExceptionRanges[i];
224 }
Sebastian Redlef65f062009-05-29 18:02:33 +0000225 }
Sebastian Redl6e5d3192011-03-05 22:42:13 +0000226 break;
227
228 case EST_ComputedNoexcept:
229 I.Fun.NoexceptExpr = NoexceptExpr;
230 break;
Sebastian Redl7dc81342009-04-29 17:30:04 +0000231 }
Chris Lattner5af2f352009-01-20 19:11:22 +0000232 return I;
233}
Chris Lattner254be6a2008-11-22 08:32:36 +0000234
Douglas Gregor555f57e2011-06-25 00:56:27 +0000235bool Declarator::isDeclarationOfFunction() const {
Richard Smith1ab0d902011-06-25 02:28:38 +0000236 for (unsigned i = 0, i_end = DeclTypeInfo.size(); i < i_end; ++i) {
237 switch (DeclTypeInfo[i].Kind) {
238 case DeclaratorChunk::Function:
239 return true;
240 case DeclaratorChunk::Paren:
241 continue;
242 case DeclaratorChunk::Pointer:
243 case DeclaratorChunk::Reference:
244 case DeclaratorChunk::Array:
245 case DeclaratorChunk::BlockPointer:
246 case DeclaratorChunk::MemberPointer:
247 return false;
248 }
249 llvm_unreachable("Invalid type chunk");
Richard Smith1ab0d902011-06-25 02:28:38 +0000250 }
Douglas Gregor555f57e2011-06-25 00:56:27 +0000251
252 switch (DS.getTypeSpecType()) {
Eli Friedmanb001de72011-10-06 23:00:33 +0000253 case TST_atomic:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000254 case TST_auto:
255 case TST_bool:
256 case TST_char:
257 case TST_char16:
258 case TST_char32:
259 case TST_class:
260 case TST_decimal128:
261 case TST_decimal32:
262 case TST_decimal64:
263 case TST_double:
264 case TST_enum:
265 case TST_error:
266 case TST_float:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000267 case TST_half:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000268 case TST_int:
Richard Smith5a5a9712012-04-04 06:24:32 +0000269 case TST_int128:
Douglas Gregor555f57e2011-06-25 00:56:27 +0000270 case TST_struct:
271 case TST_union:
272 case TST_unknown_anytype:
273 case TST_unspecified:
274 case TST_void:
275 case TST_wchar:
276 return false;
277
278 case TST_decltype:
279 case TST_typeofExpr:
280 if (Expr *E = DS.getRepAsExpr())
281 return E->getType()->isFunctionType();
282 return false;
283
284 case TST_underlyingType:
285 case TST_typename:
286 case TST_typeofType: {
287 QualType QT = DS.getRepAsType().get();
288 if (QT.isNull())
289 return false;
290
291 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT))
292 QT = LIT->getType();
293
294 if (QT.isNull())
295 return false;
296
297 return QT->isFunctionType();
298 }
299 }
David Blaikie7530c032012-01-17 06:56:22 +0000300
301 llvm_unreachable("Invalid TypeSpecType!");
Douglas Gregor555f57e2011-06-25 00:56:27 +0000302}
303
Reid Spencer5f016e22007-07-11 17:01:13 +0000304/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattner2a327d12009-02-27 18:35:46 +0000305/// declaration specifier includes.
Reid Spencer5f016e22007-07-11 17:01:13 +0000306///
307unsigned DeclSpec::getParsedSpecifiers() const {
308 unsigned Res = 0;
309 if (StorageClassSpec != SCS_unspecified ||
310 SCS_thread_specified)
311 Res |= PQ_StorageClassSpecifier;
Mike Stumpd4204332008-06-19 19:52:46 +0000312
Reid Spencer5f016e22007-07-11 17:01:13 +0000313 if (TypeQualifiers != TQ_unspecified)
314 Res |= PQ_TypeQualifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000315
Reid Spencer5f016e22007-07-11 17:01:13 +0000316 if (hasTypeSpecifier())
317 Res |= PQ_TypeSpecifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000318
Douglas Gregorb48fe382008-10-31 09:07:45 +0000319 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 Res |= PQ_FunctionSpecifier;
321 return Res;
322}
323
John McCallfec54012009-08-03 20:12:06 +0000324template <class T> static bool BadSpecifier(T TNew, T TPrev,
325 const char *&PrevSpec,
326 unsigned &DiagID) {
John McCall32d335e2009-08-03 18:47:27 +0000327 PrevSpec = DeclSpec::getSpecifierName(TPrev);
John McCallfec54012009-08-03 20:12:06 +0000328 DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
329 : diag::err_invalid_decl_spec_combination);
John McCall32d335e2009-08-03 18:47:27 +0000330 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000331}
John McCall32d335e2009-08-03 18:47:27 +0000332
Reid Spencer5f016e22007-07-11 17:01:13 +0000333const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
334 switch (S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000335 case DeclSpec::SCS_unspecified: return "unspecified";
336 case DeclSpec::SCS_typedef: return "typedef";
337 case DeclSpec::SCS_extern: return "extern";
338 case DeclSpec::SCS_static: return "static";
339 case DeclSpec::SCS_auto: return "auto";
340 case DeclSpec::SCS_register: return "register";
Eli Friedman63054b32009-04-19 20:27:55 +0000341 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redl669d5d72008-11-14 23:42:31 +0000342 case DeclSpec::SCS_mutable: return "mutable";
Reid Spencer5f016e22007-07-11 17:01:13 +0000343 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000344 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000345}
346
John McCall32d335e2009-08-03 18:47:27 +0000347const char *DeclSpec::getSpecifierName(TSW W) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000348 switch (W) {
John McCall32d335e2009-08-03 18:47:27 +0000349 case TSW_unspecified: return "unspecified";
350 case TSW_short: return "short";
351 case TSW_long: return "long";
352 case TSW_longlong: return "long long";
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000354 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000355}
356
John McCall32d335e2009-08-03 18:47:27 +0000357const char *DeclSpec::getSpecifierName(TSC C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000358 switch (C) {
John McCall32d335e2009-08-03 18:47:27 +0000359 case TSC_unspecified: return "unspecified";
360 case TSC_imaginary: return "imaginary";
361 case TSC_complex: return "complex";
Reid Spencer5f016e22007-07-11 17:01:13 +0000362 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000363 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000364}
365
366
John McCall32d335e2009-08-03 18:47:27 +0000367const char *DeclSpec::getSpecifierName(TSS S) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000368 switch (S) {
John McCall32d335e2009-08-03 18:47:27 +0000369 case TSS_unspecified: return "unspecified";
370 case TSS_signed: return "signed";
371 case TSS_unsigned: return "unsigned";
Reid Spencer5f016e22007-07-11 17:01:13 +0000372 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000373 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000374}
375
376const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
377 switch (T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000378 case DeclSpec::TST_unspecified: return "unspecified";
379 case DeclSpec::TST_void: return "void";
380 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000381 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Meredithf5c209d2009-07-14 06:30:34 +0000382 case DeclSpec::TST_char16: return "char16_t";
383 case DeclSpec::TST_char32: return "char32_t";
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 case DeclSpec::TST_int: return "int";
Richard Smith5a5a9712012-04-04 06:24:32 +0000385 case DeclSpec::TST_int128: return "__int128";
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000386 case DeclSpec::TST_half: return "half";
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 case DeclSpec::TST_float: return "float";
388 case DeclSpec::TST_double: return "double";
389 case DeclSpec::TST_bool: return "_Bool";
390 case DeclSpec::TST_decimal32: return "_Decimal32";
391 case DeclSpec::TST_decimal64: return "_Decimal64";
392 case DeclSpec::TST_decimal128: return "_Decimal128";
393 case DeclSpec::TST_enum: return "enum";
Chris Lattner99dc9142008-04-13 18:59:07 +0000394 case DeclSpec::TST_class: return "class";
Reid Spencer5f016e22007-07-11 17:01:13 +0000395 case DeclSpec::TST_union: return "union";
396 case DeclSpec::TST_struct: return "struct";
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000397 case DeclSpec::TST_typename: return "type-name";
Steve Naroffd1861fd2007-07-31 12:34:36 +0000398 case DeclSpec::TST_typeofType:
399 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall32d335e2009-08-03 18:47:27 +0000400 case DeclSpec::TST_auto: return "auto";
401 case DeclSpec::TST_decltype: return "(decltype)";
Sean Huntca63c202011-05-24 22:41:36 +0000402 case DeclSpec::TST_underlyingType: return "__underlying_type";
John McCalla5fc4722011-04-09 22:50:59 +0000403 case DeclSpec::TST_unknown_anytype: return "__unknown_anytype";
Eli Friedmanb001de72011-10-06 23:00:33 +0000404 case DeclSpec::TST_atomic: return "_Atomic";
John McCall32d335e2009-08-03 18:47:27 +0000405 case DeclSpec::TST_error: return "(error)";
Reid Spencer5f016e22007-07-11 17:01:13 +0000406 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000407 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000408}
409
John McCall32d335e2009-08-03 18:47:27 +0000410const char *DeclSpec::getSpecifierName(TQ T) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000411 switch (T) {
John McCall32d335e2009-08-03 18:47:27 +0000412 case DeclSpec::TQ_unspecified: return "unspecified";
413 case DeclSpec::TQ_const: return "const";
414 case DeclSpec::TQ_restrict: return "restrict";
415 case DeclSpec::TQ_volatile: return "volatile";
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000417 llvm_unreachable("Unknown typespec!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000418}
419
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000420bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000421 const char *&PrevSpec,
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000422 unsigned &DiagID) {
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000423 // OpenCL v1.1 s6.8g: "The extern, static, auto and register storage-class
424 // specifiers are not supported.
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000425 // It seems sensible to prohibit private_extern too
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000426 // The cl_clang_storage_class_specifiers extension enables support for
427 // these storage-class specifiers.
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000428 // OpenCL v1.2 s6.8 changes this to "The auto and register storage-class
429 // specifiers are not supported."
David Blaikie4e4d0842012-03-11 07:00:24 +0000430 if (S.getLangOpts().OpenCL &&
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000431 !S.getOpenCLOptions().cl_clang_storage_class_specifiers) {
432 switch (SC) {
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000433 case SCS_extern:
434 case SCS_private_extern:
Tanya Lattner5e94d6f2012-06-19 23:09:52 +0000435 case SCS_static:
436 if (S.getLangOpts().OpenCLVersion < 120) {
437 DiagID = diag::err_not_opencl_storage_class_specifier;
438 PrevSpec = getSpecifierName(SC);
439 return true;
440 }
441 break;
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000442 case SCS_auto:
443 case SCS_register:
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000444 DiagID = diag::err_not_opencl_storage_class_specifier;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000445 PrevSpec = getSpecifierName(SC);
Peter Collingbournee2f82f72011-02-11 19:59:54 +0000446 return true;
447 default:
448 break;
449 }
450 }
451
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000452 if (StorageClassSpec != SCS_unspecified) {
Richard Smith8f4fb192011-09-04 19:54:14 +0000453 // Maybe this is an attempt to use C++0x 'auto' outside of C++0x mode.
454 bool isInvalid = true;
David Blaikie4e4d0842012-03-11 07:00:24 +0000455 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000456 if (SC == SCS_auto)
Richard Smith8f4fb192011-09-04 19:54:14 +0000457 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID);
458 if (StorageClassSpec == SCS_auto) {
459 isInvalid = SetTypeSpecType(TST_auto, StorageClassSpecLoc,
460 PrevSpec, DiagID);
461 assert(!isInvalid && "auto SCS -> TST recovery failed");
462 }
463 }
464
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000465 // Changing storage class is allowed only if the previous one
466 // was the 'extern' that is part of a linkage specification and
467 // the new storage class is 'typedef'.
Richard Smith8f4fb192011-09-04 19:54:14 +0000468 if (isInvalid &&
469 !(SCS_extern_in_linkage_spec &&
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000470 StorageClassSpec == SCS_extern &&
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000471 SC == SCS_typedef))
472 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000473 }
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000474 StorageClassSpec = SC;
Reid Spencer5f016e22007-07-11 17:01:13 +0000475 StorageClassSpecLoc = Loc;
Peter Collingbourneb8b0e752011-10-06 03:01:00 +0000476 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
Reid Spencer5f016e22007-07-11 17:01:13 +0000477 return false;
478}
479
Mike Stump1eb44332009-09-09 15:08:12 +0000480bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000481 const char *&PrevSpec,
482 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000483 if (SCS_thread_specified) {
484 PrevSpec = "__thread";
John McCallfec54012009-08-03 20:12:06 +0000485 DiagID = diag::ext_duplicate_declspec;
Reid Spencer5f016e22007-07-11 17:01:13 +0000486 return true;
487 }
488 SCS_thread_specified = true;
489 SCS_threadLoc = Loc;
490 return false;
491}
492
Reid Spencer5f016e22007-07-11 17:01:13 +0000493/// These methods set the specified attribute of the DeclSpec, but return true
494/// and ignore the request if invalid (e.g. "extern" then "auto" is
495/// specified).
496bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000497 const char *&PrevSpec,
498 unsigned &DiagID) {
Abramo Bagnara2553eaf2011-03-06 22:21:56 +0000499 // Overwrite TSWLoc only if TypeSpecWidth was unspecified, so that
500 // for 'long long' we will keep the source location of the first 'long'.
501 if (TypeSpecWidth == TSW_unspecified)
502 TSWLoc = Loc;
503 // Allow turning long -> long long.
504 else if (W != TSW_longlong || TypeSpecWidth != TSW_long)
John McCallfec54012009-08-03 20:12:06 +0000505 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000506 TypeSpecWidth = W;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000507 if (TypeAltiVecVector && !TypeAltiVecBool &&
508 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson82287d12010-02-05 00:12:22 +0000509 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
510 DiagID = diag::warn_vector_long_decl_spec_combination;
511 return true;
512 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000513 return false;
514}
515
Mike Stump1eb44332009-09-09 15:08:12 +0000516bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000517 const char *&PrevSpec,
518 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000519 if (TypeSpecComplex != TSC_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000520 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000521 TypeSpecComplex = C;
522 TSCLoc = Loc;
523 return false;
524}
525
Mike Stump1eb44332009-09-09 15:08:12 +0000526bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000527 const char *&PrevSpec,
528 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000529 if (TypeSpecSign != TSS_unspecified)
John McCallfec54012009-08-03 20:12:06 +0000530 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000531 TypeSpecSign = S;
532 TSSLoc = Loc;
533 return false;
534}
535
536bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCallfec54012009-08-03 20:12:06 +0000537 const char *&PrevSpec,
538 unsigned &DiagID,
John McCallb3d87482010-08-24 05:47:05 +0000539 ParsedType Rep) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000540 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep);
541}
542
543bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
544 SourceLocation TagNameLoc,
545 const char *&PrevSpec,
546 unsigned &DiagID,
547 ParsedType Rep) {
John McCallb3d87482010-08-24 05:47:05 +0000548 assert(isTypeRep(T) && "T does not store a type");
549 assert(Rep && "no type provided!");
550 if (TypeSpecType != TST_unspecified) {
551 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
552 DiagID = diag::err_invalid_decl_spec_combination;
553 return true;
554 }
555 TypeSpecType = T;
556 TypeRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000557 TSTLoc = TagKwLoc;
558 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000559 TypeSpecOwned = false;
560 return false;
561}
562
563bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
564 const char *&PrevSpec,
565 unsigned &DiagID,
566 Expr *Rep) {
567 assert(isExprRep(T) && "T does not store an expr");
568 assert(Rep && "no expression provided!");
569 if (TypeSpecType != TST_unspecified) {
570 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
571 DiagID = diag::err_invalid_decl_spec_combination;
572 return true;
573 }
574 TypeSpecType = T;
575 ExprRep = Rep;
576 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000577 TSTNameLoc = Loc;
John McCallb3d87482010-08-24 05:47:05 +0000578 TypeSpecOwned = false;
579 return false;
580}
581
582bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
583 const char *&PrevSpec,
584 unsigned &DiagID,
585 Decl *Rep, bool Owned) {
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000586 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned);
587}
588
589bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
590 SourceLocation TagNameLoc,
591 const char *&PrevSpec,
592 unsigned &DiagID,
593 Decl *Rep, bool Owned) {
John McCallb3d87482010-08-24 05:47:05 +0000594 assert(isDeclRep(T) && "T does not store a decl");
595 // Unlike the other cases, we don't assert that we actually get a decl.
596
597 if (TypeSpecType != TST_unspecified) {
598 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
599 DiagID = diag::err_invalid_decl_spec_combination;
600 return true;
601 }
602 TypeSpecType = T;
603 DeclRep = Rep;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000604 TSTLoc = TagKwLoc;
605 TSTNameLoc = TagNameLoc;
John McCallb3d87482010-08-24 05:47:05 +0000606 TypeSpecOwned = Owned;
607 return false;
608}
609
610bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
611 const char *&PrevSpec,
612 unsigned &DiagID) {
613 assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) &&
614 "rep required for these type-spec kinds!");
John McCallfec54012009-08-03 20:12:06 +0000615 if (TypeSpecType != TST_unspecified) {
616 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
617 DiagID = diag::err_invalid_decl_spec_combination;
618 return true;
619 }
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000620 TSTLoc = Loc;
621 TSTNameLoc = Loc;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000622 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
623 TypeAltiVecBool = true;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000624 return false;
625 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000626 TypeSpecType = T;
John McCallb3d87482010-08-24 05:47:05 +0000627 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000628 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson82287d12010-02-05 00:12:22 +0000629 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner788b0fd2010-06-23 06:00:24 +0000630 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson82287d12010-02-05 00:12:22 +0000631 return true;
632 }
633 return false;
634}
635
636bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
637 const char *&PrevSpec, unsigned &DiagID) {
638 if (TypeSpecType != TST_unspecified) {
639 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
640 DiagID = diag::err_invalid_vector_decl_spec_combination;
641 return true;
642 }
643 TypeAltiVecVector = isAltiVecVector;
644 AltiVecLoc = Loc;
645 return false;
646}
647
648bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
649 const char *&PrevSpec, unsigned &DiagID) {
Chris Lattner788b0fd2010-06-23 06:00:24 +0000650 if (!TypeAltiVecVector || TypeAltiVecPixel ||
651 (TypeSpecType != TST_unspecified)) {
John Thompson82287d12010-02-05 00:12:22 +0000652 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
653 DiagID = diag::err_invalid_pixel_decl_spec_combination;
654 return true;
655 }
John Thompson82287d12010-02-05 00:12:22 +0000656 TypeAltiVecPixel = isAltiVecPixel;
657 TSTLoc = Loc;
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000658 TSTNameLoc = Loc;
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 return false;
660}
661
Douglas Gregorddc29e12009-02-06 22:42:48 +0000662bool DeclSpec::SetTypeSpecError() {
663 TypeSpecType = TST_error;
John McCall9e46b8c2010-08-26 17:22:34 +0000664 TypeSpecOwned = false;
Douglas Gregorddc29e12009-02-06 22:42:48 +0000665 TSTLoc = SourceLocation();
Abramo Bagnara0daaf322011-03-16 20:16:18 +0000666 TSTNameLoc = SourceLocation();
Douglas Gregorddc29e12009-02-06 22:42:48 +0000667 return false;
668}
669
Reid Spencer5f016e22007-07-11 17:01:13 +0000670bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
John McCallfec54012009-08-03 20:12:06 +0000671 unsigned &DiagID, const LangOptions &Lang) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000672 // Duplicates turn into warnings pre-C99.
673 if ((TypeQualifiers & T) && !Lang.C99)
John McCallfec54012009-08-03 20:12:06 +0000674 return BadSpecifier(T, T, PrevSpec, DiagID);
Reid Spencer5f016e22007-07-11 17:01:13 +0000675 TypeQualifiers |= T;
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Reid Spencer5f016e22007-07-11 17:01:13 +0000677 switch (T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000678 default: llvm_unreachable("Unknown type qualifier!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000679 case TQ_const: TQ_constLoc = Loc; break;
680 case TQ_restrict: TQ_restrictLoc = Loc; break;
681 case TQ_volatile: TQ_volatileLoc = Loc; break;
682 }
683 return false;
684}
685
John McCallfec54012009-08-03 20:12:06 +0000686bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
687 unsigned &DiagID) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000688 // 'inline inline' is ok.
689 FS_inline_specified = true;
690 FS_inlineLoc = Loc;
691 return false;
692}
693
John McCallfec54012009-08-03 20:12:06 +0000694bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
695 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000696 // 'virtual virtual' is ok.
697 FS_virtual_specified = true;
698 FS_virtualLoc = Loc;
699 return false;
700}
701
John McCallfec54012009-08-03 20:12:06 +0000702bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
703 unsigned &DiagID) {
Douglas Gregorb48fe382008-10-31 09:07:45 +0000704 // 'explicit explicit' is ok.
705 FS_explicit_specified = true;
706 FS_explicitLoc = Loc;
707 return false;
708}
709
John McCallfec54012009-08-03 20:12:06 +0000710bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
711 unsigned &DiagID) {
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000712 if (Friend_specified) {
713 PrevSpec = "friend";
John McCallfec54012009-08-03 20:12:06 +0000714 DiagID = diag::ext_duplicate_declspec;
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000715 return true;
716 }
John McCallfec54012009-08-03 20:12:06 +0000717
Anders Carlssonf47f7a12009-05-06 04:46:28 +0000718 Friend_specified = true;
719 FriendLoc = Loc;
720 return false;
721}
Reid Spencer5f016e22007-07-11 17:01:13 +0000722
Douglas Gregor8d267c52011-09-09 02:06:17 +0000723bool DeclSpec::setModulePrivateSpec(SourceLocation Loc, const char *&PrevSpec,
724 unsigned &DiagID) {
725 if (isModulePrivateSpecified()) {
726 PrevSpec = "__module_private__";
727 DiagID = diag::ext_duplicate_declspec;
728 return true;
729 }
730
731 ModulePrivateLoc = Loc;
732 return false;
733}
734
Sebastian Redl2ac67232009-11-05 15:47:02 +0000735bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
736 unsigned &DiagID) {
737 // 'constexpr constexpr' is ok.
738 Constexpr_specified = true;
739 ConstexprLoc = Loc;
740 return false;
741}
742
John McCalld226f652010-08-21 09:40:31 +0000743void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000744 unsigned NP,
745 SourceLocation *ProtoLocs,
746 SourceLocation LAngleLoc) {
747 if (NP == 0) return;
John McCalld226f652010-08-21 09:40:31 +0000748 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000749 ProtocolLocs = new SourceLocation[NP];
John McCalld226f652010-08-21 09:40:31 +0000750 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidise3a535b2009-09-29 19:42:11 +0000751 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
752 NumProtocolQualifiers = NP;
753 ProtocolLAngleLoc = LAngleLoc;
754}
755
Douglas Gregorddf889a2010-01-18 18:04:31 +0000756void DeclSpec::SaveWrittenBuiltinSpecs() {
757 writtenBS.Sign = getTypeSpecSign();
758 writtenBS.Width = getTypeSpecWidth();
759 writtenBS.Type = getTypeSpecType();
760 // Search the list of attributes for the presence of a mode attribute.
761 writtenBS.ModeAttr = false;
John McCall7f040a92010-12-24 02:08:15 +0000762 AttributeList* attrs = getAttributes().getList();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000763 while (attrs) {
Sean Hunt8e083e72012-06-19 23:57:03 +0000764 if (attrs->getKind() == AttributeList::AT_Mode) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000765 writtenBS.ModeAttr = true;
766 break;
767 }
768 attrs = attrs->getNext();
769 }
770}
771
Abramo Bagnara35f9a192010-07-30 16:47:02 +0000772void DeclSpec::SaveStorageSpecifierAsWritten() {
773 if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
774 // If 'extern' is part of a linkage specification,
775 // then it is not a storage class "as written".
776 StorageClassSpecAsWritten = SCS_unspecified;
777 else
778 StorageClassSpecAsWritten = StorageClassSpec;
779}
780
Reid Spencer5f016e22007-07-11 17:01:13 +0000781/// Finish - This does final analysis of the declspec, rejecting things like
782/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
783/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
784/// DeclSpec is guaranteed self-consistent, even if an error occurred.
David Blaikied6471f72011-09-25 23:23:43 +0000785void DeclSpec::Finish(DiagnosticsEngine &D, Preprocessor &PP) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000786 // Before possibly changing their values, save specs as written.
787 SaveWrittenBuiltinSpecs();
Douglas Gregor16573fa2010-04-19 22:54:31 +0000788 SaveStorageSpecifierAsWritten();
Douglas Gregorddf889a2010-01-18 18:04:31 +0000789
Reid Spencer5f016e22007-07-11 17:01:13 +0000790 // Check the type specifier components first.
791
Chris Lattner788b0fd2010-06-23 06:00:24 +0000792 // Validate and finalize AltiVec vector declspec.
793 if (TypeAltiVecVector) {
794 if (TypeAltiVecBool) {
795 // Sign specifiers are not allowed with vector bool. (PIM 2.1)
796 if (TypeSpecSign != TSS_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000797 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000798 << getSpecifierName((TSS)TypeSpecSign);
799 }
800
801 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sands2e964a922010-06-23 19:34:52 +0000802 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
803 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000804 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000805 << (TypeAltiVecPixel ? "__pixel" :
806 getSpecifierName((TST)TypeSpecType));
807 }
808
809 // Only 'short' is valid with vector bool. (PIM 2.1)
810 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000811 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner788b0fd2010-06-23 06:00:24 +0000812 << getSpecifierName((TSW)TypeSpecWidth);
813
814 // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
815 if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
816 (TypeSpecWidth != TSW_unspecified))
817 TypeSpecSign = TSS_unsigned;
818 }
819
820 if (TypeAltiVecPixel) {
821 //TODO: perform validation
822 TypeSpecType = TST_int;
823 TypeSpecSign = TSS_unsigned;
824 TypeSpecWidth = TSW_short;
John McCall9e46b8c2010-08-26 17:22:34 +0000825 TypeSpecOwned = false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000826 }
827 }
828
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000829 // signed/unsigned are only valid with int/char/wchar_t.
Reid Spencer5f016e22007-07-11 17:01:13 +0000830 if (TypeSpecSign != TSS_unspecified) {
831 if (TypeSpecType == TST_unspecified)
832 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Richard Smith5a5a9712012-04-04 06:24:32 +0000833 else if (TypeSpecType != TST_int && TypeSpecType != TST_int128 &&
Argyrios Kyrtzidis64c438a2008-08-09 16:51:54 +0000834 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000835 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000836 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000837 // signed double -> double.
838 TypeSpecSign = TSS_unspecified;
839 }
840 }
841
842 // Validate the width of the type.
843 switch (TypeSpecWidth) {
844 case TSW_unspecified: break;
845 case TSW_short: // short int
846 case TSW_longlong: // long long int
847 if (TypeSpecType == TST_unspecified)
848 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
849 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000850 Diag(D, TSWLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000851 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner254be6a2008-11-22 08:32:36 +0000852 : diag::err_invalid_longlong_spec)
853 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000855 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000856 }
857 break;
858 case TSW_long: // long double, long int
859 if (TypeSpecType == TST_unspecified)
860 TypeSpecType = TST_int; // long -> long int.
861 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000862 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000863 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000864 TypeSpecType = TST_int;
John McCall9e46b8c2010-08-26 17:22:34 +0000865 TypeSpecOwned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000866 }
867 break;
868 }
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870 // TODO: if the implementation does not implement _Complex or _Imaginary,
871 // disallow their use. Need information about the backend.
872 if (TypeSpecComplex != TSC_unspecified) {
873 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000874 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregor849b2432010-03-31 17:46:05 +0000875 << FixItHint::CreateInsertion(
Douglas Gregor9b3064b2009-04-01 22:41:11 +0000876 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
877 " double");
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 TypeSpecType = TST_double; // _Complex -> _Complex double.
879 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
880 // Note that this intentionally doesn't include _Complex _Bool.
David Blaikie4e4d0842012-03-11 07:00:24 +0000881 if (!PP.getLangOpts().CPlusPlus)
Eli Friedman7ead5c72012-01-10 04:58:17 +0000882 Diag(D, TSTLoc, diag::ext_integer_complex);
Reid Spencer5f016e22007-07-11 17:01:13 +0000883 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000884 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner254be6a2008-11-22 08:32:36 +0000885 << getSpecifierName((TST)TypeSpecType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000886 TypeSpecComplex = TSC_unspecified;
887 }
888 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000889
Richard Smith8f4fb192011-09-04 19:54:14 +0000890 // If no type specifier was provided and we're parsing a language where
891 // the type specifier is not optional, but we got 'auto' as a storage
892 // class specifier, then assume this is an attempt to use C++0x's 'auto'
893 // type specifier.
894 // FIXME: Does Microsoft really support implicit int in C++?
David Blaikie4e4d0842012-03-11 07:00:24 +0000895 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().MicrosoftExt &&
Richard Smith8f4fb192011-09-04 19:54:14 +0000896 TypeSpecType == TST_unspecified && StorageClassSpec == SCS_auto) {
897 TypeSpecType = TST_auto;
898 StorageClassSpec = StorageClassSpecAsWritten = SCS_unspecified;
899 TSTLoc = TSTNameLoc = StorageClassSpecLoc;
900 StorageClassSpecLoc = SourceLocation();
901 }
902 // Diagnose if we've recovered from an ill-formed 'auto' storage class
903 // specifier in a pre-C++0x dialect of C++.
David Blaikie4e4d0842012-03-11 07:00:24 +0000904 if (!PP.getLangOpts().CPlusPlus0x && TypeSpecType == TST_auto)
Richard Smith8f4fb192011-09-04 19:54:14 +0000905 Diag(D, TSTLoc, diag::ext_auto_type_specifier);
David Blaikie4e4d0842012-03-11 07:00:24 +0000906 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().CPlusPlus0x &&
Richard Smith8f4fb192011-09-04 19:54:14 +0000907 StorageClassSpec == SCS_auto)
908 Diag(D, StorageClassSpecLoc, diag::warn_auto_storage_class)
909 << FixItHint::CreateRemoval(StorageClassSpecLoc);
Richard Smith841804b2011-10-17 23:06:20 +0000910 if (TypeSpecType == TST_char16 || TypeSpecType == TST_char32)
911 Diag(D, TSTLoc, diag::warn_cxx98_compat_unicode_type)
912 << (TypeSpecType == TST_char16 ? "char16_t" : "char32_t");
Richard Smith841804b2011-10-17 23:06:20 +0000913 if (Constexpr_specified)
914 Diag(D, ConstexprLoc, diag::warn_cxx98_compat_constexpr);
Richard Smith8f4fb192011-09-04 19:54:14 +0000915
John McCall67d1a672009-08-06 02:15:43 +0000916 // C++ [class.friend]p6:
917 // No storage-class-specifier shall appear in the decl-specifier-seq
918 // of a friend declaration.
919 if (isFriendSpecified() && getStorageClassSpec()) {
920 DeclSpec::SCS SC = getStorageClassSpec();
921 const char *SpecName = getSpecifierName(SC);
922
923 SourceLocation SCLoc = getStorageClassSpecLoc();
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000924 SourceLocation SCEndLoc = SCLoc.getLocWithOffset(strlen(SpecName));
John McCall67d1a672009-08-06 02:15:43 +0000925
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000926 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall67d1a672009-08-06 02:15:43 +0000927 << SpecName
Douglas Gregor849b2432010-03-31 17:46:05 +0000928 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall67d1a672009-08-06 02:15:43 +0000929
930 ClearStorageClassSpecs();
931 }
932
Douglas Gregor6274d302011-09-09 21:14:29 +0000933 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
934
Reid Spencer5f016e22007-07-11 17:01:13 +0000935 // Okay, now we can infer the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Reid Spencer5f016e22007-07-11 17:01:13 +0000937 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump1eb44332009-09-09 15:08:12 +0000938
Reid Spencer5f016e22007-07-11 17:01:13 +0000939 // 'data definition has no type or storage class'?
940}
Daniel Dunbare4858a62008-08-11 03:45:03 +0000941
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000942bool DeclSpec::isMissingDeclaratorOk() {
943 TST tst = getTypeSpecType();
John McCallb3d87482010-08-24 05:47:05 +0000944 return isDeclRep(tst) && getRepAsDecl() != 0 &&
945 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla4ed0d82008-12-28 15:28:59 +0000946}
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000947
Douglas Gregor3f9a0562009-11-03 01:35:08 +0000948void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc,
949 OverloadedOperatorKind Op,
950 SourceLocation SymbolLocations[3]) {
951 Kind = IK_OperatorFunctionId;
952 StartLocation = OperatorLoc;
953 EndLocation = OperatorLoc;
954 OperatorFunctionId.Operator = Op;
955 for (unsigned I = 0; I != 3; ++I) {
956 OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding();
957
958 if (SymbolLocations[I].isValid())
959 EndLocation = SymbolLocations[I];
960 }
961}
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000962
Anders Carlssoncc54d592011-01-22 16:56:46 +0000963bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlsson46127a92011-01-22 15:58:16 +0000964 const char *&PrevSpec) {
Douglas Gregorf5251602011-03-08 17:10:18 +0000965 LastLocation = Loc;
966
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000967 if (Specifiers & VS) {
968 PrevSpec = getSpecifierName(VS);
969 return true;
970 }
971
972 Specifiers |= VS;
973
974 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000975 default: llvm_unreachable("Unknown specifier!");
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000976 case VS_Override: VS_overrideLoc = Loc; break;
977 case VS_Final: VS_finalLoc = Loc; break;
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000978 }
Anders Carlsson46127a92011-01-22 15:58:16 +0000979
Anders Carlssonb971dbd2011-01-17 03:05:47 +0000980 return false;
981}
982
Anders Carlssoncc54d592011-01-22 16:56:46 +0000983const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000984 switch (VS) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000985 default: llvm_unreachable("Unknown specifier");
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000986 case VS_Override: return "override";
987 case VS_Final: return "final";
Anders Carlssonc46bb7d2011-01-22 15:11:37 +0000988 }
989}