blob: 86833c0e944823cb950b441481607ae14ec0e41f [file] [log] [blame]
Chris Lattner289ab7b2006-11-08 06:54:53 +00001//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
Chris Lattnerb9093cd2006-08-04 04:39:53 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb9093cd2006-08-04 04:39:53 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner289ab7b2006-11-08 06:54:53 +000010// This file implements semantic analysis for declaration specifiers.
Chris Lattnerb9093cd2006-08-04 04:39:53 +000011//
12//===----------------------------------------------------------------------===//
13
John McCall8b0666c2010-08-20 18:27:03 +000014#include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency!
15#include "clang/Sema/DeclSpec.h"
Douglas Gregorc15b0cf2011-06-25 00:56:27 +000016#include "clang/Sema/LocInfoType.h"
John McCall8b0666c2010-08-20 18:27:03 +000017#include "clang/Sema/ParsedTemplate.h"
Richard Smithb15c11c2011-10-17 23:06:20 +000018#include "clang/Sema/SemaDiagnostic.h"
Peter Collingbourne485b80f2011-10-06 03:01:00 +000019#include "clang/Sema/Sema.h"
Douglas Gregor869ad452011-02-24 17:54:50 +000020#include "clang/AST/ASTContext.h"
Douglas Gregorc15b0cf2011-06-25 00:56:27 +000021#include "clang/AST/Expr.h"
Douglas Gregor90c99722011-02-24 00:17:56 +000022#include "clang/AST/NestedNameSpecifier.h"
23#include "clang/AST/TypeLoc.h"
Douglas Gregore3e01a22009-04-01 22:41:11 +000024#include "clang/Lex/Preprocessor.h"
Chris Lattnerda48a8e2006-08-04 05:25:55 +000025#include "clang/Basic/LangOptions.h"
Chris Lattner1ce41ed2009-01-20 19:11:22 +000026#include "llvm/ADT/STLExtras.h"
John McCall898cd0f2009-08-03 18:47:27 +000027#include "llvm/Support/ErrorHandling.h"
Douglas Gregor52537682009-03-19 00:18:19 +000028#include <cstring>
Chris Lattnerb9093cd2006-08-04 04:39:53 +000029using namespace clang;
30
Chris Lattner3b0f3ef2008-11-22 08:32:36 +000031
David Blaikie9c902b52011-09-25 23:23:43 +000032static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc,
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +000033 unsigned DiagID) {
34 return D.Report(Loc, DiagID);
Chris Lattner3b0f3ef2008-11-22 08:32:36 +000035}
36
Douglas Gregorb53edfb2009-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 Gregor9de54ea2010-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 Gregor90c99722011-02-24 00:17:56 +000054void CXXScopeSpec::Extend(ASTContext &Context, SourceLocation TemplateKWLoc,
55 TypeLoc TL, SourceLocation ColonColonLoc) {
Douglas Gregor9b272512011-02-28 23:58:31 +000056 Builder.Extend(Context, TemplateKWLoc, TL, ColonColonLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +000057 if (Range.getBegin().isInvalid())
58 Range.setBegin(TL.getBeginLoc());
59 Range.setEnd(ColonColonLoc);
Douglas Gregor869ad452011-02-24 17:54:50 +000060
Douglas Gregor9b272512011-02-28 23:58:31 +000061 assert(Range == Builder.getSourceRange() &&
Douglas Gregor869ad452011-02-24 17:54:50 +000062 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor90c99722011-02-24 00:17:56 +000063}
64
65void CXXScopeSpec::Extend(ASTContext &Context, IdentifierInfo *Identifier,
66 SourceLocation IdentifierLoc,
67 SourceLocation ColonColonLoc) {
Douglas Gregor9b272512011-02-28 23:58:31 +000068 Builder.Extend(Context, Identifier, IdentifierLoc, ColonColonLoc);
69
Douglas Gregor90c99722011-02-24 00:17:56 +000070 if (Range.getBegin().isInvalid())
71 Range.setBegin(IdentifierLoc);
72 Range.setEnd(ColonColonLoc);
Douglas Gregor869ad452011-02-24 17:54:50 +000073
Douglas Gregor9b272512011-02-28 23:58:31 +000074 assert(Range == Builder.getSourceRange() &&
Douglas Gregor869ad452011-02-24 17:54:50 +000075 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor90c99722011-02-24 00:17:56 +000076}
77
78void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
79 SourceLocation NamespaceLoc,
80 SourceLocation ColonColonLoc) {
Douglas Gregor9b272512011-02-28 23:58:31 +000081 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
82
Douglas Gregor90c99722011-02-24 00:17:56 +000083 if (Range.getBegin().isInvalid())
84 Range.setBegin(NamespaceLoc);
85 Range.setEnd(ColonColonLoc);
Douglas Gregor869ad452011-02-24 17:54:50 +000086
Douglas Gregor9b272512011-02-28 23:58:31 +000087 assert(Range == Builder.getSourceRange() &&
Douglas Gregor869ad452011-02-24 17:54:50 +000088 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor90c99722011-02-24 00:17:56 +000089}
90
Douglas Gregor7b26ff92011-02-24 02:36:08 +000091void CXXScopeSpec::Extend(ASTContext &Context, NamespaceAliasDecl *Alias,
92 SourceLocation AliasLoc,
93 SourceLocation ColonColonLoc) {
Douglas Gregor9b272512011-02-28 23:58:31 +000094 Builder.Extend(Context, Alias, AliasLoc, ColonColonLoc);
95
Douglas Gregor7b26ff92011-02-24 02:36:08 +000096 if (Range.getBegin().isInvalid())
97 Range.setBegin(AliasLoc);
98 Range.setEnd(ColonColonLoc);
Douglas Gregor869ad452011-02-24 17:54:50 +000099
Douglas Gregor9b272512011-02-28 23:58:31 +0000100 assert(Range == Builder.getSourceRange() &&
Douglas Gregor869ad452011-02-24 17:54:50 +0000101 "NestedNameSpecifierLoc range computation incorrect");
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000102}
103
Douglas Gregor90c99722011-02-24 00:17:56 +0000104void CXXScopeSpec::MakeGlobal(ASTContext &Context,
105 SourceLocation ColonColonLoc) {
Douglas Gregor9b272512011-02-28 23:58:31 +0000106 Builder.MakeGlobal(Context, ColonColonLoc);
107
Douglas Gregor90c99722011-02-24 00:17:56 +0000108 Range = SourceRange(ColonColonLoc);
Douglas Gregor869ad452011-02-24 17:54:50 +0000109
Douglas Gregor9b272512011-02-28 23:58:31 +0000110 assert(Range == Builder.getSourceRange() &&
Douglas Gregor869ad452011-02-24 17:54:50 +0000111 "NestedNameSpecifierLoc range computation incorrect");
112}
113
114void CXXScopeSpec::MakeTrivial(ASTContext &Context,
115 NestedNameSpecifier *Qualifier, SourceRange R) {
Douglas Gregor9b272512011-02-28 23:58:31 +0000116 Builder.MakeTrivial(Context, Qualifier, R);
Douglas Gregor869ad452011-02-24 17:54:50 +0000117 Range = R;
Douglas Gregor869ad452011-02-24 17:54:50 +0000118}
119
120void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) {
121 if (!Other) {
122 Range = SourceRange();
Douglas Gregor9b272512011-02-28 23:58:31 +0000123 Builder.Clear();
Douglas Gregor869ad452011-02-24 17:54:50 +0000124 return;
125 }
Douglas Gregor9b272512011-02-28 23:58:31 +0000126
Douglas Gregor869ad452011-02-24 17:54:50 +0000127 Range = Other.getSourceRange();
Douglas Gregor9b272512011-02-28 23:58:31 +0000128 Builder.Adopt(Other);
Douglas Gregor869ad452011-02-24 17:54:50 +0000129}
130
John McCall21878762011-07-06 06:57:57 +0000131SourceLocation CXXScopeSpec::getLastQualifierNameLoc() const {
132 if (!Builder.getRepresentation())
133 return SourceLocation();
134 return Builder.getTemporary().getLocalBeginLoc();
135}
136
Douglas Gregor14454802011-02-25 02:25:35 +0000137NestedNameSpecifierLoc
138CXXScopeSpec::getWithLocInContext(ASTContext &Context) const {
Douglas Gregor2b1ca9e2011-03-03 21:48:55 +0000139 if (!Builder.getRepresentation())
Douglas Gregor869ad452011-02-24 17:54:50 +0000140 return NestedNameSpecifierLoc();
141
Douglas Gregor9b272512011-02-28 23:58:31 +0000142 return Builder.getWithLocInContext(Context);
Douglas Gregor90c99722011-02-24 00:17:56 +0000143}
144
Chris Lattner1ce41ed2009-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 McCall084e83d2011-03-24 11:26:52 +0000147DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
Richard Smith943c4402012-07-30 21:30:52 +0000148 bool isAmbiguous,
Douglas Gregor94349fd2009-02-18 07:07:28 +0000149 SourceLocation EllipsisLoc,
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000150 ParamInfo *ArgInfo,
151 unsigned NumArgs,
152 unsigned TypeQuals,
Douglas Gregor54992352011-01-26 03:43:54 +0000153 bool RefQualifierIsLvalueRef,
154 SourceLocation RefQualifierLoc,
Douglas Gregore248eea2011-10-19 06:04:55 +0000155 SourceLocation ConstQualifierLoc,
156 SourceLocation
157 VolatileQualifierLoc,
Douglas Gregorad69e652011-07-13 21:47:47 +0000158 SourceLocation MutableLoc,
Sebastian Redl802a4532011-03-05 22:42:13 +0000159 ExceptionSpecificationType
160 ESpecType,
161 SourceLocation ESpecLoc,
John McCallba7bf592010-08-24 05:47:05 +0000162 ParsedType *Exceptions,
Sebastian Redld6434562009-05-29 18:02:33 +0000163 SourceRange *ExceptionRanges,
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000164 unsigned NumExceptions,
Sebastian Redl802a4532011-03-05 22:42:13 +0000165 Expr *NoexceptExpr,
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +0000166 SourceLocation LocalRangeBegin,
167 SourceLocation LocalRangeEnd,
Douglas Gregor7fb25412010-10-01 18:44:50 +0000168 Declarator &TheDeclarator,
Richard Smith700537c2012-06-12 01:51:59 +0000169 TypeResult TrailingReturnType) {
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000170 DeclaratorChunk I;
Sebastian Redl802a4532011-03-05 22:42:13 +0000171 I.Kind = Function;
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +0000172 I.Loc = LocalRangeBegin;
173 I.EndLoc = LocalRangeEnd;
John McCall084e83d2011-03-24 11:26:52 +0000174 I.Fun.AttrList = 0;
Sebastian Redl802a4532011-03-05 22:42:13 +0000175 I.Fun.hasPrototype = hasProto;
176 I.Fun.isVariadic = isVariadic;
Richard Smith943c4402012-07-30 21:30:52 +0000177 I.Fun.isAmbiguous = isAmbiguous;
Sebastian Redl802a4532011-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 Gregor54992352011-01-26 03:43:54 +0000183 I.Fun.RefQualifierIsLValueRef = RefQualifierIsLvalueRef;
Sebastian Redl802a4532011-03-05 22:42:13 +0000184 I.Fun.RefQualifierLoc = RefQualifierLoc.getRawEncoding();
Douglas Gregore248eea2011-10-19 06:04:55 +0000185 I.Fun.ConstQualifierLoc = ConstQualifierLoc.getRawEncoding();
186 I.Fun.VolatileQualifierLoc = VolatileQualifierLoc.getRawEncoding();
Douglas Gregorad69e652011-07-13 21:47:47 +0000187 I.Fun.MutableLoc = MutableLoc.getRawEncoding();
Sebastian Redl802a4532011-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 Smith700537c2012-06-12 01:51:59 +0000193 I.Fun.HasTrailingReturnType = TrailingReturnType.isUsable() ||
194 TrailingReturnType.isInvalid();
195 I.Fun.TrailingReturnType = TrailingReturnType.get();
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000196
Chris Lattner1ce41ed2009-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 Stump11289f42009-09-09 15:08:12 +0000203 if (!TheDeclarator.InlineParamsUsed &&
Chris Lattner1ce41ed2009-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 Redl802a4532011-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 Redld6434562009-05-29 18:02:33 +0000227 }
Sebastian Redl802a4532011-03-05 22:42:13 +0000228 break;
229
230 case EST_ComputedNoexcept:
231 I.Fun.NoexceptExpr = NoexceptExpr;
232 break;
Sebastian Redl2b9cacb2009-04-29 17:30:04 +0000233 }
Chris Lattner1ce41ed2009-01-20 19:11:22 +0000234 return I;
235}
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000236
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000237bool Declarator::isDeclarationOfFunction() const {
Richard Smithcfcdf3a2011-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 Smithcfcdf3a2011-06-25 02:28:38 +0000252 }
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000253
254 switch (DS.getTypeSpecType()) {
Eli Friedman0dfb8892011-10-06 23:00:33 +0000255 case TST_atomic:
Douglas Gregorc15b0cf2011-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 Korobeynikovf0c267e2011-10-14 23:23:15 +0000269 case TST_half:
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000270 case TST_int:
Richard Smithf016bbc2012-04-04 06:24:32 +0000271 case TST_int128:
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000272 case TST_struct:
Joao Matosdc86f942012-08-31 18:45:21 +0000273 case TST_interface:
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000274 case TST_union:
275 case TST_unknown_anytype:
276 case TST_unspecified:
277 case TST_void:
278 case TST_wchar:
279 return false;
280
281 case TST_decltype:
282 case TST_typeofExpr:
283 if (Expr *E = DS.getRepAsExpr())
284 return E->getType()->isFunctionType();
285 return false;
286
287 case TST_underlyingType:
288 case TST_typename:
289 case TST_typeofType: {
290 QualType QT = DS.getRepAsType().get();
291 if (QT.isNull())
292 return false;
293
294 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT))
295 QT = LIT->getType();
296
297 if (QT.isNull())
298 return false;
299
300 return QT->isFunctionType();
301 }
302 }
David Blaikie8a40f702012-01-17 06:56:22 +0000303
304 llvm_unreachable("Invalid TypeSpecType!");
Douglas Gregorc15b0cf2011-06-25 00:56:27 +0000305}
306
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000307/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
Chris Lattnere0c51162009-02-27 18:35:46 +0000308/// declaration specifier includes.
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000309///
310unsigned DeclSpec::getParsedSpecifiers() const {
311 unsigned Res = 0;
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000312 if (StorageClassSpec != SCS_unspecified ||
313 SCS_thread_specified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000314 Res |= PQ_StorageClassSpecifier;
Mike Stump65643c62008-06-19 19:52:46 +0000315
Chris Lattner4d8f8732006-11-28 05:05:08 +0000316 if (TypeQualifiers != TQ_unspecified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000317 Res |= PQ_TypeQualifier;
Mike Stump11289f42009-09-09 15:08:12 +0000318
Chris Lattnerf055d432006-11-28 04:28:12 +0000319 if (hasTypeSpecifier())
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000320 Res |= PQ_TypeSpecifier;
Mike Stump11289f42009-09-09 15:08:12 +0000321
Douglas Gregor61956c42008-10-31 09:07:45 +0000322 if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000323 Res |= PQ_FunctionSpecifier;
324 return Res;
325}
326
John McCall49bfce42009-08-03 20:12:06 +0000327template <class T> static bool BadSpecifier(T TNew, T TPrev,
328 const char *&PrevSpec,
Aaron Ballman3731b332012-08-28 20:55:40 +0000329 unsigned &DiagID,
330 bool IsExtension = true) {
John McCall898cd0f2009-08-03 18:47:27 +0000331 PrevSpec = DeclSpec::getSpecifierName(TPrev);
Aaron Ballman3731b332012-08-28 20:55:40 +0000332 if (TNew != TPrev)
333 DiagID = diag::err_invalid_decl_spec_combination;
334 else
335 DiagID = IsExtension ? diag::ext_duplicate_declspec :
336 diag::warn_duplicate_declspec;
John McCall898cd0f2009-08-03 18:47:27 +0000337 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000338}
John McCall898cd0f2009-08-03 18:47:27 +0000339
Chris Lattner7bd11fe2007-01-23 04:35:33 +0000340const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000341 switch (S) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000342 case DeclSpec::SCS_unspecified: return "unspecified";
343 case DeclSpec::SCS_typedef: return "typedef";
344 case DeclSpec::SCS_extern: return "extern";
345 case DeclSpec::SCS_static: return "static";
346 case DeclSpec::SCS_auto: return "auto";
347 case DeclSpec::SCS_register: return "register";
Eli Friedmand5c0eed2009-04-19 20:27:55 +0000348 case DeclSpec::SCS_private_extern: return "__private_extern__";
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000349 case DeclSpec::SCS_mutable: return "mutable";
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000350 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000351 llvm_unreachable("Unknown typespec!");
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000352}
353
John McCall898cd0f2009-08-03 18:47:27 +0000354const char *DeclSpec::getSpecifierName(TSW W) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000355 switch (W) {
John McCall898cd0f2009-08-03 18:47:27 +0000356 case TSW_unspecified: return "unspecified";
357 case TSW_short: return "short";
358 case TSW_long: return "long";
359 case TSW_longlong: return "long long";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000360 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000361 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000362}
363
John McCall898cd0f2009-08-03 18:47:27 +0000364const char *DeclSpec::getSpecifierName(TSC C) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000365 switch (C) {
John McCall898cd0f2009-08-03 18:47:27 +0000366 case TSC_unspecified: return "unspecified";
367 case TSC_imaginary: return "imaginary";
368 case TSC_complex: return "complex";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000369 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000370 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000371}
372
373
John McCall898cd0f2009-08-03 18:47:27 +0000374const char *DeclSpec::getSpecifierName(TSS S) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000375 switch (S) {
John McCall898cd0f2009-08-03 18:47:27 +0000376 case TSS_unspecified: return "unspecified";
377 case TSS_signed: return "signed";
378 case TSS_unsigned: return "unsigned";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000379 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000380 llvm_unreachable("Unknown typespec!");
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000381}
382
Chris Lattner69680ea2007-01-23 04:34:43 +0000383const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000384 switch (T) {
Chris Lattner839713c2006-08-04 06:15:52 +0000385 case DeclSpec::TST_unspecified: return "unspecified";
386 case DeclSpec::TST_void: return "void";
387 case DeclSpec::TST_char: return "char";
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000388 case DeclSpec::TST_wchar: return "wchar_t";
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +0000389 case DeclSpec::TST_char16: return "char16_t";
390 case DeclSpec::TST_char32: return "char32_t";
Chris Lattner839713c2006-08-04 06:15:52 +0000391 case DeclSpec::TST_int: return "int";
Richard Smithf016bbc2012-04-04 06:24:32 +0000392 case DeclSpec::TST_int128: return "__int128";
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000393 case DeclSpec::TST_half: return "half";
Chris Lattner839713c2006-08-04 06:15:52 +0000394 case DeclSpec::TST_float: return "float";
395 case DeclSpec::TST_double: return "double";
396 case DeclSpec::TST_bool: return "_Bool";
397 case DeclSpec::TST_decimal32: return "_Decimal32";
398 case DeclSpec::TST_decimal64: return "_Decimal64";
399 case DeclSpec::TST_decimal128: return "_Decimal128";
Chris Lattnerda72c822006-08-13 22:16:42 +0000400 case DeclSpec::TST_enum: return "enum";
Chris Lattner861a2262008-04-13 18:59:07 +0000401 case DeclSpec::TST_class: return "class";
Chris Lattnerda72c822006-08-13 22:16:42 +0000402 case DeclSpec::TST_union: return "union";
403 case DeclSpec::TST_struct: return "struct";
Joao Matosdc86f942012-08-31 18:45:21 +0000404 case DeclSpec::TST_interface: return "__interface";
Douglas Gregor9817f4a2009-02-09 15:09:02 +0000405 case DeclSpec::TST_typename: return "type-name";
Steve Naroffad373bd2007-07-31 12:34:36 +0000406 case DeclSpec::TST_typeofType:
407 case DeclSpec::TST_typeofExpr: return "typeof";
John McCall898cd0f2009-08-03 18:47:27 +0000408 case DeclSpec::TST_auto: return "auto";
409 case DeclSpec::TST_decltype: return "(decltype)";
Alexis Hunte852b102011-05-24 22:41:36 +0000410 case DeclSpec::TST_underlyingType: return "__underlying_type";
John McCall39439732011-04-09 22:50:59 +0000411 case DeclSpec::TST_unknown_anytype: return "__unknown_anytype";
Eli Friedman0dfb8892011-10-06 23:00:33 +0000412 case DeclSpec::TST_atomic: return "_Atomic";
John McCall898cd0f2009-08-03 18:47:27 +0000413 case DeclSpec::TST_error: return "(error)";
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000414 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000415 llvm_unreachable("Unknown typespec!");
Chris Lattner839713c2006-08-04 06:15:52 +0000416}
417
John McCall898cd0f2009-08-03 18:47:27 +0000418const char *DeclSpec::getSpecifierName(TQ T) {
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000419 switch (T) {
John McCall898cd0f2009-08-03 18:47:27 +0000420 case DeclSpec::TQ_unspecified: return "unspecified";
421 case DeclSpec::TQ_const: return "const";
422 case DeclSpec::TQ_restrict: return "restrict";
423 case DeclSpec::TQ_volatile: return "volatile";
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000424 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +0000425 llvm_unreachable("Unknown typespec!");
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000426}
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000427
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000428bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000429 const char *&PrevSpec,
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000430 unsigned &DiagID) {
Tanya Lattner4fdce3f2012-06-19 23:09:52 +0000431 // OpenCL v1.1 s6.8g: "The extern, static, auto and register storage-class
432 // specifiers are not supported.
Peter Collingbournede32b202011-02-11 19:59:54 +0000433 // It seems sensible to prohibit private_extern too
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000434 // The cl_clang_storage_class_specifiers extension enables support for
435 // these storage-class specifiers.
Tanya Lattner4fdce3f2012-06-19 23:09:52 +0000436 // OpenCL v1.2 s6.8 changes this to "The auto and register storage-class
437 // specifiers are not supported."
David Blaikiebbafb8a2012-03-11 07:00:24 +0000438 if (S.getLangOpts().OpenCL &&
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000439 !S.getOpenCLOptions().cl_clang_storage_class_specifiers) {
440 switch (SC) {
Peter Collingbournede32b202011-02-11 19:59:54 +0000441 case SCS_extern:
442 case SCS_private_extern:
Tanya Lattner4fdce3f2012-06-19 23:09:52 +0000443 case SCS_static:
444 if (S.getLangOpts().OpenCLVersion < 120) {
445 DiagID = diag::err_not_opencl_storage_class_specifier;
446 PrevSpec = getSpecifierName(SC);
447 return true;
448 }
449 break;
Peter Collingbournede32b202011-02-11 19:59:54 +0000450 case SCS_auto:
451 case SCS_register:
Peter Collingbournede32b202011-02-11 19:59:54 +0000452 DiagID = diag::err_not_opencl_storage_class_specifier;
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000453 PrevSpec = getSpecifierName(SC);
Peter Collingbournede32b202011-02-11 19:59:54 +0000454 return true;
455 default:
456 break;
457 }
458 }
459
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000460 if (StorageClassSpec != SCS_unspecified) {
Richard Smith58c74332011-09-04 19:54:14 +0000461 // Maybe this is an attempt to use C++0x 'auto' outside of C++0x mode.
462 bool isInvalid = true;
David Blaikiebbafb8a2012-03-11 07:00:24 +0000463 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000464 if (SC == SCS_auto)
Richard Smith58c74332011-09-04 19:54:14 +0000465 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID);
466 if (StorageClassSpec == SCS_auto) {
467 isInvalid = SetTypeSpecType(TST_auto, StorageClassSpecLoc,
468 PrevSpec, DiagID);
469 assert(!isInvalid && "auto SCS -> TST recovery failed");
470 }
471 }
472
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000473 // Changing storage class is allowed only if the previous one
474 // was the 'extern' that is part of a linkage specification and
475 // the new storage class is 'typedef'.
Richard Smith58c74332011-09-04 19:54:14 +0000476 if (isInvalid &&
477 !(SCS_extern_in_linkage_spec &&
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000478 StorageClassSpec == SCS_extern &&
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000479 SC == SCS_typedef))
480 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000481 }
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000482 StorageClassSpec = SC;
Chris Lattner4d8f8732006-11-28 05:05:08 +0000483 StorageClassSpecLoc = Loc;
Peter Collingbourne485b80f2011-10-06 03:01:00 +0000484 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000485 return false;
486}
487
Mike Stump11289f42009-09-09 15:08:12 +0000488bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000489 const char *&PrevSpec,
490 unsigned &DiagID) {
Chris Lattner353f5742006-11-28 04:50:12 +0000491 if (SCS_thread_specified) {
492 PrevSpec = "__thread";
John McCall49bfce42009-08-03 20:12:06 +0000493 DiagID = diag::ext_duplicate_declspec;
Chris Lattner353f5742006-11-28 04:50:12 +0000494 return true;
495 }
496 SCS_thread_specified = true;
Chris Lattner4d8f8732006-11-28 05:05:08 +0000497 SCS_threadLoc = Loc;
Chris Lattner353f5742006-11-28 04:50:12 +0000498 return false;
499}
500
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000501/// These methods set the specified attribute of the DeclSpec, but return true
502/// and ignore the request if invalid (e.g. "extern" then "auto" is
503/// specified).
Chris Lattnerb20e8942006-11-28 05:30:29 +0000504bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000505 const char *&PrevSpec,
506 unsigned &DiagID) {
Abramo Bagnaraead67d92011-03-06 22:21:56 +0000507 // Overwrite TSWLoc only if TypeSpecWidth was unspecified, so that
508 // for 'long long' we will keep the source location of the first 'long'.
509 if (TypeSpecWidth == TSW_unspecified)
510 TSWLoc = Loc;
511 // Allow turning long -> long long.
512 else if (W != TSW_longlong || TypeSpecWidth != TSW_long)
John McCall49bfce42009-08-03 20:12:06 +0000513 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000514 TypeSpecWidth = W;
Chris Lattner37141f42010-06-23 06:00:24 +0000515 if (TypeAltiVecVector && !TypeAltiVecBool &&
516 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
John Thompson22334602010-02-05 00:12:22 +0000517 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
518 DiagID = diag::warn_vector_long_decl_spec_combination;
519 return true;
520 }
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000521 return false;
522}
523
Mike Stump11289f42009-09-09 15:08:12 +0000524bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000525 const char *&PrevSpec,
526 unsigned &DiagID) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000527 if (TypeSpecComplex != TSC_unspecified)
John McCall49bfce42009-08-03 20:12:06 +0000528 return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000529 TypeSpecComplex = C;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000530 TSCLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000531 return false;
532}
533
Mike Stump11289f42009-09-09 15:08:12 +0000534bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000535 const char *&PrevSpec,
536 unsigned &DiagID) {
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000537 if (TypeSpecSign != TSS_unspecified)
John McCall49bfce42009-08-03 20:12:06 +0000538 return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
Chris Lattnerdeb42f52006-08-04 05:26:52 +0000539 TypeSpecSign = S;
Chris Lattnerb20e8942006-11-28 05:30:29 +0000540 TSSLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000541 return false;
542}
543
Chris Lattnerb20e8942006-11-28 05:30:29 +0000544bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
John McCall49bfce42009-08-03 20:12:06 +0000545 const char *&PrevSpec,
546 unsigned &DiagID,
John McCallba7bf592010-08-24 05:47:05 +0000547 ParsedType Rep) {
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000548 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep);
549}
550
551bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
552 SourceLocation TagNameLoc,
553 const char *&PrevSpec,
554 unsigned &DiagID,
555 ParsedType Rep) {
John McCallba7bf592010-08-24 05:47:05 +0000556 assert(isTypeRep(T) && "T does not store a type");
557 assert(Rep && "no type provided!");
558 if (TypeSpecType != TST_unspecified) {
559 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
560 DiagID = diag::err_invalid_decl_spec_combination;
561 return true;
562 }
563 TypeSpecType = T;
564 TypeRep = Rep;
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000565 TSTLoc = TagKwLoc;
566 TSTNameLoc = TagNameLoc;
John McCallba7bf592010-08-24 05:47:05 +0000567 TypeSpecOwned = false;
568 return false;
569}
570
571bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
572 const char *&PrevSpec,
573 unsigned &DiagID,
574 Expr *Rep) {
575 assert(isExprRep(T) && "T does not store an expr");
576 assert(Rep && "no expression provided!");
577 if (TypeSpecType != TST_unspecified) {
578 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
579 DiagID = diag::err_invalid_decl_spec_combination;
580 return true;
581 }
582 TypeSpecType = T;
583 ExprRep = Rep;
584 TSTLoc = Loc;
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000585 TSTNameLoc = Loc;
John McCallba7bf592010-08-24 05:47:05 +0000586 TypeSpecOwned = false;
587 return false;
588}
589
590bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
591 const char *&PrevSpec,
592 unsigned &DiagID,
593 Decl *Rep, bool Owned) {
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000594 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned);
595}
596
597bool DeclSpec::SetTypeSpecType(TST T, SourceLocation TagKwLoc,
598 SourceLocation TagNameLoc,
599 const char *&PrevSpec,
600 unsigned &DiagID,
601 Decl *Rep, bool Owned) {
John McCallba7bf592010-08-24 05:47:05 +0000602 assert(isDeclRep(T) && "T does not store a decl");
603 // Unlike the other cases, we don't assert that we actually get a decl.
604
605 if (TypeSpecType != TST_unspecified) {
606 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
607 DiagID = diag::err_invalid_decl_spec_combination;
608 return true;
609 }
610 TypeSpecType = T;
611 DeclRep = Rep;
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000612 TSTLoc = TagKwLoc;
613 TSTNameLoc = TagNameLoc;
John McCallba7bf592010-08-24 05:47:05 +0000614 TypeSpecOwned = Owned;
615 return false;
616}
617
618bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
619 const char *&PrevSpec,
620 unsigned &DiagID) {
621 assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) &&
622 "rep required for these type-spec kinds!");
John McCall49bfce42009-08-03 20:12:06 +0000623 if (TypeSpecType != TST_unspecified) {
624 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
625 DiagID = diag::err_invalid_decl_spec_combination;
626 return true;
627 }
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000628 TSTLoc = Loc;
629 TSTNameLoc = Loc;
Chris Lattner37141f42010-06-23 06:00:24 +0000630 if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
631 TypeAltiVecBool = true;
Chris Lattner37141f42010-06-23 06:00:24 +0000632 return false;
633 }
Chris Lattnerdeb42f52006-08-04 05:26:52 +0000634 TypeSpecType = T;
John McCallba7bf592010-08-24 05:47:05 +0000635 TypeSpecOwned = false;
Chris Lattner37141f42010-06-23 06:00:24 +0000636 if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
John Thompson22334602010-02-05 00:12:22 +0000637 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
Chris Lattner37141f42010-06-23 06:00:24 +0000638 DiagID = diag::err_invalid_vector_decl_spec;
John Thompson22334602010-02-05 00:12:22 +0000639 return true;
640 }
641 return false;
642}
643
644bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
645 const char *&PrevSpec, unsigned &DiagID) {
646 if (TypeSpecType != TST_unspecified) {
647 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
648 DiagID = diag::err_invalid_vector_decl_spec_combination;
649 return true;
650 }
651 TypeAltiVecVector = isAltiVecVector;
652 AltiVecLoc = Loc;
653 return false;
654}
655
656bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
657 const char *&PrevSpec, unsigned &DiagID) {
Chris Lattner37141f42010-06-23 06:00:24 +0000658 if (!TypeAltiVecVector || TypeAltiVecPixel ||
659 (TypeSpecType != TST_unspecified)) {
John Thompson22334602010-02-05 00:12:22 +0000660 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
661 DiagID = diag::err_invalid_pixel_decl_spec_combination;
662 return true;
663 }
John Thompson22334602010-02-05 00:12:22 +0000664 TypeAltiVecPixel = isAltiVecPixel;
665 TSTLoc = Loc;
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000666 TSTNameLoc = Loc;
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000667 return false;
668}
669
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000670bool DeclSpec::SetTypeSpecError() {
671 TypeSpecType = TST_error;
John McCalla3707cc2010-08-26 17:22:34 +0000672 TypeSpecOwned = false;
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000673 TSTLoc = SourceLocation();
Abramo Bagnara9875a3c2011-03-16 20:16:18 +0000674 TSTNameLoc = SourceLocation();
Douglas Gregorcd72ba92009-02-06 22:42:48 +0000675 return false;
676}
677
Chris Lattner60809f52006-11-28 05:18:46 +0000678bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
Richard Smith7ac3c6a2012-07-24 20:24:58 +0000679 unsigned &DiagID, const LangOptions &Lang,
680 bool IsTypeSpec) {
681 // Duplicates are permitted in C99, and are permitted in C++11 unless the
Aaron Ballman3731b332012-08-28 20:55:40 +0000682 // cv-qualifier appears as a type-specifier. However, since this is likely
683 // not what the user intended, we will always warn. We do not need to set the
684 // qualifier's location since we already have it.
685 if (TypeQualifiers & T) {
Aaron Ballmand5a176d2012-08-29 12:35:14 +0000686 bool IsExtension = true;
Aaron Ballman3731b332012-08-28 20:55:40 +0000687 if (Lang.C99 || (Lang.CPlusPlus0x && !IsTypeSpec))
Aaron Ballmand5a176d2012-08-29 12:35:14 +0000688 IsExtension = false;
Aaron Ballman3731b332012-08-28 20:55:40 +0000689 return BadSpecifier(T, T, PrevSpec, DiagID, IsExtension);
690 }
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000691 TypeQualifiers |= T;
Mike Stump11289f42009-09-09 15:08:12 +0000692
Chris Lattner60809f52006-11-28 05:18:46 +0000693 switch (T) {
David Blaikie83d382b2011-09-23 05:06:16 +0000694 default: llvm_unreachable("Unknown type qualifier!");
Chris Lattner60809f52006-11-28 05:18:46 +0000695 case TQ_const: TQ_constLoc = Loc; break;
696 case TQ_restrict: TQ_restrictLoc = Loc; break;
697 case TQ_volatile: TQ_volatileLoc = Loc; break;
698 }
Chris Lattnerda48a8e2006-08-04 05:25:55 +0000699 return false;
700}
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000701
John McCall49bfce42009-08-03 20:12:06 +0000702bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
703 unsigned &DiagID) {
Chris Lattnera925dc62006-11-28 04:33:46 +0000704 // 'inline inline' is ok.
705 FS_inline_specified = true;
Chris Lattner1b22eed2006-11-28 05:12:07 +0000706 FS_inlineLoc = Loc;
Chris Lattnera925dc62006-11-28 04:33:46 +0000707 return false;
708}
709
John McCall49bfce42009-08-03 20:12:06 +0000710bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
711 unsigned &DiagID) {
Douglas Gregor61956c42008-10-31 09:07:45 +0000712 // 'virtual virtual' is ok.
713 FS_virtual_specified = true;
714 FS_virtualLoc = Loc;
715 return false;
716}
717
John McCall49bfce42009-08-03 20:12:06 +0000718bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
719 unsigned &DiagID) {
Douglas Gregor61956c42008-10-31 09:07:45 +0000720 // 'explicit explicit' is ok.
721 FS_explicit_specified = true;
722 FS_explicitLoc = Loc;
723 return false;
724}
725
John McCall49bfce42009-08-03 20:12:06 +0000726bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
727 unsigned &DiagID) {
Anders Carlssoncd8db412009-05-06 04:46:28 +0000728 if (Friend_specified) {
729 PrevSpec = "friend";
John McCall49bfce42009-08-03 20:12:06 +0000730 DiagID = diag::ext_duplicate_declspec;
Anders Carlssoncd8db412009-05-06 04:46:28 +0000731 return true;
732 }
John McCall49bfce42009-08-03 20:12:06 +0000733
Anders Carlssoncd8db412009-05-06 04:46:28 +0000734 Friend_specified = true;
735 FriendLoc = Loc;
736 return false;
737}
Chris Lattnera925dc62006-11-28 04:33:46 +0000738
Douglas Gregor26701a42011-09-09 02:06:17 +0000739bool DeclSpec::setModulePrivateSpec(SourceLocation Loc, const char *&PrevSpec,
740 unsigned &DiagID) {
741 if (isModulePrivateSpecified()) {
742 PrevSpec = "__module_private__";
743 DiagID = diag::ext_duplicate_declspec;
744 return true;
745 }
746
747 ModulePrivateLoc = Loc;
748 return false;
749}
750
Sebastian Redl39c2a8b2009-11-05 15:47:02 +0000751bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
752 unsigned &DiagID) {
753 // 'constexpr constexpr' is ok.
754 Constexpr_specified = true;
755 ConstexprLoc = Loc;
756 return false;
757}
758
John McCall48871652010-08-21 09:40:31 +0000759void DeclSpec::setProtocolQualifiers(Decl * const *Protos,
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000760 unsigned NP,
761 SourceLocation *ProtoLocs,
762 SourceLocation LAngleLoc) {
763 if (NP == 0) return;
John McCall48871652010-08-21 09:40:31 +0000764 ProtocolQualifiers = new Decl*[NP];
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000765 ProtocolLocs = new SourceLocation[NP];
John McCall48871652010-08-21 09:40:31 +0000766 memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP);
Argyrios Kyrtzidis5ec645b2009-09-29 19:42:11 +0000767 memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
768 NumProtocolQualifiers = NP;
769 ProtocolLAngleLoc = LAngleLoc;
770}
771
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000772void DeclSpec::SaveWrittenBuiltinSpecs() {
773 writtenBS.Sign = getTypeSpecSign();
774 writtenBS.Width = getTypeSpecWidth();
775 writtenBS.Type = getTypeSpecType();
776 // Search the list of attributes for the presence of a mode attribute.
777 writtenBS.ModeAttr = false;
John McCall53fa7142010-12-24 02:08:15 +0000778 AttributeList* attrs = getAttributes().getList();
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000779 while (attrs) {
Alexis Hunt3bc72c12012-06-19 23:57:03 +0000780 if (attrs->getKind() == AttributeList::AT_Mode) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000781 writtenBS.ModeAttr = true;
782 break;
783 }
784 attrs = attrs->getNext();
785 }
786}
787
Abramo Bagnaraed5b6892010-07-30 16:47:02 +0000788void DeclSpec::SaveStorageSpecifierAsWritten() {
789 if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
790 // If 'extern' is part of a linkage specification,
791 // then it is not a storage class "as written".
792 StorageClassSpecAsWritten = SCS_unspecified;
793 else
794 StorageClassSpecAsWritten = StorageClassSpec;
795}
796
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000797/// Finish - This does final analysis of the declspec, rejecting things like
798/// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or
799/// diag::NUM_DIAGNOSTICS if there is no error. After calling this method,
800/// DeclSpec is guaranteed self-consistent, even if an error occurred.
David Blaikie9c902b52011-09-25 23:23:43 +0000801void DeclSpec::Finish(DiagnosticsEngine &D, Preprocessor &PP) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000802 // Before possibly changing their values, save specs as written.
803 SaveWrittenBuiltinSpecs();
Douglas Gregorc4df4072010-04-19 22:54:31 +0000804 SaveStorageSpecifierAsWritten();
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000805
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000806 // Check the type specifier components first.
807
Chris Lattner37141f42010-06-23 06:00:24 +0000808 // Validate and finalize AltiVec vector declspec.
809 if (TypeAltiVecVector) {
810 if (TypeAltiVecBool) {
811 // Sign specifiers are not allowed with vector bool. (PIM 2.1)
812 if (TypeSpecSign != TSS_unspecified) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000813 Diag(D, TSSLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-06-23 06:00:24 +0000814 << getSpecifierName((TSS)TypeSpecSign);
815 }
816
817 // Only char/int are valid with vector bool. (PIM 2.1)
Duncan Sandsd3e231e2010-06-23 19:34:52 +0000818 if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
819 (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000820 Diag(D, TSTLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-06-23 06:00:24 +0000821 << (TypeAltiVecPixel ? "__pixel" :
822 getSpecifierName((TST)TypeSpecType));
823 }
824
825 // Only 'short' is valid with vector bool. (PIM 2.1)
826 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000827 Diag(D, TSWLoc, diag::err_invalid_vector_bool_decl_spec)
Chris Lattner37141f42010-06-23 06:00:24 +0000828 << getSpecifierName((TSW)TypeSpecWidth);
829
830 // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
831 if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
832 (TypeSpecWidth != TSW_unspecified))
833 TypeSpecSign = TSS_unsigned;
834 }
835
836 if (TypeAltiVecPixel) {
837 //TODO: perform validation
838 TypeSpecType = TST_int;
839 TypeSpecSign = TSS_unsigned;
840 TypeSpecWidth = TSW_short;
John McCalla3707cc2010-08-26 17:22:34 +0000841 TypeSpecOwned = false;
Chris Lattner37141f42010-06-23 06:00:24 +0000842 }
843 }
844
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000845 // signed/unsigned are only valid with int/char/wchar_t.
Chris Lattner839713c2006-08-04 06:15:52 +0000846 if (TypeSpecSign != TSS_unspecified) {
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000847 if (TypeSpecType == TST_unspecified)
848 TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
Richard Smithf016bbc2012-04-04 06:24:32 +0000849 else if (TypeSpecType != TST_int && TypeSpecType != TST_int128 &&
Argyrios Kyrtzidis40e9e482008-08-09 16:51:54 +0000850 TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000851 Diag(D, TSSLoc, diag::err_invalid_sign_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000852 << getSpecifierName((TST)TypeSpecType);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000853 // signed double -> double.
Chris Lattner839713c2006-08-04 06:15:52 +0000854 TypeSpecSign = TSS_unspecified;
855 }
856 }
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000857
Chris Lattner839713c2006-08-04 06:15:52 +0000858 // Validate the width of the type.
859 switch (TypeSpecWidth) {
860 case TSW_unspecified: break;
861 case TSW_short: // short int
862 case TSW_longlong: // long long int
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000863 if (TypeSpecType == TST_unspecified)
864 TypeSpecType = TST_int; // short -> short int, long long -> long long int.
865 else if (TypeSpecType != TST_int) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000866 Diag(D, TSWLoc,
Chris Lattner36982e42007-05-16 17:49:37 +0000867 TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000868 : diag::err_invalid_longlong_spec)
869 << getSpecifierName((TST)TypeSpecType);
Chris Lattner839713c2006-08-04 06:15:52 +0000870 TypeSpecType = TST_int;
John McCalla3707cc2010-08-26 17:22:34 +0000871 TypeSpecOwned = false;
Chris Lattner839713c2006-08-04 06:15:52 +0000872 }
873 break;
874 case TSW_long: // long double, long int
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000875 if (TypeSpecType == TST_unspecified)
876 TypeSpecType = TST_int; // long -> long int.
877 else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000878 Diag(D, TSWLoc, diag::err_invalid_long_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000879 << getSpecifierName((TST)TypeSpecType);
Chris Lattner839713c2006-08-04 06:15:52 +0000880 TypeSpecType = TST_int;
John McCalla3707cc2010-08-26 17:22:34 +0000881 TypeSpecOwned = false;
Chris Lattner839713c2006-08-04 06:15:52 +0000882 }
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000883 break;
Chris Lattner839713c2006-08-04 06:15:52 +0000884 }
Mike Stump11289f42009-09-09 15:08:12 +0000885
Chris Lattner0e894622006-08-13 19:58:17 +0000886 // TODO: if the implementation does not implement _Complex or _Imaginary,
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000887 // disallow their use. Need information about the backend.
888 if (TypeSpecComplex != TSC_unspecified) {
889 if (TypeSpecType == TST_unspecified) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000890 Diag(D, TSCLoc, diag::ext_plain_complex)
Douglas Gregora771f462010-03-31 17:46:05 +0000891 << FixItHint::CreateInsertion(
Douglas Gregore3e01a22009-04-01 22:41:11 +0000892 PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
893 " double");
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000894 TypeSpecType = TST_double; // _Complex -> _Complex double.
895 } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
Chris Lattnerf63f89a2006-08-05 03:28:50 +0000896 // Note that this intentionally doesn't include _Complex _Bool.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000897 if (!PP.getLangOpts().CPlusPlus)
Eli Friedmanc4b251d2012-01-10 04:58:17 +0000898 Diag(D, TSTLoc, diag::ext_integer_complex);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000899 } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000900 Diag(D, TSCLoc, diag::err_invalid_complex_spec)
Chris Lattner3b0f3ef2008-11-22 08:32:36 +0000901 << getSpecifierName((TST)TypeSpecType);
Chris Lattnerfef9d2b2006-08-04 06:36:52 +0000902 TypeSpecComplex = TSC_unspecified;
903 }
904 }
Chris Lattner8e90ef62006-08-05 03:30:45 +0000905
Richard Smith58c74332011-09-04 19:54:14 +0000906 // If no type specifier was provided and we're parsing a language where
907 // the type specifier is not optional, but we got 'auto' as a storage
908 // class specifier, then assume this is an attempt to use C++0x's 'auto'
909 // type specifier.
910 // FIXME: Does Microsoft really support implicit int in C++?
David Blaikiebbafb8a2012-03-11 07:00:24 +0000911 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().MicrosoftExt &&
Richard Smith58c74332011-09-04 19:54:14 +0000912 TypeSpecType == TST_unspecified && StorageClassSpec == SCS_auto) {
913 TypeSpecType = TST_auto;
914 StorageClassSpec = StorageClassSpecAsWritten = SCS_unspecified;
915 TSTLoc = TSTNameLoc = StorageClassSpecLoc;
916 StorageClassSpecLoc = SourceLocation();
917 }
918 // Diagnose if we've recovered from an ill-formed 'auto' storage class
919 // specifier in a pre-C++0x dialect of C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000920 if (!PP.getLangOpts().CPlusPlus0x && TypeSpecType == TST_auto)
Richard Smith58c74332011-09-04 19:54:14 +0000921 Diag(D, TSTLoc, diag::ext_auto_type_specifier);
David Blaikiebbafb8a2012-03-11 07:00:24 +0000922 if (PP.getLangOpts().CPlusPlus && !PP.getLangOpts().CPlusPlus0x &&
Richard Smith58c74332011-09-04 19:54:14 +0000923 StorageClassSpec == SCS_auto)
924 Diag(D, StorageClassSpecLoc, diag::warn_auto_storage_class)
925 << FixItHint::CreateRemoval(StorageClassSpecLoc);
Richard Smithb15c11c2011-10-17 23:06:20 +0000926 if (TypeSpecType == TST_char16 || TypeSpecType == TST_char32)
927 Diag(D, TSTLoc, diag::warn_cxx98_compat_unicode_type)
928 << (TypeSpecType == TST_char16 ? "char16_t" : "char32_t");
Richard Smithb15c11c2011-10-17 23:06:20 +0000929 if (Constexpr_specified)
930 Diag(D, ConstexprLoc, diag::warn_cxx98_compat_constexpr);
Richard Smith58c74332011-09-04 19:54:14 +0000931
John McCall07e91c02009-08-06 02:15:43 +0000932 // C++ [class.friend]p6:
933 // No storage-class-specifier shall appear in the decl-specifier-seq
934 // of a friend declaration.
935 if (isFriendSpecified() && getStorageClassSpec()) {
936 DeclSpec::SCS SC = getStorageClassSpec();
937 const char *SpecName = getSpecifierName(SC);
938
939 SourceLocation SCLoc = getStorageClassSpecLoc();
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +0000940 SourceLocation SCEndLoc = SCLoc.getLocWithOffset(strlen(SpecName));
John McCall07e91c02009-08-06 02:15:43 +0000941
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000942 Diag(D, SCLoc, diag::err_friend_storage_spec)
John McCall07e91c02009-08-06 02:15:43 +0000943 << SpecName
Douglas Gregora771f462010-03-31 17:46:05 +0000944 << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
John McCall07e91c02009-08-06 02:15:43 +0000945
946 ClearStorageClassSpecs();
947 }
948
Douglas Gregor64226422011-09-09 21:14:29 +0000949 assert(!TypeSpecOwned || isDeclRep((TST) TypeSpecType));
950
Chris Lattner8e90ef62006-08-05 03:30:45 +0000951 // Okay, now we can infer the real type.
Mike Stump11289f42009-09-09 15:08:12 +0000952
Chris Lattner0e894622006-08-13 19:58:17 +0000953 // TODO: return "auto function" and other bad things based on the real type.
Mike Stump11289f42009-09-09 15:08:12 +0000954
Chris Lattner1ae23292006-08-04 06:42:31 +0000955 // 'data definition has no type or storage class'?
Chris Lattnerb9093cd2006-08-04 04:39:53 +0000956}
Daniel Dunbarc74b5cc2008-08-11 03:45:03 +0000957
Sebastian Redla2b5e312008-12-28 15:28:59 +0000958bool DeclSpec::isMissingDeclaratorOk() {
959 TST tst = getTypeSpecType();
John McCallba7bf592010-08-24 05:47:05 +0000960 return isDeclRep(tst) && getRepAsDecl() != 0 &&
961 StorageClassSpec != DeclSpec::SCS_typedef;
Sebastian Redla2b5e312008-12-28 15:28:59 +0000962}
Douglas Gregor7861a802009-11-03 01:35:08 +0000963
Douglas Gregor7861a802009-11-03 01:35:08 +0000964void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc,
965 OverloadedOperatorKind Op,
966 SourceLocation SymbolLocations[3]) {
967 Kind = IK_OperatorFunctionId;
968 StartLocation = OperatorLoc;
969 EndLocation = OperatorLoc;
970 OperatorFunctionId.Operator = Op;
971 for (unsigned I = 0; I != 3; ++I) {
972 OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding();
973
974 if (SymbolLocations[I].isValid())
975 EndLocation = SymbolLocations[I];
976 }
977}
Anders Carlsson56104902011-01-17 03:05:47 +0000978
Anders Carlsson4b63d0e2011-01-22 16:56:46 +0000979bool VirtSpecifiers::SetSpecifier(Specifier VS, SourceLocation Loc,
Anders Carlssonf2ca3892011-01-22 15:58:16 +0000980 const char *&PrevSpec) {
Douglas Gregorf2f08062011-03-08 17:10:18 +0000981 LastLocation = Loc;
982
Anders Carlsson56104902011-01-17 03:05:47 +0000983 if (Specifiers & VS) {
984 PrevSpec = getSpecifierName(VS);
985 return true;
986 }
987
988 Specifiers |= VS;
989
990 switch (VS) {
David Blaikie83d382b2011-09-23 05:06:16 +0000991 default: llvm_unreachable("Unknown specifier!");
Anders Carlsson56104902011-01-17 03:05:47 +0000992 case VS_Override: VS_overrideLoc = Loc; break;
993 case VS_Final: VS_finalLoc = Loc; break;
Anders Carlsson56104902011-01-17 03:05:47 +0000994 }
Anders Carlssonf2ca3892011-01-22 15:58:16 +0000995
Anders Carlsson56104902011-01-17 03:05:47 +0000996 return false;
997}
998
Anders Carlsson4b63d0e2011-01-22 16:56:46 +0000999const char *VirtSpecifiers::getSpecifierName(Specifier VS) {
Anders Carlssona6d35012011-01-22 15:11:37 +00001000 switch (VS) {
David Blaikie83d382b2011-09-23 05:06:16 +00001001 default: llvm_unreachable("Unknown specifier");
Anders Carlssona6d35012011-01-22 15:11:37 +00001002 case VS_Override: return "override";
1003 case VS_Final: return "final";
Anders Carlssona6d35012011-01-22 15:11:37 +00001004 }
1005}