blob: 70183fd1a0ea42dc2089839948edef17ffb0ac6f [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "llvm/ADT/StringExtras.h"
David Blaikie9fe8c742011-09-23 05:35:21 +000020#include "llvm/Support/ErrorHandling.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using 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
Douglas Gregor5cee1192011-07-27 05:40:30 +000032static unsigned getCharWidth(tok::TokenKind kind, const TargetInfo &Target) {
33 switch (kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +000034 default: llvm_unreachable("Unknown token type!");
Douglas Gregor5cee1192011-07-27 05:40:30 +000035 case tok::char_constant:
36 case tok::string_literal:
37 case tok::utf8_string_literal:
38 return Target.getCharWidth();
39 case tok::wide_char_constant:
40 case tok::wide_string_literal:
41 return Target.getWCharWidth();
42 case tok::utf16_char_constant:
43 case tok::utf16_string_literal:
44 return Target.getChar16Width();
45 case tok::utf32_char_constant:
46 case tok::utf32_string_literal:
47 return Target.getChar32Width();
48 }
49}
50
Reid Spencer5f016e22007-07-11 17:01:13 +000051/// ProcessCharEscape - Parse a standard C escape sequence, which can occur in
52/// either a character or a string literal.
53static unsigned ProcessCharEscape(const char *&ThisTokBuf,
54 const char *ThisTokEnd, bool &HadError,
Douglas Gregor5cee1192011-07-27 05:40:30 +000055 FullSourceLoc Loc, unsigned CharWidth,
David Blaikied6471f72011-09-25 23:23:43 +000056 DiagnosticsEngine *Diags) {
Reid Spencer5f016e22007-07-11 17:01:13 +000057 // Skip the '\' char.
58 ++ThisTokBuf;
59
60 // We know that this character can't be off the end of the buffer, because
61 // that would have been \", which would not have been the end of string.
62 unsigned ResultChar = *ThisTokBuf++;
63 switch (ResultChar) {
64 // These map to themselves.
65 case '\\': case '\'': case '"': case '?': break;
Mike Stump1eb44332009-09-09 15:08:12 +000066
Reid Spencer5f016e22007-07-11 17:01:13 +000067 // These have fixed mappings.
68 case 'a':
69 // TODO: K&R: the meaning of '\\a' is different in traditional C
70 ResultChar = 7;
71 break;
72 case 'b':
73 ResultChar = 8;
74 break;
75 case 'e':
Chris Lattner91f54ce2010-11-17 06:26:08 +000076 if (Diags)
77 Diags->Report(Loc, diag::ext_nonstandard_escape) << "e";
Reid Spencer5f016e22007-07-11 17:01:13 +000078 ResultChar = 27;
79 break;
Eli Friedman3c548012009-06-10 01:32:39 +000080 case 'E':
Chris Lattner91f54ce2010-11-17 06:26:08 +000081 if (Diags)
82 Diags->Report(Loc, diag::ext_nonstandard_escape) << "E";
Eli Friedman3c548012009-06-10 01:32:39 +000083 ResultChar = 27;
84 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000085 case 'f':
86 ResultChar = 12;
87 break;
88 case 'n':
89 ResultChar = 10;
90 break;
91 case 'r':
92 ResultChar = 13;
93 break;
94 case 't':
95 ResultChar = 9;
96 break;
97 case 'v':
98 ResultChar = 11;
99 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000100 case 'x': { // Hex escape.
101 ResultChar = 0;
102 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Chris Lattner91f54ce2010-11-17 06:26:08 +0000103 if (Diags)
104 Diags->Report(Loc, diag::err_hex_escape_no_digits);
Reid Spencer5f016e22007-07-11 17:01:13 +0000105 HadError = 1;
106 break;
107 }
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 // Hex escapes are a maximal series of hex digits.
110 bool Overflow = false;
111 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
112 int CharVal = HexDigitValue(ThisTokBuf[0]);
113 if (CharVal == -1) break;
Chris Lattnerc29bbde2008-09-30 20:45:40 +0000114 // About to shift out a digit?
115 Overflow |= (ResultChar & 0xF0000000) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000116 ResultChar <<= 4;
117 ResultChar |= CharVal;
118 }
119
120 // See if any bits will be truncated when evaluated as a character.
Reid Spencer5f016e22007-07-11 17:01:13 +0000121 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
122 Overflow = true;
123 ResultChar &= ~0U >> (32-CharWidth);
124 }
Mike Stump1eb44332009-09-09 15:08:12 +0000125
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 // Check for overflow.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000127 if (Overflow && Diags) // Too many digits to fit in
128 Diags->Report(Loc, diag::warn_hex_escape_too_large);
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 break;
130 }
131 case '0': case '1': case '2': case '3':
132 case '4': case '5': case '6': case '7': {
133 // Octal escapes.
134 --ThisTokBuf;
135 ResultChar = 0;
136
137 // Octal escapes are a series of octal digits with maximum length 3.
138 // "\0123" is a two digit sequence equal to "\012" "3".
139 unsigned NumDigits = 0;
140 do {
141 ResultChar <<= 3;
142 ResultChar |= *ThisTokBuf++ - '0';
143 ++NumDigits;
144 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
145 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7');
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Reid Spencer5f016e22007-07-11 17:01:13 +0000147 // Check for overflow. Reject '\777', but not L'\777'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000148 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
Chris Lattner91f54ce2010-11-17 06:26:08 +0000149 if (Diags)
150 Diags->Report(Loc, diag::warn_octal_escape_too_large);
Reid Spencer5f016e22007-07-11 17:01:13 +0000151 ResultChar &= ~0U >> (32-CharWidth);
152 }
153 break;
154 }
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Reid Spencer5f016e22007-07-11 17:01:13 +0000156 // Otherwise, these are not valid escapes.
157 case '(': case '{': case '[': case '%':
158 // GCC accepts these as extensions. We warn about them as such though.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000159 if (Diags)
160 Diags->Report(Loc, diag::ext_nonstandard_escape)
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000161 << std::string()+(char)ResultChar;
Eli Friedmanf01fdff2009-04-28 00:51:18 +0000162 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000163 default:
Chris Lattner91f54ce2010-11-17 06:26:08 +0000164 if (Diags == 0)
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000165 break;
166
Ted Kremenek23ef69d2010-12-03 00:09:56 +0000167 if (isgraph(ResultChar))
Chris Lattner91f54ce2010-11-17 06:26:08 +0000168 Diags->Report(Loc, diag::ext_unknown_escape)
169 << std::string()+(char)ResultChar;
Chris Lattnerac92d822008-11-22 07:23:31 +0000170 else
Chris Lattner91f54ce2010-11-17 06:26:08 +0000171 Diags->Report(Loc, diag::ext_unknown_escape)
172 << "x"+llvm::utohexstr(ResultChar);
Reid Spencer5f016e22007-07-11 17:01:13 +0000173 break;
174 }
Mike Stump1eb44332009-09-09 15:08:12 +0000175
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 return ResultChar;
177}
178
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000179/// ProcessUCNEscape - Read the Universal Character Name, check constraints and
Nico Weber59705ae2010-10-09 00:27:47 +0000180/// return the UTF32.
181static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
182 uint32_t &UcnVal, unsigned short &UcnLen,
David Blaikied6471f72011-09-25 23:23:43 +0000183 FullSourceLoc Loc, DiagnosticsEngine *Diags,
Chris Lattner6c66f072010-11-17 06:46:14 +0000184 const LangOptions &Features) {
185 if (!Features.CPlusPlus && !Features.C99 && Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000186 Diags->Report(Loc, diag::warn_ucn_not_valid_in_c89);
Mike Stump1eb44332009-09-09 15:08:12 +0000187
Steve Naroff4e93b342009-04-01 11:09:15 +0000188 // Save the beginning of the string (for error diagnostics).
189 const char *ThisTokBegin = ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000190
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000191 // Skip the '\u' char's.
192 ThisTokBuf += 2;
Reid Spencer5f016e22007-07-11 17:01:13 +0000193
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000194 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Chris Lattner6c66f072010-11-17 06:46:14 +0000195 if (Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000196 Diags->Report(Loc, diag::err_ucn_escape_no_digits);
Nico Weber59705ae2010-10-09 00:27:47 +0000197 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000198 }
Nico Weber59705ae2010-10-09 00:27:47 +0000199 UcnLen = (ThisTokBuf[-1] == 'u' ? 4 : 8);
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000200 unsigned short UcnLenSave = UcnLen;
Nico Weber59705ae2010-10-09 00:27:47 +0000201 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000202 int CharVal = HexDigitValue(ThisTokBuf[0]);
203 if (CharVal == -1) break;
204 UcnVal <<= 4;
205 UcnVal |= CharVal;
206 }
207 // If we didn't consume the proper number of digits, there is a problem.
Nico Weber59705ae2010-10-09 00:27:47 +0000208 if (UcnLenSave) {
Chris Lattner872a45e2010-11-17 06:55:10 +0000209 if (Diags) {
Chris Lattner7ef5c272010-11-17 07:05:50 +0000210 SourceLocation L =
211 Lexer::AdvanceToTokenCharacter(Loc, ThisTokBuf-ThisTokBegin,
212 Loc.getManager(), Features);
213 Diags->Report(FullSourceLoc(L, Loc.getManager()),
214 diag::err_ucn_escape_incomplete);
Chris Lattner872a45e2010-11-17 06:55:10 +0000215 }
Nico Weber59705ae2010-10-09 00:27:47 +0000216 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000217 }
Mike Stump1eb44332009-09-09 15:08:12 +0000218 // Check UCN constraints (C99 6.4.3p2).
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000219 if ((UcnVal < 0xa0 &&
220 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, `
Mike Stump1eb44332009-09-09 15:08:12 +0000221 || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF)
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000222 || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ {
Chris Lattner6c66f072010-11-17 06:46:14 +0000223 if (Diags)
Chris Lattner872a45e2010-11-17 06:55:10 +0000224 Diags->Report(Loc, diag::err_ucn_escape_invalid);
Nico Weber59705ae2010-10-09 00:27:47 +0000225 return false;
226 }
227 return true;
228}
229
230/// EncodeUCNEscape - Read the Universal Character Name, check constraints and
231/// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
232/// StringLiteralParser. When we decide to implement UCN's for identifiers,
233/// we will likely rework our support for UCN's.
234static void EncodeUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
Chris Lattnera95880d2010-11-17 07:12:42 +0000235 char *&ResultBuf, bool &HadError,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000236 FullSourceLoc Loc, unsigned CharByteWidth,
David Blaikied6471f72011-09-25 23:23:43 +0000237 DiagnosticsEngine *Diags,
238 const LangOptions &Features) {
Nico Weber59705ae2010-10-09 00:27:47 +0000239 typedef uint32_t UTF32;
240 UTF32 UcnVal = 0;
241 unsigned short UcnLen = 0;
Chris Lattnera95880d2010-11-17 07:12:42 +0000242 if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, Loc, Diags,
243 Features)) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000244 HadError = 1;
245 return;
246 }
Nico Weber59705ae2010-10-09 00:27:47 +0000247
Douglas Gregor5cee1192011-07-27 05:40:30 +0000248 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth) &&
249 "only character widths of 1, 2, or 4 bytes supported");
Nico Webera0f15b02010-10-06 04:57:26 +0000250
Douglas Gregor5cee1192011-07-27 05:40:30 +0000251 (void)UcnLen;
252 assert((UcnLen== 4 || UcnLen== 8) && "only ucn length of 4 or 8 supported");
Nico Webera0f15b02010-10-06 04:57:26 +0000253
Douglas Gregor5cee1192011-07-27 05:40:30 +0000254 if (CharByteWidth == 4) {
255 // Note: our internal rep of wide char tokens is always little-endian.
256 *ResultBuf++ = (UcnVal & 0x000000FF);
257 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
258 *ResultBuf++ = (UcnVal & 0x00FF0000) >> 16;
259 *ResultBuf++ = (UcnVal & 0xFF000000) >> 24;
260 return;
261 }
262
263 if (CharByteWidth == 2) {
Nico Webera0f15b02010-10-06 04:57:26 +0000264 // Convert to UTF16.
265 if (UcnVal < (UTF32)0xFFFF) {
266 *ResultBuf++ = (UcnVal & 0x000000FF);
267 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
268 return;
269 }
Chris Lattnera95880d2010-11-17 07:12:42 +0000270 if (Diags) Diags->Report(Loc, diag::warn_ucn_escape_too_large);
Nico Webera0f15b02010-10-06 04:57:26 +0000271
272 typedef uint16_t UTF16;
273 UcnVal -= 0x10000;
274 UTF16 surrogate1 = 0xD800 + (UcnVal >> 10);
275 UTF16 surrogate2 = 0xDC00 + (UcnVal & 0x3FF);
276 *ResultBuf++ = (surrogate1 & 0x000000FF);
277 *ResultBuf++ = (surrogate1 & 0x0000FF00) >> 8;
278 *ResultBuf++ = (surrogate2 & 0x000000FF);
279 *ResultBuf++ = (surrogate2 & 0x0000FF00) >> 8;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000280 return;
281 }
Douglas Gregor5cee1192011-07-27 05:40:30 +0000282
283 assert(CharByteWidth == 1 && "UTF-8 encoding is only for 1 byte characters");
284
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000285 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
286 // The conversion below was inspired by:
287 // http://www.unicode.org/Public/PROGRAMS/CVTUTF/ConvertUTF.c
Mike Stump1eb44332009-09-09 15:08:12 +0000288 // First, we determine how many bytes the result will require.
Steve Naroff4e93b342009-04-01 11:09:15 +0000289 typedef uint8_t UTF8;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000290
291 unsigned short bytesToWrite = 0;
292 if (UcnVal < (UTF32)0x80)
293 bytesToWrite = 1;
294 else if (UcnVal < (UTF32)0x800)
295 bytesToWrite = 2;
296 else if (UcnVal < (UTF32)0x10000)
297 bytesToWrite = 3;
298 else
299 bytesToWrite = 4;
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000301 const unsigned byteMask = 0xBF;
302 const unsigned byteMark = 0x80;
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000304 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000305 // into the first byte, depending on how many bytes follow.
Mike Stump1eb44332009-09-09 15:08:12 +0000306 static const UTF8 firstByteMark[5] = {
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000307 0x00, 0x00, 0xC0, 0xE0, 0xF0
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000308 };
309 // Finally, we write the bytes into ResultBuf.
310 ResultBuf += bytesToWrite;
311 switch (bytesToWrite) { // note: everything falls through.
312 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
313 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
314 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
315 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
316 }
317 // Update the buffer.
318 ResultBuf += bytesToWrite;
319}
Reid Spencer5f016e22007-07-11 17:01:13 +0000320
321
322/// integer-constant: [C99 6.4.4.1]
323/// decimal-constant integer-suffix
324/// octal-constant integer-suffix
325/// hexadecimal-constant integer-suffix
Mike Stump1eb44332009-09-09 15:08:12 +0000326/// decimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000327/// nonzero-digit
328/// decimal-constant digit
Mike Stump1eb44332009-09-09 15:08:12 +0000329/// octal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000330/// 0
331/// octal-constant octal-digit
Mike Stump1eb44332009-09-09 15:08:12 +0000332/// hexadecimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000333/// hexadecimal-prefix hexadecimal-digit
334/// hexadecimal-constant hexadecimal-digit
335/// hexadecimal-prefix: one of
336/// 0x 0X
337/// integer-suffix:
338/// unsigned-suffix [long-suffix]
339/// unsigned-suffix [long-long-suffix]
340/// long-suffix [unsigned-suffix]
341/// long-long-suffix [unsigned-sufix]
342/// nonzero-digit:
343/// 1 2 3 4 5 6 7 8 9
344/// octal-digit:
345/// 0 1 2 3 4 5 6 7
346/// hexadecimal-digit:
347/// 0 1 2 3 4 5 6 7 8 9
348/// a b c d e f
349/// A B C D E F
350/// unsigned-suffix: one of
351/// u U
352/// long-suffix: one of
353/// l L
Mike Stump1eb44332009-09-09 15:08:12 +0000354/// long-long-suffix: one of
Reid Spencer5f016e22007-07-11 17:01:13 +0000355/// ll LL
356///
357/// floating-constant: [C99 6.4.4.2]
358/// TODO: add rules...
359///
Reid Spencer5f016e22007-07-11 17:01:13 +0000360NumericLiteralParser::
361NumericLiteralParser(const char *begin, const char *end,
362 SourceLocation TokLoc, Preprocessor &pp)
363 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end) {
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Chris Lattnerc29bbde2008-09-30 20:45:40 +0000365 // This routine assumes that the range begin/end matches the regex for integer
366 // and FP constants (specifically, the 'pp-number' regex), and assumes that
367 // the byte at "*end" is both valid and not part of the regex. Because of
368 // this, it doesn't have to check for 'overscan' in various places.
369 assert(!isalnum(*end) && *end != '.' && *end != '_' &&
370 "Lexer didn't maximally munch?");
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Reid Spencer5f016e22007-07-11 17:01:13 +0000372 s = DigitsBegin = begin;
373 saw_exponent = false;
374 saw_period = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 isLong = false;
376 isUnsigned = false;
377 isLongLong = false;
Chris Lattner6e400c22007-08-26 03:29:23 +0000378 isFloat = false;
Chris Lattner506b8de2007-08-26 01:58:14 +0000379 isImaginary = false;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000380 isMicrosoftInteger = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 hadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 if (*s == '0') { // parse radix
Chris Lattner368328c2008-06-30 06:39:54 +0000384 ParseNumberStartingWithZero(TokLoc);
385 if (hadError)
386 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 } else { // the first digit is non-zero
388 radix = 10;
389 s = SkipDigits(s);
390 if (s == ThisTokEnd) {
391 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000392 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000393 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
Chris Lattner5f9e2722011-07-23 10:55:15 +0000394 diag::err_invalid_decimal_digit) << StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000395 hadError = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000396 return;
397 } else if (*s == '.') {
398 s++;
399 saw_period = true;
400 s = SkipDigits(s);
Mike Stump1eb44332009-09-09 15:08:12 +0000401 }
Chris Lattner4411f462008-09-29 23:12:31 +0000402 if ((*s == 'e' || *s == 'E')) { // exponent
Chris Lattner70f66ab2008-04-20 18:47:55 +0000403 const char *Exponent = s;
Reid Spencer5f016e22007-07-11 17:01:13 +0000404 s++;
405 saw_exponent = true;
406 if (*s == '+' || *s == '-') s++; // sign
407 const char *first_non_digit = SkipDigits(s);
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000408 if (first_non_digit != s) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000409 s = first_non_digit;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000410 } else {
Chris Lattnerac92d822008-11-22 07:23:31 +0000411 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin),
412 diag::err_exponent_has_no_digits);
413 hadError = true;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000414 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000415 }
416 }
417 }
418
419 SuffixBegin = s;
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Chris Lattner506b8de2007-08-26 01:58:14 +0000421 // Parse the suffix. At this point we can classify whether we have an FP or
422 // integer constant.
423 bool isFPConstant = isFloatingLiteral();
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chris Lattner506b8de2007-08-26 01:58:14 +0000425 // Loop over all of the characters of the suffix. If we see something bad,
426 // we break out of the loop.
427 for (; s != ThisTokEnd; ++s) {
428 switch (*s) {
429 case 'f': // FP Suffix for "float"
430 case 'F':
431 if (!isFPConstant) break; // Error for integer constant.
Chris Lattner6e400c22007-08-26 03:29:23 +0000432 if (isFloat || isLong) break; // FF, LF invalid.
433 isFloat = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000434 continue; // Success.
435 case 'u':
436 case 'U':
437 if (isFPConstant) break; // Error for floating constant.
438 if (isUnsigned) break; // Cannot be repeated.
439 isUnsigned = true;
440 continue; // Success.
441 case 'l':
442 case 'L':
443 if (isLong || isLongLong) break; // Cannot be repeated.
Chris Lattner6e400c22007-08-26 03:29:23 +0000444 if (isFloat) break; // LF invalid.
Mike Stump1eb44332009-09-09 15:08:12 +0000445
Chris Lattner506b8de2007-08-26 01:58:14 +0000446 // Check for long long. The L's need to be adjacent and the same case.
447 if (s+1 != ThisTokEnd && s[1] == s[0]) {
448 if (isFPConstant) break; // long long invalid for floats.
449 isLongLong = true;
450 ++s; // Eat both of them.
451 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000452 isLong = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000453 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000454 continue; // Success.
455 case 'i':
Chris Lattnerc6374152010-10-14 00:24:10 +0000456 case 'I':
Francois Pichet62ec1f22011-09-17 17:15:52 +0000457 if (PP.getLangOptions().MicrosoftExt) {
Fariborz Jahaniana8be02b2010-01-22 21:36:53 +0000458 if (isFPConstant || isLong || isLongLong) break;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000459
Steve Naroff0c29b222008-04-04 21:02:54 +0000460 // Allow i8, i16, i32, i64, and i128.
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000461 if (s + 1 != ThisTokEnd) {
462 switch (s[1]) {
463 case '8':
464 s += 2; // i8 suffix
465 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000466 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000467 case '1':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000468 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000469 if (s[2] == '6') {
470 s += 3; // i16 suffix
471 isMicrosoftInteger = true;
472 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000473 else if (s[2] == '2') {
474 if (s + 3 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000475 if (s[3] == '8') {
476 s += 4; // i128 suffix
477 isMicrosoftInteger = true;
478 }
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000479 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000480 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000481 case '3':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000482 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000483 if (s[2] == '2') {
484 s += 3; // i32 suffix
485 isLong = true;
486 isMicrosoftInteger = true;
487 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000488 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000489 case '6':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000490 if (s + 2 == ThisTokEnd) break;
Francois Pichetd062b602011-01-11 11:57:53 +0000491 if (s[2] == '4') {
492 s += 3; // i64 suffix
493 isLongLong = true;
494 isMicrosoftInteger = true;
495 }
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000496 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000497 default:
498 break;
499 }
500 break;
Steve Naroff0c29b222008-04-04 21:02:54 +0000501 }
Steve Naroff0c29b222008-04-04 21:02:54 +0000502 }
503 // fall through.
Chris Lattner506b8de2007-08-26 01:58:14 +0000504 case 'j':
505 case 'J':
506 if (isImaginary) break; // Cannot be repeated.
507 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
508 diag::ext_imaginary_constant);
509 isImaginary = true;
510 continue; // Success.
Reid Spencer5f016e22007-07-11 17:01:13 +0000511 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000512 // If we reached here, there was an error.
513 break;
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattner506b8de2007-08-26 01:58:14 +0000516 // Report an error if there are any.
517 if (s != ThisTokEnd) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000518 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
519 isFPConstant ? diag::err_invalid_suffix_float_constant :
520 diag::err_invalid_suffix_integer_constant)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000521 << StringRef(SuffixBegin, ThisTokEnd-SuffixBegin);
Chris Lattnerac92d822008-11-22 07:23:31 +0000522 hadError = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000523 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000524 }
525}
526
Chris Lattner368328c2008-06-30 06:39:54 +0000527/// ParseNumberStartingWithZero - This method is called when the first character
528/// of the number is found to be a zero. This means it is either an octal
529/// number (like '04') or a hex number ('0x123a') a binary number ('0b1010') or
Mike Stump1eb44332009-09-09 15:08:12 +0000530/// a floating point number (01239.123e4). Eat the prefix, determining the
Chris Lattner368328c2008-06-30 06:39:54 +0000531/// radix etc.
532void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) {
533 assert(s[0] == '0' && "Invalid method call");
534 s++;
Mike Stump1eb44332009-09-09 15:08:12 +0000535
Chris Lattner368328c2008-06-30 06:39:54 +0000536 // Handle a hex number like 0x1234.
537 if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
538 s++;
539 radix = 16;
540 DigitsBegin = s;
541 s = SkipHexDigits(s);
542 if (s == ThisTokEnd) {
543 // Done.
544 } else if (*s == '.') {
545 s++;
546 saw_period = true;
547 s = SkipHexDigits(s);
548 }
549 // A binary exponent can appear with or with a '.'. If dotted, the
Mike Stump1eb44332009-09-09 15:08:12 +0000550 // binary exponent is required.
Douglas Gregor1155c422011-08-30 22:40:35 +0000551 if (*s == 'p' || *s == 'P') {
Chris Lattner368328c2008-06-30 06:39:54 +0000552 const char *Exponent = s;
553 s++;
554 saw_exponent = true;
555 if (*s == '+' || *s == '-') s++; // sign
556 const char *first_non_digit = SkipDigits(s);
Chris Lattner6ea62382008-07-25 18:18:34 +0000557 if (first_non_digit == s) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000558 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
559 diag::err_exponent_has_no_digits);
560 hadError = true;
Chris Lattner6ea62382008-07-25 18:18:34 +0000561 return;
Chris Lattner368328c2008-06-30 06:39:54 +0000562 }
Chris Lattner6ea62382008-07-25 18:18:34 +0000563 s = first_non_digit;
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Douglas Gregor1155c422011-08-30 22:40:35 +0000565 if (!PP.getLangOptions().HexFloats)
Chris Lattnerac92d822008-11-22 07:23:31 +0000566 PP.Diag(TokLoc, diag::ext_hexconstant_invalid);
Chris Lattner368328c2008-06-30 06:39:54 +0000567 } else if (saw_period) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000568 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
569 diag::err_hexconstant_requires_exponent);
570 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000571 }
572 return;
573 }
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Chris Lattner368328c2008-06-30 06:39:54 +0000575 // Handle simple binary numbers 0b01010
576 if (*s == 'b' || *s == 'B') {
577 // 0b101010 is a GCC extension.
Chris Lattner413d3552008-06-30 06:44:49 +0000578 PP.Diag(TokLoc, diag::ext_binary_literal);
Chris Lattner368328c2008-06-30 06:39:54 +0000579 ++s;
580 radix = 2;
581 DigitsBegin = s;
582 s = SkipBinaryDigits(s);
583 if (s == ThisTokEnd) {
584 // Done.
585 } else if (isxdigit(*s)) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000586 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Chris Lattner5f9e2722011-07-23 10:55:15 +0000587 diag::err_invalid_binary_digit) << StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000588 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000589 }
Chris Lattner413d3552008-06-30 06:44:49 +0000590 // Other suffixes will be diagnosed by the caller.
Chris Lattner368328c2008-06-30 06:39:54 +0000591 return;
592 }
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Chris Lattner368328c2008-06-30 06:39:54 +0000594 // For now, the radix is set to 8. If we discover that we have a
595 // floating point constant, the radix will change to 10. Octal floating
Mike Stump1eb44332009-09-09 15:08:12 +0000596 // point constants are not permitted (only decimal and hexadecimal).
Chris Lattner368328c2008-06-30 06:39:54 +0000597 radix = 8;
598 DigitsBegin = s;
599 s = SkipOctalDigits(s);
600 if (s == ThisTokEnd)
601 return; // Done, simple octal number like 01234
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Chris Lattner413d3552008-06-30 06:44:49 +0000603 // If we have some other non-octal digit that *is* a decimal digit, see if
604 // this is part of a floating point number like 094.123 or 09e1.
605 if (isdigit(*s)) {
606 const char *EndDecimal = SkipDigits(s);
607 if (EndDecimal[0] == '.' || EndDecimal[0] == 'e' || EndDecimal[0] == 'E') {
608 s = EndDecimal;
609 radix = 10;
610 }
611 }
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Chris Lattner413d3552008-06-30 06:44:49 +0000613 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
614 // the code is using an incorrect base.
Chris Lattner368328c2008-06-30 06:39:54 +0000615 if (isxdigit(*s) && *s != 'e' && *s != 'E') {
Chris Lattnerac92d822008-11-22 07:23:31 +0000616 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Chris Lattner5f9e2722011-07-23 10:55:15 +0000617 diag::err_invalid_octal_digit) << StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000618 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000619 return;
620 }
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Chris Lattner368328c2008-06-30 06:39:54 +0000622 if (*s == '.') {
623 s++;
624 radix = 10;
625 saw_period = true;
Chris Lattner413d3552008-06-30 06:44:49 +0000626 s = SkipDigits(s); // Skip suffix.
Chris Lattner368328c2008-06-30 06:39:54 +0000627 }
628 if (*s == 'e' || *s == 'E') { // exponent
629 const char *Exponent = s;
630 s++;
631 radix = 10;
632 saw_exponent = true;
633 if (*s == '+' || *s == '-') s++; // sign
634 const char *first_non_digit = SkipDigits(s);
635 if (first_non_digit != s) {
636 s = first_non_digit;
637 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000638 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
Chris Lattnerac92d822008-11-22 07:23:31 +0000639 diag::err_exponent_has_no_digits);
640 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000641 return;
642 }
643 }
644}
645
646
Reid Spencer5f016e22007-07-11 17:01:13 +0000647/// GetIntegerValue - Convert this numeric literal value to an APInt that
648/// matches Val's input width. If there is an overflow, set Val to the low bits
649/// of the result and return true. Otherwise, return false.
650bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) {
Daniel Dunbara179be32008-10-16 07:32:01 +0000651 // Fast path: Compute a conservative bound on the maximum number of
652 // bits per digit in this radix. If we can't possibly overflow a
653 // uint64 based on that bound then do the simple conversion to
654 // integer. This avoids the expensive overflow checking below, and
655 // handles the common cases that matter (small decimal integers and
656 // hex/octal values which don't overflow).
657 unsigned MaxBitsPerDigit = 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000658 while ((1U << MaxBitsPerDigit) < radix)
Daniel Dunbara179be32008-10-16 07:32:01 +0000659 MaxBitsPerDigit += 1;
660 if ((SuffixBegin - DigitsBegin) * MaxBitsPerDigit <= 64) {
661 uint64_t N = 0;
662 for (s = DigitsBegin; s != SuffixBegin; ++s)
663 N = N*radix + HexDigitValue(*s);
664
665 // This will truncate the value to Val's input width. Simply check
666 // for overflow by comparing.
667 Val = N;
668 return Val.getZExtValue() != N;
669 }
670
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 Val = 0;
672 s = DigitsBegin;
673
674 llvm::APInt RadixVal(Val.getBitWidth(), radix);
675 llvm::APInt CharVal(Val.getBitWidth(), 0);
676 llvm::APInt OldVal = Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000677
Reid Spencer5f016e22007-07-11 17:01:13 +0000678 bool OverflowOccurred = false;
679 while (s < SuffixBegin) {
680 unsigned C = HexDigitValue(*s++);
Mike Stump1eb44332009-09-09 15:08:12 +0000681
Reid Spencer5f016e22007-07-11 17:01:13 +0000682 // If this letter is out of bound for this radix, reject it.
683 assert(C < radix && "NumericLiteralParser ctor should have rejected this");
Mike Stump1eb44332009-09-09 15:08:12 +0000684
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 CharVal = C;
Mike Stump1eb44332009-09-09 15:08:12 +0000686
Reid Spencer5f016e22007-07-11 17:01:13 +0000687 // Add the digit to the value in the appropriate radix. If adding in digits
688 // made the value smaller, then this overflowed.
689 OldVal = Val;
690
691 // Multiply by radix, did overflow occur on the multiply?
692 Val *= RadixVal;
693 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
694
Reid Spencer5f016e22007-07-11 17:01:13 +0000695 // Add value, did overflow occur on the value?
Daniel Dunbard70cb642008-10-16 06:39:30 +0000696 // (a + b) ult b <=> overflow
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 Val += CharVal;
Reid Spencer5f016e22007-07-11 17:01:13 +0000698 OverflowOccurred |= Val.ult(CharVal);
699 }
700 return OverflowOccurred;
701}
702
John McCall94c939d2009-12-24 09:08:04 +0000703llvm::APFloat::opStatus
704NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) {
Ted Kremenek427d5af2007-11-26 23:12:30 +0000705 using llvm::APFloat;
Mike Stump1eb44332009-09-09 15:08:12 +0000706
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000707 unsigned n = std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin);
John McCall94c939d2009-12-24 09:08:04 +0000708 return Result.convertFromString(StringRef(ThisTokBegin, n),
709 APFloat::rmNearestTiesToEven);
Reid Spencer5f016e22007-07-11 17:01:13 +0000710}
711
Reid Spencer5f016e22007-07-11 17:01:13 +0000712
Craig Topper2fa4e862011-08-11 04:06:15 +0000713/// character-literal: [C++0x lex.ccon]
714/// ' c-char-sequence '
715/// u' c-char-sequence '
716/// U' c-char-sequence '
717/// L' c-char-sequence '
718/// c-char-sequence:
719/// c-char
720/// c-char-sequence c-char
721/// c-char:
722/// any member of the source character set except the single-quote ',
723/// backslash \, or new-line character
724/// escape-sequence
725/// universal-character-name
726/// escape-sequence: [C++0x lex.ccon]
727/// simple-escape-sequence
728/// octal-escape-sequence
729/// hexadecimal-escape-sequence
730/// simple-escape-sequence:
NAKAMURA Takumiddddd482011-08-12 05:49:51 +0000731/// one of \' \" \? \\ \a \b \f \n \r \t \v
Craig Topper2fa4e862011-08-11 04:06:15 +0000732/// octal-escape-sequence:
733/// \ octal-digit
734/// \ octal-digit octal-digit
735/// \ octal-digit octal-digit octal-digit
736/// hexadecimal-escape-sequence:
737/// \x hexadecimal-digit
738/// hexadecimal-escape-sequence hexadecimal-digit
739/// universal-character-name:
740/// \u hex-quad
741/// \U hex-quad hex-quad
742/// hex-quad:
743/// hex-digit hex-digit hex-digit hex-digit
744///
Reid Spencer5f016e22007-07-11 17:01:13 +0000745CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
Douglas Gregor5cee1192011-07-27 05:40:30 +0000746 SourceLocation Loc, Preprocessor &PP,
747 tok::TokenKind kind) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000748 // At this point we know that the character matches the regex "L?'.*'".
749 HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000750
Douglas Gregor5cee1192011-07-27 05:40:30 +0000751 Kind = kind;
752
753 // Determine if this is a wide or UTF character.
754 if (Kind == tok::wide_char_constant || Kind == tok::utf16_char_constant ||
755 Kind == tok::utf32_char_constant) {
756 ++begin;
757 }
Mike Stump1eb44332009-09-09 15:08:12 +0000758
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 // Skip over the entry quote.
760 assert(begin[0] == '\'' && "Invalid token lexed");
761 ++begin;
762
Mike Stump1eb44332009-09-09 15:08:12 +0000763 // FIXME: The "Value" is an uint64_t so we can handle char literals of
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000764 // up to 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000765 // FIXME: This extensively assumes that 'char' is 8-bits.
Chris Lattner98be4942008-03-05 18:54:05 +0000766 assert(PP.getTargetInfo().getCharWidth() == 8 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000767 "Assumes char is 8 bits");
Chris Lattnere3ad8812009-04-28 21:51:46 +0000768 assert(PP.getTargetInfo().getIntWidth() <= 64 &&
769 (PP.getTargetInfo().getIntWidth() & 7) == 0 &&
770 "Assumes sizeof(int) on target is <= 64 and a multiple of char");
771 assert(PP.getTargetInfo().getWCharWidth() <= 64 &&
772 "Assumes sizeof(wchar) on target is <= 64");
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000773
Mike Stump1eb44332009-09-09 15:08:12 +0000774 // This is what we will use for overflow detection
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000775 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000776
Chris Lattnere3ad8812009-04-28 21:51:46 +0000777 unsigned NumCharsSoFar = 0;
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000778 bool Warned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 while (begin[0] != '\'') {
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000780 uint64_t ResultChar;
Nico Weber59705ae2010-10-09 00:27:47 +0000781
782 // Is this a Universal Character Name escape?
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 if (begin[0] != '\\') // If this is a normal character, consume it.
Douglas Gregor17c8c842011-09-27 17:00:18 +0000784 ResultChar = (unsigned char)*begin++;
Nico Weber59705ae2010-10-09 00:27:47 +0000785 else { // Otherwise, this is an escape character.
Craig Topper0473cd52011-08-19 03:20:12 +0000786 unsigned CharWidth = getCharWidth(Kind, PP.getTargetInfo());
Nico Weber59705ae2010-10-09 00:27:47 +0000787 // Check for UCN.
788 if (begin[1] == 'u' || begin[1] == 'U') {
789 uint32_t utf32 = 0;
790 unsigned short UcnLen = 0;
Chris Lattner872a45e2010-11-17 06:55:10 +0000791 if (!ProcessUCNEscape(begin, end, utf32, UcnLen,
792 FullSourceLoc(Loc, PP.getSourceManager()),
Chris Lattner6c66f072010-11-17 06:46:14 +0000793 &PP.getDiagnostics(), PP.getLangOptions())) {
Nico Weber59705ae2010-10-09 00:27:47 +0000794 HadError = 1;
795 }
796 ResultChar = utf32;
Craig Topper0473cd52011-08-19 03:20:12 +0000797 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
798 PP.Diag(Loc, diag::warn_ucn_escape_too_large);
799 ResultChar &= ~0U >> (32-CharWidth);
800 }
Nico Weber59705ae2010-10-09 00:27:47 +0000801 } else {
802 // Otherwise, this is a non-UCN escape character. Process it.
Chris Lattner91f54ce2010-11-17 06:26:08 +0000803 ResultChar = ProcessCharEscape(begin, end, HadError,
804 FullSourceLoc(Loc,PP.getSourceManager()),
Douglas Gregor5cee1192011-07-27 05:40:30 +0000805 CharWidth, &PP.getDiagnostics());
Nico Weber59705ae2010-10-09 00:27:47 +0000806 }
807 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000808
809 // If this is a multi-character constant (e.g. 'abc'), handle it. These are
810 // implementation defined (C99 6.4.4.4p10).
Chris Lattnere3ad8812009-04-28 21:51:46 +0000811 if (NumCharsSoFar) {
Douglas Gregor5cee1192011-07-27 05:40:30 +0000812 if (!isAscii()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000813 // Emulate GCC's (unintentional?) behavior: L'ab' -> L'b'.
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000814 LitVal = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000815 } else {
816 // Narrow character literals act as though their value is concatenated
Chris Lattnere3ad8812009-04-28 21:51:46 +0000817 // in this implementation, but warn on overflow.
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000818 if (LitVal.countLeadingZeros() < 8 && !Warned) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000819 PP.Diag(Loc, diag::warn_char_constant_too_large);
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000820 Warned = true;
821 }
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000822 LitVal <<= 8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000823 }
824 }
Mike Stump1eb44332009-09-09 15:08:12 +0000825
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000826 LitVal = LitVal + ResultChar;
Chris Lattnere3ad8812009-04-28 21:51:46 +0000827 ++NumCharsSoFar;
828 }
829
830 // If this is the second character being processed, do special handling.
831 if (NumCharsSoFar > 1) {
832 // Warn about discarding the top bits for multi-char wide-character
833 // constants (L'abcd').
Douglas Gregor5cee1192011-07-27 05:40:30 +0000834 if (!isAscii())
835 PP.Diag(Loc, diag::warn_extraneous_char_constant);
Chris Lattnere3ad8812009-04-28 21:51:46 +0000836 else if (NumCharsSoFar != 4)
837 PP.Diag(Loc, diag::ext_multichar_character_literal);
838 else
839 PP.Diag(Loc, diag::ext_four_char_character_literal);
Eli Friedman2a1c3632009-06-01 05:25:02 +0000840 IsMultiChar = true;
Daniel Dunbar930b71a2009-07-29 01:46:05 +0000841 } else
842 IsMultiChar = false;
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000843
844 // Transfer the value from APInt to uint64_t
845 Value = LitVal.getZExtValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1")
848 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple
849 // character constants are not sign extended in the this implementation:
850 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC.
Douglas Gregor5cee1192011-07-27 05:40:30 +0000851 if (isAscii() && NumCharsSoFar == 1 && (Value & 128) &&
Eli Friedman15b91762009-06-05 07:05:05 +0000852 PP.getLangOptions().CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000853 Value = (signed char)Value;
854}
855
856
Craig Topper2fa4e862011-08-11 04:06:15 +0000857/// string-literal: [C++0x lex.string]
858/// encoding-prefix " [s-char-sequence] "
859/// encoding-prefix R raw-string
860/// encoding-prefix:
861/// u8
862/// u
863/// U
864/// L
Reid Spencer5f016e22007-07-11 17:01:13 +0000865/// s-char-sequence:
866/// s-char
867/// s-char-sequence s-char
868/// s-char:
Craig Topper2fa4e862011-08-11 04:06:15 +0000869/// any member of the source character set except the double-quote ",
870/// backslash \, or new-line character
871/// escape-sequence
Reid Spencer5f016e22007-07-11 17:01:13 +0000872/// universal-character-name
Craig Topper2fa4e862011-08-11 04:06:15 +0000873/// raw-string:
874/// " d-char-sequence ( r-char-sequence ) d-char-sequence "
875/// r-char-sequence:
876/// r-char
877/// r-char-sequence r-char
878/// r-char:
879/// any member of the source character set, except a right parenthesis )
880/// followed by the initial d-char-sequence (which may be empty)
881/// followed by a double quote ".
882/// d-char-sequence:
883/// d-char
884/// d-char-sequence d-char
885/// d-char:
886/// any member of the basic source character set except:
887/// space, the left parenthesis (, the right parenthesis ),
888/// the backslash \, and the control characters representing horizontal
889/// tab, vertical tab, form feed, and newline.
890/// escape-sequence: [C++0x lex.ccon]
891/// simple-escape-sequence
892/// octal-escape-sequence
893/// hexadecimal-escape-sequence
894/// simple-escape-sequence:
NAKAMURA Takumiddddd482011-08-12 05:49:51 +0000895/// one of \' \" \? \\ \a \b \f \n \r \t \v
Craig Topper2fa4e862011-08-11 04:06:15 +0000896/// octal-escape-sequence:
897/// \ octal-digit
898/// \ octal-digit octal-digit
899/// \ octal-digit octal-digit octal-digit
900/// hexadecimal-escape-sequence:
901/// \x hexadecimal-digit
902/// hexadecimal-escape-sequence hexadecimal-digit
Reid Spencer5f016e22007-07-11 17:01:13 +0000903/// universal-character-name:
904/// \u hex-quad
905/// \U hex-quad hex-quad
906/// hex-quad:
907/// hex-digit hex-digit hex-digit hex-digit
908///
909StringLiteralParser::
Chris Lattnerd2177732007-07-20 16:59:19 +0000910StringLiteralParser(const Token *StringToks, unsigned NumStringToks,
Chris Lattner0833dd02010-11-17 07:21:13 +0000911 Preprocessor &PP, bool Complain)
912 : SM(PP.getSourceManager()), Features(PP.getLangOptions()),
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000913 Target(PP.getTargetInfo()), Diags(Complain ? &PP.getDiagnostics() : 0),
Douglas Gregor5cee1192011-07-27 05:40:30 +0000914 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown),
915 ResultPtr(ResultBuf.data()), hadError(false), Pascal(false) {
Chris Lattner0833dd02010-11-17 07:21:13 +0000916 init(StringToks, NumStringToks);
917}
918
919void StringLiteralParser::init(const Token *StringToks, unsigned NumStringToks){
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000920 // The literal token may have come from an invalid source location (e.g. due
921 // to a PCH error), in which case the token length will be 0.
922 if (NumStringToks == 0 || StringToks[0].getLength() < 2) {
923 hadError = true;
924 return;
925 }
926
Reid Spencer5f016e22007-07-11 17:01:13 +0000927 // Scan all of the string portions, remember the max individual token length,
928 // computing a bound on the concatenated string length, and see whether any
929 // piece is a wide-string. If any of the string portions is a wide-string
930 // literal, the result is a wide-string literal [C99 6.4.5p4].
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000931 assert(NumStringToks && "expected at least one token");
Sean Hunt6cf75022010-08-30 17:47:05 +0000932 MaxTokenLength = StringToks[0].getLength();
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000933 assert(StringToks[0].getLength() >= 2 && "literal token is invalid!");
Sean Hunt6cf75022010-08-30 17:47:05 +0000934 SizeBound = StringToks[0].getLength()-2; // -2 for "".
Douglas Gregor5cee1192011-07-27 05:40:30 +0000935 Kind = StringToks[0].getKind();
Sean Hunt6cf75022010-08-30 17:47:05 +0000936
937 hadError = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000938
939 // Implement Translation Phase #6: concatenation of string literals
940 /// (C99 5.1.1.2p1). The common case is only one string fragment.
941 for (unsigned i = 1; i != NumStringToks; ++i) {
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000942 if (StringToks[i].getLength() < 2) {
943 hadError = true;
944 return;
945 }
946
Reid Spencer5f016e22007-07-11 17:01:13 +0000947 // The string could be shorter than this if it needs cleaning, but this is a
948 // reasonable bound, which is all we need.
Argyrios Kyrtzidis403de3f2011-05-17 22:09:56 +0000949 assert(StringToks[i].getLength() >= 2 && "literal token is invalid!");
Sean Hunt6cf75022010-08-30 17:47:05 +0000950 SizeBound += StringToks[i].getLength()-2; // -2 for "".
Mike Stump1eb44332009-09-09 15:08:12 +0000951
Reid Spencer5f016e22007-07-11 17:01:13 +0000952 // Remember maximum string piece length.
Sean Hunt6cf75022010-08-30 17:47:05 +0000953 if (StringToks[i].getLength() > MaxTokenLength)
954 MaxTokenLength = StringToks[i].getLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000955
Douglas Gregor5cee1192011-07-27 05:40:30 +0000956 // Remember if we see any wide or utf-8/16/32 strings.
957 // Also check for illegal concatenations.
958 if (StringToks[i].isNot(Kind) && StringToks[i].isNot(tok::string_literal)) {
959 if (isAscii()) {
960 Kind = StringToks[i].getKind();
961 } else {
962 if (Diags)
963 Diags->Report(FullSourceLoc(StringToks[i].getLocation(), SM),
964 diag::err_unsupported_string_concat);
965 hadError = true;
966 }
967 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000968 }
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000969
Reid Spencer5f016e22007-07-11 17:01:13 +0000970 // Include space for the null terminator.
971 ++SizeBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000972
Reid Spencer5f016e22007-07-11 17:01:13 +0000973 // TODO: K&R warning: "traditional C rejects string constant concatenation"
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Douglas Gregor5cee1192011-07-27 05:40:30 +0000975 // Get the width in bytes of char/wchar_t/char16_t/char32_t
976 CharByteWidth = getCharWidth(Kind, Target);
977 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
978 CharByteWidth /= 8;
Mike Stump1eb44332009-09-09 15:08:12 +0000979
Reid Spencer5f016e22007-07-11 17:01:13 +0000980 // The output buffer size needs to be large enough to hold wide characters.
981 // This is a worst-case assumption which basically corresponds to L"" "long".
Douglas Gregor5cee1192011-07-27 05:40:30 +0000982 SizeBound *= CharByteWidth;
Mike Stump1eb44332009-09-09 15:08:12 +0000983
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 // Size the temporary buffer to hold the result string data.
985 ResultBuf.resize(SizeBound);
Mike Stump1eb44332009-09-09 15:08:12 +0000986
Reid Spencer5f016e22007-07-11 17:01:13 +0000987 // Likewise, but for each string piece.
988 llvm::SmallString<512> TokenBuf;
989 TokenBuf.resize(MaxTokenLength);
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Reid Spencer5f016e22007-07-11 17:01:13 +0000991 // Loop over all the strings, getting their spelling, and expanding them to
992 // wide strings as appropriate.
993 ResultPtr = &ResultBuf[0]; // Next byte to fill in.
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Anders Carlssonee98ac52007-10-15 02:50:23 +0000995 Pascal = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Reid Spencer5f016e22007-07-11 17:01:13 +0000997 for (unsigned i = 0, e = NumStringToks; i != e; ++i) {
998 const char *ThisTokBuf = &TokenBuf[0];
999 // Get the spelling of the token, which eliminates trigraphs, etc. We know
1000 // that ThisTokBuf points to a buffer that is big enough for the whole token
1001 // and 'spelled' tokens can only shrink.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001002 bool StringInvalid = false;
Chris Lattner0833dd02010-11-17 07:21:13 +00001003 unsigned ThisTokLen =
Chris Lattnerb0607272010-11-17 07:26:20 +00001004 Lexer::getSpelling(StringToks[i], ThisTokBuf, SM, Features,
1005 &StringInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +00001006 if (StringInvalid) {
Douglas Gregor5cee1192011-07-27 05:40:30 +00001007 hadError = true;
Douglas Gregor50f6af72010-03-16 05:20:39 +00001008 continue;
1009 }
1010
Reid Spencer5f016e22007-07-11 17:01:13 +00001011 const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote.
Reid Spencer5f016e22007-07-11 17:01:13 +00001012 // TODO: Input character set mapping support.
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Craig Topper1661d712011-08-08 06:10:39 +00001014 // Skip marker for wide or unicode strings.
Douglas Gregor5cee1192011-07-27 05:40:30 +00001015 if (ThisTokBuf[0] == 'L' || ThisTokBuf[0] == 'u' || ThisTokBuf[0] == 'U') {
Reid Spencer5f016e22007-07-11 17:01:13 +00001016 ++ThisTokBuf;
Douglas Gregor5cee1192011-07-27 05:40:30 +00001017 // Skip 8 of u8 marker for utf8 strings.
1018 if (ThisTokBuf[0] == '8')
1019 ++ThisTokBuf;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +00001020 }
Mike Stump1eb44332009-09-09 15:08:12 +00001021
Craig Topper2fa4e862011-08-11 04:06:15 +00001022 // Check for raw string
1023 if (ThisTokBuf[0] == 'R') {
1024 ThisTokBuf += 2; // skip R"
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Craig Topper2fa4e862011-08-11 04:06:15 +00001026 const char *Prefix = ThisTokBuf;
1027 while (ThisTokBuf[0] != '(')
Anders Carlssonee98ac52007-10-15 02:50:23 +00001028 ++ThisTokBuf;
Craig Topper2fa4e862011-08-11 04:06:15 +00001029 ++ThisTokBuf; // skip '('
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Craig Topper2fa4e862011-08-11 04:06:15 +00001031 // remove same number of characters from the end
1032 if (ThisTokEnd >= ThisTokBuf + (ThisTokBuf - Prefix))
1033 ThisTokEnd -= (ThisTokBuf - Prefix);
1034
1035 // Copy the string over
1036 CopyStringFragment(StringRef(ThisTokBuf, ThisTokEnd - ThisTokBuf));
1037 } else {
1038 assert(ThisTokBuf[0] == '"' && "Expected quote, lexer broken?");
1039 ++ThisTokBuf; // skip "
1040
1041 // Check if this is a pascal string
1042 if (Features.PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
1043 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') {
1044
1045 // If the \p sequence is found in the first token, we have a pascal string
1046 // Otherwise, if we already have a pascal string, ignore the first \p
1047 if (i == 0) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001048 ++ThisTokBuf;
Craig Topper2fa4e862011-08-11 04:06:15 +00001049 Pascal = true;
1050 } else if (Pascal)
1051 ThisTokBuf += 2;
1052 }
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Craig Topper2fa4e862011-08-11 04:06:15 +00001054 while (ThisTokBuf != ThisTokEnd) {
1055 // Is this a span of non-escape characters?
1056 if (ThisTokBuf[0] != '\\') {
1057 const char *InStart = ThisTokBuf;
1058 do {
1059 ++ThisTokBuf;
1060 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\');
1061
1062 // Copy the character span over.
1063 CopyStringFragment(StringRef(InStart, ThisTokBuf - InStart));
1064 continue;
Reid Spencer5f016e22007-07-11 17:01:13 +00001065 }
Craig Topper2fa4e862011-08-11 04:06:15 +00001066 // Is this a Universal Character Name escape?
1067 if (ThisTokBuf[1] == 'u' || ThisTokBuf[1] == 'U') {
1068 EncodeUCNEscape(ThisTokBuf, ThisTokEnd, ResultPtr,
1069 hadError, FullSourceLoc(StringToks[i].getLocation(),SM),
1070 CharByteWidth, Diags, Features);
1071 continue;
1072 }
1073 // Otherwise, this is a non-UCN escape character. Process it.
1074 unsigned ResultChar =
1075 ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError,
1076 FullSourceLoc(StringToks[i].getLocation(), SM),
1077 CharByteWidth*8, Diags);
Mike Stump1eb44332009-09-09 15:08:12 +00001078
Craig Topper2fa4e862011-08-11 04:06:15 +00001079 // Note: our internal rep of wide char tokens is always little-endian.
1080 *ResultPtr++ = ResultChar & 0xFF;
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Craig Topper2fa4e862011-08-11 04:06:15 +00001082 for (unsigned i = 1, e = CharByteWidth; i != e; ++i)
1083 *ResultPtr++ = ResultChar >> i*8;
1084 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001085 }
1086 }
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001088 if (Pascal) {
Anders Carlssonee98ac52007-10-15 02:50:23 +00001089 ResultBuf[0] = ResultPtr-&ResultBuf[0]-1;
Douglas Gregor5cee1192011-07-27 05:40:30 +00001090 ResultBuf[0] /= CharByteWidth;
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001091
1092 // Verify that pascal strings aren't too large.
Chris Lattner0833dd02010-11-17 07:21:13 +00001093 if (GetStringLength() > 256) {
1094 if (Diags)
1095 Diags->Report(FullSourceLoc(StringToks[0].getLocation(), SM),
1096 diag::err_pascal_string_too_long)
1097 << SourceRange(StringToks[0].getLocation(),
1098 StringToks[NumStringToks-1].getLocation());
Douglas Gregor5cee1192011-07-27 05:40:30 +00001099 hadError = true;
Eli Friedman57d7dde2009-04-01 03:17:08 +00001100 return;
1101 }
Chris Lattner0833dd02010-11-17 07:21:13 +00001102 } else if (Diags) {
Douglas Gregor427c4922010-07-20 14:33:20 +00001103 // Complain if this string literal has too many characters.
Chris Lattnera95880d2010-11-17 07:12:42 +00001104 unsigned MaxChars = Features.CPlusPlus? 65536 : Features.C99 ? 4095 : 509;
Douglas Gregor427c4922010-07-20 14:33:20 +00001105
1106 if (GetNumStringChars() > MaxChars)
Chris Lattner0833dd02010-11-17 07:21:13 +00001107 Diags->Report(FullSourceLoc(StringToks[0].getLocation(), SM),
1108 diag::ext_string_too_long)
Douglas Gregor427c4922010-07-20 14:33:20 +00001109 << GetNumStringChars() << MaxChars
Chris Lattnera95880d2010-11-17 07:12:42 +00001110 << (Features.CPlusPlus ? 2 : Features.C99 ? 1 : 0)
Douglas Gregor427c4922010-07-20 14:33:20 +00001111 << SourceRange(StringToks[0].getLocation(),
1112 StringToks[NumStringToks-1].getLocation());
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001113 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001114}
Chris Lattner719e6152009-02-18 19:21:10 +00001115
1116
Craig Topper2fa4e862011-08-11 04:06:15 +00001117/// copyStringFragment - This function copies from Start to End into ResultPtr.
1118/// Performs widening for multi-byte characters.
Craig Topper03720fc2011-08-11 05:10:55 +00001119void StringLiteralParser::CopyStringFragment(StringRef Fragment) {
Craig Topper2fa4e862011-08-11 04:06:15 +00001120 // Copy the character span over.
1121 if (CharByteWidth == 1) {
1122 memcpy(ResultPtr, Fragment.data(), Fragment.size());
1123 ResultPtr += Fragment.size();
1124 } else {
1125 // Note: our internal rep of wide char tokens is always little-endian.
1126 for (StringRef::iterator I=Fragment.begin(), E=Fragment.end(); I!=E; ++I) {
1127 *ResultPtr++ = *I;
1128 // Add zeros at the end.
1129 for (unsigned i = 1, e = CharByteWidth; i != e; ++i)
1130 *ResultPtr++ = 0;
1131 }
1132 }
1133}
1134
1135
Chris Lattner719e6152009-02-18 19:21:10 +00001136/// getOffsetOfStringByte - This function returns the offset of the
1137/// specified byte of the string data represented by Token. This handles
1138/// advancing over escape sequences in the string.
1139unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok,
Chris Lattner6c66f072010-11-17 06:46:14 +00001140 unsigned ByteNo) const {
Chris Lattner719e6152009-02-18 19:21:10 +00001141 // Get the spelling of the token.
Chris Lattnerca1475e2010-11-17 06:35:43 +00001142 llvm::SmallString<32> SpellingBuffer;
Sean Hunt6cf75022010-08-30 17:47:05 +00001143 SpellingBuffer.resize(Tok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +00001144
Douglas Gregor50f6af72010-03-16 05:20:39 +00001145 bool StringInvalid = false;
Chris Lattner719e6152009-02-18 19:21:10 +00001146 const char *SpellingPtr = &SpellingBuffer[0];
Chris Lattnerb0607272010-11-17 07:26:20 +00001147 unsigned TokLen = Lexer::getSpelling(Tok, SpellingPtr, SM, Features,
1148 &StringInvalid);
Chris Lattner91f54ce2010-11-17 06:26:08 +00001149 if (StringInvalid)
Douglas Gregor50f6af72010-03-16 05:20:39 +00001150 return 0;
Chris Lattner719e6152009-02-18 19:21:10 +00001151
Douglas Gregor5cee1192011-07-27 05:40:30 +00001152 assert(SpellingPtr[0] != 'L' && SpellingPtr[0] != 'u' &&
1153 SpellingPtr[0] != 'U' && "Doesn't handle wide or utf strings yet");
Chris Lattner719e6152009-02-18 19:21:10 +00001154
Mike Stump1eb44332009-09-09 15:08:12 +00001155
Chris Lattner719e6152009-02-18 19:21:10 +00001156 const char *SpellingStart = SpellingPtr;
1157 const char *SpellingEnd = SpellingPtr+TokLen;
1158
1159 // Skip over the leading quote.
1160 assert(SpellingPtr[0] == '"' && "Should be a string literal!");
1161 ++SpellingPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001162
Chris Lattner719e6152009-02-18 19:21:10 +00001163 // Skip over bytes until we find the offset we're looking for.
1164 while (ByteNo) {
1165 assert(SpellingPtr < SpellingEnd && "Didn't find byte offset!");
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Chris Lattner719e6152009-02-18 19:21:10 +00001167 // Step over non-escapes simply.
1168 if (*SpellingPtr != '\\') {
1169 ++SpellingPtr;
1170 --ByteNo;
1171 continue;
1172 }
Mike Stump1eb44332009-09-09 15:08:12 +00001173
Chris Lattner719e6152009-02-18 19:21:10 +00001174 // Otherwise, this is an escape character. Advance over it.
1175 bool HadError = false;
1176 ProcessCharEscape(SpellingPtr, SpellingEnd, HadError,
Chris Lattnerca1475e2010-11-17 06:35:43 +00001177 FullSourceLoc(Tok.getLocation(), SM),
Douglas Gregor5cee1192011-07-27 05:40:30 +00001178 CharByteWidth*8, Diags);
Chris Lattner719e6152009-02-18 19:21:10 +00001179 assert(!HadError && "This method isn't valid on erroneous strings");
1180 --ByteNo;
1181 }
Mike Stump1eb44332009-09-09 15:08:12 +00001182
Chris Lattner719e6152009-02-18 19:21:10 +00001183 return SpellingPtr-SpellingStart;
1184}