OSDN Git Service

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