blob: 2c96c4d4ee2445291535566c3753383933f68e78 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- LiteralSupport.cpp - Code to parse and process literals ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the NumericLiteralParser, CharLiteralParser, and
11// StringLiteralParser interfaces.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/LiteralSupport.h"
16#include "clang/Lex/Preprocessor.h"
Chris Lattner500d3292009-01-29 05:15:15 +000017#include "clang/Lex/LexDiagnostic.h"
Chris Lattner136f93a2007-07-16 06:55:01 +000018#include "clang/Basic/TargetInfo.h"
Erick Tryzelaare9f195f2009-08-16 23:36:28 +000019#include "llvm/ADT/StringRef.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/StringExtras.h"
21using namespace clang;
22
23/// HexDigitValue - Return the value of the specified hex digit, or -1 if it's
24/// not valid.
25static int HexDigitValue(char C) {
26 if (C >= '0' && C <= '9') return C-'0';
27 if (C >= 'a' && C <= 'f') return C-'a'+10;
28 if (C >= 'A' && C <= 'F') return C-'A'+10;
29 return -1;
30}
31
32/// ProcessCharEscape - Parse a standard C escape sequence, which can occur in
33/// either a character or a string literal.
34static unsigned ProcessCharEscape(const char *&ThisTokBuf,
35 const char *ThisTokEnd, bool &HadError,
Chris Lattner91f54ce2010-11-17 06:26:08 +000036 FullSourceLoc Loc, bool IsWide,
37 Diagnostic *Diags, const TargetInfo &Target) {
Reid Spencer5f016e22007-07-11 17:01:13 +000038 // Skip the '\' char.
39 ++ThisTokBuf;
40
41 // We know that this character can't be off the end of the buffer, because
42 // that would have been \", which would not have been the end of string.
43 unsigned ResultChar = *ThisTokBuf++;
44 switch (ResultChar) {
45 // These map to themselves.
46 case '\\': case '\'': case '"': case '?': break;
Mike Stump1eb44332009-09-09 15:08:12 +000047
Reid Spencer5f016e22007-07-11 17:01:13 +000048 // These have fixed mappings.
49 case 'a':
50 // TODO: K&R: the meaning of '\\a' is different in traditional C
51 ResultChar = 7;
52 break;
53 case 'b':
54 ResultChar = 8;
55 break;
56 case 'e':
Chris Lattner91f54ce2010-11-17 06:26:08 +000057 if (Diags)
58 Diags->Report(Loc, diag::ext_nonstandard_escape) << "e";
Reid Spencer5f016e22007-07-11 17:01:13 +000059 ResultChar = 27;
60 break;
Eli Friedman3c548012009-06-10 01:32:39 +000061 case 'E':
Chris Lattner91f54ce2010-11-17 06:26:08 +000062 if (Diags)
63 Diags->Report(Loc, diag::ext_nonstandard_escape) << "E";
Eli Friedman3c548012009-06-10 01:32:39 +000064 ResultChar = 27;
65 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000066 case 'f':
67 ResultChar = 12;
68 break;
69 case 'n':
70 ResultChar = 10;
71 break;
72 case 'r':
73 ResultChar = 13;
74 break;
75 case 't':
76 ResultChar = 9;
77 break;
78 case 'v':
79 ResultChar = 11;
80 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000081 case 'x': { // Hex escape.
82 ResultChar = 0;
83 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Chris Lattner91f54ce2010-11-17 06:26:08 +000084 if (Diags)
85 Diags->Report(Loc, diag::err_hex_escape_no_digits);
Reid Spencer5f016e22007-07-11 17:01:13 +000086 HadError = 1;
87 break;
88 }
Mike Stump1eb44332009-09-09 15:08:12 +000089
Reid Spencer5f016e22007-07-11 17:01:13 +000090 // Hex escapes are a maximal series of hex digits.
91 bool Overflow = false;
92 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
93 int CharVal = HexDigitValue(ThisTokBuf[0]);
94 if (CharVal == -1) break;
Chris Lattnerc29bbde2008-09-30 20:45:40 +000095 // About to shift out a digit?
96 Overflow |= (ResultChar & 0xF0000000) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +000097 ResultChar <<= 4;
98 ResultChar |= CharVal;
99 }
100
101 // See if any bits will be truncated when evaluated as a character.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000102 unsigned CharWidth =
103 IsWide ? Target.getWCharWidth() : Target.getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
106 Overflow = true;
107 ResultChar &= ~0U >> (32-CharWidth);
108 }
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 // Check for overflow.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000111 if (Overflow && Diags) // Too many digits to fit in
112 Diags->Report(Loc, diag::warn_hex_escape_too_large);
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 break;
114 }
115 case '0': case '1': case '2': case '3':
116 case '4': case '5': case '6': case '7': {
117 // Octal escapes.
118 --ThisTokBuf;
119 ResultChar = 0;
120
121 // Octal escapes are a series of octal digits with maximum length 3.
122 // "\0123" is a two digit sequence equal to "\012" "3".
123 unsigned NumDigits = 0;
124 do {
125 ResultChar <<= 3;
126 ResultChar |= *ThisTokBuf++ - '0';
127 ++NumDigits;
128 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
129 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7');
Mike Stump1eb44332009-09-09 15:08:12 +0000130
Reid Spencer5f016e22007-07-11 17:01:13 +0000131 // Check for overflow. Reject '\777', but not L'\777'.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000132 unsigned CharWidth =
133 IsWide ? Target.getWCharWidth() : Target.getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Reid Spencer5f016e22007-07-11 17:01:13 +0000135 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
Chris Lattner91f54ce2010-11-17 06:26:08 +0000136 if (Diags)
137 Diags->Report(Loc, diag::warn_octal_escape_too_large);
Reid Spencer5f016e22007-07-11 17:01:13 +0000138 ResultChar &= ~0U >> (32-CharWidth);
139 }
140 break;
141 }
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 // Otherwise, these are not valid escapes.
144 case '(': case '{': case '[': case '%':
145 // GCC accepts these as extensions. We warn about them as such though.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000146 if (Diags)
147 Diags->Report(Loc, diag::ext_nonstandard_escape)
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000148 << std::string()+(char)ResultChar;
Eli Friedmanf01fdff2009-04-28 00:51:18 +0000149 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000150 default:
Chris Lattner91f54ce2010-11-17 06:26:08 +0000151 if (Diags == 0)
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000152 break;
153
Ted Kremenek23ef69d2010-12-03 00:09:56 +0000154 if (isgraph(ResultChar))
Chris Lattner91f54ce2010-11-17 06:26:08 +0000155 Diags->Report(Loc, diag::ext_unknown_escape)
156 << std::string()+(char)ResultChar;
Chris Lattnerac92d822008-11-22 07:23:31 +0000157 else
Chris Lattner91f54ce2010-11-17 06:26:08 +0000158 Diags->Report(Loc, diag::ext_unknown_escape)
159 << "x"+llvm::utohexstr(ResultChar);
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 break;
161 }
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Reid Spencer5f016e22007-07-11 17:01:13 +0000163 return ResultChar;
164}
165
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000166/// ProcessUCNEscape - Read the Universal Character Name, check constraints and
Nico Weber59705ae2010-10-09 00:27:47 +0000167/// return the UTF32.
168static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
169 uint32_t &UcnVal, unsigned short &UcnLen,
Chris Lattner872a45e2010-11-17 06:55:10 +0000170 FullSourceLoc Loc, Diagnostic *Diags,
Chris Lattner6c66f072010-11-17 06:46:14 +0000171 const LangOptions &Features) {
172 if (!Features.CPlusPlus && !Features.C99 && Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000173 Diags->Report(Loc, diag::warn_ucn_not_valid_in_c89);
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Steve Naroff4e93b342009-04-01 11:09:15 +0000175 // Save the beginning of the string (for error diagnostics).
176 const char *ThisTokBegin = ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000178 // Skip the '\u' char's.
179 ThisTokBuf += 2;
Reid Spencer5f016e22007-07-11 17:01:13 +0000180
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000181 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Chris Lattner6c66f072010-11-17 06:46:14 +0000182 if (Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000183 Diags->Report(Loc, diag::err_ucn_escape_no_digits);
Nico Weber59705ae2010-10-09 00:27:47 +0000184 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000185 }
Nico Weber59705ae2010-10-09 00:27:47 +0000186 UcnLen = (ThisTokBuf[-1] == 'u' ? 4 : 8);
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000187 unsigned short UcnLenSave = UcnLen;
Nico Weber59705ae2010-10-09 00:27:47 +0000188 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000189 int CharVal = HexDigitValue(ThisTokBuf[0]);
190 if (CharVal == -1) break;
191 UcnVal <<= 4;
192 UcnVal |= CharVal;
193 }
194 // If we didn't consume the proper number of digits, there is a problem.
Nico Weber59705ae2010-10-09 00:27:47 +0000195 if (UcnLenSave) {
Chris Lattner872a45e2010-11-17 06:55:10 +0000196 if (Diags) {
Chris Lattner7ef5c272010-11-17 07:05:50 +0000197 SourceLocation L =
198 Lexer::AdvanceToTokenCharacter(Loc, ThisTokBuf-ThisTokBegin,
199 Loc.getManager(), Features);
200 Diags->Report(FullSourceLoc(L, Loc.getManager()),
201 diag::err_ucn_escape_incomplete);
Chris Lattner872a45e2010-11-17 06:55:10 +0000202 }
Nico Weber59705ae2010-10-09 00:27:47 +0000203 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000204 }
Mike Stump1eb44332009-09-09 15:08:12 +0000205 // Check UCN constraints (C99 6.4.3p2).
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000206 if ((UcnVal < 0xa0 &&
207 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, `
Mike Stump1eb44332009-09-09 15:08:12 +0000208 || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF)
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000209 || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ {
Chris Lattner6c66f072010-11-17 06:46:14 +0000210 if (Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000211 Diags->Report(Loc, diag::err_ucn_escape_invalid);
Nico Weber59705ae2010-10-09 00:27:47 +0000212 return false;
213 }
214 return true;
215}
216
217/// EncodeUCNEscape - Read the Universal Character Name, check constraints and
218/// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
219/// StringLiteralParser. When we decide to implement UCN's for identifiers,
220/// we will likely rework our support for UCN's.
221static void EncodeUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
Chris Lattnera95880d2010-11-17 07:12:42 +0000222 char *&ResultBuf, bool &HadError,
223 FullSourceLoc Loc, bool wide, Diagnostic *Diags,
224 const LangOptions &Features) {
Nico Weber59705ae2010-10-09 00:27:47 +0000225 typedef uint32_t UTF32;
226 UTF32 UcnVal = 0;
227 unsigned short UcnLen = 0;
Chris Lattnera95880d2010-11-17 07:12:42 +0000228 if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, Loc, Diags,
229 Features)) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000230 HadError = 1;
231 return;
232 }
Nico Weber59705ae2010-10-09 00:27:47 +0000233
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000234 if (wide) {
Nico Weber59705ae2010-10-09 00:27:47 +0000235 (void)UcnLen;
Chris Lattnera95880d2010-11-17 07:12:42 +0000236 assert((UcnLen== 4 || UcnLen== 8) && "only ucn length of 4 or 8 supported");
Nico Webera0f15b02010-10-06 04:57:26 +0000237
Chris Lattnera95880d2010-11-17 07:12:42 +0000238 if (!Features.ShortWChar) {
Nico Webera0f15b02010-10-06 04:57:26 +0000239 // Note: our internal rep of wide char tokens is always little-endian.
240 *ResultBuf++ = (UcnVal & 0x000000FF);
241 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
242 *ResultBuf++ = (UcnVal & 0x00FF0000) >> 16;
243 *ResultBuf++ = (UcnVal & 0xFF000000) >> 24;
244 return;
245 }
246
247 // Convert to UTF16.
248 if (UcnVal < (UTF32)0xFFFF) {
249 *ResultBuf++ = (UcnVal & 0x000000FF);
250 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
251 return;
252 }
Chris Lattnera95880d2010-11-17 07:12:42 +0000253 if (Diags) Diags->Report(Loc, diag::warn_ucn_escape_too_large);
Nico Webera0f15b02010-10-06 04:57:26 +0000254
255 typedef uint16_t UTF16;
256 UcnVal -= 0x10000;
257 UTF16 surrogate1 = 0xD800 + (UcnVal >> 10);
258 UTF16 surrogate2 = 0xDC00 + (UcnVal & 0x3FF);
259 *ResultBuf++ = (surrogate1 & 0x000000FF);
260 *ResultBuf++ = (surrogate1 & 0x0000FF00) >> 8;
261 *ResultBuf++ = (surrogate2 & 0x000000FF);
262 *ResultBuf++ = (surrogate2 & 0x0000FF00) >> 8;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000263 return;
264 }
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000265 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
266 // The conversion below was inspired by:
267 // http://www.unicode.org/Public/PROGRAMS/CVTUTF/ConvertUTF.c
Mike Stump1eb44332009-09-09 15:08:12 +0000268 // First, we determine how many bytes the result will require.
Steve Naroff4e93b342009-04-01 11:09:15 +0000269 typedef uint8_t UTF8;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000270
271 unsigned short bytesToWrite = 0;
272 if (UcnVal < (UTF32)0x80)
273 bytesToWrite = 1;
274 else if (UcnVal < (UTF32)0x800)
275 bytesToWrite = 2;
276 else if (UcnVal < (UTF32)0x10000)
277 bytesToWrite = 3;
278 else
279 bytesToWrite = 4;
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000281 const unsigned byteMask = 0xBF;
282 const unsigned byteMark = 0x80;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000284 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000285 // into the first byte, depending on how many bytes follow.
Mike Stump1eb44332009-09-09 15:08:12 +0000286 static const UTF8 firstByteMark[5] = {
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000287 0x00, 0x00, 0xC0, 0xE0, 0xF0
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000288 };
289 // Finally, we write the bytes into ResultBuf.
290 ResultBuf += bytesToWrite;
291 switch (bytesToWrite) { // note: everything falls through.
292 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
293 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
294 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
295 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
296 }
297 // Update the buffer.
298 ResultBuf += bytesToWrite;
299}
Reid Spencer5f016e22007-07-11 17:01:13 +0000300
301
302/// integer-constant: [C99 6.4.4.1]
303/// decimal-constant integer-suffix
304/// octal-constant integer-suffix
305/// hexadecimal-constant integer-suffix
Mike Stump1eb44332009-09-09 15:08:12 +0000306/// decimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000307/// nonzero-digit
308/// decimal-constant digit
Mike Stump1eb44332009-09-09 15:08:12 +0000309/// octal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000310/// 0
311/// octal-constant octal-digit
Mike Stump1eb44332009-09-09 15:08:12 +0000312/// hexadecimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000313/// hexadecimal-prefix hexadecimal-digit
314/// hexadecimal-constant hexadecimal-digit
315/// hexadecimal-prefix: one of
316/// 0x 0X
317/// integer-suffix:
318/// unsigned-suffix [long-suffix]
319/// unsigned-suffix [long-long-suffix]
320/// long-suffix [unsigned-suffix]
321/// long-long-suffix [unsigned-sufix]
322/// nonzero-digit:
323/// 1 2 3 4 5 6 7 8 9
324/// octal-digit:
325/// 0 1 2 3 4 5 6 7
326/// hexadecimal-digit:
327/// 0 1 2 3 4 5 6 7 8 9
328/// a b c d e f
329/// A B C D E F
330/// unsigned-suffix: one of
331/// u U
332/// long-suffix: one of
333/// l L
Mike Stump1eb44332009-09-09 15:08:12 +0000334/// long-long-suffix: one of
Reid Spencer5f016e22007-07-11 17:01:13 +0000335/// ll LL
336///
337/// floating-constant: [C99 6.4.4.2]
338/// TODO: add rules...
339///
Reid Spencer5f016e22007-07-11 17:01:13 +0000340NumericLiteralParser::
341NumericLiteralParser(const char *begin, const char *end,
342 SourceLocation TokLoc, Preprocessor &pp)
343 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end) {
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Chris Lattnerc29bbde2008-09-30 20:45:40 +0000345 // This routine assumes that the range begin/end matches the regex for integer
346 // and FP constants (specifically, the 'pp-number' regex), and assumes that
347 // the byte at "*end" is both valid and not part of the regex. Because of
348 // this, it doesn't have to check for 'overscan' in various places.
349 assert(!isalnum(*end) && *end != '.' && *end != '_' &&
350 "Lexer didn't maximally munch?");
Mike Stump1eb44332009-09-09 15:08:12 +0000351
Reid Spencer5f016e22007-07-11 17:01:13 +0000352 s = DigitsBegin = begin;
353 saw_exponent = false;
354 saw_period = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000355 isLong = false;
356 isUnsigned = false;
357 isLongLong = false;
Chris Lattner6e400c22007-08-26 03:29:23 +0000358 isFloat = false;
Chris Lattner506b8de2007-08-26 01:58:14 +0000359 isImaginary = false;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000360 isMicrosoftInteger = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000361 hadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Reid Spencer5f016e22007-07-11 17:01:13 +0000363 if (*s == '0') { // parse radix
Chris Lattner368328c2008-06-30 06:39:54 +0000364 ParseNumberStartingWithZero(TokLoc);
365 if (hadError)
366 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000367 } else { // the first digit is non-zero
368 radix = 10;
369 s = SkipDigits(s);
370 if (s == ThisTokEnd) {
371 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000372 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000373 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000374 diag::err_invalid_decimal_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000375 hadError = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000376 return;
377 } else if (*s == '.') {
378 s++;
379 saw_period = true;
380 s = SkipDigits(s);
Mike Stump1eb44332009-09-09 15:08:12 +0000381 }
Chris Lattner4411f462008-09-29 23:12:31 +0000382 if ((*s == 'e' || *s == 'E')) { // exponent
Chris Lattner70f66ab2008-04-20 18:47:55 +0000383 const char *Exponent = s;
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 s++;
385 saw_exponent = true;
386 if (*s == '+' || *s == '-') s++; // sign
387 const char *first_non_digit = SkipDigits(s);
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000388 if (first_non_digit != s) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000389 s = first_non_digit;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000390 } else {
Chris Lattnerac92d822008-11-22 07:23:31 +0000391 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin),
392 diag::err_exponent_has_no_digits);
393 hadError = true;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000394 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000395 }
396 }
397 }
398
399 SuffixBegin = s;
Mike Stump1eb44332009-09-09 15:08:12 +0000400
Chris Lattner506b8de2007-08-26 01:58:14 +0000401 // Parse the suffix. At this point we can classify whether we have an FP or
402 // integer constant.
403 bool isFPConstant = isFloatingLiteral();
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattner506b8de2007-08-26 01:58:14 +0000405 // Loop over all of the characters of the suffix. If we see something bad,
406 // we break out of the loop.
407 for (; s != ThisTokEnd; ++s) {
408 switch (*s) {
409 case 'f': // FP Suffix for "float"
410 case 'F':
411 if (!isFPConstant) break; // Error for integer constant.
Chris Lattner6e400c22007-08-26 03:29:23 +0000412 if (isFloat || isLong) break; // FF, LF invalid.
413 isFloat = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000414 continue; // Success.
415 case 'u':
416 case 'U':
417 if (isFPConstant) break; // Error for floating constant.
418 if (isUnsigned) break; // Cannot be repeated.
419 isUnsigned = true;
420 continue; // Success.
421 case 'l':
422 case 'L':
423 if (isLong || isLongLong) break; // Cannot be repeated.
Chris Lattner6e400c22007-08-26 03:29:23 +0000424 if (isFloat) break; // LF invalid.
Mike Stump1eb44332009-09-09 15:08:12 +0000425
Chris Lattner506b8de2007-08-26 01:58:14 +0000426 // Check for long long. The L's need to be adjacent and the same case.
427 if (s+1 != ThisTokEnd && s[1] == s[0]) {
428 if (isFPConstant) break; // long long invalid for floats.
429 isLongLong = true;
430 ++s; // Eat both of them.
431 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000432 isLong = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000434 continue; // Success.
435 case 'i':
Chris Lattnerc6374152010-10-14 00:24:10 +0000436 case 'I':
Steve Naroff0c29b222008-04-04 21:02:54 +0000437 if (PP.getLangOptions().Microsoft) {
Fariborz Jahaniana8be02b2010-01-22 21:36:53 +0000438 if (isFPConstant || isLong || isLongLong) break;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000439
Steve Naroff0c29b222008-04-04 21:02:54 +0000440 // Allow i8, i16, i32, i64, and i128.
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000441 if (s + 1 != ThisTokEnd) {
442 switch (s[1]) {
443 case '8':
444 s += 2; // i8 suffix
445 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000446 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000447 case '1':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000448 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000449 if (s[2] == '6') {
450 s += 3; // i16 suffix
451 isMicrosoftInteger = true;
452 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000453 else if (s[2] == '2') {
454 if (s + 3 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000455 if (s[3] == '8') {
456 s += 4; // i128 suffix
457 isMicrosoftInteger = true;
458 }
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000459 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000460 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000461 case '3':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000462 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000463 if (s[2] == '2') {
464 s += 3; // i32 suffix
465 isLong = true;
466 isMicrosoftInteger = true;
467 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000468 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000469 case '6':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000470 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000471 if (s[2] == '4') {
472 s += 3; // i64 suffix
473 isLongLong = true;
474 isMicrosoftInteger = true;
475 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000476 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000477 default:
478 break;
479 }
480 break;
Steve Naroff0c29b222008-04-04 21:02:54 +0000481 }
Steve Naroff0c29b222008-04-04 21:02:54 +0000482 }
483 // fall through.
Chris Lattner506b8de2007-08-26 01:58:14 +0000484 case 'j':
485 case 'J':
486 if (isImaginary) break; // Cannot be repeated.
487 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
488 diag::ext_imaginary_constant);
489 isImaginary = true;
490 continue; // Success.
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000492 // If we reached here, there was an error.
493 break;
494 }
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Chris Lattner506b8de2007-08-26 01:58:14 +0000496 // Report an error if there are any.
497 if (s != ThisTokEnd) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000498 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
499 isFPConstant ? diag::err_invalid_suffix_float_constant :
500 diag::err_invalid_suffix_integer_constant)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000501 << llvm::StringRef(SuffixBegin, ThisTokEnd-SuffixBegin);
Chris Lattnerac92d822008-11-22 07:23:31 +0000502 hadError = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000503 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000504 }
505}
506
Chris Lattner368328c2008-06-30 06:39:54 +0000507/// ParseNumberStartingWithZero - This method is called when the first character
508/// of the number is found to be a zero. This means it is either an octal
509/// number (like '04') or a hex number ('0x123a') a binary number ('0b1010') or
Mike Stump1eb44332009-09-09 15:08:12 +0000510/// a floating point number (01239.123e4). Eat the prefix, determining the
Chris Lattner368328c2008-06-30 06:39:54 +0000511/// radix etc.
512void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) {
513 assert(s[0] == '0' && "Invalid method call");
514 s++;
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattner368328c2008-06-30 06:39:54 +0000516 // Handle a hex number like 0x1234.
517 if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
518 s++;
519 radix = 16;
520 DigitsBegin = s;
521 s = SkipHexDigits(s);
522 if (s == ThisTokEnd) {
523 // Done.
524 } else if (*s == '.') {
525 s++;
526 saw_period = true;
527 s = SkipHexDigits(s);
528 }
529 // A binary exponent can appear with or with a '.'. If dotted, the
Mike Stump1eb44332009-09-09 15:08:12 +0000530 // binary exponent is required.
Sean Hunt8c723402010-01-10 23:37:56 +0000531 if ((*s == 'p' || *s == 'P') && !PP.getLangOptions().CPlusPlus0x) {
Chris Lattner368328c2008-06-30 06:39:54 +0000532 const char *Exponent = s;
533 s++;
534 saw_exponent = true;
535 if (*s == '+' || *s == '-') s++; // sign
536 const char *first_non_digit = SkipDigits(s);
Chris Lattner6ea62382008-07-25 18:18:34 +0000537 if (first_non_digit == s) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000538 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
539 diag::err_exponent_has_no_digits);
540 hadError = true;
Chris Lattner6ea62382008-07-25 18:18:34 +0000541 return;
Chris Lattner368328c2008-06-30 06:39:54 +0000542 }
Chris Lattner6ea62382008-07-25 18:18:34 +0000543 s = first_non_digit;
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Sean Hunt8c723402010-01-10 23:37:56 +0000545 // In C++0x, we cannot support hexadecmial floating literals because
546 // they conflict with user-defined literals, so we warn in previous
547 // versions of C++ by default.
548 if (PP.getLangOptions().CPlusPlus)
549 PP.Diag(TokLoc, diag::ext_hexconstant_cplusplus);
550 else if (!PP.getLangOptions().HexFloats)
Chris Lattnerac92d822008-11-22 07:23:31 +0000551 PP.Diag(TokLoc, diag::ext_hexconstant_invalid);
Chris Lattner368328c2008-06-30 06:39:54 +0000552 } else if (saw_period) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000553 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
554 diag::err_hexconstant_requires_exponent);
555 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000556 }
557 return;
558 }
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Chris Lattner368328c2008-06-30 06:39:54 +0000560 // Handle simple binary numbers 0b01010
561 if (*s == 'b' || *s == 'B') {
562 // 0b101010 is a GCC extension.
Chris Lattner413d3552008-06-30 06:44:49 +0000563 PP.Diag(TokLoc, diag::ext_binary_literal);
Chris Lattner368328c2008-06-30 06:39:54 +0000564 ++s;
565 radix = 2;
566 DigitsBegin = s;
567 s = SkipBinaryDigits(s);
568 if (s == ThisTokEnd) {
569 // Done.
570 } else if (isxdigit(*s)) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000571 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000572 diag::err_invalid_binary_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000573 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000574 }
Chris Lattner413d3552008-06-30 06:44:49 +0000575 // Other suffixes will be diagnosed by the caller.
Chris Lattner368328c2008-06-30 06:39:54 +0000576 return;
577 }
Mike Stump1eb44332009-09-09 15:08:12 +0000578
Chris Lattner368328c2008-06-30 06:39:54 +0000579 // For now, the radix is set to 8. If we discover that we have a
580 // floating point constant, the radix will change to 10. Octal floating
Mike Stump1eb44332009-09-09 15:08:12 +0000581 // point constants are not permitted (only decimal and hexadecimal).
Chris Lattner368328c2008-06-30 06:39:54 +0000582 radix = 8;
583 DigitsBegin = s;
584 s = SkipOctalDigits(s);
585 if (s == ThisTokEnd)
586 return; // Done, simple octal number like 01234
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Chris Lattner413d3552008-06-30 06:44:49 +0000588 // If we have some other non-octal digit that *is* a decimal digit, see if
589 // this is part of a floating point number like 094.123 or 09e1.
590 if (isdigit(*s)) {
591 const char *EndDecimal = SkipDigits(s);
592 if (EndDecimal[0] == '.' || EndDecimal[0] == 'e' || EndDecimal[0] == 'E') {
593 s = EndDecimal;
594 radix = 10;
595 }
596 }
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Chris Lattner413d3552008-06-30 06:44:49 +0000598 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
599 // the code is using an incorrect base.
Chris Lattner368328c2008-06-30 06:39:54 +0000600 if (isxdigit(*s) && *s != 'e' && *s != 'E') {
Chris Lattnerac92d822008-11-22 07:23:31 +0000601 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000602 diag::err_invalid_octal_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000603 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000604 return;
605 }
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Chris Lattner368328c2008-06-30 06:39:54 +0000607 if (*s == '.') {
608 s++;
609 radix = 10;
610 saw_period = true;
Chris Lattner413d3552008-06-30 06:44:49 +0000611 s = SkipDigits(s); // Skip suffix.
Chris Lattner368328c2008-06-30 06:39:54 +0000612 }
613 if (*s == 'e' || *s == 'E') { // exponent
614 const char *Exponent = s;
615 s++;
616 radix = 10;
617 saw_exponent = true;
618 if (*s == '+' || *s == '-') s++; // sign
619 const char *first_non_digit = SkipDigits(s);
620 if (first_non_digit != s) {
621 s = first_non_digit;
622 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000623 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
Chris Lattnerac92d822008-11-22 07:23:31 +0000624 diag::err_exponent_has_no_digits);
625 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000626 return;
627 }
628 }
629}
630
631
Reid Spencer5f016e22007-07-11 17:01:13 +0000632/// GetIntegerValue - Convert this numeric literal value to an APInt that
633/// matches Val's input width. If there is an overflow, set Val to the low bits
634/// of the result and return true. Otherwise, return false.
635bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) {
Daniel Dunbara179be32008-10-16 07:32:01 +0000636 // Fast path: Compute a conservative bound on the maximum number of
637 // bits per digit in this radix. If we can't possibly overflow a
638 // uint64 based on that bound then do the simple conversion to
639 // integer. This avoids the expensive overflow checking below, and
640 // handles the common cases that matter (small decimal integers and
641 // hex/octal values which don't overflow).
642 unsigned MaxBitsPerDigit = 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000643 while ((1U << MaxBitsPerDigit) < radix)
Daniel Dunbara179be32008-10-16 07:32:01 +0000644 MaxBitsPerDigit += 1;
645 if ((SuffixBegin - DigitsBegin) * MaxBitsPerDigit <= 64) {
646 uint64_t N = 0;
647 for (s = DigitsBegin; s != SuffixBegin; ++s)
648 N = N*radix + HexDigitValue(*s);
649
650 // This will truncate the value to Val's input width. Simply check
651 // for overflow by comparing.
652 Val = N;
653 return Val.getZExtValue() != N;
654 }
655
Reid Spencer5f016e22007-07-11 17:01:13 +0000656 Val = 0;
657 s = DigitsBegin;
658
659 llvm::APInt RadixVal(Val.getBitWidth(), radix);
660 llvm::APInt CharVal(Val.getBitWidth(), 0);
661 llvm::APInt OldVal = Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000662
Reid Spencer5f016e22007-07-11 17:01:13 +0000663 bool OverflowOccurred = false;
664 while (s < SuffixBegin) {
665 unsigned C = HexDigitValue(*s++);
Mike Stump1eb44332009-09-09 15:08:12 +0000666
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 // If this letter is out of bound for this radix, reject it.
668 assert(C < radix && "NumericLiteralParser ctor should have rejected this");
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 CharVal = C;
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Reid Spencer5f016e22007-07-11 17:01:13 +0000672 // Add the digit to the value in the appropriate radix. If adding in digits
673 // made the value smaller, then this overflowed.
674 OldVal = Val;
675
676 // Multiply by radix, did overflow occur on the multiply?
677 Val *= RadixVal;
678 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
679
Reid Spencer5f016e22007-07-11 17:01:13 +0000680 // Add value, did overflow occur on the value?
Daniel Dunbard70cb642008-10-16 06:39:30 +0000681 // (a + b) ult b <=> overflow
Reid Spencer5f016e22007-07-11 17:01:13 +0000682 Val += CharVal;
Reid Spencer5f016e22007-07-11 17:01:13 +0000683 OverflowOccurred |= Val.ult(CharVal);
684 }
685 return OverflowOccurred;
686}
687
John McCall94c939d2009-12-24 09:08:04 +0000688llvm::APFloat::opStatus
689NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) {
Ted Kremenek427d5af2007-11-26 23:12:30 +0000690 using llvm::APFloat;
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000691 using llvm::StringRef;
Mike Stump1eb44332009-09-09 15:08:12 +0000692
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000693 unsigned n = std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin);
John McCall94c939d2009-12-24 09:08:04 +0000694 return Result.convertFromString(StringRef(ThisTokBegin, n),
695 APFloat::rmNearestTiesToEven);
Reid Spencer5f016e22007-07-11 17:01:13 +0000696}
697
Reid Spencer5f016e22007-07-11 17:01:13 +0000698
699CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
700 SourceLocation Loc, Preprocessor &PP) {
701 // At this point we know that the character matches the regex "L?'.*'".
702 HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000703
Reid Spencer5f016e22007-07-11 17:01:13 +0000704 // Determine if this is a wide character.
705 IsWide = begin[0] == 'L';
706 if (IsWide) ++begin;
Mike Stump1eb44332009-09-09 15:08:12 +0000707
Reid Spencer5f016e22007-07-11 17:01:13 +0000708 // Skip over the entry quote.
709 assert(begin[0] == '\'' && "Invalid token lexed");
710 ++begin;
711
Mike Stump1eb44332009-09-09 15:08:12 +0000712 // FIXME: The "Value" is an uint64_t so we can handle char literals of
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000713 // up to 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000714 // FIXME: This extensively assumes that 'char' is 8-bits.
Chris Lattner98be4942008-03-05 18:54:05 +0000715 assert(PP.getTargetInfo().getCharWidth() == 8 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000716 "Assumes char is 8 bits");
Chris Lattnere3ad8812009-04-28 21:51:46 +0000717 assert(PP.getTargetInfo().getIntWidth() <= 64 &&
718 (PP.getTargetInfo().getIntWidth() & 7) == 0 &&
719 "Assumes sizeof(int) on target is <= 64 and a multiple of char");
720 assert(PP.getTargetInfo().getWCharWidth() <= 64 &&
721 "Assumes sizeof(wchar) on target is <= 64");
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000722
Mike Stump1eb44332009-09-09 15:08:12 +0000723 // This is what we will use for overflow detection
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000724 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000725
Chris Lattnere3ad8812009-04-28 21:51:46 +0000726 unsigned NumCharsSoFar = 0;
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000727 bool Warned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000728 while (begin[0] != '\'') {
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000729 uint64_t ResultChar;
Nico Weber59705ae2010-10-09 00:27:47 +0000730
731 // Is this a Universal Character Name escape?
Reid Spencer5f016e22007-07-11 17:01:13 +0000732 if (begin[0] != '\\') // If this is a normal character, consume it.
733 ResultChar = *begin++;
Nico Weber59705ae2010-10-09 00:27:47 +0000734 else { // Otherwise, this is an escape character.
735 // Check for UCN.
736 if (begin[1] == 'u' || begin[1] == 'U') {
737 uint32_t utf32 = 0;
738 unsigned short UcnLen = 0;
Chris Lattner872a45e2010-11-17 06:55:10 +0000739 if (!ProcessUCNEscape(begin, end, utf32, UcnLen,
740 FullSourceLoc(Loc, PP.getSourceManager()),
Chris Lattner6c66f072010-11-17 06:46:14 +0000741 &PP.getDiagnostics(), PP.getLangOptions())) {
Nico Weber59705ae2010-10-09 00:27:47 +0000742 HadError = 1;
743 }
744 ResultChar = utf32;
745 } else {
746 // Otherwise, this is a non-UCN escape character. Process it.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000747 ResultChar = ProcessCharEscape(begin, end, HadError,
748 FullSourceLoc(Loc,PP.getSourceManager()),
749 IsWide,
750 &PP.getDiagnostics(), PP.getTargetInfo());
Nico Weber59705ae2010-10-09 00:27:47 +0000751 }
752 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000753
754 // If this is a multi-character constant (e.g. 'abc'), handle it. These are
755 // implementation defined (C99 6.4.4.4p10).
Chris Lattnere3ad8812009-04-28 21:51:46 +0000756 if (NumCharsSoFar) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000757 if (IsWide) {
758 // Emulate GCC's (unintentional?) behavior: L'ab' -> L'b'.
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000759 LitVal = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000760 } else {
761 // Narrow character literals act as though their value is concatenated
Chris Lattnere3ad8812009-04-28 21:51:46 +0000762 // in this implementation, but warn on overflow.
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000763 if (LitVal.countLeadingZeros() < 8 && !Warned) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000764 PP.Diag(Loc, diag::warn_char_constant_too_large);
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000765 Warned = true;
766 }
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000767 LitVal <<= 8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 }
769 }
Mike Stump1eb44332009-09-09 15:08:12 +0000770
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000771 LitVal = LitVal + ResultChar;
Chris Lattnere3ad8812009-04-28 21:51:46 +0000772 ++NumCharsSoFar;
773 }
774
775 // If this is the second character being processed, do special handling.
776 if (NumCharsSoFar > 1) {
777 // Warn about discarding the top bits for multi-char wide-character
778 // constants (L'abcd').
779 if (IsWide)
780 PP.Diag(Loc, diag::warn_extraneous_wide_char_constant);
781 else if (NumCharsSoFar != 4)
782 PP.Diag(Loc, diag::ext_multichar_character_literal);
783 else
784 PP.Diag(Loc, diag::ext_four_char_character_literal);
Eli Friedman2a1c3632009-06-01 05:25:02 +0000785 IsMultiChar = true;
Daniel Dunbar930b71a2009-07-29 01:46:05 +0000786 } else
787 IsMultiChar = false;
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000788
789 // Transfer the value from APInt to uint64_t
790 Value = LitVal.getZExtValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000791
Nico Weber59705ae2010-10-09 00:27:47 +0000792 if (IsWide && PP.getLangOptions().ShortWChar && Value > 0xFFFF)
793 PP.Diag(Loc, diag::warn_ucn_escape_too_large);
794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1")
796 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple
797 // character constants are not sign extended in the this implementation:
798 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC.
Chris Lattnere3ad8812009-04-28 21:51:46 +0000799 if (!IsWide && NumCharsSoFar == 1 && (Value & 128) &&
Eli Friedman15b91762009-06-05 07:05:05 +0000800 PP.getLangOptions().CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 Value = (signed char)Value;
802}
803
804
805/// string-literal: [C99 6.4.5]
806/// " [s-char-sequence] "
807/// L" [s-char-sequence] "
808/// s-char-sequence:
809/// s-char
810/// s-char-sequence s-char
811/// s-char:
812/// any source character except the double quote ",
813/// backslash \, or newline character
814/// escape-character
815/// universal-character-name
816/// escape-character: [C99 6.4.4.4]
817/// \ escape-code
818/// universal-character-name
819/// escape-code:
820/// character-escape-code
821/// octal-escape-code
822/// hex-escape-code
823/// character-escape-code: one of
824/// n t b r f v a
825/// \ ' " ?
826/// octal-escape-code:
827/// octal-digit
828/// octal-digit octal-digit
829/// octal-digit octal-digit octal-digit
830/// hex-escape-code:
831/// x hex-digit
832/// hex-escape-code hex-digit
833/// universal-character-name:
834/// \u hex-quad
835/// \U hex-quad hex-quad
836/// hex-quad:
837/// hex-digit hex-digit hex-digit hex-digit
838///
839StringLiteralParser::
Chris Lattnerd2177732007-07-20 16:59:19 +0000840StringLiteralParser(const Token *StringToks, unsigned NumStringToks,
Chris Lattner0833dd02010-11-17 07:21:13 +0000841 Preprocessor &PP, bool Complain)
842 : SM(PP.getSourceManager()), Features(PP.getLangOptions()),
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000843 Target(PP.getTargetInfo()), Diags(Complain ? &PP.getDiagnostics() : 0),
844 MaxTokenLength(0), SizeBound(0), wchar_tByteWidth(0),
845 ResultPtr(ResultBuf.data()), hadError(false), AnyWide(false), Pascal(false) {
Chris Lattner0833dd02010-11-17 07:21:13 +0000846 init(StringToks, NumStringToks);
847}
848
849void StringLiteralParser::init(const Token *StringToks, unsigned NumStringToks){
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000850 // The literal token may have come from an invalid source location (e.g. due
851 // to a PCH error), in which case the token length will be 0.
852 if (NumStringToks == 0 || StringToks[0].getLength() < 2) {
853 hadError = true;
854 return;
855 }
856
Reid Spencer5f016e22007-07-11 17:01:13 +0000857 // Scan all of the string portions, remember the max individual token length,
858 // computing a bound on the concatenated string length, and see whether any
859 // piece is a wide-string. If any of the string portions is a wide-string
860 // literal, the result is a wide-string literal [C99 6.4.5p4].
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000861 assert(NumStringToks && "expected at least one token");
Sean Hunt6cf75022010-08-30 17:47:05 +0000862 MaxTokenLength = StringToks[0].getLength();
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000863 assert(StringToks[0].getLength() >= 2 && "literal token is invalid!");
Sean Hunt6cf75022010-08-30 17:47:05 +0000864 SizeBound = StringToks[0].getLength()-2; // -2 for "".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000865 AnyWide = StringToks[0].is(tok::wide_string_literal);
Sean Hunt6cf75022010-08-30 17:47:05 +0000866
867 hadError = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000868
869 // Implement Translation Phase #6: concatenation of string literals
870 /// (C99 5.1.1.2p1). The common case is only one string fragment.
871 for (unsigned i = 1; i != NumStringToks; ++i) {
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000872 if (StringToks[i].getLength() < 2) {
873 hadError = true;
874 return;
875 }
876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // The string could be shorter than this if it needs cleaning, but this is a
878 // reasonable bound, which is all we need.
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000879 assert(StringToks[i].getLength() >= 2 && "literal token is invalid!");
Sean Hunt6cf75022010-08-30 17:47:05 +0000880 SizeBound += StringToks[i].getLength()-2; // -2 for "".
Mike Stump1eb44332009-09-09 15:08:12 +0000881
Reid Spencer5f016e22007-07-11 17:01:13 +0000882 // Remember maximum string piece length.
Sean Hunt6cf75022010-08-30 17:47:05 +0000883 if (StringToks[i].getLength() > MaxTokenLength)
884 MaxTokenLength = StringToks[i].getLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Reid Spencer5f016e22007-07-11 17:01:13 +0000886 // Remember if we see any wide strings.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000887 AnyWide |= StringToks[i].is(tok::wide_string_literal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000888 }
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000889
Reid Spencer5f016e22007-07-11 17:01:13 +0000890 // Include space for the null terminator.
891 ++SizeBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Reid Spencer5f016e22007-07-11 17:01:13 +0000893 // TODO: K&R warning: "traditional C rejects string constant concatenation"
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Reid Spencer5f016e22007-07-11 17:01:13 +0000895 // Get the width in bytes of wchar_t. If no wchar_t strings are used, do not
896 // query the target. As such, wchar_tByteWidth is only valid if AnyWide=true.
897 wchar_tByteWidth = ~0U;
898 if (AnyWide) {
Chris Lattnera95880d2010-11-17 07:12:42 +0000899 wchar_tByteWidth = Target.getWCharWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000900 assert((wchar_tByteWidth & 7) == 0 && "Assumes wchar_t is byte multiple!");
901 wchar_tByteWidth /= 8;
902 }
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 // The output buffer size needs to be large enough to hold wide characters.
905 // This is a worst-case assumption which basically corresponds to L"" "long".
906 if (AnyWide)
907 SizeBound *= wchar_tByteWidth;
Mike Stump1eb44332009-09-09 15:08:12 +0000908
Reid Spencer5f016e22007-07-11 17:01:13 +0000909 // Size the temporary buffer to hold the result string data.
910 ResultBuf.resize(SizeBound);
Mike Stump1eb44332009-09-09 15:08:12 +0000911
Reid Spencer5f016e22007-07-11 17:01:13 +0000912 // Likewise, but for each string piece.
913 llvm::SmallString<512> TokenBuf;
914 TokenBuf.resize(MaxTokenLength);
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Reid Spencer5f016e22007-07-11 17:01:13 +0000916 // Loop over all the strings, getting their spelling, and expanding them to
917 // wide strings as appropriate.
918 ResultPtr = &ResultBuf[0]; // Next byte to fill in.
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Anders Carlssonee98ac52007-10-15 02:50:23 +0000920 Pascal = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000921
Reid Spencer5f016e22007-07-11 17:01:13 +0000922 for (unsigned i = 0, e = NumStringToks; i != e; ++i) {
923 const char *ThisTokBuf = &TokenBuf[0];
924 // Get the spelling of the token, which eliminates trigraphs, etc. We know
925 // that ThisTokBuf points to a buffer that is big enough for the whole token
926 // and 'spelled' tokens can only shrink.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000927 bool StringInvalid = false;
Chris Lattner0833dd02010-11-17 07:21:13 +0000928 unsigned ThisTokLen =
Chris Lattnerb0607272010-11-17 07:26:20 +0000929 Lexer::getSpelling(StringToks[i], ThisTokBuf, SM, Features,
930 &StringInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000931 if (StringInvalid) {
932 hadError = 1;
933 continue;
934 }
935
Reid Spencer5f016e22007-07-11 17:01:13 +0000936 const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote.
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000937 bool wide = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 // TODO: Input character set mapping support.
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Reid Spencer5f016e22007-07-11 17:01:13 +0000940 // Skip L marker for wide strings.
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000941 if (ThisTokBuf[0] == 'L') {
942 wide = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000943 ++ThisTokBuf;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000944 }
Mike Stump1eb44332009-09-09 15:08:12 +0000945
Reid Spencer5f016e22007-07-11 17:01:13 +0000946 assert(ThisTokBuf[0] == '"' && "Expected quote, lexer broken?");
947 ++ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Anders Carlssonee98ac52007-10-15 02:50:23 +0000949 // Check if this is a pascal string
Chris Lattnera95880d2010-11-17 07:12:42 +0000950 if (Features.PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
Anders Carlssonee98ac52007-10-15 02:50:23 +0000951 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') {
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Anders Carlssonee98ac52007-10-15 02:50:23 +0000953 // If the \p sequence is found in the first token, we have a pascal string
954 // Otherwise, if we already have a pascal string, ignore the first \p
955 if (i == 0) {
956 ++ThisTokBuf;
957 Pascal = true;
958 } else if (Pascal)
959 ThisTokBuf += 2;
960 }
Mike Stump1eb44332009-09-09 15:08:12 +0000961
Reid Spencer5f016e22007-07-11 17:01:13 +0000962 while (ThisTokBuf != ThisTokEnd) {
963 // Is this a span of non-escape characters?
964 if (ThisTokBuf[0] != '\\') {
965 const char *InStart = ThisTokBuf;
966 do {
967 ++ThisTokBuf;
968 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\');
Mike Stump1eb44332009-09-09 15:08:12 +0000969
Reid Spencer5f016e22007-07-11 17:01:13 +0000970 // Copy the character span over.
971 unsigned Len = ThisTokBuf-InStart;
972 if (!AnyWide) {
973 memcpy(ResultPtr, InStart, Len);
974 ResultPtr += Len;
975 } else {
976 // Note: our internal rep of wide char tokens is always little-endian.
977 for (; Len; --Len, ++InStart) {
978 *ResultPtr++ = InStart[0];
979 // Add zeros at the end.
980 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000981 *ResultPtr++ = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000982 }
983 }
984 continue;
985 }
Steve Naroff4e93b342009-04-01 11:09:15 +0000986 // Is this a Universal Character Name escape?
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000987 if (ThisTokBuf[1] == 'u' || ThisTokBuf[1] == 'U') {
Nico Weber59705ae2010-10-09 00:27:47 +0000988 EncodeUCNEscape(ThisTokBuf, ThisTokEnd, ResultPtr,
Chris Lattnera95880d2010-11-17 07:12:42 +0000989 hadError, FullSourceLoc(StringToks[i].getLocation(),SM),
990 wide, Diags, Features);
Steve Naroff4e93b342009-04-01 11:09:15 +0000991 continue;
992 }
993 // Otherwise, this is a non-UCN escape character. Process it.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000994 unsigned ResultChar =
995 ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError,
Chris Lattner6c66f072010-11-17 06:46:14 +0000996 FullSourceLoc(StringToks[i].getLocation(), SM),
997 AnyWide, Diags, Target);
Mike Stump1eb44332009-09-09 15:08:12 +0000998
Steve Naroff4e93b342009-04-01 11:09:15 +0000999 // Note: our internal rep of wide char tokens is always little-endian.
1000 *ResultPtr++ = ResultChar & 0xFF;
Mike Stump1eb44332009-09-09 15:08:12 +00001001
Steve Naroff4e93b342009-04-01 11:09:15 +00001002 if (AnyWide) {
1003 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
1004 *ResultPtr++ = ResultChar >> i*8;
Reid Spencer5f016e22007-07-11 17:01:13 +00001005 }
1006 }
1007 }
Mike Stump1eb44332009-09-09 15:08:12 +00001008
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001009 if (Pascal) {
Anders Carlssonee98ac52007-10-15 02:50:23 +00001010 ResultBuf[0] = ResultPtr-&ResultBuf[0]-1;
Fariborz Jahanian64a80342010-05-28 19:40:48 +00001011 if (AnyWide)
1012 ResultBuf[0] /= wchar_tByteWidth;
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001013
1014 // Verify that pascal strings aren't too large.
Chris Lattner0833dd02010-11-17 07:21:13 +00001015 if (GetStringLength() > 256) {
1016 if (Diags)
1017 Diags->Report(FullSourceLoc(StringToks[0].getLocation(), SM),
1018 diag::err_pascal_string_too_long)
1019 << SourceRange(StringToks[0].getLocation(),
1020 StringToks[NumStringToks-1].getLocation());
Eli Friedman57d7dde2009-04-01 03:17:08 +00001021 hadError = 1;
1022 return;
1023 }
Chris Lattner0833dd02010-11-17 07:21:13 +00001024 } else if (Diags) {
Douglas Gregor427c4922010-07-20 14:33:20 +00001025 // Complain if this string literal has too many characters.
Chris Lattnera95880d2010-11-17 07:12:42 +00001026 unsigned MaxChars = Features.CPlusPlus? 65536 : Features.C99 ? 4095 : 509;
Douglas Gregor427c4922010-07-20 14:33:20 +00001027
1028 if (GetNumStringChars() > MaxChars)
Chris Lattner0833dd02010-11-17 07:21:13 +00001029 Diags->Report(FullSourceLoc(StringToks[0].getLocation(), SM),
1030 diag::ext_string_too_long)
Douglas Gregor427c4922010-07-20 14:33:20 +00001031 << GetNumStringChars() << MaxChars
Chris Lattnera95880d2010-11-17 07:12:42 +00001032 << (Features.CPlusPlus ? 2 : Features.C99 ? 1 : 0)
Douglas Gregor427c4922010-07-20 14:33:20 +00001033 << SourceRange(StringToks[0].getLocation(),
1034 StringToks[NumStringToks-1].getLocation());
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001035 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001036}
Chris Lattner719e6152009-02-18 19:21:10 +00001037
1038
1039/// getOffsetOfStringByte - This function returns the offset of the
1040/// specified byte of the string data represented by Token. This handles
1041/// advancing over escape sequences in the string.
1042unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok,
Chris Lattner6c66f072010-11-17 06:46:14 +00001043 unsigned ByteNo) const {
Chris Lattner719e6152009-02-18 19:21:10 +00001044 // Get the spelling of the token.
Chris Lattnerca1475e2010-11-17 06:35:43 +00001045 llvm::SmallString<32> SpellingBuffer;
Sean Hunt6cf75022010-08-30 17:47:05 +00001046 SpellingBuffer.resize(Tok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Douglas Gregor50f6af72010-03-16 05:20:39 +00001048 bool StringInvalid = false;
Chris Lattner719e6152009-02-18 19:21:10 +00001049 const char *SpellingPtr = &SpellingBuffer[0];
Chris Lattnerb0607272010-11-17 07:26:20 +00001050 unsigned TokLen = Lexer::getSpelling(Tok, SpellingPtr, SM, Features,
1051 &StringInvalid);
Chris Lattner91f54ce2010-11-17 06:26:08 +00001052 if (StringInvalid)
Douglas Gregor50f6af72010-03-16 05:20:39 +00001053 return 0;
Chris Lattner719e6152009-02-18 19:21:10 +00001054
1055 assert(SpellingPtr[0] != 'L' && "Doesn't handle wide strings yet");
1056
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Chris Lattner719e6152009-02-18 19:21:10 +00001058 const char *SpellingStart = SpellingPtr;
1059 const char *SpellingEnd = SpellingPtr+TokLen;
1060
1061 // Skip over the leading quote.
1062 assert(SpellingPtr[0] == '"' && "Should be a string literal!");
1063 ++SpellingPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Chris Lattner719e6152009-02-18 19:21:10 +00001065 // Skip over bytes until we find the offset we're looking for.
1066 while (ByteNo) {
1067 assert(SpellingPtr < SpellingEnd && "Didn't find byte offset!");
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Chris Lattner719e6152009-02-18 19:21:10 +00001069 // Step over non-escapes simply.
1070 if (*SpellingPtr != '\\') {
1071 ++SpellingPtr;
1072 --ByteNo;
1073 continue;
1074 }
Mike Stump1eb44332009-09-09 15:08:12 +00001075
Chris Lattner719e6152009-02-18 19:21:10 +00001076 // Otherwise, this is an escape character. Advance over it.
1077 bool HadError = false;
1078 ProcessCharEscape(SpellingPtr, SpellingEnd, HadError,
Chris Lattnerca1475e2010-11-17 06:35:43 +00001079 FullSourceLoc(Tok.getLocation(), SM),
Chris Lattner91f54ce2010-11-17 06:26:08 +00001080 false, Diags, Target);
Chris Lattner719e6152009-02-18 19:21:10 +00001081 assert(!HadError && "This method isn't valid on erroneous strings");
1082 --ByteNo;
1083 }
Mike Stump1eb44332009-09-09 15:08:12 +00001084
Chris Lattner719e6152009-02-18 19:21:10 +00001085 return SpellingPtr-SpellingStart;
1086}