Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaDeclSpec.cpp - Declaration Specifier Semantic Analysis -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for declaration specifiers. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 14 | #include "clang/Parse/ParseDiagnostic.h" // FIXME: remove this back-dependency! |
| 15 | #include "clang/Sema/DeclSpec.h" |
| 16 | #include "clang/Sema/ParsedTemplate.h" |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 17 | #include "clang/Lex/Preprocessor.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 18 | #include "clang/Basic/LangOptions.h" |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/STLExtras.h" |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 20 | #include "llvm/Support/ErrorHandling.h" |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 21 | #include <cstring> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | using namespace clang; |
| 23 | |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 24 | |
| 25 | static DiagnosticBuilder Diag(Diagnostic &D, SourceLocation Loc, |
| 26 | SourceManager &SrcMgr, unsigned DiagID) { |
| 27 | return D.Report(FullSourceLoc(Loc, SrcMgr), DiagID); |
| 28 | } |
| 29 | |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 30 | |
| 31 | void 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 | |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 39 | void 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 | |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 47 | /// DeclaratorChunk::getFunction - Return a DeclaratorChunk for a function. |
| 48 | /// "TheDeclarator" is the declarator that this will be added to. |
| 49 | DeclaratorChunk DeclaratorChunk::getFunction(bool hasProto, bool isVariadic, |
Douglas Gregor | 965acbb | 2009-02-18 07:07:28 +0000 | [diff] [blame] | 50 | SourceLocation EllipsisLoc, |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 51 | ParamInfo *ArgInfo, |
| 52 | unsigned NumArgs, |
| 53 | unsigned TypeQuals, |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 54 | bool hasExceptionSpec, |
Sebastian Redl | 3cc9726 | 2009-05-31 11:47:27 +0000 | [diff] [blame] | 55 | SourceLocation ThrowLoc, |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 56 | bool hasAnyExceptionSpec, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 57 | ParsedType *Exceptions, |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 58 | SourceRange *ExceptionRanges, |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 59 | unsigned NumExceptions, |
Argyrios Kyrtzidis | 82bf010 | 2009-08-19 23:14:54 +0000 | [diff] [blame] | 60 | SourceLocation LPLoc, |
| 61 | SourceLocation RPLoc, |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 62 | Declarator &TheDeclarator) { |
| 63 | DeclaratorChunk I; |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 64 | I.Kind = Function; |
Argyrios Kyrtzidis | 82bf010 | 2009-08-19 23:14:54 +0000 | [diff] [blame] | 65 | I.Loc = LPLoc; |
| 66 | I.EndLoc = RPLoc; |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 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; |
Sebastian Redl | 3cc9726 | 2009-05-31 11:47:27 +0000 | [diff] [blame] | 75 | I.Fun.ThrowLoc = ThrowLoc.getRawEncoding(); |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 76 | I.Fun.hasAnyExceptionSpec = hasAnyExceptionSpec; |
| 77 | I.Fun.NumExceptions = NumExceptions; |
| 78 | I.Fun.Exceptions = 0; |
| 79 | |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 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. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 86 | if (!TheDeclarator.InlineParamsUsed && |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 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 | } |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 97 | // new[] an exception array if needed |
| 98 | if (NumExceptions) { |
Sebastian Redl | ef65f06 | 2009-05-29 18:02:33 +0000 | [diff] [blame] | 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 | } |
Sebastian Redl | 7dc8134 | 2009-04-29 17:30:04 +0000 | [diff] [blame] | 104 | } |
Chris Lattner | 5af2f35 | 2009-01-20 19:11:22 +0000 | [diff] [blame] | 105 | return I; |
| 106 | } |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 107 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 108 | /// getParsedSpecifiers - Return a bitmask of which flavors of specifiers this |
Chris Lattner | 2a327d1 | 2009-02-27 18:35:46 +0000 | [diff] [blame] | 109 | /// declaration specifier includes. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 110 | /// |
| 111 | unsigned DeclSpec::getParsedSpecifiers() const { |
| 112 | unsigned Res = 0; |
| 113 | if (StorageClassSpec != SCS_unspecified || |
| 114 | SCS_thread_specified) |
| 115 | Res |= PQ_StorageClassSpecifier; |
Mike Stump | d420433 | 2008-06-19 19:52:46 +0000 | [diff] [blame] | 116 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 117 | if (TypeQualifiers != TQ_unspecified) |
| 118 | Res |= PQ_TypeQualifier; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 120 | if (hasTypeSpecifier()) |
| 121 | Res |= PQ_TypeSpecifier; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 122 | |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 123 | if (FS_inline_specified || FS_virtual_specified || FS_explicit_specified) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 124 | Res |= PQ_FunctionSpecifier; |
| 125 | return Res; |
| 126 | } |
| 127 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 128 | template <class T> static bool BadSpecifier(T TNew, T TPrev, |
| 129 | const char *&PrevSpec, |
| 130 | unsigned &DiagID) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 131 | PrevSpec = DeclSpec::getSpecifierName(TPrev); |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 132 | DiagID = (TNew == TPrev ? diag::ext_duplicate_declspec |
| 133 | : diag::err_invalid_decl_spec_combination); |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 134 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 135 | } |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 136 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 137 | const char *DeclSpec::getSpecifierName(DeclSpec::SCS S) { |
| 138 | switch (S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 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"; |
Eli Friedman | 63054b3 | 2009-04-19 20:27:55 +0000 | [diff] [blame] | 145 | case DeclSpec::SCS_private_extern: return "__private_extern__"; |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 146 | case DeclSpec::SCS_mutable: return "mutable"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 147 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 148 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 149 | } |
| 150 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 151 | const char *DeclSpec::getSpecifierName(TSW W) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 152 | switch (W) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 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"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 157 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 158 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 159 | } |
| 160 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 161 | const char *DeclSpec::getSpecifierName(TSC C) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 162 | switch (C) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 163 | case TSC_unspecified: return "unspecified"; |
| 164 | case TSC_imaginary: return "imaginary"; |
| 165 | case TSC_complex: return "complex"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 166 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 167 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 171 | const char *DeclSpec::getSpecifierName(TSS S) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 172 | switch (S) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 173 | case TSS_unspecified: return "unspecified"; |
| 174 | case TSS_signed: return "signed"; |
| 175 | case TSS_unsigned: return "unsigned"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 176 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 177 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | const char *DeclSpec::getSpecifierName(DeclSpec::TST T) { |
| 181 | switch (T) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 182 | case DeclSpec::TST_unspecified: return "unspecified"; |
| 183 | case DeclSpec::TST_void: return "void"; |
| 184 | case DeclSpec::TST_char: return "char"; |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 185 | case DeclSpec::TST_wchar: return "wchar_t"; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 186 | case DeclSpec::TST_char16: return "char16_t"; |
| 187 | case DeclSpec::TST_char32: return "char32_t"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 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"; |
Chris Lattner | 99dc914 | 2008-04-13 18:59:07 +0000 | [diff] [blame] | 196 | case DeclSpec::TST_class: return "class"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 197 | case DeclSpec::TST_union: return "union"; |
| 198 | case DeclSpec::TST_struct: return "struct"; |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 199 | case DeclSpec::TST_typename: return "type-name"; |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 200 | case DeclSpec::TST_typeofType: |
| 201 | case DeclSpec::TST_typeofExpr: return "typeof"; |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 202 | case DeclSpec::TST_auto: return "auto"; |
| 203 | case DeclSpec::TST_decltype: return "(decltype)"; |
| 204 | case DeclSpec::TST_error: return "(error)"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 205 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 206 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 207 | } |
| 208 | |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 209 | const char *DeclSpec::getSpecifierName(TQ T) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 210 | switch (T) { |
John McCall | 32d335e | 2009-08-03 18:47:27 +0000 | [diff] [blame] | 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"; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 215 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 216 | llvm_unreachable("Unknown typespec!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | bool DeclSpec::SetStorageClassSpec(SCS S, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 220 | const char *&PrevSpec, |
| 221 | unsigned &DiagID) { |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 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 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 231 | StorageClassSpec = S; |
| 232 | StorageClassSpecLoc = Loc; |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 233 | assert((unsigned)S == StorageClassSpec && "SCS constants overflow bitfield"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 234 | return false; |
| 235 | } |
| 236 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 237 | bool DeclSpec::SetStorageClassSpecThread(SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 238 | const char *&PrevSpec, |
| 239 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 240 | if (SCS_thread_specified) { |
| 241 | PrevSpec = "__thread"; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 242 | DiagID = diag::ext_duplicate_declspec; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 243 | return true; |
| 244 | } |
| 245 | SCS_thread_specified = true; |
| 246 | SCS_threadLoc = Loc; |
| 247 | return false; |
| 248 | } |
| 249 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 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). |
| 253 | bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 254 | const char *&PrevSpec, |
| 255 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 256 | if (TypeSpecWidth != TSW_unspecified && |
| 257 | // Allow turning long -> long long. |
| 258 | (W != TSW_longlong || TypeSpecWidth != TSW_long)) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 259 | return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 260 | TypeSpecWidth = W; |
| 261 | TSWLoc = Loc; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 262 | if (TypeAltiVecVector && !TypeAltiVecBool && |
| 263 | ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 264 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 265 | DiagID = diag::warn_vector_long_decl_spec_combination; |
| 266 | return true; |
| 267 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 268 | return false; |
| 269 | } |
| 270 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 271 | bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 272 | const char *&PrevSpec, |
| 273 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 274 | if (TypeSpecComplex != TSC_unspecified) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 275 | return BadSpecifier(C, (TSC)TypeSpecComplex, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 276 | TypeSpecComplex = C; |
| 277 | TSCLoc = Loc; |
| 278 | return false; |
| 279 | } |
| 280 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 281 | bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 282 | const char *&PrevSpec, |
| 283 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 284 | if (TypeSpecSign != TSS_unspecified) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 285 | return BadSpecifier(S, (TSS)TypeSpecSign, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 286 | TypeSpecSign = S; |
| 287 | TSSLoc = Loc; |
| 288 | return false; |
| 289 | } |
| 290 | |
| 291 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 292 | const char *&PrevSpec, |
| 293 | unsigned &DiagID, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 294 | ParsedType Rep) { |
| 295 | assert(isTypeRep(T) && "T does not store a type"); |
| 296 | assert(Rep && "no type provided!"); |
| 297 | if (TypeSpecType != TST_unspecified) { |
| 298 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 299 | DiagID = diag::err_invalid_decl_spec_combination; |
| 300 | return true; |
| 301 | } |
| 302 | TypeSpecType = T; |
| 303 | TypeRep = Rep; |
| 304 | TSTLoc = Loc; |
| 305 | TypeSpecOwned = false; |
| 306 | return false; |
| 307 | } |
| 308 | |
| 309 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 310 | const char *&PrevSpec, |
| 311 | unsigned &DiagID, |
| 312 | Expr *Rep) { |
| 313 | assert(isExprRep(T) && "T does not store an expr"); |
| 314 | assert(Rep && "no expression provided!"); |
| 315 | if (TypeSpecType != TST_unspecified) { |
| 316 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 317 | DiagID = diag::err_invalid_decl_spec_combination; |
| 318 | return true; |
| 319 | } |
| 320 | TypeSpecType = T; |
| 321 | ExprRep = Rep; |
| 322 | TSTLoc = Loc; |
| 323 | TypeSpecOwned = false; |
| 324 | return false; |
| 325 | } |
| 326 | |
| 327 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 328 | const char *&PrevSpec, |
| 329 | unsigned &DiagID, |
| 330 | Decl *Rep, bool Owned) { |
| 331 | assert(isDeclRep(T) && "T does not store a decl"); |
| 332 | // Unlike the other cases, we don't assert that we actually get a decl. |
| 333 | |
| 334 | if (TypeSpecType != TST_unspecified) { |
| 335 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 336 | DiagID = diag::err_invalid_decl_spec_combination; |
| 337 | return true; |
| 338 | } |
| 339 | TypeSpecType = T; |
| 340 | DeclRep = Rep; |
| 341 | TSTLoc = Loc; |
| 342 | TypeSpecOwned = Owned; |
| 343 | return false; |
| 344 | } |
| 345 | |
| 346 | bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, |
| 347 | const char *&PrevSpec, |
| 348 | unsigned &DiagID) { |
| 349 | assert(!isDeclRep(T) && !isTypeRep(T) && !isExprRep(T) && |
| 350 | "rep required for these type-spec kinds!"); |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 351 | if (TypeSpecType != TST_unspecified) { |
| 352 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 353 | DiagID = diag::err_invalid_decl_spec_combination; |
| 354 | return true; |
| 355 | } |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 356 | if (TypeAltiVecVector && (T == TST_bool) && !TypeAltiVecBool) { |
| 357 | TypeAltiVecBool = true; |
| 358 | TSTLoc = Loc; |
| 359 | return false; |
| 360 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 361 | TypeSpecType = T; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 362 | TSTLoc = Loc; |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 363 | TypeSpecOwned = false; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 364 | if (TypeAltiVecVector && !TypeAltiVecBool && (TypeSpecType == TST_double)) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 365 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 366 | DiagID = diag::err_invalid_vector_decl_spec; |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 367 | return true; |
| 368 | } |
| 369 | return false; |
| 370 | } |
| 371 | |
| 372 | bool DeclSpec::SetTypeAltiVecVector(bool isAltiVecVector, SourceLocation Loc, |
| 373 | const char *&PrevSpec, unsigned &DiagID) { |
| 374 | if (TypeSpecType != TST_unspecified) { |
| 375 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 376 | DiagID = diag::err_invalid_vector_decl_spec_combination; |
| 377 | return true; |
| 378 | } |
| 379 | TypeAltiVecVector = isAltiVecVector; |
| 380 | AltiVecLoc = Loc; |
| 381 | return false; |
| 382 | } |
| 383 | |
| 384 | bool DeclSpec::SetTypeAltiVecPixel(bool isAltiVecPixel, SourceLocation Loc, |
| 385 | const char *&PrevSpec, unsigned &DiagID) { |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 386 | if (!TypeAltiVecVector || TypeAltiVecPixel || |
| 387 | (TypeSpecType != TST_unspecified)) { |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 388 | PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType); |
| 389 | DiagID = diag::err_invalid_pixel_decl_spec_combination; |
| 390 | return true; |
| 391 | } |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 392 | TypeAltiVecPixel = isAltiVecPixel; |
| 393 | TSTLoc = Loc; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 394 | return false; |
| 395 | } |
| 396 | |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 397 | bool DeclSpec::SetTypeSpecError() { |
| 398 | TypeSpecType = TST_error; |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 399 | TSTLoc = SourceLocation(); |
| 400 | return false; |
| 401 | } |
| 402 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 403 | bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec, |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 404 | unsigned &DiagID, const LangOptions &Lang) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 405 | // Duplicates turn into warnings pre-C99. |
| 406 | if ((TypeQualifiers & T) && !Lang.C99) |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 407 | return BadSpecifier(T, T, PrevSpec, DiagID); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 408 | TypeQualifiers |= T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 409 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 410 | switch (T) { |
| 411 | default: assert(0 && "Unknown type qualifier!"); |
| 412 | case TQ_const: TQ_constLoc = Loc; break; |
| 413 | case TQ_restrict: TQ_restrictLoc = Loc; break; |
| 414 | case TQ_volatile: TQ_volatileLoc = Loc; break; |
| 415 | } |
| 416 | return false; |
| 417 | } |
| 418 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 419 | bool DeclSpec::SetFunctionSpecInline(SourceLocation Loc, const char *&PrevSpec, |
| 420 | unsigned &DiagID) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 421 | // 'inline inline' is ok. |
| 422 | FS_inline_specified = true; |
| 423 | FS_inlineLoc = Loc; |
| 424 | return false; |
| 425 | } |
| 426 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 427 | bool DeclSpec::SetFunctionSpecVirtual(SourceLocation Loc, const char *&PrevSpec, |
| 428 | unsigned &DiagID) { |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 429 | // 'virtual virtual' is ok. |
| 430 | FS_virtual_specified = true; |
| 431 | FS_virtualLoc = Loc; |
| 432 | return false; |
| 433 | } |
| 434 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 435 | bool DeclSpec::SetFunctionSpecExplicit(SourceLocation Loc, const char *&PrevSpec, |
| 436 | unsigned &DiagID) { |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 437 | // 'explicit explicit' is ok. |
| 438 | FS_explicit_specified = true; |
| 439 | FS_explicitLoc = Loc; |
| 440 | return false; |
| 441 | } |
| 442 | |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 443 | bool DeclSpec::SetFriendSpec(SourceLocation Loc, const char *&PrevSpec, |
| 444 | unsigned &DiagID) { |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 445 | if (Friend_specified) { |
| 446 | PrevSpec = "friend"; |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 447 | DiagID = diag::ext_duplicate_declspec; |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 448 | return true; |
| 449 | } |
John McCall | fec5401 | 2009-08-03 20:12:06 +0000 | [diff] [blame] | 450 | |
Anders Carlsson | f47f7a1 | 2009-05-06 04:46:28 +0000 | [diff] [blame] | 451 | Friend_specified = true; |
| 452 | FriendLoc = Loc; |
| 453 | return false; |
| 454 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 455 | |
Sebastian Redl | 2ac6723 | 2009-11-05 15:47:02 +0000 | [diff] [blame] | 456 | bool DeclSpec::SetConstexprSpec(SourceLocation Loc, const char *&PrevSpec, |
| 457 | unsigned &DiagID) { |
| 458 | // 'constexpr constexpr' is ok. |
| 459 | Constexpr_specified = true; |
| 460 | ConstexprLoc = Loc; |
| 461 | return false; |
| 462 | } |
| 463 | |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 464 | void DeclSpec::setProtocolQualifiers(Decl * const *Protos, |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 465 | unsigned NP, |
| 466 | SourceLocation *ProtoLocs, |
| 467 | SourceLocation LAngleLoc) { |
| 468 | if (NP == 0) return; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 469 | ProtocolQualifiers = new Decl*[NP]; |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 470 | ProtocolLocs = new SourceLocation[NP]; |
John McCall | d226f65 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 471 | memcpy((void*)ProtocolQualifiers, Protos, sizeof(Decl*)*NP); |
Argyrios Kyrtzidis | e3a535b | 2009-09-29 19:42:11 +0000 | [diff] [blame] | 472 | memcpy(ProtocolLocs, ProtoLocs, sizeof(SourceLocation)*NP); |
| 473 | NumProtocolQualifiers = NP; |
| 474 | ProtocolLAngleLoc = LAngleLoc; |
| 475 | } |
| 476 | |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 477 | void DeclSpec::SaveWrittenBuiltinSpecs() { |
| 478 | writtenBS.Sign = getTypeSpecSign(); |
| 479 | writtenBS.Width = getTypeSpecWidth(); |
| 480 | writtenBS.Type = getTypeSpecType(); |
| 481 | // Search the list of attributes for the presence of a mode attribute. |
| 482 | writtenBS.ModeAttr = false; |
| 483 | AttributeList* attrs = getAttributes(); |
| 484 | while (attrs) { |
| 485 | if (attrs->getKind() == AttributeList::AT_mode) { |
| 486 | writtenBS.ModeAttr = true; |
| 487 | break; |
| 488 | } |
| 489 | attrs = attrs->getNext(); |
| 490 | } |
| 491 | } |
| 492 | |
Abramo Bagnara | 35f9a19 | 2010-07-30 16:47:02 +0000 | [diff] [blame] | 493 | void DeclSpec::SaveStorageSpecifierAsWritten() { |
| 494 | if (SCS_extern_in_linkage_spec && StorageClassSpec == SCS_extern) |
| 495 | // If 'extern' is part of a linkage specification, |
| 496 | // then it is not a storage class "as written". |
| 497 | StorageClassSpecAsWritten = SCS_unspecified; |
| 498 | else |
| 499 | StorageClassSpecAsWritten = StorageClassSpec; |
| 500 | } |
| 501 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 502 | /// Finish - This does final analysis of the declspec, rejecting things like |
| 503 | /// "_Imaginary" (lacking an FP type). This returns a diagnostic to issue or |
| 504 | /// diag::NUM_DIAGNOSTICS if there is no error. After calling this method, |
| 505 | /// DeclSpec is guaranteed self-consistent, even if an error occurred. |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 506 | void DeclSpec::Finish(Diagnostic &D, Preprocessor &PP) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 507 | // Before possibly changing their values, save specs as written. |
| 508 | SaveWrittenBuiltinSpecs(); |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 509 | SaveStorageSpecifierAsWritten(); |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 510 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 511 | // Check the type specifier components first. |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 512 | SourceManager &SrcMgr = PP.getSourceManager(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 513 | |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 514 | // Validate and finalize AltiVec vector declspec. |
| 515 | if (TypeAltiVecVector) { |
| 516 | if (TypeAltiVecBool) { |
| 517 | // Sign specifiers are not allowed with vector bool. (PIM 2.1) |
| 518 | if (TypeSpecSign != TSS_unspecified) { |
| 519 | Diag(D, TSSLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec) |
| 520 | << getSpecifierName((TSS)TypeSpecSign); |
| 521 | } |
| 522 | |
| 523 | // Only char/int are valid with vector bool. (PIM 2.1) |
Duncan Sands | 2e964a92 | 2010-06-23 19:34:52 +0000 | [diff] [blame] | 524 | if (((TypeSpecType != TST_unspecified) && (TypeSpecType != TST_char) && |
| 525 | (TypeSpecType != TST_int)) || TypeAltiVecPixel) { |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 526 | Diag(D, TSTLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec) |
| 527 | << (TypeAltiVecPixel ? "__pixel" : |
| 528 | getSpecifierName((TST)TypeSpecType)); |
| 529 | } |
| 530 | |
| 531 | // Only 'short' is valid with vector bool. (PIM 2.1) |
| 532 | if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short)) |
| 533 | Diag(D, TSWLoc, SrcMgr, diag::err_invalid_vector_bool_decl_spec) |
| 534 | << getSpecifierName((TSW)TypeSpecWidth); |
| 535 | |
| 536 | // Elements of vector bool are interpreted as unsigned. (PIM 2.1) |
| 537 | if ((TypeSpecType == TST_char) || (TypeSpecType == TST_int) || |
| 538 | (TypeSpecWidth != TSW_unspecified)) |
| 539 | TypeSpecSign = TSS_unsigned; |
| 540 | } |
| 541 | |
| 542 | if (TypeAltiVecPixel) { |
| 543 | //TODO: perform validation |
| 544 | TypeSpecType = TST_int; |
| 545 | TypeSpecSign = TSS_unsigned; |
| 546 | TypeSpecWidth = TSW_short; |
| 547 | } |
| 548 | } |
| 549 | |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 550 | // signed/unsigned are only valid with int/char/wchar_t. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 551 | if (TypeSpecSign != TSS_unspecified) { |
| 552 | if (TypeSpecType == TST_unspecified) |
| 553 | TypeSpecType = TST_int; // unsigned -> unsigned int, signed -> signed int. |
Argyrios Kyrtzidis | 64c438a | 2008-08-09 16:51:54 +0000 | [diff] [blame] | 554 | else if (TypeSpecType != TST_int && |
| 555 | TypeSpecType != TST_char && TypeSpecType != TST_wchar) { |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 556 | Diag(D, TSSLoc, SrcMgr, diag::err_invalid_sign_spec) |
| 557 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 558 | // signed double -> double. |
| 559 | TypeSpecSign = TSS_unspecified; |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | // Validate the width of the type. |
| 564 | switch (TypeSpecWidth) { |
| 565 | case TSW_unspecified: break; |
| 566 | case TSW_short: // short int |
| 567 | case TSW_longlong: // long long int |
| 568 | if (TypeSpecType == TST_unspecified) |
| 569 | TypeSpecType = TST_int; // short -> short int, long long -> long long int. |
| 570 | else if (TypeSpecType != TST_int) { |
Ted Kremenek | 7a9d49f | 2007-12-11 21:27:55 +0000 | [diff] [blame] | 571 | Diag(D, TSWLoc, SrcMgr, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 572 | TypeSpecWidth == TSW_short ? diag::err_invalid_short_spec |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 573 | : diag::err_invalid_longlong_spec) |
| 574 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 575 | TypeSpecType = TST_int; |
| 576 | } |
| 577 | break; |
| 578 | case TSW_long: // long double, long int |
| 579 | if (TypeSpecType == TST_unspecified) |
| 580 | TypeSpecType = TST_int; // long -> long int. |
| 581 | else if (TypeSpecType != TST_int && TypeSpecType != TST_double) { |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 582 | Diag(D, TSWLoc, SrcMgr, diag::err_invalid_long_spec) |
| 583 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 584 | TypeSpecType = TST_int; |
| 585 | } |
| 586 | break; |
| 587 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 588 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 589 | // TODO: if the implementation does not implement _Complex or _Imaginary, |
| 590 | // disallow their use. Need information about the backend. |
| 591 | if (TypeSpecComplex != TSC_unspecified) { |
| 592 | if (TypeSpecType == TST_unspecified) { |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 593 | Diag(D, TSCLoc, SrcMgr, diag::ext_plain_complex) |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 594 | << FixItHint::CreateInsertion( |
Douglas Gregor | 9b3064b | 2009-04-01 22:41:11 +0000 | [diff] [blame] | 595 | PP.getLocForEndOfToken(getTypeSpecComplexLoc()), |
| 596 | " double"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 597 | TypeSpecType = TST_double; // _Complex -> _Complex double. |
| 598 | } else if (TypeSpecType == TST_int || TypeSpecType == TST_char) { |
| 599 | // Note that this intentionally doesn't include _Complex _Bool. |
Ted Kremenek | 7a9d49f | 2007-12-11 21:27:55 +0000 | [diff] [blame] | 600 | Diag(D, TSTLoc, SrcMgr, diag::ext_integer_complex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 601 | } else if (TypeSpecType != TST_float && TypeSpecType != TST_double) { |
Chris Lattner | 254be6a | 2008-11-22 08:32:36 +0000 | [diff] [blame] | 602 | Diag(D, TSCLoc, SrcMgr, diag::err_invalid_complex_spec) |
| 603 | << getSpecifierName((TST)TypeSpecType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 604 | TypeSpecComplex = TSC_unspecified; |
| 605 | } |
| 606 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 607 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 608 | // C++ [class.friend]p6: |
| 609 | // No storage-class-specifier shall appear in the decl-specifier-seq |
| 610 | // of a friend declaration. |
| 611 | if (isFriendSpecified() && getStorageClassSpec()) { |
| 612 | DeclSpec::SCS SC = getStorageClassSpec(); |
| 613 | const char *SpecName = getSpecifierName(SC); |
| 614 | |
| 615 | SourceLocation SCLoc = getStorageClassSpecLoc(); |
| 616 | SourceLocation SCEndLoc = SCLoc.getFileLocWithOffset(strlen(SpecName)); |
| 617 | |
| 618 | Diag(D, SCLoc, SrcMgr, diag::err_friend_storage_spec) |
| 619 | << SpecName |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 620 | << FixItHint::CreateRemoval(SourceRange(SCLoc, SCEndLoc)); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 621 | |
| 622 | ClearStorageClassSpecs(); |
| 623 | } |
| 624 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 625 | // Okay, now we can infer the real type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 626 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 627 | // TODO: return "auto function" and other bad things based on the real type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 628 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 629 | // 'data definition has no type or storage class'? |
| 630 | } |
Daniel Dunbar | e4858a6 | 2008-08-11 03:45:03 +0000 | [diff] [blame] | 631 | |
Sebastian Redl | a4ed0d8 | 2008-12-28 15:28:59 +0000 | [diff] [blame] | 632 | bool DeclSpec::isMissingDeclaratorOk() { |
| 633 | TST tst = getTypeSpecType(); |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 634 | return isDeclRep(tst) && getRepAsDecl() != 0 && |
| 635 | StorageClassSpec != DeclSpec::SCS_typedef; |
Sebastian Redl | a4ed0d8 | 2008-12-28 15:28:59 +0000 | [diff] [blame] | 636 | } |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 637 | |
| 638 | void UnqualifiedId::clear() { |
| 639 | if (Kind == IK_TemplateId) |
| 640 | TemplateId->Destroy(); |
| 641 | |
| 642 | Kind = IK_Identifier; |
| 643 | Identifier = 0; |
| 644 | StartLocation = SourceLocation(); |
| 645 | EndLocation = SourceLocation(); |
| 646 | } |
| 647 | |
| 648 | void UnqualifiedId::setOperatorFunctionId(SourceLocation OperatorLoc, |
| 649 | OverloadedOperatorKind Op, |
| 650 | SourceLocation SymbolLocations[3]) { |
| 651 | Kind = IK_OperatorFunctionId; |
| 652 | StartLocation = OperatorLoc; |
| 653 | EndLocation = OperatorLoc; |
| 654 | OperatorFunctionId.Operator = Op; |
| 655 | for (unsigned I = 0; I != 3; ++I) { |
| 656 | OperatorFunctionId.SymbolLocations[I] = SymbolLocations[I].getRawEncoding(); |
| 657 | |
| 658 | if (SymbolLocations[I].isValid()) |
| 659 | EndLocation = SymbolLocations[I]; |
| 660 | } |
| 661 | } |