OSDN Git Service

PR c++/11808
[pf3gnuchains/gcc-fork.git] / gcc / cppcharset.c
1 /* CPP Library - charsets
2    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
3    Free Software Foundation, Inc.
4
5    Broken out of c-lex.c Apr 2003, adding valid C99 UCN ranges.
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 #include "config.h"
22 #include "system.h"
23 #include "cpplib.h"
24 #include "cpphash.h"
25 #include "cppucnid.h"
26
27 /* Character set handling for C-family languages.
28
29    Terminological note: In what follows, "charset" or "character set"
30    will be taken to mean both an abstract set of characters and an
31    encoding for that set.
32
33    The C99 standard discusses two character sets: source and execution.
34    The source character set is used for internal processing in translation
35    phases 1 through 4; the execution character set is used thereafter.
36    Both are required by 5.2.1.2p1 to be multibyte encodings, not wide
37    character encodings (see 3.7.2, 3.7.3 for the standardese meanings
38    of these terms).  Furthermore, the "basic character set" (listed in
39    5.2.1p3) is to be encoded in each with values one byte wide, and is
40    to appear in the initial shift state.
41
42    It is not explicitly mentioned, but there is also a "wide execution
43    character set" used to encode wide character constants and wide
44    string literals; this is supposed to be the result of applying the
45    standard library function mbstowcs() to an equivalent narrow string
46    (6.4.5p5).  However, the behavior of hexadecimal and octal
47    \-escapes is at odds with this; they are supposed to be translated
48    directly to wchar_t values (6.4.4.4p5,6).
49
50    The source character set is not necessarily the character set used
51    to encode physical source files on disk; translation phase 1 converts
52    from whatever that encoding is to the source character set.
53
54    The presence of universal character names in C99 (6.4.3 et seq.)
55    forces the source character set to be isomorphic to ISO 10646,
56    that is, Unicode.  There is no such constraint on the execution
57    character set; note also that the conversion from source to
58    execution character set does not occur for identifiers (5.1.1.2p1#5).
59
60    For convenience of implementation, the source character set's
61    encoding of the basic character set should be identical to the
62    execution character set OF THE HOST SYSTEM's encoding of the basic
63    character set, and it should not be a state-dependent encoding.
64
65    cpplib uses UTF-8 or UTF-EBCDIC for the source character set,
66    depending on whether the host is based on ASCII or EBCDIC (see
67    respectively Unicode section 2.3/ISO10646 Amendment 2, and Unicode
68    Technical Report #16).  With limited exceptions, it relies on the
69    system library's iconv() primitive to do charset conversion
70    (specified in SUSv2).  */
71
72 #if !HAVE_ICONV
73 /* Make certain that the uses of iconv(), iconv_open(), iconv_close()
74    below, which are guarded only by if statements with compile-time
75    constant conditions, do not cause link errors.  */
76 #define iconv_open(x, y) (errno = EINVAL, (iconv_t)-1)
77 #define iconv(a,b,c,d,e) (errno = EINVAL, (size_t)-1)
78 #define iconv_close(x)   (void)0
79 #define ICONV_CONST
80 #endif
81
82 #if HOST_CHARSET == HOST_CHARSET_ASCII
83 #define SOURCE_CHARSET "UTF-8"
84 #elif HOST_CHARSET == HOST_CHARSET_EBCDIC
85 #define SOURCE_CHARSET "UTF-EBCDIC"
86 #else
87 #error "Unrecognized basic host character set"
88 #endif
89
90 #ifndef EILSEQ
91 #define EILSEQ EINVAL
92 #endif
93
94 /* This structure is used for a resizable string buffer throughout.  */
95 struct strbuf
96 {
97   uchar *text;
98   size_t asize;
99   size_t len;
100 };
101
102 /* This is enough to hold any string that fits on a single 80-column
103    line, even if iconv quadruples its size (e.g. conversion from
104    ASCII to UTF-32) rounded up to a power of two.  */
105 #define OUTBUF_BLOCK_SIZE 256
106
107 /* Conversions between UTF-8 and UTF-16/32 are implemented by custom
108    logic.  This is because a depressing number of systems lack iconv,
109    or have have iconv libraries that do not do these conversions, so
110    we need a fallback implementation for them.  To ensure the fallback
111    doesn't break due to neglect, it is used on all systems.
112
113    UTF-32 encoding is nice and simple: a four-byte binary number,
114    constrained to the range 00000000-7FFFFFFF to avoid questions of
115    signedness.  We do have to cope with big- and little-endian
116    variants.
117
118    UTF-16 encoding uses two-byte binary numbers, again in big- and
119    little-endian variants, for all values in the 00000000-0000FFFF
120    range.  Values in the 00010000-0010FFFF range are encoded as pairs
121    of two-byte numbers, called "surrogate pairs": given a number S in
122    this range, it is mapped to a pair (H, L) as follows:
123
124      H = (S - 0x10000) / 0x400 + 0xD800
125      L = (S - 0x10000) % 0x400 + 0xDC00
126
127    Two-byte values in the D800...DFFF range are ill-formed except as a
128    component of a surrogate pair.  Even if the encoding within a
129    two-byte value is little-endian, the H member of the surrogate pair
130    comes first.
131
132    There is no way to encode values in the 00110000-7FFFFFFF range,
133    which is not currently a problem as there are no assigned code
134    points in that range; however, the author expects that it will
135    eventually become necessary to abandon UTF-16 due to this
136    limitation.  Note also that, because of these pairs, UTF-16 does
137    not meet the requirements of the C standard for a wide character
138    encoding (see 3.7.3 and 6.4.4.4p11).
139
140    UTF-8 encoding looks like this:
141
142    value range         encoded as
143    00000000-0000007F   0xxxxxxx
144    00000080-000007FF   110xxxxx 10xxxxxx
145    00000800-0000FFFF   1110xxxx 10xxxxxx 10xxxxxx
146    00010000-001FFFFF   11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
147    00200000-03FFFFFF   111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
148    04000000-7FFFFFFF   1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
149
150    Values in the 0000D800 ... 0000DFFF range (surrogates) are invalid,
151    which means that three-byte sequences ED xx yy, with A0 <= xx <= BF,
152    never occur.  Note also that any value that can be encoded by a
153    given row of the table can also be encoded by all successive rows,
154    but this is not done; only the shortest possible encoding for any
155    given value is valid.  For instance, the character 07C0 could be
156    encoded as any of DF 80, E0 9F 80, F0 80 9F 80, F8 80 80 9F 80, or
157    FC 80 80 80 9F 80.  Only the first is valid.
158
159    An implementation note: the transformation from UTF-16 to UTF-8, or
160    vice versa, is easiest done by using UTF-32 as an intermediary.  */
161
162 /* Internal primitives which go from an UTF-8 byte stream to native-endian
163    UTF-32 in a cppchar_t, or vice versa; this avoids an extra marshal/unmarshal
164    operation in several places below.  */
165 static inline int
166 one_utf8_to_cppchar (const uchar **inbufp, size_t *inbytesleftp,
167                      cppchar_t *cp)
168 {
169   static const uchar masks[6] = { 0x7F, 0x1F, 0x0F, 0x07, 0x02, 0x01 };
170   static const uchar patns[6] = { 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
171   
172   cppchar_t c;
173   const uchar *inbuf = *inbufp;
174   size_t nbytes, i;
175
176   if (*inbytesleftp < 1)
177     return EINVAL;
178
179   c = *inbuf;
180   if (c < 0x80)
181     {
182       *cp = c;
183       *inbytesleftp -= 1;
184       *inbufp += 1;
185       return 0;
186     }
187
188   /* The number of leading 1-bits in the first byte indicates how many
189      bytes follow.  */
190   for (nbytes = 2; nbytes < 7; nbytes++)
191     if ((c & ~masks[nbytes-1]) == patns[nbytes-1])
192       goto found;
193   return EILSEQ;
194  found:
195
196   if (*inbytesleftp < nbytes)
197     return EINVAL;
198
199   c = (c & masks[nbytes-1]);
200   inbuf++;
201   for (i = 1; i < nbytes; i++)
202     {
203       cppchar_t n = *inbuf++;
204       if ((n & 0xC0) != 0x80)
205         return EILSEQ;
206       c = ((c << 6) + (n & 0x3F));
207     }
208
209   /* Make sure the shortest possible encoding was used.  */
210   if (c <=      0x7F && nbytes > 1) return EILSEQ;
211   if (c <=     0x7FF && nbytes > 2) return EILSEQ;
212   if (c <=    0xFFFF && nbytes > 3) return EILSEQ;
213   if (c <=  0x1FFFFF && nbytes > 4) return EILSEQ;
214   if (c <= 0x3FFFFFF && nbytes > 5) return EILSEQ;
215
216   /* Make sure the character is valid.  */
217   if (c > 0x7FFFFFFF || (c >= 0xD800 && c <= 0xDFFF)) return EILSEQ;
218
219   *cp = c;
220   *inbufp = inbuf;
221   *inbytesleftp -= nbytes;
222   return 0;
223 }
224
225 static inline int
226 one_cppchar_to_utf8 (cppchar_t c, uchar **outbufp, size_t *outbytesleftp)
227 {
228   static const uchar masks[6] =  { 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
229   static const uchar limits[6] = { 0x80, 0xE0, 0xF0, 0xF8, 0xFC, 0xFE };
230   size_t nbytes;
231   uchar buf[6], *p = &buf[6];
232   uchar *outbuf = *outbufp;
233
234   nbytes = 1;
235   if (c < 0x80)
236     *--p = c;
237   else
238     {
239       do
240         {
241           *--p = ((c & 0x3F) | 0x80);
242           c >>= 6;
243           nbytes++;
244         }
245       while (c >= 0x3F || (c & limits[nbytes-1]));
246       *--p = (c | masks[nbytes-1]);
247     }
248
249   if (*outbytesleftp < nbytes)
250     return E2BIG;
251
252   while (p < &buf[6])
253     *outbuf++ = *p++;
254   *outbytesleftp -= nbytes;
255   *outbufp = outbuf;
256   return 0;
257 }
258
259 /* The following four functions transform one character between the two
260    encodings named in the function name.  All have the signature
261    int (*)(iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
262            uchar **outbufp, size_t *outbytesleftp)
263
264    BIGEND must have the value 0 or 1, coerced to (iconv_t); it is
265    interpreted as a boolean indicating whether big-endian or
266    little-endian encoding is to be used for the member of the pair
267    that is not UTF-8.
268
269    INBUFP, INBYTESLEFTP, OUTBUFP, OUTBYTESLEFTP work exactly as they
270    do for iconv.
271
272    The return value is either 0 for success, or an errno value for
273    failure, which may be E2BIG (need more space), EILSEQ (ill-formed
274    input sequence), ir EINVAL (incomplete input sequence).  */
275    
276 static inline int
277 one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
278                    uchar **outbufp, size_t *outbytesleftp)
279 {
280   uchar *outbuf;
281   cppchar_t s;
282   int rval;
283
284   /* Check for space first, since we know exactly how much we need.  */
285   if (*outbytesleftp < 4)
286     return E2BIG;
287
288   rval = one_utf8_to_cppchar (inbufp, inbytesleftp, &s);
289   if (rval)
290     return rval;
291
292   outbuf = *outbufp;
293   outbuf[bigend ? 3 : 0] = (s & 0x000000FF);
294   outbuf[bigend ? 2 : 1] = (s & 0x0000FF00) >> 8;
295   outbuf[bigend ? 1 : 2] = (s & 0x00FF0000) >> 16;
296   outbuf[bigend ? 0 : 3] = (s & 0xFF000000) >> 24;
297
298   *outbufp += 4;
299   *outbytesleftp -= 4;
300   return 0;
301 }
302
303 static inline int
304 one_utf32_to_utf8 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
305                    uchar **outbufp, size_t *outbytesleftp)
306 {
307   cppchar_t s;
308   int rval;
309   const uchar *inbuf;
310
311   if (*inbytesleftp < 4)
312     return EINVAL;
313
314   inbuf = *inbufp;
315
316   s  = inbuf[bigend ? 0 : 3] << 24;
317   s += inbuf[bigend ? 1 : 2] << 16;
318   s += inbuf[bigend ? 2 : 1] << 8;
319   s += inbuf[bigend ? 3 : 0];
320
321   if (s >= 0x7FFFFFFF || (s >= 0xD800 && s <= 0xDFFF))
322     return EILSEQ;
323
324   rval = one_cppchar_to_utf8 (s, outbufp, outbytesleftp);
325   if (rval)
326     return rval;
327
328   *inbufp += 4;
329   *inbytesleftp -= 4;
330   return 0;
331 }
332
333 static inline int
334 one_utf8_to_utf16 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
335                    uchar **outbufp, size_t *outbytesleftp)
336 {
337   int rval;
338   cppchar_t s;
339   const uchar *save_inbuf = *inbufp;
340   size_t save_inbytesleft = *inbytesleftp;
341   uchar *outbuf = *outbufp;
342
343   rval = one_utf8_to_cppchar (inbufp, inbytesleftp, &s);
344   if (rval)
345     return rval;
346
347   if (s > 0x0010FFFF)
348     {
349       *inbufp = save_inbuf;
350       *inbytesleftp = save_inbytesleft;
351       return EILSEQ;
352     }
353
354   if (s < 0xFFFF)
355     {
356       if (*outbytesleftp < 2)
357         {
358           *inbufp = save_inbuf;
359           *inbytesleftp = save_inbytesleft;
360           return E2BIG;
361         }
362       outbuf[bigend ? 1 : 0] = (s & 0x00FF);
363       outbuf[bigend ? 0 : 1] = (s & 0xFF00) >> 8;
364
365       *outbufp += 2;
366       *outbytesleftp -= 2;
367       return 0;
368     }
369   else
370     {
371       cppchar_t hi, lo;
372
373       if (*outbytesleftp < 4)
374         {
375           *inbufp = save_inbuf;
376           *inbytesleftp = save_inbytesleft;
377           return E2BIG;
378         }
379
380       hi = (s - 0x10000) / 0x400 + 0xD800;
381       lo = (s - 0x10000) % 0x400 + 0xDC00;
382
383       /* Even if we are little-endian, put the high surrogate first.
384          ??? Matches practice?  */
385       outbuf[bigend ? 1 : 0] = (hi & 0x00FF);
386       outbuf[bigend ? 0 : 1] = (hi & 0xFF00) >> 8;
387       outbuf[bigend ? 3 : 2] = (lo & 0x00FF);
388       outbuf[bigend ? 2 : 3] = (lo & 0xFF00) >> 8;
389
390       *outbufp += 4;
391       *outbytesleftp -= 4;
392       return 0;
393     }
394 }
395
396 static inline int
397 one_utf16_to_utf8 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
398                    uchar **outbufp, size_t *outbytesleftp)
399 {
400   cppchar_t s;
401   const uchar *inbuf = *inbufp;
402   int rval;
403
404   if (*inbytesleftp < 2)
405     return EINVAL;
406   s  = inbuf[bigend ? 0 : 1] << 8;
407   s += inbuf[bigend ? 1 : 0];
408
409   /* Low surrogate without immediately preceding high surrogate is invalid.  */
410   if (s >= 0xDC00 && s <= 0xDFFF)
411     return EILSEQ;
412   /* High surrogate must have a following low surrogate.  */
413   else if (s >= 0xD800 && s <= 0xDBFF)
414     {
415       cppchar_t hi = s, lo;
416       if (*inbytesleftp < 4)
417         return EINVAL;
418
419       lo  = inbuf[bigend ? 2 : 3] << 8;
420       lo += inbuf[bigend ? 3 : 2];
421
422       if (lo < 0xDC00 || lo > 0xDFFF)
423         return EILSEQ;
424
425       s = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000;
426     }
427
428   rval = one_cppchar_to_utf8 (s, outbufp, outbytesleftp);
429   if (rval)
430     return rval;
431
432   /* Success - update the input pointers (one_cppchar_to_utf8 has done
433      the output pointers for us).  */
434   if (s <= 0xFFFF)
435     {
436       *inbufp += 2;
437       *inbytesleftp -= 2;
438     }
439   else
440     {
441       *inbufp += 4;
442       *inbytesleftp -= 4;
443     }
444   return 0;
445 }
446
447 /* Helper routine for the next few functions.  The 'const' on
448    one_conversion means that we promise not to modify what function is
449    pointed to, which lets the inliner see through it.  */
450
451 static inline bool
452 conversion_loop (int (*const one_conversion)(iconv_t, const uchar **, size_t *,
453                                              uchar **, size_t *),
454                  iconv_t cd, const uchar *from, size_t flen, struct strbuf *to)
455 {
456   const uchar *inbuf;
457   uchar *outbuf;
458   size_t inbytesleft, outbytesleft;
459   int rval;
460
461   inbuf = from;
462   inbytesleft = flen;
463   outbuf = to->text + to->len;
464   outbytesleft = to->asize - to->len;
465
466   for (;;)
467     {
468       do
469         rval = one_conversion (cd, &inbuf, &inbytesleft,
470                                &outbuf, &outbytesleft);
471       while (inbytesleft && !rval);
472
473       if (__builtin_expect (inbytesleft == 0, 1))
474         {
475           to->len = to->asize - outbytesleft;
476           return true;
477         }
478       if (rval != E2BIG)
479         {
480           errno = rval;
481           return false;
482         }
483
484       outbytesleft += OUTBUF_BLOCK_SIZE;
485       to->asize += OUTBUF_BLOCK_SIZE;
486       to->text = xrealloc (to->text, to->asize);
487       outbuf = to->text + to->asize - outbytesleft;
488     }
489 }
490                  
491
492 /* These functions convert entire strings between character sets.
493    They all have the signature
494
495    bool (*)(iconv_t cd, const uchar *from, size_t flen, struct strbuf *to);
496
497    The input string FROM is converted as specified by the function
498    name plus the iconv descriptor CD (which may be fake), and the
499    result appended to TO.  On any error, false is returned, otherwise true.  */
500
501 /* These four use the custom conversion code above.  */
502 static bool
503 convert_utf8_utf16 (iconv_t cd, const uchar *from, size_t flen,
504                     struct strbuf *to)
505 {
506   return conversion_loop (one_utf8_to_utf16, cd, from, flen, to);
507 }
508
509 static bool
510 convert_utf8_utf32 (iconv_t cd, const uchar *from, size_t flen,
511                     struct strbuf *to)
512 {
513   return conversion_loop (one_utf8_to_utf32, cd, from, flen, to);
514 }
515
516 static bool
517 convert_utf16_utf8 (iconv_t cd, const uchar *from, size_t flen,
518                     struct strbuf *to)
519 {
520   return conversion_loop (one_utf16_to_utf8, cd, from, flen, to);
521 }
522
523 static bool
524 convert_utf32_utf8 (iconv_t cd, const uchar *from, size_t flen,
525                     struct strbuf *to)
526 {
527   return conversion_loop (one_utf32_to_utf8, cd, from, flen, to);
528 }
529
530 /* Identity conversion, used when we have no alternative.  */
531 static bool
532 convert_no_conversion (iconv_t cd ATTRIBUTE_UNUSED,
533                        const uchar *from, size_t flen, struct strbuf *to)
534 {
535   if (to->len + flen > to->asize)
536     {
537       to->asize = to->len + flen;
538       to->text = xrealloc (to->text, to->asize);
539     }
540   memcpy (to->text + to->len, from, flen);
541   to->len += flen;
542   return true;
543 }
544
545 /* And this one uses the system iconv primitive.  It's a little
546    different, since iconv's interface is a little different.  */
547 #if HAVE_ICONV
548 static bool
549 convert_using_iconv (iconv_t cd, const uchar *from, size_t flen,
550                      struct strbuf *to)
551 {
552   ICONV_CONST char *inbuf;
553   char *outbuf;
554   size_t inbytesleft, outbytesleft;
555
556   /* Reset conversion descriptor and check that it is valid.  */
557   if (iconv (cd, 0, 0, 0, 0) == (size_t)-1)
558     return false;
559
560   inbuf = (ICONV_CONST char *)from;
561   inbytesleft = flen;
562   outbuf = (char *)to->text + to->len;
563   outbytesleft = to->asize - to->len;
564
565   for (;;)
566     {
567       iconv (cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
568       if (__builtin_expect (inbytesleft == 0, 1))
569         {
570           to->len = to->asize - outbytesleft;
571           return true;
572         }
573       if (errno != E2BIG)
574         return false;
575
576       outbytesleft += OUTBUF_BLOCK_SIZE;
577       to->asize += OUTBUF_BLOCK_SIZE;
578       to->text = xrealloc (to->text, to->asize);
579       outbuf = (char *)to->text + to->asize - outbytesleft;
580     }
581 }
582 #else
583 #define convert_using_iconv 0 /* prevent undefined symbol error below */
584 #endif
585
586 /* Arrange for the above custom conversion logic to be used automatically
587    when conversion between a suitable pair of character sets is requested.  */
588
589 #define APPLY_CONVERSION(CONVERTER, FROM, FLEN, TO) \
590    CONVERTER.func (CONVERTER.cd, FROM, FLEN, TO)
591
592 struct conversion
593 {
594   const char *pair;
595   convert_f func;
596   iconv_t fake_cd;
597 };
598 static const struct conversion conversion_tab[] = {
599   { "UTF-8/UTF-32LE", convert_utf8_utf32, (iconv_t)0 },
600   { "UTF-8/UTF-32BE", convert_utf8_utf32, (iconv_t)1 },
601   { "UTF-8/UTF-16LE", convert_utf8_utf16, (iconv_t)0 },
602   { "UTF-8/UTF-16BE", convert_utf8_utf16, (iconv_t)1 },
603   { "UTF-32LE/UTF-8", convert_utf32_utf8, (iconv_t)0 },
604   { "UTF-32BE/UTF-8", convert_utf32_utf8, (iconv_t)1 },
605   { "UTF-16LE/UTF-8", convert_utf16_utf8, (iconv_t)0 },
606   { "UTF-16BE/UTF-8", convert_utf16_utf8, (iconv_t)1 },
607 };
608
609 /* Subroutine of cpp_init_iconv: initialize and return a
610    cset_converter structure for conversion from FROM to TO.  If
611    iconv_open() fails, issue an error and return an identity
612    converter.  Silently return an identity converter if FROM and TO
613    are identical.  */
614 static struct cset_converter
615 init_iconv_desc (cpp_reader *pfile, const char *to, const char *from)
616 {
617   struct cset_converter ret;
618   char *pair;
619   size_t i;
620   
621   if (!strcasecmp (to, from))
622     {
623       ret.func = convert_no_conversion;
624       ret.cd = (iconv_t) -1;
625       return ret;
626     }
627
628   pair = alloca(strlen(to) + strlen(from) + 2);
629
630   strcpy(pair, from);
631   strcat(pair, "/");
632   strcat(pair, to);
633   for (i = 0; i < ARRAY_SIZE (conversion_tab); i++)
634     if (!strcasecmp (pair, conversion_tab[i].pair))
635       {
636         ret.func = conversion_tab[i].func;
637         ret.cd = conversion_tab[i].fake_cd;
638         return ret;
639       }
640
641   /* No custom converter - try iconv.  */
642   if (HAVE_ICONV)
643     {
644       ret.func = convert_using_iconv;
645       ret.cd = iconv_open (to, from);
646
647       if (ret.cd == (iconv_t) -1)
648         {
649           if (errno == EINVAL)
650             cpp_error (pfile, DL_ERROR, /* XXX should be DL_SORRY */
651                        "conversion from %s to %s not supported by iconv",
652                        from, to);
653           else
654             cpp_errno (pfile, DL_ERROR, "iconv_open");
655
656           ret.func = convert_no_conversion;
657         }
658     }
659   else
660     {
661       cpp_error (pfile, DL_ERROR, /* XXX should be DL_SORRY */
662                  "no iconv implementation, cannot convert from %s to %s",
663                  from, to);
664       ret.func = convert_no_conversion;
665       ret.cd = (iconv_t) -1;
666     }
667   return ret;
668 }
669
670 /* If charset conversion is requested, initialize iconv(3) descriptors
671    for conversion from the source character set to the execution
672    character sets.  If iconv is not present in the C library, and
673    conversion is requested, issue an error.  */
674
675 void
676 cpp_init_iconv (cpp_reader *pfile)
677 {
678   const char *ncset = CPP_OPTION (pfile, narrow_charset);
679   const char *wcset = CPP_OPTION (pfile, wide_charset);
680   const char *default_wcset;
681
682   bool be = CPP_OPTION (pfile, bytes_big_endian);
683
684   if (CPP_OPTION (pfile, wchar_precision) >= 32)
685     default_wcset = be ? "UTF-32BE" : "UTF-32LE";
686   else if (CPP_OPTION (pfile, wchar_precision) >= 16)
687     default_wcset = be ? "UTF-16BE" : "UTF-16LE";
688   else
689     /* This effectively means that wide strings are not supported,
690        so don't do any conversion at all.  */
691    default_wcset = SOURCE_CHARSET;
692
693   if (!ncset)
694     ncset = SOURCE_CHARSET;
695   if (!wcset)
696     wcset = default_wcset;
697
698   pfile->narrow_cset_desc = init_iconv_desc (pfile, ncset, SOURCE_CHARSET);
699   pfile->wide_cset_desc = init_iconv_desc (pfile, wcset, SOURCE_CHARSET);
700 }
701
702 void
703 _cpp_destroy_iconv (cpp_reader *pfile)
704 {
705   if (HAVE_ICONV)
706     {
707       if (pfile->narrow_cset_desc.func == convert_using_iconv)
708         iconv_close (pfile->narrow_cset_desc.cd);
709       if (pfile->wide_cset_desc.func == convert_using_iconv)
710         iconv_close (pfile->wide_cset_desc.cd);
711     }
712 }
713
714
715 /* Utility routine that computes a mask of the form 0000...111... with
716    WIDTH 1-bits.  */
717 static inline size_t
718 width_to_mask (size_t width)
719 {
720   width = MIN (width, BITS_PER_CPPCHAR_T);
721   if (width >= CHAR_BIT * sizeof (size_t))
722     return ~(size_t) 0;
723   else
724     return ((size_t) 1 << width) - 1;
725 }
726
727 \f
728
729 /* Returns 1 if C is valid in an identifier, 2 if C is valid except at
730    the start of an identifier, and 0 if C is not valid in an
731    identifier.  We assume C has already gone through the checks of
732    _cpp_valid_ucn.  The algorithm is a simple binary search on the
733    table defined in cppucnid.h.  */
734
735 static int
736 ucn_valid_in_identifier (cpp_reader *pfile, cppchar_t c)
737 {
738   int mn, mx, md;
739
740   mn = -1;
741   mx = ARRAY_SIZE (ucnranges);
742   while (mx - mn > 1)
743     {
744       md = (mn + mx) / 2;
745       if (c < ucnranges[md].lo)
746         mx = md;
747       else if (c > ucnranges[md].hi)
748         mn = md;
749       else
750         goto found;
751     }
752   return 0;
753
754  found:
755   /* When -pedantic, we require the character to have been listed by
756      the standard for the current language.  Otherwise, we accept the
757      union of the acceptable sets for C++98 and C99.  */
758   if (CPP_PEDANTIC (pfile)
759       && ((CPP_OPTION (pfile, c99) && !(ucnranges[md].flags & C99))
760           || (CPP_OPTION (pfile, cplusplus)
761               && !(ucnranges[md].flags & CXX))))
762     return 0;
763
764   /* In C99, UCN digits may not begin identifiers.  */
765   if (CPP_OPTION (pfile, c99) && (ucnranges[md].flags & DIG))
766     return 2;
767
768   return 1;
769 }
770
771 /* [lex.charset]: The character designated by the universal character
772    name \UNNNNNNNN is that character whose character short name in
773    ISO/IEC 10646 is NNNNNNNN; the character designated by the
774    universal character name \uNNNN is that character whose character
775    short name in ISO/IEC 10646 is 0000NNNN.  If the hexadecimal value
776    for a universal character name is less than 0x20 or in the range
777    0x7F-0x9F (inclusive), or if the universal character name
778    designates a character in the basic source character set, then the
779    program is ill-formed.
780
781    *PSTR must be preceded by "\u" or "\U"; it is assumed that the
782    buffer end is delimited by a non-hex digit.  Returns zero if UCNs
783    are not part of the relevant standard, or if the string beginning
784    at *PSTR doesn't syntactically match the form 'NNNN' or 'NNNNNNNN'.
785
786    Otherwise the nonzero value of the UCN, whether valid or invalid,
787    is returned.  Diagnostics are emitted for invalid values.  PSTR
788    is updated to point one beyond the UCN, or to the syntactically
789    invalid character.
790
791    IDENTIFIER_POS is 0 when not in an identifier, 1 for the start of
792    an identifier, or 2 otherwise.
793 */
794
795 cppchar_t
796 _cpp_valid_ucn (cpp_reader *pfile, const uchar **pstr,
797                 const uchar *limit, int identifier_pos)
798 {
799   cppchar_t result, c;
800   unsigned int length;
801   const uchar *str = *pstr;
802   const uchar *base = str - 2;
803
804   if (!CPP_OPTION (pfile, cplusplus) && !CPP_OPTION (pfile, c99))
805     cpp_error (pfile, DL_WARNING,
806                "universal character names are only valid in C++ and C99");
807   else if (CPP_WTRADITIONAL (pfile) && identifier_pos == 0)
808     cpp_error (pfile, DL_WARNING,
809                "the meaning of '\\%c' is different in traditional C",
810                (int) str[-1]);
811
812   if (str[-1] == 'u')
813     length = 4;
814   else if (str[-1] == 'U')
815     length = 8;
816   else
817     abort();
818
819   result = 0;
820   do
821     {
822       c = *str;
823       if (!ISXDIGIT (c))
824         break;
825       str++;
826       result = (result << 4) + hex_value (c);
827     }
828   while (--length && str < limit);
829
830   *pstr = str;
831   if (length)
832     {
833       /* We'll error when we try it out as the start of an identifier.  */
834       cpp_error (pfile, DL_ERROR, "incomplete universal character name %.*s",
835                  (int) (str - base), base);
836       result = 1;
837     }
838   /* The standard permits $, @ and ` to be specified as UCNs.  We use
839      hex escapes so that this also works with EBCDIC hosts.  */
840   else if ((result < 0xa0
841             && (result != 0x24 && result != 0x40 && result != 0x60))
842            || (result & 0x80000000)
843            || (result >= 0xD800 && result <= 0xDFFF))
844     {
845       cpp_error (pfile, DL_ERROR, "%.*s is not a valid universal character",
846                  (int) (str - base), base);
847       result = 1;
848     }
849   else if (identifier_pos)
850     {
851       int validity = ucn_valid_in_identifier (pfile, result);
852
853       if (validity == 0)
854         cpp_error (pfile, DL_ERROR,
855                    "universal character %.*s is not valid in an identifier",
856                    (int) (str - base), base);
857       else if (validity == 2 && identifier_pos == 1)
858         cpp_error (pfile, DL_ERROR,
859    "universal character %.*s is not valid at the start of an identifier",
860                    (int) (str - base), base);
861     }
862
863   if (result == 0)
864     result = 1;
865
866   return result;
867 }
868
869 /* Convert an UCN, pointed to by FROM, to UTF-8 encoding, then translate
870    it to the execution character set and write the result into TBUF.
871    An advanced pointer is returned.  Issues all relevant diagnostics.  */
872
873
874 static const uchar *
875 convert_ucn (cpp_reader *pfile, const uchar *from, const uchar *limit,
876              struct strbuf *tbuf, bool wide)
877 {
878   cppchar_t ucn;
879   uchar buf[6];
880   uchar *bufp = buf;
881   size_t bytesleft = 6;
882   int rval;
883   struct cset_converter cvt
884     = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
885
886   from++;  /* skip u/U */
887   ucn = _cpp_valid_ucn (pfile, &from, limit, 0);
888
889   rval = one_cppchar_to_utf8 (ucn, &bufp, &bytesleft);
890   if (rval)
891     {
892       errno = rval;
893       cpp_errno (pfile, DL_ERROR, "converting UCN to source character set");
894     }
895   else if (!APPLY_CONVERSION (cvt, buf, 6 - bytesleft, tbuf))
896     cpp_errno (pfile, DL_ERROR, "converting UCN to execution character set");
897
898   return from;
899 }
900
901 static void
902 emit_numeric_escape (cpp_reader *pfile, cppchar_t n,
903                      struct strbuf *tbuf, bool wide)
904 {
905   if (wide)
906     {
907       /* We have to render this into the target byte order, which may not
908          be our byte order.  */
909       bool bigend = CPP_OPTION (pfile, bytes_big_endian);
910       size_t width = CPP_OPTION (pfile, wchar_precision);
911       size_t cwidth = CPP_OPTION (pfile, char_precision);
912       size_t cmask = width_to_mask (cwidth);
913       size_t nbwc = width / cwidth;
914       size_t i;
915       size_t off = tbuf->len;
916       cppchar_t c;
917
918       if (tbuf->len + nbwc > tbuf->asize)
919         {
920           tbuf->asize += OUTBUF_BLOCK_SIZE;
921           tbuf->text = xrealloc (tbuf->text, tbuf->asize);
922         }
923
924       for (i = 0; i < nbwc; i++)
925         {
926           c = n & cmask;
927           n >>= cwidth;
928           tbuf->text[off + (bigend ? nbwc - i - 1 : i)] = c;
929         }
930       tbuf->len += nbwc;
931     }
932   else
933     {
934       if (tbuf->len + 1 > tbuf->asize)
935         {
936           tbuf->asize += OUTBUF_BLOCK_SIZE;
937           tbuf->text = xrealloc (tbuf->text, tbuf->asize);
938         }
939       tbuf->text[tbuf->len++] = n;
940     }
941 }
942
943 /* Convert a hexadecimal escape, pointed to by FROM, to the execution
944    character set and write it into the string buffer TBUF.  Returns an
945    advanced pointer, and issues diagnostics as necessary.
946    No character set translation occurs; this routine always produces the
947    execution-set character with numeric value equal to the given hex
948    number.  You can, e.g. generate surrogate pairs this way.  */
949 static const uchar *
950 convert_hex (cpp_reader *pfile, const uchar *from, const uchar *limit,
951              struct strbuf *tbuf, bool wide)
952 {
953   cppchar_t c, n = 0, overflow = 0;
954   int digits_found = 0;
955   size_t width = (wide ? CPP_OPTION (pfile, wchar_precision)
956                   : CPP_OPTION (pfile, char_precision));
957   size_t mask = width_to_mask (width);
958
959   if (CPP_WTRADITIONAL (pfile))
960     cpp_error (pfile, DL_WARNING,
961                "the meaning of '\\x' is different in traditional C");
962
963   from++;  /* skip 'x' */
964   while (from < limit)
965     {
966       c = *from;
967       if (! hex_p (c))
968         break;
969       from++;
970       overflow |= n ^ (n << 4 >> 4);
971       n = (n << 4) + hex_value (c);
972       digits_found = 1;
973     }
974
975   if (!digits_found)
976     {
977       cpp_error (pfile, DL_ERROR,
978                  "\\x used with no following hex digits");
979       return from;
980     }
981
982   if (overflow | (n != (n & mask)))
983     {
984       cpp_error (pfile, DL_PEDWARN,
985                  "hex escape sequence out of range");
986       n &= mask;
987     }
988
989   emit_numeric_escape (pfile, n, tbuf, wide);
990
991   return from;
992 }
993
994 /* Convert an octal escape, pointed to by FROM, to the execution
995    character set and write it into the string buffer TBUF.  Returns an
996    advanced pointer, and issues diagnostics as necessary.
997    No character set translation occurs; this routine always produces the
998    execution-set character with numeric value equal to the given octal
999    number.  */
1000 static const uchar *
1001 convert_oct (cpp_reader *pfile, const uchar *from, const uchar *limit,
1002              struct strbuf *tbuf, bool wide)
1003 {
1004   size_t count = 0;
1005   cppchar_t c, n = 0;
1006   size_t width = (wide ? CPP_OPTION (pfile, wchar_precision)
1007                   : CPP_OPTION (pfile, char_precision));
1008   size_t mask = width_to_mask (width);
1009   bool overflow = false;
1010
1011   while (from < limit && count++ < 3)
1012     {
1013       c = *from;
1014       if (c < '0' || c > '7')
1015         break;
1016       from++;
1017       overflow |= n ^ (n << 3 >> 3);
1018       n = (n << 3) + c - '0';
1019     }
1020
1021   if (n != (n & mask))
1022     {
1023       cpp_error (pfile, DL_PEDWARN,
1024                  "octal escape sequence out of range");
1025       n &= mask;
1026     }
1027
1028   emit_numeric_escape (pfile, n, tbuf, wide);
1029
1030   return from;
1031 }
1032
1033 /* Convert an escape sequence (pointed to by FROM) to its value on
1034    the target, and to the execution character set.  Do not scan past
1035    LIMIT.  Write the converted value into TBUF.  Returns an advanced
1036    pointer.  Handles all relevant diagnostics.  */
1037 static const uchar *
1038 convert_escape (cpp_reader *pfile, const uchar *from, const uchar *limit,
1039                 struct strbuf *tbuf, bool wide)
1040 {
1041   /* Values of \a \b \e \f \n \r \t \v respectively.  */
1042 #if HOST_CHARSET == HOST_CHARSET_ASCII
1043   static const uchar charconsts[] = {  7,  8, 27, 12, 10, 13,  9, 11 };
1044 #elif HOST_CHARSET == HOST_CHARSET_EBCDIC
1045   static const uchar charconsts[] = { 47, 22, 39, 12, 21, 13,  5, 11 };
1046 #else
1047 #error "unknown host character set"
1048 #endif
1049
1050   uchar c;
1051   struct cset_converter cvt
1052     = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
1053
1054   c = *from;
1055   switch (c)
1056     {
1057       /* UCNs, hex escapes, and octal escapes are processed separately.  */
1058     case 'u': case 'U':
1059       return convert_ucn (pfile, from, limit, tbuf, wide);
1060
1061     case 'x':
1062       return convert_hex (pfile, from, limit, tbuf, wide);
1063       break;
1064
1065     case '0':  case '1':  case '2':  case '3':
1066     case '4':  case '5':  case '6':  case '7':
1067       return convert_oct (pfile, from, limit, tbuf, wide);
1068
1069       /* Various letter escapes.  Get the appropriate host-charset
1070          value into C.  */
1071     case '\\': case '\'': case '"': case '?': break;
1072
1073     case '(': case '{': case '[': case '%':
1074       /* '\(', etc, can be used at the beginning of a line in a long
1075          string split onto multiple lines with \-newline, to prevent
1076          Emacs or other text editors from getting confused.  '\%' can
1077          be used to prevent SCCS from mangling printf format strings.  */
1078       if (CPP_PEDANTIC (pfile))
1079         goto unknown;
1080       break;
1081
1082     case 'b': c = charconsts[1];  break;
1083     case 'f': c = charconsts[3];  break;
1084     case 'n': c = charconsts[4];  break;
1085     case 'r': c = charconsts[5];  break;
1086     case 't': c = charconsts[6];  break;
1087     case 'v': c = charconsts[7];  break;
1088
1089     case 'a':
1090       if (CPP_WTRADITIONAL (pfile))
1091         cpp_error (pfile, DL_WARNING,
1092                    "the meaning of '\\a' is different in traditional C");
1093       c = charconsts[0];
1094       break;
1095
1096     case 'e': case 'E':
1097       if (CPP_PEDANTIC (pfile))
1098         cpp_error (pfile, DL_PEDWARN,
1099                    "non-ISO-standard escape sequence, '\\%c'", (int) c);
1100       c = charconsts[2];
1101       break;
1102
1103     default:
1104     unknown:
1105       if (ISGRAPH (c))
1106         cpp_error (pfile, DL_PEDWARN,
1107                    "unknown escape sequence '\\%c'", (int) c);
1108       else
1109         cpp_error (pfile, DL_PEDWARN,
1110                    "unknown escape sequence: '\\%03o'", (int) c);
1111     }
1112
1113   /* Now convert what we have to the execution character set.  */
1114   if (!APPLY_CONVERSION (cvt, &c, 1, tbuf))
1115     cpp_errno (pfile, DL_ERROR,
1116                "converting escape sequence to execution character set");
1117
1118   return from + 1;
1119 }
1120 \f
1121 /* FROM is an array of cpp_string structures of length COUNT.  These
1122    are to be converted from the source to the execution character set,
1123    escape sequences translated, and finally all are to be
1124    concatenated.  WIDE indicates whether or not to produce a wide
1125    string.  The result is written into TO.  Returns true for success,
1126    false for failure.  */
1127 bool
1128 cpp_interpret_string (cpp_reader *pfile, const cpp_string *from, size_t count,
1129                       cpp_string *to, bool wide)
1130 {
1131   struct strbuf tbuf;
1132   const uchar *p, *base, *limit;
1133   size_t i;
1134   struct cset_converter cvt
1135     = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
1136
1137   tbuf.asize = MAX (OUTBUF_BLOCK_SIZE, from->len);
1138   tbuf.text = xmalloc (tbuf.asize);
1139   tbuf.len = 0;
1140
1141   for (i = 0; i < count; i++)
1142     {
1143       p = from[i].text;
1144       if (*p == 'L') p++;
1145       p++; /* skip leading quote */
1146       limit = from[i].text + from[i].len - 1; /* skip trailing quote */
1147
1148       for (;;)
1149         {
1150           base = p;
1151           while (p < limit && *p != '\\')
1152             p++;
1153           if (p > base)
1154             {
1155               /* We have a run of normal characters; these can be fed
1156                  directly to convert_cset.  */
1157               if (!APPLY_CONVERSION (cvt, base, p - base, &tbuf))
1158                 goto fail;
1159             }
1160           if (p == limit)
1161             break;
1162
1163           p = convert_escape (pfile, p + 1, limit, &tbuf, wide);
1164         }
1165     }
1166   /* NUL-terminate the 'to' buffer and translate it to a cpp_string
1167      structure.  */
1168   emit_numeric_escape (pfile, 0, &tbuf, wide);
1169   tbuf.text = xrealloc (tbuf.text, tbuf.len);
1170   to->text = tbuf.text;
1171   to->len = tbuf.len;
1172   return true;
1173
1174  fail:
1175   cpp_errno (pfile, DL_ERROR, "converting to execution character set");
1176   free (tbuf.text);
1177   return false;
1178 }
1179
1180 /* Subroutine of do_line and do_linemarker.  Convert escape sequences
1181    in a string, but do not perform character set conversion.  */
1182 bool
1183 _cpp_interpret_string_notranslate (cpp_reader *pfile, const cpp_string *in,
1184                                    cpp_string *out)
1185 {
1186   struct cset_converter save_narrow_cset_desc = pfile->narrow_cset_desc;
1187   bool retval;
1188
1189   pfile->narrow_cset_desc.func = convert_no_conversion;
1190   pfile->narrow_cset_desc.cd = (iconv_t) -1;
1191
1192   retval = cpp_interpret_string (pfile, in, 1, out, false);
1193
1194   pfile->narrow_cset_desc = save_narrow_cset_desc;
1195   return retval;
1196 }
1197
1198 \f
1199 /* Subroutine of cpp_interpret_charconst which performs the conversion
1200    to a number, for narrow strings.  STR is the string structure returned
1201    by cpp_interpret_string.  PCHARS_SEEN and UNSIGNEDP are as for
1202    cpp_interpret_charconst.  */
1203 static cppchar_t
1204 narrow_str_to_charconst (cpp_reader *pfile, cpp_string str,
1205                          unsigned int *pchars_seen, int *unsignedp)
1206 {
1207   size_t width = CPP_OPTION (pfile, char_precision);
1208   size_t max_chars = CPP_OPTION (pfile, int_precision) / width;
1209   size_t mask = width_to_mask (width);
1210   size_t i;
1211   cppchar_t result, c;
1212   bool unsigned_p;
1213
1214   /* The value of a multi-character character constant, or a
1215      single-character character constant whose representation in the
1216      execution character set is more than one byte long, is
1217      implementation defined.  This implementation defines it to be the
1218      number formed by interpreting the byte sequence in memory as a
1219      big-endian binary number.  If overflow occurs, the high bytes are
1220      lost, and a warning is issued.
1221
1222      We don't want to process the NUL terminator handed back by
1223      cpp_interpret_string.  */
1224   result = 0;
1225   for (i = 0; i < str.len - 1; i++)
1226     {
1227       c = str.text[i] & mask;
1228       if (width < BITS_PER_CPPCHAR_T)
1229         result = (result << width) | c;
1230       else
1231         result = c;
1232     }
1233
1234   if (i > max_chars)
1235     {
1236       i = max_chars;
1237       cpp_error (pfile, DL_WARNING, "character constant too long for its type");
1238     }
1239   else if (i > 1 && CPP_OPTION (pfile, warn_multichar))
1240     cpp_error (pfile, DL_WARNING, "multi-character character constant");
1241
1242   /* Multichar constants are of type int and therefore signed.  */
1243   if (i > 1)
1244     unsigned_p = 0;
1245   else
1246     unsigned_p = CPP_OPTION (pfile, unsigned_char);
1247
1248   /* Truncate the constant to its natural width, and simultaneously
1249      sign- or zero-extend to the full width of cppchar_t.
1250      For single-character constants, the value is WIDTH bits wide.
1251      For multi-character constants, the value is INT_PRECISION bits wide.  */
1252   if (i > 1)
1253     width = CPP_OPTION (pfile, int_precision);
1254   if (width < BITS_PER_CPPCHAR_T)
1255     {
1256       mask = ((cppchar_t) 1 << width) - 1;
1257       if (unsigned_p || !(result & (1 << (width - 1))))
1258         result &= mask;
1259       else
1260         result |= ~mask;
1261     }
1262   *pchars_seen = i;
1263   *unsignedp = unsigned_p;
1264   return result;
1265 }
1266                          
1267 /* Subroutine of cpp_interpret_charconst which performs the conversion
1268    to a number, for wide strings.  STR is the string structure returned
1269    by cpp_interpret_string.  PCHARS_SEEN and UNSIGNEDP are as for
1270    cpp_interpret_charconst.  */
1271 static cppchar_t
1272 wide_str_to_charconst (cpp_reader *pfile, cpp_string str,
1273                        unsigned int *pchars_seen, int *unsignedp)
1274 {
1275   bool bigend = CPP_OPTION (pfile, bytes_big_endian);
1276   size_t width = CPP_OPTION (pfile, wchar_precision);
1277   size_t cwidth = CPP_OPTION (pfile, char_precision);
1278   size_t mask = width_to_mask (width);
1279   size_t cmask = width_to_mask (cwidth);
1280   size_t nbwc = width / cwidth;
1281   size_t off, i;
1282   cppchar_t result = 0, c;
1283
1284   /* This is finicky because the string is in the target's byte order,
1285      which may not be our byte order.  Only the last character, ignoring
1286      the NUL terminator, is relevant.  */
1287   off = str.len - (nbwc * 2);
1288   result = 0;
1289   for (i = 0; i < nbwc; i++)
1290     {
1291       c = bigend ? str.text[off + i] : str.text[off + nbwc - i - 1];
1292       result = (result << cwidth) | (c & cmask);
1293     }
1294
1295   /* Wide character constants have type wchar_t, and a single
1296      character exactly fills a wchar_t, so a multi-character wide
1297      character constant is guaranteed to overflow.  */
1298   if (off > 0)
1299     cpp_error (pfile, DL_WARNING, "character constant too long for its type");
1300
1301   /* Truncate the constant to its natural width, and simultaneously
1302      sign- or zero-extend to the full width of cppchar_t.  */
1303   if (width < BITS_PER_CPPCHAR_T)
1304     {
1305       if (CPP_OPTION (pfile, unsigned_wchar) || !(result & (1 << (width - 1))))
1306         result &= mask;
1307       else
1308         result |= ~mask;
1309     }
1310
1311   *unsignedp = CPP_OPTION (pfile, unsigned_wchar);
1312   *pchars_seen = 1;
1313   return result;
1314 }
1315
1316 /* Interpret a (possibly wide) character constant in TOKEN.
1317    PCHARS_SEEN points to a variable that is filled in with the number
1318    of characters seen, and UNSIGNEDP to a variable that indicates
1319    whether the result has signed type.  */
1320 cppchar_t
1321 cpp_interpret_charconst (cpp_reader *pfile, const cpp_token *token,
1322                          unsigned int *pchars_seen, int *unsignedp)
1323 {
1324   cpp_string str = { 0, 0 };
1325   bool wide = (token->type == CPP_WCHAR);
1326   cppchar_t result;
1327
1328   /* an empty constant will appear as L'' or '' */
1329   if (token->val.str.len == (size_t) (2 + wide))
1330     {
1331       cpp_error (pfile, DL_ERROR, "empty character constant");
1332       return 0;
1333     }
1334   else if (!cpp_interpret_string (pfile, &token->val.str, 1, &str, wide))
1335     return 0;
1336
1337   if (wide)
1338     result = wide_str_to_charconst (pfile, str, pchars_seen, unsignedp);
1339   else
1340     result = narrow_str_to_charconst (pfile, str, pchars_seen, unsignedp);
1341
1342   if (str.text != token->val.str.text)
1343     free ((void *)str.text);
1344
1345   return result;
1346 }