blob: 2eabd7edcdef6a9419e5b24cb4da852c24fa0b88 [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,
Douglas Gregorb90f4b32010-05-26 05:35:51 +000037 Preprocessor &PP, bool Complain) {
Reid Spencer5f016e22007-07-11 17:01:13 +000038 // Skip the '\' char.
39 ++ThisTokBuf;
40
41 // We know that this character can't be off the end of the buffer, because
42 // that would have been \", which would not have been the end of string.
43 unsigned ResultChar = *ThisTokBuf++;
44 switch (ResultChar) {
45 // These map to themselves.
46 case '\\': case '\'': case '"': case '?': break;
Mike Stump1eb44332009-09-09 15:08:12 +000047
Reid Spencer5f016e22007-07-11 17:01:13 +000048 // These have fixed mappings.
49 case 'a':
50 // TODO: K&R: the meaning of '\\a' is different in traditional C
51 ResultChar = 7;
52 break;
53 case 'b':
54 ResultChar = 8;
55 break;
56 case 'e':
Douglas Gregorb90f4b32010-05-26 05:35:51 +000057 if (Complain)
58 PP.Diag(Loc, diag::ext_nonstandard_escape) << "e";
Reid Spencer5f016e22007-07-11 17:01:13 +000059 ResultChar = 27;
60 break;
Eli Friedman3c548012009-06-10 01:32:39 +000061 case 'E':
Douglas Gregorb90f4b32010-05-26 05:35:51 +000062 if (Complain)
63 PP.Diag(Loc, diag::ext_nonstandard_escape) << "E";
Eli Friedman3c548012009-06-10 01:32:39 +000064 ResultChar = 27;
65 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000066 case 'f':
67 ResultChar = 12;
68 break;
69 case 'n':
70 ResultChar = 10;
71 break;
72 case 'r':
73 ResultChar = 13;
74 break;
75 case 't':
76 ResultChar = 9;
77 break;
78 case 'v':
79 ResultChar = 11;
80 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000081 case 'x': { // Hex escape.
82 ResultChar = 0;
83 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Douglas Gregorb90f4b32010-05-26 05:35:51 +000084 if (Complain)
85 PP.Diag(Loc, diag::err_hex_escape_no_digits);
Reid Spencer5f016e22007-07-11 17:01:13 +000086 HadError = 1;
87 break;
88 }
Mike Stump1eb44332009-09-09 15:08:12 +000089
Reid Spencer5f016e22007-07-11 17:01:13 +000090 // Hex escapes are a maximal series of hex digits.
91 bool Overflow = false;
92 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
93 int CharVal = HexDigitValue(ThisTokBuf[0]);
94 if (CharVal == -1) break;
Chris Lattnerc29bbde2008-09-30 20:45:40 +000095 // About to shift out a digit?
96 Overflow |= (ResultChar & 0xF0000000) ? true : false;
Reid Spencer5f016e22007-07-11 17:01:13 +000097 ResultChar <<= 4;
98 ResultChar |= CharVal;
99 }
100
101 // See if any bits will be truncated when evaluated as a character.
Alisdair Meredith1a75ee22009-07-14 08:10:06 +0000102 unsigned CharWidth = IsWide
103 ? PP.getTargetInfo().getWCharWidth()
104 : PP.getTargetInfo().getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Reid Spencer5f016e22007-07-11 17:01:13 +0000106 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
107 Overflow = true;
108 ResultChar &= ~0U >> (32-CharWidth);
109 }
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 // Check for overflow.
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000112 if (Overflow && Complain) // Too many digits to fit in
Reid Spencer5f016e22007-07-11 17:01:13 +0000113 PP.Diag(Loc, diag::warn_hex_escape_too_large);
114 break;
115 }
116 case '0': case '1': case '2': case '3':
117 case '4': case '5': case '6': case '7': {
118 // Octal escapes.
119 --ThisTokBuf;
120 ResultChar = 0;
121
122 // Octal escapes are a series of octal digits with maximum length 3.
123 // "\0123" is a two digit sequence equal to "\012" "3".
124 unsigned NumDigits = 0;
125 do {
126 ResultChar <<= 3;
127 ResultChar |= *ThisTokBuf++ - '0';
128 ++NumDigits;
129 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
130 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7');
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Reid Spencer5f016e22007-07-11 17:01:13 +0000132 // Check for overflow. Reject '\777', but not L'\777'.
Alisdair Meredith1a75ee22009-07-14 08:10:06 +0000133 unsigned CharWidth = IsWide
134 ? PP.getTargetInfo().getWCharWidth()
135 : PP.getTargetInfo().getCharWidth();
Mike Stump1eb44332009-09-09 15:08:12 +0000136
Reid Spencer5f016e22007-07-11 17:01:13 +0000137 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000138 if (Complain)
139 PP.Diag(Loc, diag::warn_octal_escape_too_large);
Reid Spencer5f016e22007-07-11 17:01:13 +0000140 ResultChar &= ~0U >> (32-CharWidth);
141 }
142 break;
143 }
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Reid Spencer5f016e22007-07-11 17:01:13 +0000145 // Otherwise, these are not valid escapes.
146 case '(': case '{': case '[': case '%':
147 // GCC accepts these as extensions. We warn about them as such though.
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000148 if (Complain)
149 PP.Diag(Loc, diag::ext_nonstandard_escape)
150 << std::string()+(char)ResultChar;
Eli Friedmanf01fdff2009-04-28 00:51:18 +0000151 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 default:
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000153 if (!Complain)
154 break;
155
Chris Lattnerac92d822008-11-22 07:23:31 +0000156 if (isgraph(ThisTokBuf[0]))
Chris Lattner204b2fe2008-11-18 21:48:13 +0000157 PP.Diag(Loc, diag::ext_unknown_escape) << std::string()+(char)ResultChar;
Chris Lattnerac92d822008-11-22 07:23:31 +0000158 else
Chris Lattner204b2fe2008-11-18 21:48:13 +0000159 PP.Diag(Loc, diag::ext_unknown_escape) << "x"+llvm::utohexstr(ResultChar);
Reid Spencer5f016e22007-07-11 17:01:13 +0000160 break;
161 }
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Reid Spencer5f016e22007-07-11 17:01:13 +0000163 return ResultChar;
164}
165
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000166/// ProcessUCNEscape - Read the Universal Character Name, check constraints and
Nico Weber59705ae2010-10-09 00:27:47 +0000167/// return the UTF32.
168static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
169 uint32_t &UcnVal, unsigned short &UcnLen,
Chris Lattner37dd3ec2010-06-15 18:06:43 +0000170 SourceLocation Loc, Preprocessor &PP,
171 bool Complain) {
Nico Webera0f15b02010-10-06 04:57:26 +0000172 if (!PP.getLangOptions().CPlusPlus && !PP.getLangOptions().C99)
173 PP.Diag(Loc, diag::warn_ucn_not_valid_in_c89);
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Steve Naroff4e93b342009-04-01 11:09:15 +0000175 // Save the beginning of the string (for error diagnostics).
176 const char *ThisTokBegin = ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000178 // Skip the '\u' char's.
179 ThisTokBuf += 2;
Reid Spencer5f016e22007-07-11 17:01:13 +0000180
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000181 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000182 if (Complain)
183 PP.Diag(Loc, diag::err_ucn_escape_no_digits);
Nico Weber59705ae2010-10-09 00:27:47 +0000184 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000185 }
Nico Weber59705ae2010-10-09 00:27:47 +0000186 UcnLen = (ThisTokBuf[-1] == 'u' ? 4 : 8);
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000187 unsigned short UcnLenSave = UcnLen;
Nico Weber59705ae2010-10-09 00:27:47 +0000188 for (; ThisTokBuf != ThisTokEnd && UcnLenSave; ++ThisTokBuf, UcnLenSave--) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000189 int CharVal = HexDigitValue(ThisTokBuf[0]);
190 if (CharVal == -1) break;
191 UcnVal <<= 4;
192 UcnVal |= CharVal;
193 }
194 // If we didn't consume the proper number of digits, there is a problem.
Nico Weber59705ae2010-10-09 00:27:47 +0000195 if (UcnLenSave) {
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000196 if (Complain)
197 PP.Diag(PP.AdvanceToTokenCharacter(Loc, ThisTokBuf-ThisTokBegin),
198 diag::err_ucn_escape_incomplete);
Nico Weber59705ae2010-10-09 00:27:47 +0000199 return false;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000200 }
Mike Stump1eb44332009-09-09 15:08:12 +0000201 // Check UCN constraints (C99 6.4.3p2).
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000202 if ((UcnVal < 0xa0 &&
203 (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, `
Mike Stump1eb44332009-09-09 15:08:12 +0000204 || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF)
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000205 || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ {
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000206 if (Complain)
207 PP.Diag(Loc, diag::err_ucn_escape_invalid);
Nico Weber59705ae2010-10-09 00:27:47 +0000208 return false;
209 }
210 return true;
211}
212
213/// EncodeUCNEscape - Read the Universal Character Name, check constraints and
214/// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
215/// StringLiteralParser. When we decide to implement UCN's for identifiers,
216/// we will likely rework our support for UCN's.
217static void EncodeUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd,
218 char *&ResultBuf, bool &HadError,
219 SourceLocation Loc, Preprocessor &PP,
220 bool wide,
221 bool Complain) {
222 typedef uint32_t UTF32;
223 UTF32 UcnVal = 0;
224 unsigned short UcnLen = 0;
225 if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd,
226 UcnVal, UcnLen, Loc, PP, Complain)) {
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000227 HadError = 1;
228 return;
229 }
Nico Weber59705ae2010-10-09 00:27:47 +0000230
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000231 if (wide) {
Nico Weber59705ae2010-10-09 00:27:47 +0000232 (void)UcnLen;
233 assert((UcnLen== 4 || UcnLen== 8) &&
234 "EncodeUCNEscape - only ucn length of 4 or 8 supported");
Nico Webera0f15b02010-10-06 04:57:26 +0000235
236 if (!PP.getLangOptions().ShortWChar) {
237 // Note: our internal rep of wide char tokens is always little-endian.
238 *ResultBuf++ = (UcnVal & 0x000000FF);
239 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
240 *ResultBuf++ = (UcnVal & 0x00FF0000) >> 16;
241 *ResultBuf++ = (UcnVal & 0xFF000000) >> 24;
242 return;
243 }
244
245 // Convert to UTF16.
246 if (UcnVal < (UTF32)0xFFFF) {
247 *ResultBuf++ = (UcnVal & 0x000000FF);
248 *ResultBuf++ = (UcnVal & 0x0000FF00) >> 8;
249 return;
250 }
251 PP.Diag(Loc, diag::warn_ucn_escape_too_large);
252
253 typedef uint16_t UTF16;
254 UcnVal -= 0x10000;
255 UTF16 surrogate1 = 0xD800 + (UcnVal >> 10);
256 UTF16 surrogate2 = 0xDC00 + (UcnVal & 0x3FF);
257 *ResultBuf++ = (surrogate1 & 0x000000FF);
258 *ResultBuf++ = (surrogate1 & 0x0000FF00) >> 8;
259 *ResultBuf++ = (surrogate2 & 0x000000FF);
260 *ResultBuf++ = (surrogate2 & 0x0000FF00) >> 8;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000261 return;
262 }
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000263 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
264 // The conversion below was inspired by:
265 // http://www.unicode.org/Public/PROGRAMS/CVTUTF/ConvertUTF.c
Mike Stump1eb44332009-09-09 15:08:12 +0000266 // First, we determine how many bytes the result will require.
Steve Naroff4e93b342009-04-01 11:09:15 +0000267 typedef uint8_t UTF8;
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000268
269 unsigned short bytesToWrite = 0;
270 if (UcnVal < (UTF32)0x80)
271 bytesToWrite = 1;
272 else if (UcnVal < (UTF32)0x800)
273 bytesToWrite = 2;
274 else if (UcnVal < (UTF32)0x10000)
275 bytesToWrite = 3;
276 else
277 bytesToWrite = 4;
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000279 const unsigned byteMask = 0xBF;
280 const unsigned byteMark = 0x80;
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000282 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000283 // into the first byte, depending on how many bytes follow.
Mike Stump1eb44332009-09-09 15:08:12 +0000284 static const UTF8 firstByteMark[5] = {
Steve Naroff8a5c0cd2009-03-31 10:29:45 +0000285 0x00, 0x00, 0xC0, 0xE0, 0xF0
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000286 };
287 // Finally, we write the bytes into ResultBuf.
288 ResultBuf += bytesToWrite;
289 switch (bytesToWrite) { // note: everything falls through.
290 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
291 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
292 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
293 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
294 }
295 // Update the buffer.
296 ResultBuf += bytesToWrite;
297}
Reid Spencer5f016e22007-07-11 17:01:13 +0000298
299
300/// integer-constant: [C99 6.4.4.1]
301/// decimal-constant integer-suffix
302/// octal-constant integer-suffix
303/// hexadecimal-constant integer-suffix
Mike Stump1eb44332009-09-09 15:08:12 +0000304/// decimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000305/// nonzero-digit
306/// decimal-constant digit
Mike Stump1eb44332009-09-09 15:08:12 +0000307/// octal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000308/// 0
309/// octal-constant octal-digit
Mike Stump1eb44332009-09-09 15:08:12 +0000310/// hexadecimal-constant:
Reid Spencer5f016e22007-07-11 17:01:13 +0000311/// hexadecimal-prefix hexadecimal-digit
312/// hexadecimal-constant hexadecimal-digit
313/// hexadecimal-prefix: one of
314/// 0x 0X
315/// integer-suffix:
316/// unsigned-suffix [long-suffix]
317/// unsigned-suffix [long-long-suffix]
318/// long-suffix [unsigned-suffix]
319/// long-long-suffix [unsigned-sufix]
320/// nonzero-digit:
321/// 1 2 3 4 5 6 7 8 9
322/// octal-digit:
323/// 0 1 2 3 4 5 6 7
324/// hexadecimal-digit:
325/// 0 1 2 3 4 5 6 7 8 9
326/// a b c d e f
327/// A B C D E F
328/// unsigned-suffix: one of
329/// u U
330/// long-suffix: one of
331/// l L
Mike Stump1eb44332009-09-09 15:08:12 +0000332/// long-long-suffix: one of
Reid Spencer5f016e22007-07-11 17:01:13 +0000333/// ll LL
334///
335/// floating-constant: [C99 6.4.4.2]
336/// TODO: add rules...
337///
Reid Spencer5f016e22007-07-11 17:01:13 +0000338NumericLiteralParser::
339NumericLiteralParser(const char *begin, const char *end,
340 SourceLocation TokLoc, Preprocessor &pp)
341 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end) {
Mike Stump1eb44332009-09-09 15:08:12 +0000342
Chris Lattnerc29bbde2008-09-30 20:45:40 +0000343 // This routine assumes that the range begin/end matches the regex for integer
344 // and FP constants (specifically, the 'pp-number' regex), and assumes that
345 // the byte at "*end" is both valid and not part of the regex. Because of
346 // this, it doesn't have to check for 'overscan' in various places.
347 assert(!isalnum(*end) && *end != '.' && *end != '_' &&
348 "Lexer didn't maximally munch?");
Mike Stump1eb44332009-09-09 15:08:12 +0000349
Reid Spencer5f016e22007-07-11 17:01:13 +0000350 s = DigitsBegin = begin;
351 saw_exponent = false;
352 saw_period = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000353 isLong = false;
354 isUnsigned = false;
355 isLongLong = false;
Chris Lattner6e400c22007-08-26 03:29:23 +0000356 isFloat = false;
Chris Lattner506b8de2007-08-26 01:58:14 +0000357 isImaginary = false;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000358 isMicrosoftInteger = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 hadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Reid Spencer5f016e22007-07-11 17:01:13 +0000361 if (*s == '0') { // parse radix
Chris Lattner368328c2008-06-30 06:39:54 +0000362 ParseNumberStartingWithZero(TokLoc);
363 if (hadError)
364 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000365 } else { // the first digit is non-zero
366 radix = 10;
367 s = SkipDigits(s);
368 if (s == ThisTokEnd) {
369 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000370 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000371 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000372 diag::err_invalid_decimal_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000373 hadError = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000374 return;
375 } else if (*s == '.') {
376 s++;
377 saw_period = true;
378 s = SkipDigits(s);
Mike Stump1eb44332009-09-09 15:08:12 +0000379 }
Chris Lattner4411f462008-09-29 23:12:31 +0000380 if ((*s == 'e' || *s == 'E')) { // exponent
Chris Lattner70f66ab2008-04-20 18:47:55 +0000381 const char *Exponent = s;
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 s++;
383 saw_exponent = true;
384 if (*s == '+' || *s == '-') s++; // sign
385 const char *first_non_digit = SkipDigits(s);
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000386 if (first_non_digit != s) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 s = first_non_digit;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000388 } else {
Chris Lattnerac92d822008-11-22 07:23:31 +0000389 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-begin),
390 diag::err_exponent_has_no_digits);
391 hadError = true;
Chris Lattner0b7f69d2008-04-20 18:41:46 +0000392 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000393 }
394 }
395 }
396
397 SuffixBegin = s;
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Chris Lattner506b8de2007-08-26 01:58:14 +0000399 // Parse the suffix. At this point we can classify whether we have an FP or
400 // integer constant.
401 bool isFPConstant = isFloatingLiteral();
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner506b8de2007-08-26 01:58:14 +0000403 // Loop over all of the characters of the suffix. If we see something bad,
404 // we break out of the loop.
405 for (; s != ThisTokEnd; ++s) {
406 switch (*s) {
407 case 'f': // FP Suffix for "float"
408 case 'F':
409 if (!isFPConstant) break; // Error for integer constant.
Chris Lattner6e400c22007-08-26 03:29:23 +0000410 if (isFloat || isLong) break; // FF, LF invalid.
411 isFloat = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000412 continue; // Success.
413 case 'u':
414 case 'U':
415 if (isFPConstant) break; // Error for floating constant.
416 if (isUnsigned) break; // Cannot be repeated.
417 isUnsigned = true;
418 continue; // Success.
419 case 'l':
420 case 'L':
421 if (isLong || isLongLong) break; // Cannot be repeated.
Chris Lattner6e400c22007-08-26 03:29:23 +0000422 if (isFloat) break; // LF invalid.
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner506b8de2007-08-26 01:58:14 +0000424 // Check for long long. The L's need to be adjacent and the same case.
425 if (s+1 != ThisTokEnd && s[1] == s[0]) {
426 if (isFPConstant) break; // long long invalid for floats.
427 isLongLong = true;
428 ++s; // Eat both of them.
429 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000430 isLong = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000431 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000432 continue; // Success.
433 case 'i':
Chris Lattnerc6374152010-10-14 00:24:10 +0000434 case 'I':
Steve Naroff0c29b222008-04-04 21:02:54 +0000435 if (PP.getLangOptions().Microsoft) {
Fariborz Jahaniana8be02b2010-01-22 21:36:53 +0000436 if (isFPConstant || isLong || isLongLong) break;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000437
Steve Naroff0c29b222008-04-04 21:02:54 +0000438 // Allow i8, i16, i32, i64, and i128.
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000439 if (s + 1 != ThisTokEnd) {
440 switch (s[1]) {
441 case '8':
442 s += 2; // i8 suffix
443 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000444 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000445 case '1':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000446 if (s + 2 == ThisTokEnd) break;
447 if (s[2] == '6') s += 3; // i16 suffix
448 else if (s[2] == '2') {
449 if (s + 3 == ThisTokEnd) break;
450 if (s[3] == '8') s += 4; // i128 suffix
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000451 }
452 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000453 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000454 case '3':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000455 if (s + 2 == ThisTokEnd) break;
456 if (s[2] == '2') s += 3; // i32 suffix
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000457 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000458 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000459 case '6':
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000460 if (s + 2 == ThisTokEnd) break;
461 if (s[2] == '4') s += 3; // i64 suffix
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000462 isMicrosoftInteger = true;
Nuno Lopes6e8c7ac2009-11-28 13:37:52 +0000463 break;
Mike Stumpb79fe2d2009-10-08 22:55:36 +0000464 default:
465 break;
466 }
467 break;
Steve Naroff0c29b222008-04-04 21:02:54 +0000468 }
Steve Naroff0c29b222008-04-04 21:02:54 +0000469 }
470 // fall through.
Chris Lattner506b8de2007-08-26 01:58:14 +0000471 case 'j':
472 case 'J':
473 if (isImaginary) break; // Cannot be repeated.
474 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
475 diag::ext_imaginary_constant);
476 isImaginary = true;
477 continue; // Success.
Reid Spencer5f016e22007-07-11 17:01:13 +0000478 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000479 // If we reached here, there was an error.
480 break;
481 }
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Chris Lattner506b8de2007-08-26 01:58:14 +0000483 // Report an error if there are any.
484 if (s != ThisTokEnd) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000485 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
486 isFPConstant ? diag::err_invalid_suffix_float_constant :
487 diag::err_invalid_suffix_integer_constant)
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000488 << llvm::StringRef(SuffixBegin, ThisTokEnd-SuffixBegin);
Chris Lattnerac92d822008-11-22 07:23:31 +0000489 hadError = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000490 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000491 }
492}
493
Chris Lattner368328c2008-06-30 06:39:54 +0000494/// ParseNumberStartingWithZero - This method is called when the first character
495/// of the number is found to be a zero. This means it is either an octal
496/// number (like '04') or a hex number ('0x123a') a binary number ('0b1010') or
Mike Stump1eb44332009-09-09 15:08:12 +0000497/// a floating point number (01239.123e4). Eat the prefix, determining the
Chris Lattner368328c2008-06-30 06:39:54 +0000498/// radix etc.
499void NumericLiteralParser::ParseNumberStartingWithZero(SourceLocation TokLoc) {
500 assert(s[0] == '0' && "Invalid method call");
501 s++;
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Chris Lattner368328c2008-06-30 06:39:54 +0000503 // Handle a hex number like 0x1234.
504 if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
505 s++;
506 radix = 16;
507 DigitsBegin = s;
508 s = SkipHexDigits(s);
509 if (s == ThisTokEnd) {
510 // Done.
511 } else if (*s == '.') {
512 s++;
513 saw_period = true;
514 s = SkipHexDigits(s);
515 }
516 // A binary exponent can appear with or with a '.'. If dotted, the
Mike Stump1eb44332009-09-09 15:08:12 +0000517 // binary exponent is required.
Sean Hunt8c723402010-01-10 23:37:56 +0000518 if ((*s == 'p' || *s == 'P') && !PP.getLangOptions().CPlusPlus0x) {
Chris Lattner368328c2008-06-30 06:39:54 +0000519 const char *Exponent = s;
520 s++;
521 saw_exponent = true;
522 if (*s == '+' || *s == '-') s++; // sign
523 const char *first_non_digit = SkipDigits(s);
Chris Lattner6ea62382008-07-25 18:18:34 +0000524 if (first_non_digit == s) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000525 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
526 diag::err_exponent_has_no_digits);
527 hadError = true;
Chris Lattner6ea62382008-07-25 18:18:34 +0000528 return;
Chris Lattner368328c2008-06-30 06:39:54 +0000529 }
Chris Lattner6ea62382008-07-25 18:18:34 +0000530 s = first_non_digit;
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Sean Hunt8c723402010-01-10 23:37:56 +0000532 // In C++0x, we cannot support hexadecmial floating literals because
533 // they conflict with user-defined literals, so we warn in previous
534 // versions of C++ by default.
535 if (PP.getLangOptions().CPlusPlus)
536 PP.Diag(TokLoc, diag::ext_hexconstant_cplusplus);
537 else if (!PP.getLangOptions().HexFloats)
Chris Lattnerac92d822008-11-22 07:23:31 +0000538 PP.Diag(TokLoc, diag::ext_hexconstant_invalid);
Chris Lattner368328c2008-06-30 06:39:54 +0000539 } else if (saw_period) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000540 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
541 diag::err_hexconstant_requires_exponent);
542 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000543 }
544 return;
545 }
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Chris Lattner368328c2008-06-30 06:39:54 +0000547 // Handle simple binary numbers 0b01010
548 if (*s == 'b' || *s == 'B') {
549 // 0b101010 is a GCC extension.
Chris Lattner413d3552008-06-30 06:44:49 +0000550 PP.Diag(TokLoc, diag::ext_binary_literal);
Chris Lattner368328c2008-06-30 06:39:54 +0000551 ++s;
552 radix = 2;
553 DigitsBegin = s;
554 s = SkipBinaryDigits(s);
555 if (s == ThisTokEnd) {
556 // Done.
557 } else if (isxdigit(*s)) {
Chris Lattnerac92d822008-11-22 07:23:31 +0000558 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000559 diag::err_invalid_binary_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000560 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000561 }
Chris Lattner413d3552008-06-30 06:44:49 +0000562 // Other suffixes will be diagnosed by the caller.
Chris Lattner368328c2008-06-30 06:39:54 +0000563 return;
564 }
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chris Lattner368328c2008-06-30 06:39:54 +0000566 // For now, the radix is set to 8. If we discover that we have a
567 // floating point constant, the radix will change to 10. Octal floating
Mike Stump1eb44332009-09-09 15:08:12 +0000568 // point constants are not permitted (only decimal and hexadecimal).
Chris Lattner368328c2008-06-30 06:39:54 +0000569 radix = 8;
570 DigitsBegin = s;
571 s = SkipOctalDigits(s);
572 if (s == ThisTokEnd)
573 return; // Done, simple octal number like 01234
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Chris Lattner413d3552008-06-30 06:44:49 +0000575 // If we have some other non-octal digit that *is* a decimal digit, see if
576 // this is part of a floating point number like 094.123 or 09e1.
577 if (isdigit(*s)) {
578 const char *EndDecimal = SkipDigits(s);
579 if (EndDecimal[0] == '.' || EndDecimal[0] == 'e' || EndDecimal[0] == 'E') {
580 s = EndDecimal;
581 radix = 10;
582 }
583 }
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Chris Lattner413d3552008-06-30 06:44:49 +0000585 // If we have a hex digit other than 'e' (which denotes a FP exponent) then
586 // the code is using an incorrect base.
Chris Lattner368328c2008-06-30 06:39:54 +0000587 if (isxdigit(*s) && *s != 'e' && *s != 'E') {
Chris Lattnerac92d822008-11-22 07:23:31 +0000588 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-ThisTokBegin),
Benjamin Kramer476d8b82010-08-11 14:47:12 +0000589 diag::err_invalid_octal_digit) << llvm::StringRef(s, 1);
Chris Lattnerac92d822008-11-22 07:23:31 +0000590 hadError = true;
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 if (*s == '.') {
595 s++;
596 radix = 10;
597 saw_period = true;
Chris Lattner413d3552008-06-30 06:44:49 +0000598 s = SkipDigits(s); // Skip suffix.
Chris Lattner368328c2008-06-30 06:39:54 +0000599 }
600 if (*s == 'e' || *s == 'E') { // exponent
601 const char *Exponent = s;
602 s++;
603 radix = 10;
604 saw_exponent = true;
605 if (*s == '+' || *s == '-') s++; // sign
606 const char *first_non_digit = SkipDigits(s);
607 if (first_non_digit != s) {
608 s = first_non_digit;
609 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000610 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, Exponent-ThisTokBegin),
Chris Lattnerac92d822008-11-22 07:23:31 +0000611 diag::err_exponent_has_no_digits);
612 hadError = true;
Chris Lattner368328c2008-06-30 06:39:54 +0000613 return;
614 }
615 }
616}
617
618
Reid Spencer5f016e22007-07-11 17:01:13 +0000619/// GetIntegerValue - Convert this numeric literal value to an APInt that
620/// matches Val's input width. If there is an overflow, set Val to the low bits
621/// of the result and return true. Otherwise, return false.
622bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) {
Daniel Dunbara179be32008-10-16 07:32:01 +0000623 // Fast path: Compute a conservative bound on the maximum number of
624 // bits per digit in this radix. If we can't possibly overflow a
625 // uint64 based on that bound then do the simple conversion to
626 // integer. This avoids the expensive overflow checking below, and
627 // handles the common cases that matter (small decimal integers and
628 // hex/octal values which don't overflow).
629 unsigned MaxBitsPerDigit = 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000630 while ((1U << MaxBitsPerDigit) < radix)
Daniel Dunbara179be32008-10-16 07:32:01 +0000631 MaxBitsPerDigit += 1;
632 if ((SuffixBegin - DigitsBegin) * MaxBitsPerDigit <= 64) {
633 uint64_t N = 0;
634 for (s = DigitsBegin; s != SuffixBegin; ++s)
635 N = N*radix + HexDigitValue(*s);
636
637 // This will truncate the value to Val's input width. Simply check
638 // for overflow by comparing.
639 Val = N;
640 return Val.getZExtValue() != N;
641 }
642
Reid Spencer5f016e22007-07-11 17:01:13 +0000643 Val = 0;
644 s = DigitsBegin;
645
646 llvm::APInt RadixVal(Val.getBitWidth(), radix);
647 llvm::APInt CharVal(Val.getBitWidth(), 0);
648 llvm::APInt OldVal = Val;
Mike Stump1eb44332009-09-09 15:08:12 +0000649
Reid Spencer5f016e22007-07-11 17:01:13 +0000650 bool OverflowOccurred = false;
651 while (s < SuffixBegin) {
652 unsigned C = HexDigitValue(*s++);
Mike Stump1eb44332009-09-09 15:08:12 +0000653
Reid Spencer5f016e22007-07-11 17:01:13 +0000654 // If this letter is out of bound for this radix, reject it.
655 assert(C < radix && "NumericLiteralParser ctor should have rejected this");
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 CharVal = C;
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Reid Spencer5f016e22007-07-11 17:01:13 +0000659 // Add the digit to the value in the appropriate radix. If adding in digits
660 // made the value smaller, then this overflowed.
661 OldVal = Val;
662
663 // Multiply by radix, did overflow occur on the multiply?
664 Val *= RadixVal;
665 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
666
Reid Spencer5f016e22007-07-11 17:01:13 +0000667 // Add value, did overflow occur on the value?
Daniel Dunbard70cb642008-10-16 06:39:30 +0000668 // (a + b) ult b <=> overflow
Reid Spencer5f016e22007-07-11 17:01:13 +0000669 Val += CharVal;
Reid Spencer5f016e22007-07-11 17:01:13 +0000670 OverflowOccurred |= Val.ult(CharVal);
671 }
672 return OverflowOccurred;
673}
674
John McCall94c939d2009-12-24 09:08:04 +0000675llvm::APFloat::opStatus
676NumericLiteralParser::GetFloatValue(llvm::APFloat &Result) {
Ted Kremenek427d5af2007-11-26 23:12:30 +0000677 using llvm::APFloat;
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000678 using llvm::StringRef;
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Erick Tryzelaare9f195f2009-08-16 23:36:28 +0000680 unsigned n = std::min(SuffixBegin - ThisTokBegin, ThisTokEnd - ThisTokBegin);
John McCall94c939d2009-12-24 09:08:04 +0000681 return Result.convertFromString(StringRef(ThisTokBegin, n),
682 APFloat::rmNearestTiesToEven);
Reid Spencer5f016e22007-07-11 17:01:13 +0000683}
684
Reid Spencer5f016e22007-07-11 17:01:13 +0000685
686CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
687 SourceLocation Loc, Preprocessor &PP) {
688 // At this point we know that the character matches the regex "L?'.*'".
689 HadError = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000690
Reid Spencer5f016e22007-07-11 17:01:13 +0000691 // Determine if this is a wide character.
692 IsWide = begin[0] == 'L';
693 if (IsWide) ++begin;
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Reid Spencer5f016e22007-07-11 17:01:13 +0000695 // Skip over the entry quote.
696 assert(begin[0] == '\'' && "Invalid token lexed");
697 ++begin;
698
Mike Stump1eb44332009-09-09 15:08:12 +0000699 // FIXME: The "Value" is an uint64_t so we can handle char literals of
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000700 // upto 64-bits.
Reid Spencer5f016e22007-07-11 17:01:13 +0000701 // FIXME: This extensively assumes that 'char' is 8-bits.
Chris Lattner98be4942008-03-05 18:54:05 +0000702 assert(PP.getTargetInfo().getCharWidth() == 8 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000703 "Assumes char is 8 bits");
Chris Lattnere3ad8812009-04-28 21:51:46 +0000704 assert(PP.getTargetInfo().getIntWidth() <= 64 &&
705 (PP.getTargetInfo().getIntWidth() & 7) == 0 &&
706 "Assumes sizeof(int) on target is <= 64 and a multiple of char");
707 assert(PP.getTargetInfo().getWCharWidth() <= 64 &&
708 "Assumes sizeof(wchar) on target is <= 64");
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000709
Mike Stump1eb44332009-09-09 15:08:12 +0000710 // This is what we will use for overflow detection
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000711 llvm::APInt LitVal(PP.getTargetInfo().getIntWidth(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000712
Chris Lattnere3ad8812009-04-28 21:51:46 +0000713 unsigned NumCharsSoFar = 0;
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000714 bool Warned = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000715 while (begin[0] != '\'') {
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000716 uint64_t ResultChar;
Nico Weber59705ae2010-10-09 00:27:47 +0000717
718 // Is this a Universal Character Name escape?
Reid Spencer5f016e22007-07-11 17:01:13 +0000719 if (begin[0] != '\\') // If this is a normal character, consume it.
720 ResultChar = *begin++;
Nico Weber59705ae2010-10-09 00:27:47 +0000721 else { // Otherwise, this is an escape character.
722 // Check for UCN.
723 if (begin[1] == 'u' || begin[1] == 'U') {
724 uint32_t utf32 = 0;
725 unsigned short UcnLen = 0;
726 if (!ProcessUCNEscape(begin, end, utf32, UcnLen,
727 Loc, PP, /*Complain=*/true)) {
728 HadError = 1;
729 }
730 ResultChar = utf32;
731 } else {
732 // Otherwise, this is a non-UCN escape character. Process it.
733 ResultChar = ProcessCharEscape(begin, end, HadError, Loc, IsWide, PP,
734 /*Complain=*/true);
735 }
736 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000737
738 // If this is a multi-character constant (e.g. 'abc'), handle it. These are
739 // implementation defined (C99 6.4.4.4p10).
Chris Lattnere3ad8812009-04-28 21:51:46 +0000740 if (NumCharsSoFar) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000741 if (IsWide) {
742 // Emulate GCC's (unintentional?) behavior: L'ab' -> L'b'.
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000743 LitVal = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000744 } else {
745 // Narrow character literals act as though their value is concatenated
Chris Lattnere3ad8812009-04-28 21:51:46 +0000746 // in this implementation, but warn on overflow.
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000747 if (LitVal.countLeadingZeros() < 8 && !Warned) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000748 PP.Diag(Loc, diag::warn_char_constant_too_large);
Chris Lattner1c6c64b2010-04-16 23:44:05 +0000749 Warned = true;
750 }
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000751 LitVal <<= 8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 }
753 }
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000755 LitVal = LitVal + ResultChar;
Chris Lattnere3ad8812009-04-28 21:51:46 +0000756 ++NumCharsSoFar;
757 }
758
759 // If this is the second character being processed, do special handling.
760 if (NumCharsSoFar > 1) {
761 // Warn about discarding the top bits for multi-char wide-character
762 // constants (L'abcd').
763 if (IsWide)
764 PP.Diag(Loc, diag::warn_extraneous_wide_char_constant);
765 else if (NumCharsSoFar != 4)
766 PP.Diag(Loc, diag::ext_multichar_character_literal);
767 else
768 PP.Diag(Loc, diag::ext_four_char_character_literal);
Eli Friedman2a1c3632009-06-01 05:25:02 +0000769 IsMultiChar = true;
Daniel Dunbar930b71a2009-07-29 01:46:05 +0000770 } else
771 IsMultiChar = false;
Sanjiv Gupta4bc11af2009-04-21 02:21:29 +0000772
773 // Transfer the value from APInt to uint64_t
774 Value = LitVal.getZExtValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000775
Nico Weber59705ae2010-10-09 00:27:47 +0000776 if (IsWide && PP.getLangOptions().ShortWChar && Value > 0xFFFF)
777 PP.Diag(Loc, diag::warn_ucn_escape_too_large);
778
Reid Spencer5f016e22007-07-11 17:01:13 +0000779 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1")
780 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple
781 // character constants are not sign extended in the this implementation:
782 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC.
Chris Lattnere3ad8812009-04-28 21:51:46 +0000783 if (!IsWide && NumCharsSoFar == 1 && (Value & 128) &&
Eli Friedman15b91762009-06-05 07:05:05 +0000784 PP.getLangOptions().CharIsSigned)
Reid Spencer5f016e22007-07-11 17:01:13 +0000785 Value = (signed char)Value;
786}
787
788
789/// string-literal: [C99 6.4.5]
790/// " [s-char-sequence] "
791/// L" [s-char-sequence] "
792/// s-char-sequence:
793/// s-char
794/// s-char-sequence s-char
795/// s-char:
796/// any source character except the double quote ",
797/// backslash \, or newline character
798/// escape-character
799/// universal-character-name
800/// escape-character: [C99 6.4.4.4]
801/// \ escape-code
802/// universal-character-name
803/// escape-code:
804/// character-escape-code
805/// octal-escape-code
806/// hex-escape-code
807/// character-escape-code: one of
808/// n t b r f v a
809/// \ ' " ?
810/// octal-escape-code:
811/// octal-digit
812/// octal-digit octal-digit
813/// octal-digit octal-digit octal-digit
814/// hex-escape-code:
815/// x hex-digit
816/// hex-escape-code hex-digit
817/// universal-character-name:
818/// \u hex-quad
819/// \U hex-quad hex-quad
820/// hex-quad:
821/// hex-digit hex-digit hex-digit hex-digit
822///
823StringLiteralParser::
Chris Lattnerd2177732007-07-20 16:59:19 +0000824StringLiteralParser(const Token *StringToks, unsigned NumStringToks,
Sean Hunt6cf75022010-08-30 17:47:05 +0000825 Preprocessor &pp, bool Complain) : PP(pp) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000826 // Scan all of the string portions, remember the max individual token length,
827 // computing a bound on the concatenated string length, and see whether any
828 // piece is a wide-string. If any of the string portions is a wide-string
829 // literal, the result is a wide-string literal [C99 6.4.5p4].
Sean Hunt6cf75022010-08-30 17:47:05 +0000830 MaxTokenLength = StringToks[0].getLength();
831 SizeBound = StringToks[0].getLength()-2; // -2 for "".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000832 AnyWide = StringToks[0].is(tok::wide_string_literal);
Sean Hunt6cf75022010-08-30 17:47:05 +0000833
834 hadError = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000835
836 // Implement Translation Phase #6: concatenation of string literals
837 /// (C99 5.1.1.2p1). The common case is only one string fragment.
838 for (unsigned i = 1; i != NumStringToks; ++i) {
839 // The string could be shorter than this if it needs cleaning, but this is a
840 // reasonable bound, which is all we need.
Sean Hunt6cf75022010-08-30 17:47:05 +0000841 SizeBound += StringToks[i].getLength()-2; // -2 for "".
Mike Stump1eb44332009-09-09 15:08:12 +0000842
Reid Spencer5f016e22007-07-11 17:01:13 +0000843 // Remember maximum string piece length.
Sean Hunt6cf75022010-08-30 17:47:05 +0000844 if (StringToks[i].getLength() > MaxTokenLength)
845 MaxTokenLength = StringToks[i].getLength();
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Reid Spencer5f016e22007-07-11 17:01:13 +0000847 // Remember if we see any wide strings.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000848 AnyWide |= StringToks[i].is(tok::wide_string_literal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000849 }
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000850
Reid Spencer5f016e22007-07-11 17:01:13 +0000851 // Include space for the null terminator.
852 ++SizeBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000853
Reid Spencer5f016e22007-07-11 17:01:13 +0000854 // TODO: K&R warning: "traditional C rejects string constant concatenation"
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Reid Spencer5f016e22007-07-11 17:01:13 +0000856 // Get the width in bytes of wchar_t. If no wchar_t strings are used, do not
857 // query the target. As such, wchar_tByteWidth is only valid if AnyWide=true.
858 wchar_tByteWidth = ~0U;
859 if (AnyWide) {
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000860 wchar_tByteWidth = PP.getTargetInfo().getWCharWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000861 assert((wchar_tByteWidth & 7) == 0 && "Assumes wchar_t is byte multiple!");
862 wchar_tByteWidth /= 8;
863 }
Mike Stump1eb44332009-09-09 15:08:12 +0000864
Reid Spencer5f016e22007-07-11 17:01:13 +0000865 // The output buffer size needs to be large enough to hold wide characters.
866 // This is a worst-case assumption which basically corresponds to L"" "long".
867 if (AnyWide)
868 SizeBound *= wchar_tByteWidth;
Mike Stump1eb44332009-09-09 15:08:12 +0000869
Reid Spencer5f016e22007-07-11 17:01:13 +0000870 // Size the temporary buffer to hold the result string data.
871 ResultBuf.resize(SizeBound);
Mike Stump1eb44332009-09-09 15:08:12 +0000872
Reid Spencer5f016e22007-07-11 17:01:13 +0000873 // Likewise, but for each string piece.
874 llvm::SmallString<512> TokenBuf;
875 TokenBuf.resize(MaxTokenLength);
Mike Stump1eb44332009-09-09 15:08:12 +0000876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // Loop over all the strings, getting their spelling, and expanding them to
878 // wide strings as appropriate.
879 ResultPtr = &ResultBuf[0]; // Next byte to fill in.
Mike Stump1eb44332009-09-09 15:08:12 +0000880
Anders Carlssonee98ac52007-10-15 02:50:23 +0000881 Pascal = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Reid Spencer5f016e22007-07-11 17:01:13 +0000883 for (unsigned i = 0, e = NumStringToks; i != e; ++i) {
884 const char *ThisTokBuf = &TokenBuf[0];
885 // Get the spelling of the token, which eliminates trigraphs, etc. We know
886 // that ThisTokBuf points to a buffer that is big enough for the whole token
887 // and 'spelled' tokens can only shrink.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000888 bool StringInvalid = false;
889 unsigned ThisTokLen = PP.getSpelling(StringToks[i], ThisTokBuf,
Sean Hunt6cf75022010-08-30 17:47:05 +0000890 &StringInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000891 if (StringInvalid) {
892 hadError = 1;
893 continue;
894 }
895
Reid Spencer5f016e22007-07-11 17:01:13 +0000896 const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote.
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000897 bool wide = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000898 // TODO: Input character set mapping support.
Mike Stump1eb44332009-09-09 15:08:12 +0000899
Reid Spencer5f016e22007-07-11 17:01:13 +0000900 // Skip L marker for wide strings.
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000901 if (ThisTokBuf[0] == 'L') {
902 wide = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000903 ++ThisTokBuf;
Fariborz Jahanian56bedef2010-08-31 23:34:27 +0000904 }
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Reid Spencer5f016e22007-07-11 17:01:13 +0000906 assert(ThisTokBuf[0] == '"' && "Expected quote, lexer broken?");
907 ++ThisTokBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000908
Anders Carlssonee98ac52007-10-15 02:50:23 +0000909 // Check if this is a pascal string
910 if (pp.getLangOptions().PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
911 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') {
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Anders Carlssonee98ac52007-10-15 02:50:23 +0000913 // If the \p sequence is found in the first token, we have a pascal string
914 // Otherwise, if we already have a pascal string, ignore the first \p
915 if (i == 0) {
916 ++ThisTokBuf;
917 Pascal = true;
918 } else if (Pascal)
919 ThisTokBuf += 2;
920 }
Mike Stump1eb44332009-09-09 15:08:12 +0000921
Reid Spencer5f016e22007-07-11 17:01:13 +0000922 while (ThisTokBuf != ThisTokEnd) {
923 // Is this a span of non-escape characters?
924 if (ThisTokBuf[0] != '\\') {
925 const char *InStart = ThisTokBuf;
926 do {
927 ++ThisTokBuf;
928 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\');
Mike Stump1eb44332009-09-09 15:08:12 +0000929
Reid Spencer5f016e22007-07-11 17:01:13 +0000930 // Copy the character span over.
931 unsigned Len = ThisTokBuf-InStart;
932 if (!AnyWide) {
933 memcpy(ResultPtr, InStart, Len);
934 ResultPtr += Len;
935 } else {
936 // Note: our internal rep of wide char tokens is always little-endian.
937 for (; Len; --Len, ++InStart) {
938 *ResultPtr++ = InStart[0];
939 // Add zeros at the end.
940 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000941 *ResultPtr++ = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000942 }
943 }
944 continue;
945 }
Steve Naroff4e93b342009-04-01 11:09:15 +0000946 // Is this a Universal Character Name escape?
Steve Naroff0e3e3eb2009-03-30 23:46:03 +0000947 if (ThisTokBuf[1] == 'u' || ThisTokBuf[1] == 'U') {
Nico Weber59705ae2010-10-09 00:27:47 +0000948 EncodeUCNEscape(ThisTokBuf, ThisTokEnd, ResultPtr,
949 hadError, StringToks[i].getLocation(), PP, wide,
950 Complain);
Steve Naroff4e93b342009-04-01 11:09:15 +0000951 continue;
952 }
953 // Otherwise, this is a non-UCN escape character. Process it.
954 unsigned ResultChar = ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError,
955 StringToks[i].getLocation(),
Chris Lattner37dd3ec2010-06-15 18:06:43 +0000956 AnyWide, PP, Complain);
Mike Stump1eb44332009-09-09 15:08:12 +0000957
Steve Naroff4e93b342009-04-01 11:09:15 +0000958 // Note: our internal rep of wide char tokens is always little-endian.
959 *ResultPtr++ = ResultChar & 0xFF;
Mike Stump1eb44332009-09-09 15:08:12 +0000960
Steve Naroff4e93b342009-04-01 11:09:15 +0000961 if (AnyWide) {
962 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
963 *ResultPtr++ = ResultChar >> i*8;
Reid Spencer5f016e22007-07-11 17:01:13 +0000964 }
965 }
966 }
Mike Stump1eb44332009-09-09 15:08:12 +0000967
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000968 if (Pascal) {
Anders Carlssonee98ac52007-10-15 02:50:23 +0000969 ResultBuf[0] = ResultPtr-&ResultBuf[0]-1;
Fariborz Jahanian64a80342010-05-28 19:40:48 +0000970 if (AnyWide)
971 ResultBuf[0] /= wchar_tByteWidth;
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000972
973 // Verify that pascal strings aren't too large.
Douglas Gregorb90f4b32010-05-26 05:35:51 +0000974 if (GetStringLength() > 256 && Complain) {
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000975 PP.Diag(StringToks[0].getLocation(), diag::err_pascal_string_too_long)
976 << SourceRange(StringToks[0].getLocation(),
977 StringToks[NumStringToks-1].getLocation());
Eli Friedman57d7dde2009-04-01 03:17:08 +0000978 hadError = 1;
979 return;
980 }
Douglas Gregor427c4922010-07-20 14:33:20 +0000981 } else if (Complain) {
982 // Complain if this string literal has too many characters.
983 unsigned MaxChars = PP.getLangOptions().CPlusPlus? 65536
984 : PP.getLangOptions().C99 ? 4095
985 : 509;
986
987 if (GetNumStringChars() > MaxChars)
988 PP.Diag(StringToks[0].getLocation(), diag::ext_string_too_long)
989 << GetNumStringChars() << MaxChars
990 << (PP.getLangOptions().CPlusPlus? 2
991 : PP.getLangOptions().C99 ? 1
992 : 0)
993 << SourceRange(StringToks[0].getLocation(),
994 StringToks[NumStringToks-1].getLocation());
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000995 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000996}
Chris Lattner719e6152009-02-18 19:21:10 +0000997
998
999/// getOffsetOfStringByte - This function returns the offset of the
1000/// specified byte of the string data represented by Token. This handles
1001/// advancing over escape sequences in the string.
1002unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok,
1003 unsigned ByteNo,
Douglas Gregorb90f4b32010-05-26 05:35:51 +00001004 Preprocessor &PP,
1005 bool Complain) {
Chris Lattner719e6152009-02-18 19:21:10 +00001006 // Get the spelling of the token.
1007 llvm::SmallString<16> SpellingBuffer;
Sean Hunt6cf75022010-08-30 17:47:05 +00001008 SpellingBuffer.resize(Tok.getLength());
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Douglas Gregor50f6af72010-03-16 05:20:39 +00001010 bool StringInvalid = false;
Chris Lattner719e6152009-02-18 19:21:10 +00001011 const char *SpellingPtr = &SpellingBuffer[0];
Douglas Gregor50f6af72010-03-16 05:20:39 +00001012 unsigned TokLen = PP.getSpelling(Tok, SpellingPtr, &StringInvalid);
1013 if (StringInvalid) {
1014 return 0;
1015 }
Chris Lattner719e6152009-02-18 19:21:10 +00001016
1017 assert(SpellingPtr[0] != 'L' && "Doesn't handle wide strings yet");
1018
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Chris Lattner719e6152009-02-18 19:21:10 +00001020 const char *SpellingStart = SpellingPtr;
1021 const char *SpellingEnd = SpellingPtr+TokLen;
1022
1023 // Skip over the leading quote.
1024 assert(SpellingPtr[0] == '"' && "Should be a string literal!");
1025 ++SpellingPtr;
Mike Stump1eb44332009-09-09 15:08:12 +00001026
Chris Lattner719e6152009-02-18 19:21:10 +00001027 // Skip over bytes until we find the offset we're looking for.
1028 while (ByteNo) {
1029 assert(SpellingPtr < SpellingEnd && "Didn't find byte offset!");
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Chris Lattner719e6152009-02-18 19:21:10 +00001031 // Step over non-escapes simply.
1032 if (*SpellingPtr != '\\') {
1033 ++SpellingPtr;
1034 --ByteNo;
1035 continue;
1036 }
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Chris Lattner719e6152009-02-18 19:21:10 +00001038 // Otherwise, this is an escape character. Advance over it.
1039 bool HadError = false;
1040 ProcessCharEscape(SpellingPtr, SpellingEnd, HadError,
Douglas Gregorb90f4b32010-05-26 05:35:51 +00001041 Tok.getLocation(), false, PP, Complain);
Chris Lattner719e6152009-02-18 19:21:10 +00001042 assert(!HadError && "This method isn't valid on erroneous strings");
1043 --ByteNo;
1044 }
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Chris Lattner719e6152009-02-18 19:21:10 +00001046 return SpellingPtr-SpellingStart;
1047}