blob: 7d775dc85542bab467a9d01d27b1f69638f434e5 [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Basic/Diagnostic.h"
Chris Lattner136f93a2007-07-16 06:55:01 +000018#include "clang/Basic/SourceManager.h"
19#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/StringExtras.h"
21using namespace clang;
22
23/// HexDigitValue - Return the value of the specified hex digit, or -1 if it's
24/// not valid.
25static int HexDigitValue(char C) {
26 if (C >= '0' && C <= '9') return C-'0';
27 if (C >= 'a' && C <= 'f') return C-'a'+10;
28 if (C >= 'A' && C <= 'F') return C-'A'+10;
29 return -1;
30}
31
32/// ProcessCharEscape - Parse a standard C escape sequence, which can occur in
33/// either a character or a string literal.
34static unsigned ProcessCharEscape(const char *&ThisTokBuf,
35 const char *ThisTokEnd, bool &HadError,
36 SourceLocation Loc, bool IsWide,
37 Preprocessor &PP) {
38 // Skip the '\' char.
39 ++ThisTokBuf;
40
41 // We know that this character can't be off the end of the buffer, because
42 // that would have been \", which would not have been the end of string.
43 unsigned ResultChar = *ThisTokBuf++;
44 switch (ResultChar) {
45 // These map to themselves.
46 case '\\': case '\'': case '"': case '?': break;
47
48 // 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':
57 PP.Diag(Loc, diag::ext_nonstandard_escape, "e");
58 ResultChar = 27;
59 break;
60 case 'f':
61 ResultChar = 12;
62 break;
63 case 'n':
64 ResultChar = 10;
65 break;
66 case 'r':
67 ResultChar = 13;
68 break;
69 case 't':
70 ResultChar = 9;
71 break;
72 case 'v':
73 ResultChar = 11;
74 break;
75
76 //case 'u': case 'U': // FIXME: UCNs.
77 case 'x': { // Hex escape.
78 ResultChar = 0;
79 if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) {
80 PP.Diag(Loc, diag::err_hex_escape_no_digits);
81 HadError = 1;
82 break;
83 }
84
85 // Hex escapes are a maximal series of hex digits.
86 bool Overflow = false;
87 for (; ThisTokBuf != ThisTokEnd; ++ThisTokBuf) {
88 int CharVal = HexDigitValue(ThisTokBuf[0]);
89 if (CharVal == -1) break;
Chris Lattnerb8128142007-09-03 18:28:41 +000090 Overflow |= (ResultChar & 0xF0000000) ? true : false; // About to shift out a digit?
Reid Spencer5f016e22007-07-11 17:01:13 +000091 ResultChar <<= 4;
92 ResultChar |= CharVal;
93 }
94
95 // See if any bits will be truncated when evaluated as a character.
Chris Lattner98be4942008-03-05 18:54:05 +000096 unsigned CharWidth = PP.getTargetInfo().getCharWidth(IsWide);
Ted Kremenek9c728dc2007-12-12 22:39:36 +000097
Reid Spencer5f016e22007-07-11 17:01:13 +000098 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
99 Overflow = true;
100 ResultChar &= ~0U >> (32-CharWidth);
101 }
102
103 // Check for overflow.
104 if (Overflow) // Too many digits to fit in
105 PP.Diag(Loc, diag::warn_hex_escape_too_large);
106 break;
107 }
108 case '0': case '1': case '2': case '3':
109 case '4': case '5': case '6': case '7': {
110 // Octal escapes.
111 --ThisTokBuf;
112 ResultChar = 0;
113
114 // Octal escapes are a series of octal digits with maximum length 3.
115 // "\0123" is a two digit sequence equal to "\012" "3".
116 unsigned NumDigits = 0;
117 do {
118 ResultChar <<= 3;
119 ResultChar |= *ThisTokBuf++ - '0';
120 ++NumDigits;
121 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
122 ThisTokBuf[0] >= '0' && ThisTokBuf[0] <= '7');
123
124 // Check for overflow. Reject '\777', but not L'\777'.
Chris Lattner98be4942008-03-05 18:54:05 +0000125 unsigned CharWidth = PP.getTargetInfo().getCharWidth(IsWide);
Ted Kremenek9c728dc2007-12-12 22:39:36 +0000126
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
128 PP.Diag(Loc, diag::warn_octal_escape_too_large);
129 ResultChar &= ~0U >> (32-CharWidth);
130 }
131 break;
132 }
133
134 // Otherwise, these are not valid escapes.
135 case '(': case '{': case '[': case '%':
136 // GCC accepts these as extensions. We warn about them as such though.
137 if (!PP.getLangOptions().NoExtensions) {
138 PP.Diag(Loc, diag::ext_nonstandard_escape,
139 std::string()+(char)ResultChar);
140 break;
141 }
142 // FALL THROUGH.
143 default:
144 if (isgraph(ThisTokBuf[0])) {
145 PP.Diag(Loc, diag::ext_unknown_escape, std::string()+(char)ResultChar);
146 } else {
147 PP.Diag(Loc, diag::ext_unknown_escape, "x"+llvm::utohexstr(ResultChar));
148 }
149 break;
150 }
151
152 return ResultChar;
153}
154
155
156
157
158/// integer-constant: [C99 6.4.4.1]
159/// decimal-constant integer-suffix
160/// octal-constant integer-suffix
161/// hexadecimal-constant integer-suffix
162/// decimal-constant:
163/// nonzero-digit
164/// decimal-constant digit
165/// octal-constant:
166/// 0
167/// octal-constant octal-digit
168/// hexadecimal-constant:
169/// hexadecimal-prefix hexadecimal-digit
170/// hexadecimal-constant hexadecimal-digit
171/// hexadecimal-prefix: one of
172/// 0x 0X
173/// integer-suffix:
174/// unsigned-suffix [long-suffix]
175/// unsigned-suffix [long-long-suffix]
176/// long-suffix [unsigned-suffix]
177/// long-long-suffix [unsigned-sufix]
178/// nonzero-digit:
179/// 1 2 3 4 5 6 7 8 9
180/// octal-digit:
181/// 0 1 2 3 4 5 6 7
182/// hexadecimal-digit:
183/// 0 1 2 3 4 5 6 7 8 9
184/// a b c d e f
185/// A B C D E F
186/// unsigned-suffix: one of
187/// u U
188/// long-suffix: one of
189/// l L
190/// long-long-suffix: one of
191/// ll LL
192///
193/// floating-constant: [C99 6.4.4.2]
194/// TODO: add rules...
195///
196
197NumericLiteralParser::
198NumericLiteralParser(const char *begin, const char *end,
199 SourceLocation TokLoc, Preprocessor &pp)
200 : PP(pp), ThisTokBegin(begin), ThisTokEnd(end) {
201 s = DigitsBegin = begin;
202 saw_exponent = false;
203 saw_period = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000204 isLong = false;
205 isUnsigned = false;
206 isLongLong = false;
Chris Lattner6e400c22007-08-26 03:29:23 +0000207 isFloat = false;
Chris Lattner506b8de2007-08-26 01:58:14 +0000208 isImaginary = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000209 hadError = false;
210
211 if (*s == '0') { // parse radix
212 s++;
213 if ((*s == 'x' || *s == 'X') && (isxdigit(s[1]) || s[1] == '.')) {
214 s++;
215 radix = 16;
216 DigitsBegin = s;
217 s = SkipHexDigits(s);
218 if (s == ThisTokEnd) {
219 // Done.
220 } else if (*s == '.') {
221 s++;
222 saw_period = true;
223 s = SkipHexDigits(s);
224 }
225 // A binary exponent can appear with or with a '.'. If dotted, the
226 // binary exponent is required.
Chris Lattner921e9ff2007-11-14 16:14:50 +0000227 if ((*s == 'p' || *s == 'P') && PP.getLangOptions().HexFloats) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000228 s++;
229 saw_exponent = true;
230 if (*s == '+' || *s == '-') s++; // sign
231 const char *first_non_digit = SkipDigits(s);
232 if (first_non_digit == s) {
233 Diag(TokLoc, diag::err_exponent_has_no_digits);
234 return;
235 } else {
236 s = first_non_digit;
237 }
238 } else if (saw_period) {
239 Diag(TokLoc, diag::err_hexconstant_requires_exponent);
240 return;
241 }
242 } else if (*s == 'b' || *s == 'B') {
243 // 0b101010 is a GCC extension.
244 ++s;
245 radix = 2;
246 DigitsBegin = s;
247 s = SkipBinaryDigits(s);
248 if (s == ThisTokEnd) {
249 // Done.
250 } else if (isxdigit(*s)) {
251 Diag(TokLoc, diag::err_invalid_binary_digit, std::string(s, s+1));
252 return;
253 }
254 PP.Diag(TokLoc, diag::ext_binary_literal);
255 } else {
256 // For now, the radix is set to 8. If we discover that we have a
257 // floating point constant, the radix will change to 10. Octal floating
258 // point constants are not permitted (only decimal and hexadecimal).
259 radix = 8;
260 DigitsBegin = s;
261 s = SkipOctalDigits(s);
262 if (s == ThisTokEnd) {
263 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000264 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Chris Lattner136f93a2007-07-16 06:55:01 +0000265 TokLoc = PP.AdvanceToTokenCharacter(TokLoc, s-begin);
Reid Spencer5f016e22007-07-11 17:01:13 +0000266 Diag(TokLoc, diag::err_invalid_octal_digit, std::string(s, s+1));
267 return;
268 } else if (*s == '.') {
269 s++;
270 radix = 10;
271 saw_period = true;
272 s = SkipDigits(s);
273 }
274 if (*s == 'e' || *s == 'E') { // exponent
275 s++;
276 radix = 10;
277 saw_exponent = true;
278 if (*s == '+' || *s == '-') s++; // sign
279 const char *first_non_digit = SkipDigits(s);
280 if (first_non_digit == s) {
281 Diag(TokLoc, diag::err_exponent_has_no_digits);
282 return;
283 } else {
284 s = first_non_digit;
285 }
286 }
287 }
288 } else { // the first digit is non-zero
289 radix = 10;
290 s = SkipDigits(s);
291 if (s == ThisTokEnd) {
292 // Done.
Christopher Lamb016765e2007-11-29 06:06:27 +0000293 } else if (isxdigit(*s) && !(*s == 'e' || *s == 'E')) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000294 Diag(TokLoc, diag::err_invalid_decimal_digit, std::string(s, s+1));
295 return;
296 } else if (*s == '.') {
297 s++;
298 saw_period = true;
299 s = SkipDigits(s);
300 }
301 if (*s == 'e' || *s == 'E') { // exponent
302 s++;
303 saw_exponent = true;
304 if (*s == '+' || *s == '-') s++; // sign
305 const char *first_non_digit = SkipDigits(s);
306 if (first_non_digit == s) {
307 Diag(TokLoc, diag::err_exponent_has_no_digits);
308 return;
309 } else {
310 s = first_non_digit;
311 }
312 }
313 }
314
315 SuffixBegin = s;
Chris Lattner506b8de2007-08-26 01:58:14 +0000316
317 // Parse the suffix. At this point we can classify whether we have an FP or
318 // integer constant.
319 bool isFPConstant = isFloatingLiteral();
320
321 // Loop over all of the characters of the suffix. If we see something bad,
322 // we break out of the loop.
323 for (; s != ThisTokEnd; ++s) {
324 switch (*s) {
325 case 'f': // FP Suffix for "float"
326 case 'F':
327 if (!isFPConstant) break; // Error for integer constant.
Chris Lattner6e400c22007-08-26 03:29:23 +0000328 if (isFloat || isLong) break; // FF, LF invalid.
329 isFloat = true;
Chris Lattner506b8de2007-08-26 01:58:14 +0000330 continue; // Success.
331 case 'u':
332 case 'U':
333 if (isFPConstant) break; // Error for floating constant.
334 if (isUnsigned) break; // Cannot be repeated.
335 isUnsigned = true;
336 continue; // Success.
337 case 'l':
338 case 'L':
339 if (isLong || isLongLong) break; // Cannot be repeated.
Chris Lattner6e400c22007-08-26 03:29:23 +0000340 if (isFloat) break; // LF invalid.
Chris Lattner506b8de2007-08-26 01:58:14 +0000341
342 // Check for long long. The L's need to be adjacent and the same case.
343 if (s+1 != ThisTokEnd && s[1] == s[0]) {
344 if (isFPConstant) break; // long long invalid for floats.
345 isLongLong = true;
346 ++s; // Eat both of them.
347 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000348 isLong = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000349 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000350 continue; // Success.
351 case 'i':
Steve Naroff0c29b222008-04-04 21:02:54 +0000352 if (PP.getLangOptions().Microsoft) {
353 // Allow i8, i16, i32, i64, and i128.
354 if (++s == ThisTokEnd) break;
355 switch (*s) {
356 case '8':
357 s++; // i8 suffix
358 break;
359 case '1':
360 if (++s == ThisTokEnd) break;
361 if (*s == '6') s++; // i16 suffix
362 else if (*s == '2') {
363 if (++s == ThisTokEnd) break;
364 if (*s == '8') s++; // i128 suffix
365 }
366 break;
367 case '3':
368 if (++s == ThisTokEnd) break;
369 if (*s == '2') s++; // i32 suffix
370 break;
371 case '6':
372 if (++s == ThisTokEnd) break;
373 if (*s == '4') s++; // i64 suffix
374 break;
375 default:
376 break;
377 }
378 break;
379 }
380 // fall through.
Chris Lattner506b8de2007-08-26 01:58:14 +0000381 case 'I':
382 case 'j':
383 case 'J':
384 if (isImaginary) break; // Cannot be repeated.
385 PP.Diag(PP.AdvanceToTokenCharacter(TokLoc, s-begin),
386 diag::ext_imaginary_constant);
387 isImaginary = true;
388 continue; // Success.
Reid Spencer5f016e22007-07-11 17:01:13 +0000389 }
Chris Lattner506b8de2007-08-26 01:58:14 +0000390 // If we reached here, there was an error.
391 break;
392 }
393
394 // Report an error if there are any.
395 if (s != ThisTokEnd) {
396 TokLoc = PP.AdvanceToTokenCharacter(TokLoc, s-begin);
397 Diag(TokLoc, isFPConstant ? diag::err_invalid_suffix_float_constant :
398 diag::err_invalid_suffix_integer_constant,
399 std::string(SuffixBegin, ThisTokEnd));
400 return;
Reid Spencer5f016e22007-07-11 17:01:13 +0000401 }
402}
403
404/// GetIntegerValue - Convert this numeric literal value to an APInt that
405/// matches Val's input width. If there is an overflow, set Val to the low bits
406/// of the result and return true. Otherwise, return false.
407bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) {
408 Val = 0;
409 s = DigitsBegin;
410
411 llvm::APInt RadixVal(Val.getBitWidth(), radix);
412 llvm::APInt CharVal(Val.getBitWidth(), 0);
413 llvm::APInt OldVal = Val;
414
415 bool OverflowOccurred = false;
416 while (s < SuffixBegin) {
417 unsigned C = HexDigitValue(*s++);
418
419 // If this letter is out of bound for this radix, reject it.
420 assert(C < radix && "NumericLiteralParser ctor should have rejected this");
421
422 CharVal = C;
423
424 // Add the digit to the value in the appropriate radix. If adding in digits
425 // made the value smaller, then this overflowed.
426 OldVal = Val;
427
428 // Multiply by radix, did overflow occur on the multiply?
429 Val *= RadixVal;
430 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
431
432 OldVal = Val;
433 // Add value, did overflow occur on the value?
434 Val += CharVal;
435 OverflowOccurred |= Val.ult(OldVal);
436 OverflowOccurred |= Val.ult(CharVal);
437 }
438 return OverflowOccurred;
439}
440
Chris Lattner525a0502007-09-22 18:29:59 +0000441llvm::APFloat NumericLiteralParser::
Ted Kremenek427d5af2007-11-26 23:12:30 +0000442GetFloatValue(const llvm::fltSemantics &Format, bool* isExact) {
443 using llvm::APFloat;
444
Ted Kremenek32e61bf2007-11-29 00:54:29 +0000445 llvm::SmallVector<char,256> floatChars;
446 for (unsigned i = 0, n = ThisTokEnd-ThisTokBegin; i != n; ++i)
447 floatChars.push_back(ThisTokBegin[i]);
448
449 floatChars.push_back('\0');
450
Ted Kremenek427d5af2007-11-26 23:12:30 +0000451 APFloat V (Format, APFloat::fcZero, false);
Ted Kremenek427d5af2007-11-26 23:12:30 +0000452 APFloat::opStatus status;
Ted Kremenek32e61bf2007-11-29 00:54:29 +0000453
454 status = V.convertFromString(&floatChars[0],APFloat::rmNearestTiesToEven);
Ted Kremenek427d5af2007-11-26 23:12:30 +0000455
456 if (isExact)
457 *isExact = status == APFloat::opOK;
458
459 return V;
Reid Spencer5f016e22007-07-11 17:01:13 +0000460}
461
462void NumericLiteralParser::Diag(SourceLocation Loc, unsigned DiagID,
463 const std::string &M) {
464 PP.Diag(Loc, DiagID, M);
465 hadError = true;
466}
467
468
469CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
470 SourceLocation Loc, Preprocessor &PP) {
471 // At this point we know that the character matches the regex "L?'.*'".
472 HadError = false;
473 Value = 0;
474
475 // Determine if this is a wide character.
476 IsWide = begin[0] == 'L';
477 if (IsWide) ++begin;
478
479 // Skip over the entry quote.
480 assert(begin[0] == '\'' && "Invalid token lexed");
481 ++begin;
482
483 // FIXME: This assumes that 'int' is 32-bits in overflow calculation, and the
484 // size of "value".
Chris Lattner98be4942008-03-05 18:54:05 +0000485 assert(PP.getTargetInfo().getIntWidth() == 32 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000486 "Assumes sizeof(int) == 4 for now");
487 // FIXME: This assumes that wchar_t is 32-bits for now.
Chris Lattner98be4942008-03-05 18:54:05 +0000488 assert(PP.getTargetInfo().getWCharWidth() == 32 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000489 "Assumes sizeof(wchar_t) == 4 for now");
490 // FIXME: This extensively assumes that 'char' is 8-bits.
Chris Lattner98be4942008-03-05 18:54:05 +0000491 assert(PP.getTargetInfo().getCharWidth() == 8 &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000492 "Assumes char is 8 bits");
493
494 bool isFirstChar = true;
495 bool isMultiChar = false;
496 while (begin[0] != '\'') {
497 unsigned ResultChar;
498 if (begin[0] != '\\') // If this is a normal character, consume it.
499 ResultChar = *begin++;
500 else // Otherwise, this is an escape character.
501 ResultChar = ProcessCharEscape(begin, end, HadError, Loc, IsWide, PP);
502
503 // If this is a multi-character constant (e.g. 'abc'), handle it. These are
504 // implementation defined (C99 6.4.4.4p10).
505 if (!isFirstChar) {
506 // If this is the second character being processed, do special handling.
507 if (!isMultiChar) {
508 isMultiChar = true;
509
510 // Warn about discarding the top bits for multi-char wide-character
511 // constants (L'abcd').
512 if (IsWide)
513 PP.Diag(Loc, diag::warn_extraneous_wide_char_constant);
514 }
515
516 if (IsWide) {
517 // Emulate GCC's (unintentional?) behavior: L'ab' -> L'b'.
518 Value = 0;
519 } else {
520 // Narrow character literals act as though their value is concatenated
521 // in this implementation.
522 if (((Value << 8) >> 8) != Value)
523 PP.Diag(Loc, diag::warn_char_constant_too_large);
524 Value <<= 8;
525 }
526 }
527
528 Value += ResultChar;
529 isFirstChar = false;
530 }
531
532 // If this is a single narrow character, sign extend it (e.g. '\xFF' is "-1")
533 // if 'char' is signed for this target (C99 6.4.4.4p10). Note that multiple
534 // character constants are not sign extended in the this implementation:
535 // '\xFF\xFF' = 65536 and '\x0\xFF' = 255, which matches GCC.
536 if (!IsWide && !isMultiChar && (Value & 128) &&
Chris Lattner98be4942008-03-05 18:54:05 +0000537 PP.getTargetInfo().isCharSigned())
Reid Spencer5f016e22007-07-11 17:01:13 +0000538 Value = (signed char)Value;
539}
540
541
542/// string-literal: [C99 6.4.5]
543/// " [s-char-sequence] "
544/// L" [s-char-sequence] "
545/// s-char-sequence:
546/// s-char
547/// s-char-sequence s-char
548/// s-char:
549/// any source character except the double quote ",
550/// backslash \, or newline character
551/// escape-character
552/// universal-character-name
553/// escape-character: [C99 6.4.4.4]
554/// \ escape-code
555/// universal-character-name
556/// escape-code:
557/// character-escape-code
558/// octal-escape-code
559/// hex-escape-code
560/// character-escape-code: one of
561/// n t b r f v a
562/// \ ' " ?
563/// octal-escape-code:
564/// octal-digit
565/// octal-digit octal-digit
566/// octal-digit octal-digit octal-digit
567/// hex-escape-code:
568/// x hex-digit
569/// hex-escape-code hex-digit
570/// universal-character-name:
571/// \u hex-quad
572/// \U hex-quad hex-quad
573/// hex-quad:
574/// hex-digit hex-digit hex-digit hex-digit
575///
576StringLiteralParser::
Chris Lattnerd2177732007-07-20 16:59:19 +0000577StringLiteralParser(const Token *StringToks, unsigned NumStringToks,
Reid Spencer5f016e22007-07-11 17:01:13 +0000578 Preprocessor &pp, TargetInfo &t)
579 : PP(pp), Target(t) {
580 // Scan all of the string portions, remember the max individual token length,
581 // computing a bound on the concatenated string length, and see whether any
582 // piece is a wide-string. If any of the string portions is a wide-string
583 // literal, the result is a wide-string literal [C99 6.4.5p4].
584 MaxTokenLength = StringToks[0].getLength();
585 SizeBound = StringToks[0].getLength()-2; // -2 for "".
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000586 AnyWide = StringToks[0].is(tok::wide_string_literal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000587
588 hadError = false;
589
590 // Implement Translation Phase #6: concatenation of string literals
591 /// (C99 5.1.1.2p1). The common case is only one string fragment.
592 for (unsigned i = 1; i != NumStringToks; ++i) {
593 // The string could be shorter than this if it needs cleaning, but this is a
594 // reasonable bound, which is all we need.
595 SizeBound += StringToks[i].getLength()-2; // -2 for "".
596
597 // Remember maximum string piece length.
598 if (StringToks[i].getLength() > MaxTokenLength)
599 MaxTokenLength = StringToks[i].getLength();
600
601 // Remember if we see any wide strings.
Chris Lattner22f6bbc2007-10-09 18:02:16 +0000602 AnyWide |= StringToks[i].is(tok::wide_string_literal);
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 }
604
605
606 // Include space for the null terminator.
607 ++SizeBound;
608
609 // TODO: K&R warning: "traditional C rejects string constant concatenation"
610
611 // Get the width in bytes of wchar_t. If no wchar_t strings are used, do not
612 // query the target. As such, wchar_tByteWidth is only valid if AnyWide=true.
613 wchar_tByteWidth = ~0U;
614 if (AnyWide) {
Chris Lattner98be4942008-03-05 18:54:05 +0000615 wchar_tByteWidth = Target.getWCharWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +0000616 assert((wchar_tByteWidth & 7) == 0 && "Assumes wchar_t is byte multiple!");
617 wchar_tByteWidth /= 8;
618 }
619
620 // The output buffer size needs to be large enough to hold wide characters.
621 // This is a worst-case assumption which basically corresponds to L"" "long".
622 if (AnyWide)
623 SizeBound *= wchar_tByteWidth;
624
625 // Size the temporary buffer to hold the result string data.
626 ResultBuf.resize(SizeBound);
627
628 // Likewise, but for each string piece.
629 llvm::SmallString<512> TokenBuf;
630 TokenBuf.resize(MaxTokenLength);
631
632 // Loop over all the strings, getting their spelling, and expanding them to
633 // wide strings as appropriate.
634 ResultPtr = &ResultBuf[0]; // Next byte to fill in.
635
Anders Carlssonee98ac52007-10-15 02:50:23 +0000636 Pascal = false;
637
Reid Spencer5f016e22007-07-11 17:01:13 +0000638 for (unsigned i = 0, e = NumStringToks; i != e; ++i) {
639 const char *ThisTokBuf = &TokenBuf[0];
640 // Get the spelling of the token, which eliminates trigraphs, etc. We know
641 // that ThisTokBuf points to a buffer that is big enough for the whole token
642 // and 'spelled' tokens can only shrink.
643 unsigned ThisTokLen = PP.getSpelling(StringToks[i], ThisTokBuf);
644 const char *ThisTokEnd = ThisTokBuf+ThisTokLen-1; // Skip end quote.
645
646 // TODO: Input character set mapping support.
647
648 // Skip L marker for wide strings.
649 bool ThisIsWide = false;
650 if (ThisTokBuf[0] == 'L') {
651 ++ThisTokBuf;
652 ThisIsWide = true;
653 }
654
655 assert(ThisTokBuf[0] == '"' && "Expected quote, lexer broken?");
656 ++ThisTokBuf;
657
Anders Carlssonee98ac52007-10-15 02:50:23 +0000658 // Check if this is a pascal string
659 if (pp.getLangOptions().PascalStrings && ThisTokBuf + 1 != ThisTokEnd &&
660 ThisTokBuf[0] == '\\' && ThisTokBuf[1] == 'p') {
661
662 // If the \p sequence is found in the first token, we have a pascal string
663 // Otherwise, if we already have a pascal string, ignore the first \p
664 if (i == 0) {
665 ++ThisTokBuf;
666 Pascal = true;
667 } else if (Pascal)
668 ThisTokBuf += 2;
669 }
670
Reid Spencer5f016e22007-07-11 17:01:13 +0000671 while (ThisTokBuf != ThisTokEnd) {
672 // Is this a span of non-escape characters?
673 if (ThisTokBuf[0] != '\\') {
674 const char *InStart = ThisTokBuf;
675 do {
676 ++ThisTokBuf;
677 } while (ThisTokBuf != ThisTokEnd && ThisTokBuf[0] != '\\');
678
679 // Copy the character span over.
680 unsigned Len = ThisTokBuf-InStart;
681 if (!AnyWide) {
682 memcpy(ResultPtr, InStart, Len);
683 ResultPtr += Len;
684 } else {
685 // Note: our internal rep of wide char tokens is always little-endian.
686 for (; Len; --Len, ++InStart) {
687 *ResultPtr++ = InStart[0];
688 // Add zeros at the end.
689 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
690 *ResultPtr++ = 0;
691 }
692 }
693 continue;
694 }
695
696 // Otherwise, this is an escape character. Process it.
697 unsigned ResultChar = ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError,
698 StringToks[i].getLocation(),
699 ThisIsWide, PP);
700
701 // Note: our internal rep of wide char tokens is always little-endian.
702 *ResultPtr++ = ResultChar & 0xFF;
703
704 if (AnyWide) {
705 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
706 *ResultPtr++ = ResultChar >> i*8;
707 }
708 }
709 }
710
711 // Add zero terminator.
712 *ResultPtr = 0;
713 if (AnyWide) {
714 for (unsigned i = 1, e = wchar_tByteWidth; i != e; ++i)
715 *ResultPtr++ = 0;
716 }
Anders Carlssonee98ac52007-10-15 02:50:23 +0000717
718 if (Pascal)
719 ResultBuf[0] = ResultPtr-&ResultBuf[0]-1;
Reid Spencer5f016e22007-07-11 17:01:13 +0000720}