DeclSpec.cpp revision e20fbc00b00b6a10c2d54afbd4a5ecd92a981b00
1//===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file implements semantic analysis for declaration specifiers.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency!
15#include "clang/Sema/DeclSpec.h"
16#include "clang/Sema/ParsedTemplate.h"
17#include "clang/Lex/Preprocessor.h"
18#include "clang/Basic/LangOptions.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/Support/ErrorHandling.h"
21#include <cstring>
22using namespace clang;
23
24
25static DiagnosticBuilder Diag(Diagnostic &D, SourceLocation Loc,
26                              SourceManager &SrcMgr, unsigned DiagID) {
27  return D.Report(FullSourceLoc(Loc, SrcMgr), DiagID);
28}
29
30
31void UnqualifiedId::setTemplateId(TemplateIdAnnotation *TemplateId) {
32  assert(TemplateId && "NULL template-id annotation?");
33  Kind = IK_TemplateId;
34  this->TemplateId = TemplateId;
35  StartLocation = TemplateId->TemplateNameLoc;
36  EndLocation = TemplateId->RAngleLoc;
37}
38
39void UnqualifiedId::setConstructorTemplateId(TemplateIdAnnotation *TemplateId) {
40  assert(TemplateId && "NULL template-id annotation?");
41  Kind = IK_ConstructorTemplateId;
42  this->TemplateId = TemplateId;
43  StartLocation = TemplateId->TemplateNameLoc;
44  EndLocation = TemplateId->RAngleLoc;
45}
46
47/// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function.
48/// "TheDeclarator" is the declarator that this will be added to.
49DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic,
50                                             SourceLocation EllipsisLoc,
51                                             ParamInfo *ArgInfo,
52                                             unsigned NumArgs,
53                                             unsigned TypeQuals,
54                                             bool hasExceptionSpec,
55                                             SourceLocation ThrowLoc,
56                                             bool hasAnyExceptionSpec,
57                                             ActionBase::TypeTy **Exceptions,
58                                             SourceRange *ExceptionRanges,
59                                             unsigned NumExceptions,
60                                             SourceLocation LPLoc,
61                                             SourceLocation RPLoc,
62                                             Declarator &TheDeclarator) {
63  DeclaratorChunk I;
64  I.Kind                 = Function;
65  I.Loc                  = LPLoc;
66  I.EndLoc               = RPLoc;
67  I.Fun.hasPrototype     = hasProto;
68  I.Fun.isVariadic       = isVariadic;
69  I.Fun.EllipsisLoc      = EllipsisLoc.getRawEncoding();
70  I.Fun.DeleteArgInfo    = false;
71  I.Fun.TypeQuals        = TypeQuals;
72  I.Fun.NumArgs          = NumArgs;
73  I.Fun.ArgInfo          = 0;
74  I.Fun.hasExceptionSpec = hasExceptionSpec;
75  I.Fun.ThrowLoc         = ThrowLoc.getRawEncoding();
76  I.Fun.hasAnyExceptionSpec = hasAnyExceptionSpec;
77  I.Fun.NumExceptions    = NumExceptions;
78  I.Fun.Exceptions       = 0;
79
80  // new[] an argument array if needed.
81  if (NumArgs) {
82    // If the 'InlineParams' in Declarator is unused and big enough, put our
83    // parameter list there (in an effort to avoid new/delete traffic).  If it
84    // is already used (consider a function returning a function pointer) or too
85    // small (function taking too many arguments), go to the heap.
86    if (!TheDeclarator.InlineParamsUsed &&
87        NumArgs <= llvm::array_lengthof(TheDeclarator.InlineParams)) {
88      I.Fun.ArgInfo = TheDeclarator.InlineParams;
89      I.Fun.DeleteArgInfo = false;
90      TheDeclarator.InlineParamsUsed = true;
91    } else {
92      I.Fun.ArgInfo = new DeclaratorChunk::ParamInfo[NumArgs];
93      I.Fun.DeleteArgInfo = true;
94    }
95    memcpy(I.Fun.ArgInfo, ArgInfo, sizeof(ArgInfo[0])*NumArgs);
96  }
97  // new[] an exception array if needed
98  if (NumExceptions) {
99    I.Fun.Exceptions = new DeclaratorChunk::TypeAndRange[NumExceptions];
100    for (unsigned i = 0; i != NumExceptions; ++i) {
101      I.Fun.Exceptions[i].Ty = Exceptions[i];
102      I.Fun.Exceptions[i].Range = ExceptionRanges[i];
103    }
104  }
105  return I;
106}
107
108/// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this
109/// declaration specifier includes.
110///
111unsigned DeclSpec::getParsedSpecifiers() const {
112  unsigned Res = 0;
113  if (StorageClassSpec != SCS_unspecified ||
114      SCS_thread_specified)
115    Res |= PQ_StorageClassSpecifier;
116
117  if (TypeQualifiers != TQ_unspecified)
118    Res |= PQ_TypeQualifier;
119
120  if (hasTypeSpecifier())
121    Res |= PQ_TypeSpecifier;
122
123  if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified)
124    Res |= PQ_FunctionSpecifier;
125  return Res;
126}
127
128template <class T> static bool BadSpecifier(T TNew, T TPrev,
129                                            const char *&PrevSpec,
130                                            unsigned &DiagID) {
131  PrevSpec = DeclSpec::getSpecifierName(TPrev);
132  DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec
133            : diag::err_invalid_decl_spec_combination);
134  return true;
135}
136
137const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) {
138  switch (S) {
139  case DeclSpec::SCS_unspecified: return "unspecified";
140  case DeclSpec::SCS_typedef:     return "typedef";
141  case DeclSpec::SCS_extern:      return "extern";
142  case DeclSpec::SCS_static:      return "static";
143  case DeclSpec::SCS_auto:        return "auto";
144  case DeclSpec::SCS_register:    return "register";
145  case DeclSpec::SCS_private_extern: return "__private_extern__";
146  case DeclSpec::SCS_mutable:     return "mutable";
147  }
148  llvm_unreachable("Unknown typespec!");
149}
150
151const char *DeclSpec::getSpecifierName(TSW W) {
152  switch (W) {
153  case TSW_unspecified: return "unspecified";
154  case TSW_short:       return "short";
155  case TSW_long:        return "long";
156  case TSW_longlong:    return "long long";
157  }
158  llvm_unreachable("Unknown typespec!");
159}
160
161const char *DeclSpec::getSpecifierName(TSC C) {
162  switch (C) {
163  case TSC_unspecified: return "unspecified";
164  case TSC_imaginary:   return "imaginary";
165  case TSC_complex:     return "complex";
166  }
167  llvm_unreachable("Unknown typespec!");
168}
169
170
171const char *DeclSpec::getSpecifierName(TSS S) {
172  switch (S) {
173  case TSS_unspecified: return "unspecified";
174  case TSS_signed:      return "signed";
175  case TSS_unsigned:    return "unsigned";
176  }
177  llvm_unreachable("Unknown typespec!");
178}
179
180const char *DeclSpec::getSpecifierName(DeclSpec::TST T) {
181  switch (T) {
182  case DeclSpec::TST_unspecified: return "unspecified";
183  case DeclSpec::TST_void:        return "void";
184  case DeclSpec::TST_char:        return "char";
185  case DeclSpec::TST_wchar:       return "wchar_t";
186  case DeclSpec::TST_char16:      return "char16_t";
187  case DeclSpec::TST_char32:      return "char32_t";
188  case DeclSpec::TST_int:         return "int";
189  case DeclSpec::TST_float:       return "float";
190  case DeclSpec::TST_double:      return "double";
191  case DeclSpec::TST_bool:        return "_Bool";
192  case DeclSpec::TST_decimal32:   return "_Decimal32";
193  case DeclSpec::TST_decimal64:   return "_Decimal64";
194  case DeclSpec::TST_decimal128:  return "_Decimal128";
195  case DeclSpec::TST_enum:        return "enum";
196  case DeclSpec::TST_class:       return "class";
197  case DeclSpec::TST_union:       return "union";
198  case DeclSpec::TST_struct:      return "struct";
199  case DeclSpec::TST_typename:    return "type-name";
200  case DeclSpec::TST_typeofType:
201  case DeclSpec::TST_typeofExpr:  return "typeof";
202  case DeclSpec::TST_auto:        return "auto";
203  case DeclSpec::TST_decltype:    return "(decltype)";
204  case DeclSpec::TST_error:       return "(error)";
205  }
206  llvm_unreachable("Unknown typespec!");
207}
208
209const char *DeclSpec::getSpecifierName(TQ T) {
210  switch (T) {
211  case DeclSpec::TQ_unspecified: return "unspecified";
212  case DeclSpec::TQ_const:       return "const";
213  case DeclSpec::TQ_restrict:    return "restrict";
214  case DeclSpec::TQ_volatile:    return "volatile";
215  }
216  llvm_unreachable("Unknown typespec!");
217}
218
219bool DeclSpec::SetStorageClassSpec(SCS S, SourceLocation Loc,
220                                   const char *&PrevSpec,
221                                   unsigned &DiagID) {
222  if (StorageClassSpec != SCS_unspecified) {
223    // Changing storage class is allowed only if the previous one
224    // was the 'extern' that is part of a linkage specification and
225    // the new storage class is 'typedef'.
226    if (!(SCS_extern_in_linkage_spec &&
227          StorageClassSpec == SCS_extern &&
228          S == SCS_typedef))
229      return BadSpecifier(S, (SCS)StorageClassSpec, PrevSpec, DiagID);
230  }
231  StorageClassSpec = S;
232  StorageClassSpecLoc = Loc;
233  assert((unsigned)S == StorageClassSpec && "SCS constants overflow bitfield");
234  return false;
235}
236
237bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc,
238                                         const char *&PrevSpec,
239                                         unsigned &DiagID) {
240  if (SCS_thread_specified) {
241    PrevSpec = "__thread";
242    DiagID = diag::ext_duplicate_declspec;
243    return true;
244  }
245  SCS_thread_specified = true;
246  SCS_threadLoc = Loc;
247  return false;
248}
249
250/// These methods set the specified attribute of the DeclSpec, but return true
251/// and ignore the request if invalid (e.g. "extern" then "auto" is
252/// specified).
253bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
254                                const char *&PrevSpec,
255                                unsigned &DiagID) {
256  if (TypeSpecWidth != TSW_unspecified &&
257      // Allow turning long -> long long.
258      (W != TSW_longlong || TypeSpecWidth != TSW_long))
259    return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID);
260  TypeSpecWidth = W;
261  TSWLoc = Loc;
262  if (TypeAltiVecVector && !TypeAltiVecBool &&
263      ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) {
264    PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
265    DiagID = diag::warn_vector_long_decl_spec_combination;
266    return true;
267  }
268  return false;
269}
270
271bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc,
272                                  const char *&PrevSpec,
273                                  unsigned &DiagID) {
274  if (TypeSpecComplex != TSC_unspecified)
275    return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID);
276  TypeSpecComplex = C;
277  TSCLoc = Loc;
278  return false;
279}
280
281bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc,
282                               const char *&PrevSpec,
283                               unsigned &DiagID) {
284  if (TypeSpecSign != TSS_unspecified)
285    return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID);
286  TypeSpecSign = S;
287  TSSLoc = Loc;
288  return false;
289}
290
291bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc,
292                               const char *&PrevSpec,
293                               unsigned &DiagID,
294                               void *Rep, bool Owned) {
295  if (TypeSpecType != TST_unspecified) {
296    PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
297    DiagID = diag::err_invalid_decl_spec_combination;
298    return true;
299  }
300  if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) {
301    TypeAltiVecBool = true;
302    TSTLoc = Loc;
303    return false;
304  }
305  TypeSpecType = T;
306  TypeRep = Rep;
307  TSTLoc = Loc;
308  TypeSpecOwned = Owned;
309  if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) {
310    PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
311    DiagID = diag::err_invalid_vector_decl_spec;
312    return true;
313  }
314  return false;
315}
316
317bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc,
318                          const char *&PrevSpec, unsigned &DiagID) {
319  if (TypeSpecType != TST_unspecified) {
320    PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
321    DiagID = diag::err_invalid_vector_decl_spec_combination;
322    return true;
323  }
324  TypeAltiVecVector = isAltiVecVector;
325  AltiVecLoc = Loc;
326  return false;
327}
328
329bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc,
330                          const char *&PrevSpec, unsigned &DiagID) {
331  if (!TypeAltiVecVector || TypeAltiVecPixel ||
332      (TypeSpecType != TST_unspecified)) {
333    PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
334    DiagID = diag::err_invalid_pixel_decl_spec_combination;
335    return true;
336  }
337  TypeAltiVecPixel = isAltiVecPixel;
338  TSTLoc = Loc;
339  return false;
340}
341
342bool DeclSpec::SetTypeSpecError() {
343  TypeSpecType = TST_error;
344  TypeRep = 0;
345  TSTLoc = SourceLocation();
346  return false;
347}
348
349bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
350                           unsigned &DiagID, const LangOptions &Lang) {
351  // Duplicates turn into warnings pre-C99.
352  if ((TypeQualifiers & T) && !Lang.C99)
353    return BadSpecifier(T, T, PrevSpec, DiagID);
354  TypeQualifiers |= T;
355
356  switch (T) {
357  default: assert(0 && "Unknown type qualifier!");
358  case TQ_const:    TQ_constLoc = Loc; break;
359  case TQ_restrict: TQ_restrictLoc = Loc; break;
360  case TQ_volatile: TQ_volatileLoc = Loc; break;
361  }
362  return false;
363}
364
365bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec,
366                                     unsigned &DiagID) {
367  // 'inline inline' is ok.
368  FS_inline_specified = true;
369  FS_inlineLoc = Loc;
370  return false;
371}
372
373bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec,
374                                      unsigned &DiagID) {
375  // 'virtual virtual' is ok.
376  FS_virtual_specified = true;
377  FS_virtualLoc = Loc;
378  return false;
379}
380
381bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec,
382                                       unsigned &DiagID) {
383  // 'explicit explicit' is ok.
384  FS_explicit_specified = true;
385  FS_explicitLoc = Loc;
386  return false;
387}
388
389bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec,
390                             unsigned &DiagID) {
391  if (Friend_specified) {
392    PrevSpec = "friend";
393    DiagID = diag::ext_duplicate_declspec;
394    return true;
395  }
396
397  Friend_specified = true;
398  FriendLoc = Loc;
399  return false;
400}
401
402bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec,
403                                unsigned &DiagID) {
404  // 'constexpr constexpr' is ok.
405  Constexpr_specified = true;
406  ConstexprLoc = Loc;
407  return false;
408}
409
410void DeclSpec::setProtocolQualifiers(const ActionBase::DeclPtrTy *Protos,
411                                     unsigned NP,
412                                     SourceLocation *ProtoLocs,
413                                     SourceLocation LAngleLoc) {
414  if (NP == 0) return;
415  ProtocolQualifiers = new ActionBase::DeclPtrTy[NP];
416  ProtocolLocs = new SourceLocation[NP];
417  memcpy((void*)ProtocolQualifiers, Protos, sizeof(ActionBase::DeclPtrTy)*NP);
418  memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP);
419  NumProtocolQualifiers = NP;
420  ProtocolLAngleLoc = LAngleLoc;
421}
422
423void DeclSpec::SaveWrittenBuiltinSpecs() {
424  writtenBS.Sign = getTypeSpecSign();
425  writtenBS.Width = getTypeSpecWidth();
426  writtenBS.Type = getTypeSpecType();
427  // Search the list of attributes for the presence of a mode attribute.
428  writtenBS.ModeAttr = false;
429  AttributeList* attrs = getAttributes();
430  while (attrs) {
431    if (attrs->getKind() == AttributeList::AT_mode) {
432      writtenBS.ModeAttr = true;
433      break;
434    }
435    attrs = attrs->getNext();
436  }
437}
438
439void DeclSpec::SaveStorageSpecifierAsWritten() {
440  if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern)
441    // If 'extern' is part of a linkage specification,
442    // then it is not a storage class "as written".
443    StorageClassSpecAsWritten = SCS_unspecified;
444  else
445    StorageClassSpecAsWritten = StorageClassSpec;
446}
447
448/// Finish - This does final analysis of the declspec, rejecting things like
449/// "_Imaginary" (lacking an FP type).  This returns a diagnostic to issue or
450/// diag::NUM_DIAGNOSTICS if there is no error.  After calling this method,
451/// DeclSpec is guaranteed self-consistent, even if an error occurred.
452void DeclSpec::Finish(Diagnostic &D, Preprocessor &PP) {
453  // Before possibly changing their values, save specs as written.
454  SaveWrittenBuiltinSpecs();
455  SaveStorageSpecifierAsWritten();
456
457  // Check the type specifier components first.
458  SourceManager &SrcMgr = PP.getSourceManager();
459
460  // Validate and finalize AltiVec vector declspec.
461  if (TypeAltiVecVector) {
462    if (TypeAltiVecBool) {
463      // Sign specifiers are not allowed with vector bool. (PIM 2.1)
464      if (TypeSpecSign != TSS_unspecified) {
465        Diag(D, TSSLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec)
466          << getSpecifierName((TSS)TypeSpecSign);
467      }
468
469      // Only char/int are valid with vector bool. (PIM 2.1)
470      if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) &&
471           (TypeSpecType != TST_int)) || TypeAltiVecPixel) {
472        Diag(D, TSTLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec)
473          << (TypeAltiVecPixel ? "__pixel" :
474                                 getSpecifierName((TST)TypeSpecType));
475      }
476
477      // Only 'short' is valid with vector bool. (PIM 2.1)
478      if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short))
479        Diag(D, TSWLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec)
480          << getSpecifierName((TSW)TypeSpecWidth);
481
482      // Elements of vector bool are interpreted as unsigned. (PIM 2.1)
483      if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) ||
484          (TypeSpecWidth != TSW_unspecified))
485        TypeSpecSign = TSS_unsigned;
486    }
487
488    if (TypeAltiVecPixel) {
489      //TODO: perform validation
490      TypeSpecType = TST_int;
491      TypeSpecSign = TSS_unsigned;
492      TypeSpecWidth = TSW_short;
493    }
494  }
495
496  // signed/unsigned are only valid with int/char/wchar_t.
497  if (TypeSpecSign != TSS_unspecified) {
498    if (TypeSpecType == TST_unspecified)
499      TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int.
500    else if (TypeSpecType != TST_int  &&
501             TypeSpecType != TST_char && TypeSpecType != TST_wchar) {
502      Diag(D, TSSLoc, SrcMgr, diag::err_invalid_sign_spec)
503        << getSpecifierName((TST)TypeSpecType);
504      // signed double -> double.
505      TypeSpecSign = TSS_unspecified;
506    }
507  }
508
509  // Validate the width of the type.
510  switch (TypeSpecWidth) {
511  case TSW_unspecified: break;
512  case TSW_short:    // short int
513  case TSW_longlong: // long long int
514    if (TypeSpecType == TST_unspecified)
515      TypeSpecType = TST_int; // short -> short int, long long -> long long int.
516    else if (TypeSpecType != TST_int) {
517      Diag(D, TSWLoc, SrcMgr,
518           TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec
519                                      : diag::err_invalid_longlong_spec)
520        <<  getSpecifierName((TST)TypeSpecType);
521      TypeSpecType = TST_int;
522    }
523    break;
524  case TSW_long:  // long double, long int
525    if (TypeSpecType == TST_unspecified)
526      TypeSpecType = TST_int;  // long -> long int.
527    else if (TypeSpecType != TST_int && TypeSpecType != TST_double) {
528      Diag(D, TSWLoc, SrcMgr, diag::err_invalid_long_spec)
529        << getSpecifierName((TST)TypeSpecType);
530      TypeSpecType = TST_int;
531    }
532    break;
533  }
534
535  // TODO: if the implementation does not implement _Complex or _Imaginary,
536  // disallow their use.  Need information about the backend.
537  if (TypeSpecComplex != TSC_unspecified) {
538    if (TypeSpecType == TST_unspecified) {
539      Diag(D, TSCLoc, SrcMgr, diag::ext_plain_complex)
540        << FixItHint::CreateInsertion(
541                              PP.getLocForEndOfToken(getTypeSpecComplexLoc()),
542                                                 " double");
543      TypeSpecType = TST_double;   // _Complex -> _Complex double.
544    } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) {
545      // Note that this intentionally doesn't include _Complex _Bool.
546      Diag(D, TSTLoc, SrcMgr, diag::ext_integer_complex);
547    } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) {
548      Diag(D, TSCLoc, SrcMgr, diag::err_invalid_complex_spec)
549        << getSpecifierName((TST)TypeSpecType);
550      TypeSpecComplex = TSC_unspecified;
551    }
552  }
553
554  // C++ [class.friend]p6:
555  //   No storage-class-specifier shall appear in the decl-specifier-seq
556  //   of a friend declaration.
557  if (isFriendSpecified() && getStorageClassSpec()) {
558    DeclSpec::SCS SC = getStorageClassSpec();
559    const char *SpecName = getSpecifierName(SC);
560
561    SourceLocation SCLoc = getStorageClassSpecLoc();
562    SourceLocation SCEndLoc = SCLoc.getFileLocWithOffset(strlen(SpecName));
563
564    Diag(D, SCLoc, SrcMgr, diag::err_friend_storage_spec)
565      << SpecName
566      << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc));
567
568    ClearStorageClassSpecs();
569  }
570
571  // Okay, now we can infer the real type.
572
573  // TODO: return "auto function" and other bad things based on the real type.
574
575  // 'data definition has no type or storage class'?
576}
577
578bool DeclSpec::isMissingDeclaratorOk() {
579  TST tst = getTypeSpecType();
580  return (tst == TST_union
581       || tst == TST_struct
582       || tst == TST_class
583       || tst == TST_enum
584          ) && getTypeRep() != 0 && StorageClassSpec != DeclSpec::SCS_typedef;
585}
586
587void UnqualifiedId::clear() {
588  if (Kind == IK_TemplateId)
589    TemplateId->Destroy();
590
591  Kind = IK_Identifier;
592  Identifier = 0;
593  StartLocation = SourceLocation();
594  EndLocation = SourceLocation();
595}
596
597void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc,
598                                          OverloadedOperatorKind Op,
599                                          SourceLocation SymbolLocations[3]) {
600  Kind = IK_OperatorFunctionId;
601  StartLocation = OperatorLoc;
602  EndLocation = OperatorLoc;
603  OperatorFunctionId.Operator = Op;
604  for (unsigned I = 0; I != 3; ++I) {
605    OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding();
606
607    if (SymbolLocations[I].isValid())
608      EndLocation = SymbolLocations[I];
609  }
610}
611