blob: 42dd75e59b94d94da1d6d21260e8e3fd2a4fb054 [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,
36 SourceLocation Loc, bool IsWide,
37 Preprocessor &PP) {
38 // 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 Lattner204b2fe2008-11-18 21:48:13 +000057 PP.Diag(Loc, diag::ext_nonstandard_escape) << "e";
Reid Spencer5f016e22007-07-11 17:01:13 +000058 ResultChar = 27;
59 break;
Eli Friedman3c548012009-06-10 01:32:39 +000060 case 'E':
61 PP.Diag(Loc, diag::ext_nonstandard_escape) << "E";
62 ResultChar = 27;
63 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000064 case 'f':
65 ResultChar = 12;
66 break;
67 case 'n':
68 ResultChar = 10;
69 break;
70 case 'r':
71 ResultChar = 13;
72 break;
73 case 't':
74 ResultChar = 9;
75 break;
76 case 'v':
77 ResultChar = 11;
78 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000079 case 'x': { // Hex escape.
80 ResultChar = 0;
81 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
82 PP.Diag(Loc, diag::err_hex_escape_no_digits);
83 HadError = 1;
84 break;
85 }
Mike Stump1eb44332009-09-09 15:08:12 +000086
Reid Spencer5f016e22007-07-11 17:01:13 +000087 // Hex escapes are a maximal series of hex digits.
88 bool Overflow = false;
89 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
90 int CharVal = HexDigitValue(ThisTokBuf[0]);
91 if (CharVal == -1) break;
Chris Lattnerc29bbde2008-09-30 20:45:40 +000092 // About to shift out a digit?
93 Overflow |= (ResultChar & 0xF0000000) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +000094 ResultChar <<= 4;
95 ResultChar |= CharVal;
96 }
97
98 // See if any bits will be truncated when evaluated as a character.
Alisdair Meredith1a75ee22009-07-14 08:10:06 +000099 unsigned CharWidth = IsWide
100 ? PP.getTargetInfo().getWCharWidth()
101 : PP.getTargetInfo().getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Reid Spencer5f016e22007-07-11 17:01:13 +0000103 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
104 Overflow = true;
105 ResultChar &= ~0U >> (32-CharWidth);
106 }
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 // Check for overflow.
109 if (Overflow) // Too many digits to fit in
110 PP.Diag(Loc, diag::warn_hex_escape_too_large);
111 break;
112 }
113 case '0': case '1': case '2': case '3':
114 case '4': case '5': case '6': case '7': {
115 // Octal escapes.
116 --ThisTokBuf;
117 ResultChar = 0;
118
119 // Octal escapes are a series of octal digits with maximum length 3.
120 // "\0123" is a two digit sequence equal to "\012" "3".
121 unsigned NumDigits = 0;
122 do {
123 ResultChar <<= 3;
124 ResultChar |= *ThisTokBuf++ - '0';
125 ++NumDigits;
126 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
127 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7');
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 // Check for overflow. Reject '\777', but not L'\777'.
Alisdair Meredith1a75ee22009-07-14 08:10:06 +0000130 unsigned CharWidth = IsWide
131 ? PP.getTargetInfo().getWCharWidth()
132 : PP.getTargetInfo().getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000133
Reid Spencer5f016e22007-07-11 17:01:13 +0000134 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
135 PP.Diag(Loc, diag::warn_octal_escape_too_large);
136 ResultChar &= ~0U >> (32-CharWidth);
137 }
138 break;
139 }
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Reid Spencer5f016e22007-07-11 17:01:13 +0000141 // Otherwise, these are not valid escapes.
142 case '(': case '{': case '[': case '%':
143 // GCC accepts these as extensions. We warn about them as such though.
Eli Friedmanf01fdff2009-04-28 00:51:18 +0000144 PP.Diag(Loc, diag::ext_nonstandard_escape)
145 << std::string()+(char)ResultChar;
146 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 default:
Chris Lattnerac92d822008-11-22 07:23:31 +0000148 if (isgraph(ThisTokBuf[0]))
Chris Lattner204b2fe2008-11-18 21:48:13 +0000149 PP.Diag(Loc, diag::ext_unknown_escape) << std::string()+(char)ResultChar;
Chris Lattnerac92d822008-11-22 07:23:31 +0000150 else
Chris Lattner204b2fe2008-11-18 21:48:13 +0000151 PP.Diag(Loc, diag::ext_unknown_escape) << "x"+llvm::utohexstr(ResultChar);
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 break;
153 }
Mike Stump1eb44332009-09-09 15:08:12 +0000154
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 return ResultChar;
156}
157
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000158/// ProcessUCNEscape - Read the Universal Character Name, check constraints and
159/// convert the UTF32 to UTF8. This is a subroutine of StringLiteralParser.
160/// When we decide to implement UCN's for character constants and identifiers,
161/// we will likely rework our support for UCN's.
Mike Stump1eb44332009-09-09 15:08:12 +0000162static void ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
163 char *&ResultBuf, bool &HadError,
164 SourceLocation Loc, bool IsWide, Preprocessor &PP)
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000165{
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000166 // FIXME: Add a warning - UCN's are only valid in C++ & C99.
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000167 // FIXME: Handle wide strings.
Mike Stump1eb44332009-09-09 15:08:12 +0000168
Steve Naroff4e93b342009-04-01 11:09:15 +0000169 // Save the beginning of the string (for error diagnostics).
170 const char *ThisTokBegin = ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000171
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000172 // Skip the '\u' char's.
173 ThisTokBuf += 2;
Reid Spencer5f016e22007-07-11 17:01:13 +0000174
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000175 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
176 PP.Diag(Loc, diag::err_ucn_escape_no_digits);
177 HadError = 1;
178 return;
179 }
Steve Naroff4e93b342009-04-01 11:09:15 +0000180 typedef uint32_t UTF32;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000182 UTF32 UcnVal = 0;
183 unsigned short UcnLen = (ThisTokBuf[-1] == 'u' ? 4 : 8);
184 for (; ThisTokBuf != ThisTokEnd && UcnLen; ++ThisTokBuf, UcnLen--) {
185 int CharVal = HexDigitValue(ThisTokBuf[0]);
186 if (CharVal == -1) break;
187 UcnVal <<= 4;
188 UcnVal |= CharVal;
189 }
190 // If we didn't consume the proper number of digits, there is a problem.
191 if (UcnLen) {
Steve Naroff4e93b342009-04-01 11:09:15 +0000192 PP.Diag(PP.AdvanceToTokenCharacter(Loc, ThisTokBuf-ThisTokBegin),
193 diag::err_ucn_escape_incomplete);
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000194 HadError = 1;
195 return;
196 }
Mike Stump1eb44332009-09-09 15:08:12 +0000197 // Check UCN constraints (C99 6.4.3p2).
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000198 if ((UcnVal < 0xa0 &&
199 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, `
Mike Stump1eb44332009-09-09 15:08:12 +0000200 || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF)
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000201 || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000202 PP.Diag(Loc, diag::err_ucn_escape_invalid);
203 HadError = 1;
204 return;
205 }
206 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
207 // The conversion below was inspired by:
208 // http://www.unicode.org/Public/PROGRAMS/CVTUTF/ConvertUTF.c
Mike Stump1eb44332009-09-09 15:08:12 +0000209 // First, we determine how many bytes the result will require.
Steve Naroff4e93b342009-04-01 11:09:15 +0000210 typedef uint8_t UTF8;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000211
212 unsigned short bytesToWrite = 0;
213 if (UcnVal < (UTF32)0x80)
214 bytesToWrite = 1;
215 else if (UcnVal < (UTF32)0x800)
216 bytesToWrite = 2;
217 else if (UcnVal < (UTF32)0x10000)
218 bytesToWrite = 3;
219 else
220 bytesToWrite = 4;
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000222 const unsigned byteMask = 0xBF;
223 const unsigned byteMark = 0x80;
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000225 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000226 // into the first byte, depending on how many bytes follow.
Mike Stump1eb44332009-09-09 15:08:12 +0000227 static const UTF8 firstByteMark[5] = {
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000228 0x00, 0x00, 0xC0, 0xE0, 0xF0
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000229 };
230 // Finally, we write the bytes into ResultBuf.
231 ResultBuf += bytesToWrite;
232 switch (bytesToWrite) { // note: everything falls through.
233 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
234 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
235 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
236 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
237 }
238 // Update the buffer.
239 ResultBuf += bytesToWrite;
240}
Reid Spencer5f016e22007-07-11 17:01:13 +0000241
242
243/// integer-constant: [C99 6.4.4.1]
244/// decimal-constant integer-suffix
245/// octal-constant integer-suffix
246/// hexadecimal-constant integer-suffix
Mike Stump1eb44332009-09-09 15:08:12 +0000247/// decimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000248/// nonzero-digit
249/// decimal-constant digit
Mike Stump1eb44332009-09-09 15:08:12 +0000250/// octal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000251/// 0
252/// octal-constant octal-digit
Mike Stump1eb44332009-09-09 15:08:12 +0000253/// hexadecimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000254/// hexadecimal-prefix hexadecimal-digit
255/// hexadecimal-constant hexadecimal-digit
256/// hexadecimal-prefix: one of
257/// 0x 0X
258/// integer-suffix:
259/// unsigned-suffix [long-suffix]
260/// unsigned-suffix [long-long-suffix]
261/// long-suffix [unsigned-suffix]
262/// long-long-suffix [unsigned-sufix]
263/// nonzero-digit:
264/// 1 2 3 4 5 6 7 8 9
265/// octal-digit:
266/// 0 1 2 3 4 5 6 7
267/// hexadecimal-digit:
268/// 0 1 2 3 4 5 6 7 8 9
269/// a b c d e f
270/// A B C D E F
271/// unsigned-suffix: one of
272/// u U
273/// long-suffix: one of
274/// l L
Mike Stump1eb44332009-09-09 15:08:12 +0000275/// long-long-suffix: one of
Reid Spencer5f016e22007-07-11 17:01:13 +0000276/// ll LL
277///
278/// floating-constant: [C99 6.4.4.2]
279/// TODO: add rules...
280///
Reid Spencer5f016e22007-07-11 17:01:13 +0000281NumericLiteralParser::
282NumericLiteralParser(const char *begin, const char *end,
283 SourceLocation TokLoc, Preprocessor &pp)
284 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end) {
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattnerc29bbde2008-09-30 20:45:40 +0000286 // This routine assumes that the range begin/end matches the regex for integer
287 // and FP constants (specifically, the 'pp-number' regex), and assumes that
288 // the byte at "*end" is both valid and not part of the regex. Because of
289 // this, it doesn't have to check for 'overscan' in various places.
290 assert(!isalnum(*end) && *end != '.' && *end != '_' &&
291 "Lexer didn't maximally munch?");
Mike Stump1eb44332009-09-09 15:08:12 +0000292
Reid Spencer5f016e22007-07-11 17:01:13 +0000293 s = DigitsBegin = begin;
294 saw_exponent = false;
295 saw_period = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000296 isLong = false;
297 isUnsigned = false;
298 isLongLong = false;
Chris Lattner6e400c22007-08-26 03:29:23 +0000299 isFloat = false;
Chris Lattner506b8de2007-08-26 01:58:14 +0000300 isImaginary = false;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000301 isMicrosoftInteger = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000302 hadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Reid Spencer5f016e22007-07-11 17:01:13 +0000304 if (*s == '0') { // parse radix
Chris Lattner368328c2008-06-30 06:39:54 +0000305 ParseNumberStartingWithZero(TokLoc);
306 if (hadError)
307 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000308 } else { // the first digit is non-zero
309 radix = 10;
310 s = SkipDigits(s);
311 if (s == ThisTokEnd) {
312 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000313 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000314 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
315 diag::err_invalid_decimal_digit) << std::string(s, s+1);
316 hadError = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000317 return;
318 } else if (*s == '.') {
319 s++;
320 saw_period = true;
321 s = SkipDigits(s);
Mike Stump1eb44332009-09-09 15:08:12 +0000322 }
Chris Lattner4411f462008-09-29 23:12:31 +0000323 if ((*s == 'e' || *s == 'E')) { // exponent
Chris Lattner70f66ab2008-04-20 18:47:55 +0000324 const char *Exponent = s;
Reid Spencer5f016e22007-07-11 17:01:13 +0000325 s++;
326 saw_exponent = true;
327 if (*s == '+' || *s == '-') s++; // sign
328 const char *first_non_digit = SkipDigits(s);
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000329 if (first_non_digit != s) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000330 s = first_non_digit;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000331 } else {
Chris Lattnerac92d822008-11-22 07:23:31 +0000332 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin),
333 diag::err_exponent_has_no_digits);
334 hadError = true;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000335 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000336 }
337 }
338 }
339
340 SuffixBegin = s;
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Chris Lattner506b8de2007-08-26 01:58:14 +0000342 // Parse the suffix. At this point we can classify whether we have an FP or
343 // integer constant.
344 bool isFPConstant = isFloatingLiteral();
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Chris Lattner506b8de2007-08-26 01:58:14 +0000346 // Loop over all of the characters of the suffix. If we see something bad,
347 // we break out of the loop.
348 for (; s != ThisTokEnd; ++s) {
349 switch (*s) {
350 case 'f': // FP Suffix for "float"
351 case 'F':
352 if (!isFPConstant) break; // Error for integer constant.
Chris Lattner6e400c22007-08-26 03:29:23 +0000353 if (isFloat || isLong) break; // FF, LF invalid.
354 isFloat = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000355 continue; // Success.
356 case 'u':
357 case 'U':
358 if (isFPConstant) break; // Error for floating constant.
359 if (isUnsigned) break; // Cannot be repeated.
360 isUnsigned = true;
361 continue; // Success.
362 case 'l':
363 case 'L':
364 if (isLong || isLongLong) break; // Cannot be repeated.
Chris Lattner6e400c22007-08-26 03:29:23 +0000365 if (isFloat) break; // LF invalid.
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Chris Lattner506b8de2007-08-26 01:58:14 +0000367 // Check for long long. The L's need to be adjacent and the same case.
368 if (s+1 != ThisTokEnd && s[1] == s[0]) {
369 if (isFPConstant) break; // long long invalid for floats.
370 isLongLong = true;
371 ++s; // Eat both of them.
372 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 isLong = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000375 continue; // Success.
376 case 'i':
Steve Naroff0c29b222008-04-04 21:02:54 +0000377 if (PP.getLangOptions().Microsoft) {
378 // Allow i8, i16, i32, i64, and i128.
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000379 if (s + 1 != ThisTokEnd) {
380 switch (s[1]) {
381 case '8':
382 s += 2; // i8 suffix
383 isMicrosoftInteger = true;
384 continue;
385 case '1':
386 s += 2;
387 if (s == ThisTokEnd) break;
388 if (*s == '6') s++; // i16 suffix
389 else if (*s == '2') {
390 if (++s == ThisTokEnd) break;
391 if (*s == '8') s++; // i128 suffix
392 }
393 isMicrosoftInteger = true;
394 continue;
395 case '3':
396 s += 2;
397 if (s == ThisTokEnd) break;
398 if (*s == '2') s++; // i32 suffix
399 isMicrosoftInteger = true;
400 continue;
401 case '6':
402 s += 2;
403 if (s == ThisTokEnd) break;
404 if (*s == '4') s++; // i64 suffix
405 isMicrosoftInteger = true;
406 continue;
407 case 'f': // FP Suffix for "float"
408 case 'F':
409 if (!isFPConstant) break; // Error for integer constant.
410 if (isFloat || isLong) break; // FF, LF invalid.
411 isFloat = true;
412 if (isImaginary) break; // Cannot be repeated.
413 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
414 diag::ext_imaginary_constant);
415 isImaginary = true;
416 s++;
417 continue; // Success.
418 default:
419 break;
420 }
421 break;
Steve Naroff0c29b222008-04-04 21:02:54 +0000422 }
Steve Naroff0c29b222008-04-04 21:02:54 +0000423 }
424 // fall through.
Chris Lattner506b8de2007-08-26 01:58:14 +0000425 case 'I':
426 case 'j':
427 case 'J':
428 if (isImaginary) break; // Cannot be repeated.
429 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
430 diag::ext_imaginary_constant);
431 isImaginary = true;
432 continue; // Success.
Reid Spencer5f016e22007-07-11 17:01:13 +0000433 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000434 // If we reached here, there was an error.
435 break;
436 }
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Chris Lattner506b8de2007-08-26 01:58:14 +0000438 // Report an error if there are any.
439 if (s != ThisTokEnd) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000440 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
441 isFPConstant ? diag::err_invalid_suffix_float_constant :
442 diag::err_invalid_suffix_integer_constant)
443 << std::string(SuffixBegin, ThisTokEnd);
444 hadError = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000445 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000446 }
447}
448
Chris Lattner368328c2008-06-30 06:39:54 +0000449/// ParseNumberStartingWithZero - This method is called when the first character
450/// of the number is found to be a zero. This means it is either an octal
451/// number (like '04') or a hex number ('0x123a') a binary number ('0b1010') or
Mike Stump1eb44332009-09-09 15:08:12 +0000452/// a floating point number (01239.123e4). Eat the prefix, determining the
Chris Lattner368328c2008-06-30 06:39:54 +0000453/// radix etc.
454void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) {
455 assert(s[0] == '0' && "Invalid method call");
456 s++;
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattner368328c2008-06-30 06:39:54 +0000458 // Handle a hex number like 0x1234.
459 if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
460 s++;
461 radix = 16;
462 DigitsBegin = s;
463 s = SkipHexDigits(s);
464 if (s == ThisTokEnd) {
465 // Done.
466 } else if (*s == '.') {
467 s++;
468 saw_period = true;
469 s = SkipHexDigits(s);
470 }
471 // A binary exponent can appear with or with a '.'. If dotted, the
Mike Stump1eb44332009-09-09 15:08:12 +0000472 // binary exponent is required.
Chris Lattner6ea62382008-07-25 18:18:34 +0000473 if (*s == 'p' || *s == 'P') {
Chris Lattner368328c2008-06-30 06:39:54 +0000474 const char *Exponent = s;
475 s++;
476 saw_exponent = true;
477 if (*s == '+' || *s == '-') s++; // sign
478 const char *first_non_digit = SkipDigits(s);
Chris Lattner6ea62382008-07-25 18:18:34 +0000479 if (first_non_digit == s) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000480 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
481 diag::err_exponent_has_no_digits);
482 hadError = true;
Chris Lattner6ea62382008-07-25 18:18:34 +0000483 return;
Chris Lattner368328c2008-06-30 06:39:54 +0000484 }
Chris Lattner6ea62382008-07-25 18:18:34 +0000485 s = first_non_digit;
Mike Stump1eb44332009-09-09 15:08:12 +0000486
Chris Lattner49842122008-11-22 07:39:03 +0000487 if (!PP.getLangOptions().HexFloats)
Chris Lattnerac92d822008-11-22 07:23:31 +0000488 PP.Diag(TokLoc, diag::ext_hexconstant_invalid);
Chris Lattner368328c2008-06-30 06:39:54 +0000489 } else if (saw_period) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000490 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
491 diag::err_hexconstant_requires_exponent);
492 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000493 }
494 return;
495 }
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Chris Lattner368328c2008-06-30 06:39:54 +0000497 // Handle simple binary numbers 0b01010
498 if (*s == 'b' || *s == 'B') {
499 // 0b101010 is a GCC extension.
Chris Lattner413d3552008-06-30 06:44:49 +0000500 PP.Diag(TokLoc, diag::ext_binary_literal);
Chris Lattner368328c2008-06-30 06:39:54 +0000501 ++s;
502 radix = 2;
503 DigitsBegin = s;
504 s = SkipBinaryDigits(s);
505 if (s == ThisTokEnd) {
506 // Done.
507 } else if (isxdigit(*s)) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000508 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
509 diag::err_invalid_binary_digit) << std::string(s, s+1);
510 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000511 }
Chris Lattner413d3552008-06-30 06:44:49 +0000512 // Other suffixes will be diagnosed by the caller.
Chris Lattner368328c2008-06-30 06:39:54 +0000513 return;
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattner368328c2008-06-30 06:39:54 +0000516 // For now, the radix is set to 8. If we discover that we have a
517 // floating point constant, the radix will change to 10. Octal floating
Mike Stump1eb44332009-09-09 15:08:12 +0000518 // point constants are not permitted (only decimal and hexadecimal).
Chris Lattner368328c2008-06-30 06:39:54 +0000519 radix = 8;
520 DigitsBegin = s;
521 s = SkipOctalDigits(s);
522 if (s == ThisTokEnd)
523 return; // Done, simple octal number like 01234
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Chris Lattner413d3552008-06-30 06:44:49 +0000525 // If we have some other non-octal digit that *is* a decimal digit, see if
526 // this is part of a floating point number like 094.123 or 09e1.
527 if (isdigit(*s)) {
528 const char *EndDecimal = SkipDigits(s);
529 if (EndDecimal[0] == '.' || EndDecimal[0] == 'e' || EndDecimal[0] == 'E') {
530 s = EndDecimal;
531 radix = 10;
532 }
533 }
Mike Stump1eb44332009-09-09 15:08:12 +0000534
Chris Lattner413d3552008-06-30 06:44:49 +0000535 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
536 // the code is using an incorrect base.
Chris Lattner368328c2008-06-30 06:39:54 +0000537 if (isxdigit(*s) && *s != 'e' && *s != 'E') {
Chris Lattnerac92d822008-11-22 07:23:31 +0000538 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
539 diag::err_invalid_octal_digit) << std::string(s, s+1);
540 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000541 return;
542 }
Mike Stump1eb44332009-09-09 15:08:12 +0000543
Chris Lattner368328c2008-06-30 06:39:54 +0000544 if (*s == '.') {
545 s++;
546 radix = 10;
547 saw_period = true;
Chris Lattner413d3552008-06-30 06:44:49 +0000548 s = SkipDigits(s); // Skip suffix.
Chris Lattner368328c2008-06-30 06:39:54 +0000549 }
550 if (*s == 'e' || *s == 'E') { // exponent
551 const char *Exponent = s;
552 s++;
553 radix = 10;
554 saw_exponent = true;
555 if (*s == '+' || *s == '-') s++; // sign
556 const char *first_non_digit = SkipDigits(s);
557 if (first_non_digit != s) {
558 s = first_non_digit;
559 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000560 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
Chris Lattnerac92d822008-11-22 07:23:31 +0000561 diag::err_exponent_has_no_digits);
562 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000563 return;
564 }
565 }
566}
567
568
Reid Spencer5f016e22007-07-11 17:01:13 +0000569/// GetIntegerValue - Convert this numeric literal value to an APInt that
570/// matches Val's input width. If there is an overflow, set Val to the low bits
571/// of the result and return true. Otherwise, return false.
572bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) {
Daniel Dunbara179be32008-10-16 07:32:01 +0000573 // Fast path: Compute a conservative bound on the maximum number of
574 // bits per digit in this radix. If we can't possibly overflow a
575 // uint64 based on that bound then do the simple conversion to
576 // integer. This avoids the expensive overflow checking below, and
577 // handles the common cases that matter (small decimal integers and
578 // hex/octal values which don't overflow).
579 unsigned MaxBitsPerDigit = 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000580 while ((1U << MaxBitsPerDigit) < radix)
Daniel Dunbara179be32008-10-16 07:32:01 +0000581 MaxBitsPerDigit += 1;
582 if ((SuffixBegin - DigitsBegin) * MaxBitsPerDigit <= 64) {
583 uint64_t N = 0;
584 for (s = DigitsBegin; s != SuffixBegin; ++s)
585 N = N*radix + HexDigitValue(*s);
586
587 // This will truncate the value to Val's input width. Simply check
588 // for overflow by comparing.
589 Val = N;
590 return Val.getZExtValue() != N;
591 }
592
Reid Spencer5f016e22007-07-11 17:01:13 +0000593 Val = 0;
594 s = DigitsBegin;
595
596 llvm::APInt RadixVal(Val.getBitWidth(), radix);
597 llvm::APInt CharVal(Val.getBitWidth(), 0);
598 llvm::APInt OldVal = Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Reid Spencer5f016e22007-07-11 17:01:13 +0000600 bool OverflowOccurred = false;
601 while (s < SuffixBegin) {
602 unsigned C = HexDigitValue(*s++);
Mike Stump1eb44332009-09-09 15:08:12 +0000603
Reid Spencer5f016e22007-07-11 17:01:13 +0000604 // If this letter is out of bound for this radix, reject it.
605 assert(C < radix && "NumericLiteralParser ctor should have rejected this");
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Reid Spencer5f016e22007-07-11 17:01:13 +0000607 CharVal = C;
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Reid Spencer5f016e22007-07-11 17:01:13 +0000609 // Add the digit to the value in the appropriate radix. If adding in digits
610 // made the value smaller, then this overflowed.
611 OldVal = Val;
612
613 // Multiply by radix, did overflow occur on the multiply?
614 Val *= RadixVal;
615 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
616
Reid Spencer5f016e22007-07-11 17:01:13 +0000617 // Add value, did overflow occur on the value?
Daniel Dunbard70cb642008-10-16 06:39:30 +0000618 // (a + b) ult b <=> overflow
Reid Spencer5f016e22007-07-11 17:01:13 +0000619 Val += CharVal;
Reid Spencer5f016e22007-07-11 17:01:13 +0000620 OverflowOccurred |= Val.ult(CharVal);
621 }
622 return OverflowOccurred;
623}
624
Chris Lattner525a0502007-09-22 18:29:59 +0000625llvm::APFloat NumericLiteralParser::
Ted Kremenek427d5af2007-11-26 23:12:30 +0000626GetFloatValue(const llvm::fltSemantics &Format, bool* isExact) {
627 using llvm::APFloat;
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000628 using llvm::StringRef;
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Ted Kremenek32e61bf2007-11-29 00:54:29 +0000630 llvm::SmallVector<char,256> floatChars;
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000631 unsigned n = std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin);
632 for (unsigned i = 0; i != n; ++i)
Ted Kremenek32e61bf2007-11-29 00:54:29 +0000633 floatChars.push_back(ThisTokBegin[i]);
Mike Stump1eb44332009-09-09 15:08:12 +0000634
Ted Kremenek32e61bf2007-11-29 00:54:29 +0000635 floatChars.push_back('\0');
Mike Stump1eb44332009-09-09 15:08:12 +0000636
Ted Kremenek427d5af2007-11-26 23:12:30 +0000637 APFloat V (Format, APFloat::fcZero, false);
Ted Kremenek427d5af2007-11-26 23:12:30 +0000638 APFloat::opStatus status;
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000640 status = V.convertFromString(StringRef(&floatChars[0], n),
641 APFloat::rmNearestTiesToEven);
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Ted Kremenek427d5af2007-11-26 23:12:30 +0000643 if (isExact)
644 *isExact = status == APFloat::opOK;
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Ted Kremenek427d5af2007-11-26 23:12:30 +0000646 return V;
Reid Spencer5f016e22007-07-11 17:01:13 +0000647}
648
Reid Spencer5f016e22007-07-11 17:01:13 +0000649
650CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
651 SourceLocation Loc, Preprocessor &PP) {
652 // At this point we know that the character matches the regex "L?'.*'".
653 HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 // Determine if this is a wide character.
656 IsWide = begin[0] == 'L';
657 if (IsWide) ++begin;
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // Skip over the entry quote.
660 assert(begin[0] == '\'' && "Invalid token lexed");
661 ++begin;
662
Mike Stump1eb44332009-09-09 15:08:12 +0000663 // FIXME: The "Value" is an uint64_t so we can handle char literals of
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000664 // upto 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000665 // FIXME: This extensively assumes that 'char' is 8-bits.
Chris Lattner98be4942008-03-05 18:54:05 +0000666 assert(PP.getTargetInfo().getCharWidth() == 8 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 "Assumes char is 8 bits");
Chris Lattnere3ad8812009-04-28 21:51:46 +0000668 assert(PP.getTargetInfo().getIntWidth() <= 64 &&
669 (PP.getTargetInfo().getIntWidth() & 7) == 0 &&
670 "Assumes sizeof(int) on target is <= 64 and a multiple of char");
671 assert(PP.getTargetInfo().getWCharWidth() <= 64 &&
672 "Assumes sizeof(wchar) on target is <= 64");
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000673
Mike Stump1eb44332009-09-09 15:08:12 +0000674 // This is what we will use for overflow detection
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000675 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000676
Chris Lattnere3ad8812009-04-28 21:51:46 +0000677 unsigned NumCharsSoFar = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000678 while (begin[0] != '\'') {
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000679 uint64_t ResultChar;
Reid Spencer5f016e22007-07-11 17:01:13 +0000680 if (begin[0] != '\\') // If this is a normal character, consume it.
681 ResultChar = *begin++;
682 else // Otherwise, this is an escape character.
683 ResultChar = ProcessCharEscape(begin, end, HadError, Loc, IsWide, PP);
684
685 // If this is a multi-character constant (e.g. 'abc'), handle it. These are
686 // implementation defined (C99 6.4.4.4p10).
Chris Lattnere3ad8812009-04-28 21:51:46 +0000687 if (NumCharsSoFar) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000688 if (IsWide) {
689 // Emulate GCC's (unintentional?) behavior: L'ab' -> L'b'.
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000690 LitVal = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 } else {
692 // Narrow character literals act as though their value is concatenated
Chris Lattnere3ad8812009-04-28 21:51:46 +0000693 // in this implementation, but warn on overflow.
694 if (LitVal.countLeadingZeros() < 8)
Reid Spencer5f016e22007-07-11 17:01:13 +0000695 PP.Diag(Loc, diag::warn_char_constant_too_large);
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000696 LitVal <<= 8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 }
698 }
Mike Stump1eb44332009-09-09 15:08:12 +0000699
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000700 LitVal = LitVal + ResultChar;
Chris Lattnere3ad8812009-04-28 21:51:46 +0000701 ++NumCharsSoFar;
702 }
703
704 // If this is the second character being processed, do special handling.
705 if (NumCharsSoFar > 1) {
706 // Warn about discarding the top bits for multi-char wide-character
707 // constants (L'abcd').
708 if (IsWide)
709 PP.Diag(Loc, diag::warn_extraneous_wide_char_constant);
710 else if (NumCharsSoFar != 4)
711 PP.Diag(Loc, diag::ext_multichar_character_literal);
712 else
713 PP.Diag(Loc, diag::ext_four_char_character_literal);
Eli Friedman2a1c3632009-06-01 05:25:02 +0000714 IsMultiChar = true;
Daniel Dunbar930b71a2009-07-29 01:46:05 +0000715 } else
716 IsMultiChar = false;
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000717
718 // Transfer the value from APInt to uint64_t
719 Value = LitVal.getZExtValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000720
Reid Spencer5f016e22007-07-11 17:01:13 +0000721 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1")
722 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple
723 // character constants are not sign extended in the this implementation:
724 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC.
Chris Lattnere3ad8812009-04-28 21:51:46 +0000725 if (!IsWide && NumCharsSoFar == 1 && (Value & 128) &&
Eli Friedman15b91762009-06-05 07:05:05 +0000726 PP.getLangOptions().CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000727 Value = (signed char)Value;
728}
729
730
731/// string-literal: [C99 6.4.5]
732/// " [s-char-sequence] "
733/// L" [s-char-sequence] "
734/// s-char-sequence:
735/// s-char
736/// s-char-sequence s-char
737/// s-char:
738/// any source character except the double quote ",
739/// backslash \, or newline character
740/// escape-character
741/// universal-character-name
742/// escape-character: [C99 6.4.4.4]
743/// \ escape-code
744/// universal-character-name
745/// escape-code:
746/// character-escape-code
747/// octal-escape-code
748/// hex-escape-code
749/// character-escape-code: one of
750/// n t b r f v a
751/// \ ' " ?
752/// octal-escape-code:
753/// octal-digit
754/// octal-digit octal-digit
755/// octal-digit octal-digit octal-digit
756/// hex-escape-code:
757/// x hex-digit
758/// hex-escape-code hex-digit
759/// universal-character-name:
760/// \u hex-quad
761/// \U hex-quad hex-quad
762/// hex-quad:
763/// hex-digit hex-digit hex-digit hex-digit
764///
765StringLiteralParser::
Chris Lattnerd2177732007-07-20 16:59:19 +0000766StringLiteralParser(const Token *StringToks, unsigned NumStringToks,
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000767 Preprocessor &pp) : PP(pp) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000768 // Scan all of the string portions, remember the max individual token length,
769 // computing a bound on the concatenated string length, and see whether any
770 // piece is a wide-string. If any of the string portions is a wide-string
771 // literal, the result is a wide-string literal [C99 6.4.5p4].
772 MaxTokenLength = StringToks[0].getLength();
773 SizeBound = StringToks[0].getLength()-2; // -2 for "".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000774 AnyWide = StringToks[0].is(tok::wide_string_literal);
Mike Stump1eb44332009-09-09 15:08:12 +0000775
Reid Spencer5f016e22007-07-11 17:01:13 +0000776 hadError = false;
777
778 // Implement Translation Phase #6: concatenation of string literals
779 /// (C99 5.1.1.2p1). The common case is only one string fragment.
780 for (unsigned i = 1; i != NumStringToks; ++i) {
781 // The string could be shorter than this if it needs cleaning, but this is a
782 // reasonable bound, which is all we need.
783 SizeBound += StringToks[i].getLength()-2; // -2 for "".
Mike Stump1eb44332009-09-09 15:08:12 +0000784
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 // Remember maximum string piece length.
Mike Stump1eb44332009-09-09 15:08:12 +0000786 if (StringToks[i].getLength() > MaxTokenLength)
Reid Spencer5f016e22007-07-11 17:01:13 +0000787 MaxTokenLength = StringToks[i].getLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000788
Reid Spencer5f016e22007-07-11 17:01:13 +0000789 // Remember if we see any wide strings.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000790 AnyWide |= StringToks[i].is(tok::wide_string_literal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000791 }
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000792
Reid Spencer5f016e22007-07-11 17:01:13 +0000793 // Include space for the null terminator.
794 ++SizeBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000795
Reid Spencer5f016e22007-07-11 17:01:13 +0000796 // TODO: K&R warning: "traditional C rejects string constant concatenation"
Mike Stump1eb44332009-09-09 15:08:12 +0000797
Reid Spencer5f016e22007-07-11 17:01:13 +0000798 // Get the width in bytes of wchar_t. If no wchar_t strings are used, do not
799 // query the target. As such, wchar_tByteWidth is only valid if AnyWide=true.
800 wchar_tByteWidth = ~0U;
801 if (AnyWide) {
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000802 wchar_tByteWidth = PP.getTargetInfo().getWCharWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000803 assert((wchar_tByteWidth & 7) == 0 && "Assumes wchar_t is byte multiple!");
804 wchar_tByteWidth /= 8;
805 }
Mike Stump1eb44332009-09-09 15:08:12 +0000806
Reid Spencer5f016e22007-07-11 17:01:13 +0000807 // The output buffer size needs to be large enough to hold wide characters.
808 // This is a worst-case assumption which basically corresponds to L"" "long".
809 if (AnyWide)
810 SizeBound *= wchar_tByteWidth;
Mike Stump1eb44332009-09-09 15:08:12 +0000811
Reid Spencer5f016e22007-07-11 17:01:13 +0000812 // Size the temporary buffer to hold the result string data.
813 ResultBuf.resize(SizeBound);
Mike Stump1eb44332009-09-09 15:08:12 +0000814
Reid Spencer5f016e22007-07-11 17:01:13 +0000815 // Likewise, but for each string piece.
816 llvm::SmallString<512> TokenBuf;
817 TokenBuf.resize(MaxTokenLength);
Mike Stump1eb44332009-09-09 15:08:12 +0000818
Reid Spencer5f016e22007-07-11 17:01:13 +0000819 // Loop over all the strings, getting their spelling, and expanding them to
820 // wide strings as appropriate.
821 ResultPtr = &ResultBuf[0]; // Next byte to fill in.
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Anders Carlssonee98ac52007-10-15 02:50:23 +0000823 Pascal = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000824
Reid Spencer5f016e22007-07-11 17:01:13 +0000825 for (unsigned i = 0, e = NumStringToks; i != e; ++i) {
826 const char *ThisTokBuf = &TokenBuf[0];
827 // Get the spelling of the token, which eliminates trigraphs, etc. We know
828 // that ThisTokBuf points to a buffer that is big enough for the whole token
829 // and 'spelled' tokens can only shrink.
830 unsigned ThisTokLen = PP.getSpelling(StringToks[i], ThisTokBuf);
831 const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote.
Mike Stump1eb44332009-09-09 15:08:12 +0000832
Reid Spencer5f016e22007-07-11 17:01:13 +0000833 // TODO: Input character set mapping support.
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Reid Spencer5f016e22007-07-11 17:01:13 +0000835 // Skip L marker for wide strings.
836 bool ThisIsWide = false;
837 if (ThisTokBuf[0] == 'L') {
838 ++ThisTokBuf;
839 ThisIsWide = true;
840 }
Mike Stump1eb44332009-09-09 15:08:12 +0000841
Reid Spencer5f016e22007-07-11 17:01:13 +0000842 assert(ThisTokBuf[0] == '"' && "Expected quote, lexer broken?");
843 ++ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Anders Carlssonee98ac52007-10-15 02:50:23 +0000845 // Check if this is a pascal string
846 if (pp.getLangOptions().PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
847 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') {
Mike Stump1eb44332009-09-09 15:08:12 +0000848
Anders Carlssonee98ac52007-10-15 02:50:23 +0000849 // If the \p sequence is found in the first token, we have a pascal string
850 // Otherwise, if we already have a pascal string, ignore the first \p
851 if (i == 0) {
852 ++ThisTokBuf;
853 Pascal = true;
854 } else if (Pascal)
855 ThisTokBuf += 2;
856 }
Mike Stump1eb44332009-09-09 15:08:12 +0000857
Reid Spencer5f016e22007-07-11 17:01:13 +0000858 while (ThisTokBuf != ThisTokEnd) {
859 // Is this a span of non-escape characters?
860 if (ThisTokBuf[0] != '\\') {
861 const char *InStart = ThisTokBuf;
862 do {
863 ++ThisTokBuf;
864 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\');
Mike Stump1eb44332009-09-09 15:08:12 +0000865
Reid Spencer5f016e22007-07-11 17:01:13 +0000866 // Copy the character span over.
867 unsigned Len = ThisTokBuf-InStart;
868 if (!AnyWide) {
869 memcpy(ResultPtr, InStart, Len);
870 ResultPtr += Len;
871 } else {
872 // Note: our internal rep of wide char tokens is always little-endian.
873 for (; Len; --Len, ++InStart) {
874 *ResultPtr++ = InStart[0];
875 // Add zeros at the end.
876 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000877 *ResultPtr++ = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 }
879 }
880 continue;
881 }
Steve Naroff4e93b342009-04-01 11:09:15 +0000882 // Is this a Universal Character Name escape?
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000883 if (ThisTokBuf[1] == 'u' || ThisTokBuf[1] == 'U') {
Mike Stump1eb44332009-09-09 15:08:12 +0000884 ProcessUCNEscape(ThisTokBuf, ThisTokEnd, ResultPtr,
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000885 hadError, StringToks[i].getLocation(), ThisIsWide, PP);
Steve Naroff4e93b342009-04-01 11:09:15 +0000886 continue;
887 }
888 // Otherwise, this is a non-UCN escape character. Process it.
889 unsigned ResultChar = ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError,
890 StringToks[i].getLocation(),
891 ThisIsWide, PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Steve Naroff4e93b342009-04-01 11:09:15 +0000893 // Note: our internal rep of wide char tokens is always little-endian.
894 *ResultPtr++ = ResultChar & 0xFF;
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Steve Naroff4e93b342009-04-01 11:09:15 +0000896 if (AnyWide) {
897 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
898 *ResultPtr++ = ResultChar >> i*8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000899 }
900 }
901 }
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000903 if (Pascal) {
Anders Carlssonee98ac52007-10-15 02:50:23 +0000904 ResultBuf[0] = ResultPtr-&ResultBuf[0]-1;
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000905
906 // Verify that pascal strings aren't too large.
Eli Friedman57d7dde2009-04-01 03:17:08 +0000907 if (GetStringLength() > 256) {
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000908 PP.Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long)
909 << SourceRange(StringToks[0].getLocation(),
910 StringToks[NumStringToks-1].getLocation());
Eli Friedman57d7dde2009-04-01 03:17:08 +0000911 hadError = 1;
912 return;
913 }
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000914 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000915}
Chris Lattner719e6152009-02-18 19:21:10 +0000916
917
918/// getOffsetOfStringByte - This function returns the offset of the
919/// specified byte of the string data represented by Token. This handles
920/// advancing over escape sequences in the string.
921unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok,
922 unsigned ByteNo,
923 Preprocessor &PP) {
924 // Get the spelling of the token.
925 llvm::SmallString<16> SpellingBuffer;
926 SpellingBuffer.resize(Tok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Chris Lattner719e6152009-02-18 19:21:10 +0000928 const char *SpellingPtr = &SpellingBuffer[0];
929 unsigned TokLen = PP.getSpelling(Tok, SpellingPtr);
930
931 assert(SpellingPtr[0] != 'L' && "Doesn't handle wide strings yet");
932
Mike Stump1eb44332009-09-09 15:08:12 +0000933
Chris Lattner719e6152009-02-18 19:21:10 +0000934 const char *SpellingStart = SpellingPtr;
935 const char *SpellingEnd = SpellingPtr+TokLen;
936
937 // Skip over the leading quote.
938 assert(SpellingPtr[0] == '"' && "Should be a string literal!");
939 ++SpellingPtr;
Mike Stump1eb44332009-09-09 15:08:12 +0000940
Chris Lattner719e6152009-02-18 19:21:10 +0000941 // Skip over bytes until we find the offset we're looking for.
942 while (ByteNo) {
943 assert(SpellingPtr < SpellingEnd && "Didn't find byte offset!");
Mike Stump1eb44332009-09-09 15:08:12 +0000944
Chris Lattner719e6152009-02-18 19:21:10 +0000945 // Step over non-escapes simply.
946 if (*SpellingPtr != '\\') {
947 ++SpellingPtr;
948 --ByteNo;
949 continue;
950 }
Mike Stump1eb44332009-09-09 15:08:12 +0000951
Chris Lattner719e6152009-02-18 19:21:10 +0000952 // Otherwise, this is an escape character. Advance over it.
953 bool HadError = false;
954 ProcessCharEscape(SpellingPtr, SpellingEnd, HadError,
955 Tok.getLocation(), false, PP);
956 assert(!HadError && "This method isn't valid on erroneous strings");
957 --ByteNo;
958 }
Mike Stump1eb44332009-09-09 15:08:12 +0000959
Chris Lattner719e6152009-02-18 19:21:10 +0000960 return SpellingPtr-SpellingStart;
961}