Incorrect x86 CPU family and model check.
[glibc.git] / iconvdata / euc-jisx0213.c
blobe7a955441639a9fcc15792a878a60d71fa89ca79
1 /* Conversion from and to EUC-JISX0213.
2 Copyright (C) 2002, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Bruno Haible <bruno@clisp.org>, 2002.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <dlfcn.h>
22 #include <stdint.h>
23 #include <gconv.h>
25 /* The structure of EUC-JISX0213 is as follows:
27 0x00..0x7F: ASCII
29 0x8E{A1..FE}: JISX0201 Katakana, with prefix 0x8E, offset by +0x80.
31 0x8F{A1..FE}{A1..FE}: JISX0213 plane 2, with prefix 0x8F, offset by +0x8080.
33 0x{A1..FE}{A1..FE}: JISX0213 plane 1, offset by +0x8080.
35 Note that some JISX0213 characters are not contained in Unicode 3.2
36 and are therefore best represented as sequences of Unicode characters.
39 #include "jisx0213.h"
41 /* Definitions used in the body of the `gconv' function. */
42 #define CHARSET_NAME "EUC-JISX0213//"
43 #define FROM_LOOP from_euc_jisx0213
44 #define TO_LOOP to_euc_jisx0213
45 #define DEFINE_INIT 1
46 #define DEFINE_FINI 1
47 #define FROM_LOOP_MIN_NEEDED_FROM 1
48 #define FROM_LOOP_MAX_NEEDED_FROM 3
49 #define FROM_LOOP_MIN_NEEDED_TO 4
50 #define FROM_LOOP_MAX_NEEDED_TO 8
51 #define TO_LOOP_MIN_NEEDED_FROM 4
52 #define TO_LOOP_MAX_NEEDED_FROM 4
53 #define TO_LOOP_MIN_NEEDED_TO 1
54 #define TO_LOOP_MAX_NEEDED_TO 3
55 #define PREPARE_LOOP \
56 int saved_state; \
57 int *statep = &data->__statep->__count;
58 #define EXTRA_LOOP_ARGS , statep
61 /* Since we might have to reset input pointer we must be able to save
62 and restore the state. */
63 #define SAVE_RESET_STATE(Save) \
64 if (Save) \
65 saved_state = *statep; \
66 else \
67 *statep = saved_state
70 /* During EUC-JISX0213 to UCS-4 conversion, the COUNT element of the state
71 contains the last UCS-4 character, shifted by 3 bits.
72 During UCS-4 to EUC-JISX0213 conversion, the COUNT element of the state
73 contains the last two bytes to be output, shifted by 3 bits. */
75 /* Since this is a stateful encoding we have to provide code which resets
76 the output state to the initial state. This has to be done during the
77 flushing. */
78 #define EMIT_SHIFT_TO_INIT \
79 if (data->__statep->__count != 0) \
80 { \
81 if (FROM_DIRECTION) \
82 { \
83 if (__builtin_expect (outbuf + 4 <= outend, 1)) \
84 { \
85 /* Write out the last character. */ \
86 *((uint32_t *) outbuf) = data->__statep->__count >> 3; \
87 outbuf += sizeof (uint32_t); \
88 data->__statep->__count = 0; \
89 } \
90 else \
91 /* We don't have enough room in the output buffer. */ \
92 status = __GCONV_FULL_OUTPUT; \
93 } \
94 else \
95 { \
96 if (__builtin_expect (outbuf + 2 <= outend, 1)) \
97 { \
98 /* Write out the last character. */ \
99 uint32_t lasttwo = data->__statep->__count >> 3; \
100 *outbuf++ = (lasttwo >> 8) & 0xff; \
101 *outbuf++ = lasttwo & 0xff; \
102 data->__statep->__count = 0; \
104 else \
105 /* We don't have enough room in the output buffer. */ \
106 status = __GCONV_FULL_OUTPUT; \
111 /* First define the conversion function from EUC-JISX0213 to UCS-4. */
112 #define MIN_NEEDED_INPUT FROM_LOOP_MIN_NEEDED_FROM
113 #define MAX_NEEDED_INPUT FROM_LOOP_MAX_NEEDED_FROM
114 #define MIN_NEEDED_OUTPUT FROM_LOOP_MIN_NEEDED_TO
115 #define MAX_NEEDED_OUTPUT FROM_LOOP_MAX_NEEDED_TO
116 #define LOOPFCT FROM_LOOP
117 #define BODY \
119 uint32_t ch; \
121 /* Determine whether there is a buffered character pending. */ \
122 ch = *statep >> 3; \
123 if (__builtin_expect (ch == 0, 1)) \
125 /* No - so look at the next input byte. */ \
126 ch = *inptr; \
128 if (ch < 0x80) \
129 /* Plain ASCII character. */ \
130 ++inptr; \
131 else if ((ch >= 0xa1 && ch <= 0xfe) || ch == 0x8e || ch == 0x8f) \
133 /* Two or three byte character. */ \
134 uint32_t ch2; \
136 if (__builtin_expect (inptr + 1 >= inend, 0)) \
138 /* The second byte is not available. */ \
139 result = __GCONV_INCOMPLETE_INPUT; \
140 break; \
143 ch2 = inptr[1]; \
145 /* The second byte must be >= 0xa1 and <= 0xfe. */ \
146 if (__builtin_expect (ch2 < 0xa1 || ch2 > 0xfe, 0)) \
148 /* This is an illegal character. */ \
149 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
152 if (ch == 0x8e) \
154 /* Half-width katakana. */ \
155 if (__builtin_expect (ch2 > 0xdf, 0)) \
156 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
158 ch = ch2 + 0xfec0; \
159 inptr += 2; \
161 else \
163 const unsigned char *endp; \
165 if (ch == 0x8f) \
167 /* JISX 0213 plane 2. */ \
168 uint32_t ch3; \
170 if (__builtin_expect (inptr + 2 >= inend, 0)) \
172 /* The third byte is not available. */ \
173 result = __GCONV_INCOMPLETE_INPUT; \
174 break; \
177 ch3 = inptr[2]; \
178 endp = inptr + 3; \
180 ch = jisx0213_to_ucs4 (0x200 - 0x80 + ch2, ch3 ^ 0x80); \
182 else \
184 /* JISX 0213 plane 1. */ \
185 endp = inptr + 2; \
187 ch = jisx0213_to_ucs4 (0x100 - 0x80 + ch, ch2 ^ 0x80); \
190 if (ch == 0) \
191 /* This is an illegal character. */ \
192 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
194 inptr = endp; \
196 if (ch < 0x80) \
198 /* It's a combining character. */ \
199 uint32_t u1 = __jisx0213_to_ucs_combining[ch - 1][0]; \
200 uint32_t u2 = __jisx0213_to_ucs_combining[ch - 1][1]; \
202 put32 (outptr, u1); \
203 outptr += 4; \
205 /* See whether we have room for two characters. */ \
206 if (outptr + 4 <= outend) \
208 put32 (outptr, u2); \
209 outptr += 4; \
210 continue; \
213 /* Otherwise store only the first character now, and \
214 put the second one into the queue. */ \
215 *statep = u2 << 3; \
216 /* Tell the caller why we terminate the loop. */ \
217 result = __GCONV_FULL_OUTPUT; \
218 break; \
222 else \
224 /* This is illegal. */ \
225 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
229 put32 (outptr, ch); \
230 outptr += 4; \
232 #define LOOP_NEED_FLAGS
233 #define EXTRA_LOOP_DECLS , int *statep
234 #define ONEBYTE_BODY \
236 if (c < 0x80) \
237 return c; \
238 else \
239 return WEOF; \
241 #include <iconv/loop.c>
244 /* Next, define the other direction, from UCS-4 to EUC-JISX0213. */
246 /* Composition tables for each of the relevant combining characters. */
247 static const struct
249 uint16_t base;
250 uint16_t composed;
251 } comp_table_data[] =
253 #define COMP_TABLE_IDX_02E5 0
254 #define COMP_TABLE_LEN_02E5 1
255 { 0xabe4, 0xabe5 }, /* 0x12B65 = 0x12B64 U+02E5 */
256 #define COMP_TABLE_IDX_02E9 (COMP_TABLE_IDX_02E5 + COMP_TABLE_LEN_02E5)
257 #define COMP_TABLE_LEN_02E9 1
258 { 0xabe0, 0xabe6 }, /* 0x12B66 = 0x12B60 U+02E9 */
259 #define COMP_TABLE_IDX_0300 (COMP_TABLE_IDX_02E9 + COMP_TABLE_LEN_02E9)
260 #define COMP_TABLE_LEN_0300 5
261 { 0xa9dc, 0xabc4 }, /* 0x12B44 = 0x1295C U+0300 */
262 { 0xabb8, 0xabc8 }, /* 0x12B48 = 0x12B38 U+0300 */
263 { 0xabb7, 0xabca }, /* 0x12B4A = 0x12B37 U+0300 */
264 { 0xabb0, 0xabcc }, /* 0x12B4C = 0x12B30 U+0300 */
265 { 0xabc3, 0xabce }, /* 0x12B4E = 0x12B43 U+0300 */
266 #define COMP_TABLE_IDX_0301 (COMP_TABLE_IDX_0300 + COMP_TABLE_LEN_0300)
267 #define COMP_TABLE_LEN_0301 4
268 { 0xabb8, 0xabc9 }, /* 0x12B49 = 0x12B38 U+0301 */
269 { 0xabb7, 0xabcb }, /* 0x12B4B = 0x12B37 U+0301 */
270 { 0xabb0, 0xabcd }, /* 0x12B4D = 0x12B30 U+0301 */
271 { 0xabc3, 0xabcf }, /* 0x12B4F = 0x12B43 U+0301 */
272 #define COMP_TABLE_IDX_309A (COMP_TABLE_IDX_0301 + COMP_TABLE_LEN_0301)
273 #define COMP_TABLE_LEN_309A 14
274 { 0xa4ab, 0xa4f7 }, /* 0x12477 = 0x1242B U+309A */
275 { 0xa4ad, 0xa4f8 }, /* 0x12478 = 0x1242D U+309A */
276 { 0xa4af, 0xa4f9 }, /* 0x12479 = 0x1242F U+309A */
277 { 0xa4b1, 0xa4fa }, /* 0x1247A = 0x12431 U+309A */
278 { 0xa4b3, 0xa4fb }, /* 0x1247B = 0x12433 U+309A */
279 { 0xa5ab, 0xa5f7 }, /* 0x12577 = 0x1252B U+309A */
280 { 0xa5ad, 0xa5f8 }, /* 0x12578 = 0x1252D U+309A */
281 { 0xa5af, 0xa5f9 }, /* 0x12579 = 0x1252F U+309A */
282 { 0xa5b1, 0xa5fa }, /* 0x1257A = 0x12531 U+309A */
283 { 0xa5b3, 0xa5fb }, /* 0x1257B = 0x12533 U+309A */
284 { 0xa5bb, 0xa5fc }, /* 0x1257C = 0x1253B U+309A */
285 { 0xa5c4, 0xa5fd }, /* 0x1257D = 0x12544 U+309A */
286 { 0xa5c8, 0xa5fe }, /* 0x1257E = 0x12548 U+309A */
287 { 0xa6f5, 0xa6f8 }, /* 0x12678 = 0x12675 U+309A */
290 #define MIN_NEEDED_INPUT TO_LOOP_MIN_NEEDED_FROM
291 #define MAX_NEEDED_INPUT TO_LOOP_MAX_NEEDED_FROM
292 #define MIN_NEEDED_OUTPUT TO_LOOP_MIN_NEEDED_TO
293 #define MAX_NEEDED_OUTPUT TO_LOOP_MAX_NEEDED_TO
294 #define LOOPFCT TO_LOOP
295 #define BODY \
297 uint32_t ch = get32 (inptr); \
299 if ((*statep >> 3) != 0) \
301 /* Attempt to combine the last character with this one. */ \
302 uint16_t lasttwo = *statep >> 3; \
303 unsigned int idx; \
304 unsigned int len; \
306 if (ch == 0x02e5) \
307 idx = COMP_TABLE_IDX_02E5, len = COMP_TABLE_LEN_02E5; \
308 else if (ch == 0x02e9) \
309 idx = COMP_TABLE_IDX_02E9, len = COMP_TABLE_LEN_02E9; \
310 else if (ch == 0x0300) \
311 idx = COMP_TABLE_IDX_0300, len = COMP_TABLE_LEN_0300; \
312 else if (ch == 0x0301) \
313 idx = COMP_TABLE_IDX_0301, len = COMP_TABLE_LEN_0301; \
314 else if (ch == 0x309a) \
315 idx = COMP_TABLE_IDX_309A, len = COMP_TABLE_LEN_309A; \
316 else \
317 goto not_combining; \
319 do \
320 if (comp_table_data[idx].base == lasttwo) \
321 break; \
322 while (++idx, --len > 0); \
324 if (len > 0) \
326 /* Output the combined character. */ \
327 if (__builtin_expect (outptr + 1 >= outend, 0)) \
329 result = __GCONV_FULL_OUTPUT; \
330 break; \
332 lasttwo = comp_table_data[idx].composed; \
333 *outptr++ = (lasttwo >> 8) & 0xff; \
334 *outptr++ = lasttwo & 0xff; \
335 *statep = 0; \
336 inptr += 4; \
337 continue; \
340 not_combining: \
341 /* Output the buffered character. */ \
342 if (__builtin_expect (outptr + 1 >= outend, 0)) \
344 result = __GCONV_FULL_OUTPUT; \
345 break; \
347 *outptr++ = (lasttwo >> 8) & 0xff; \
348 *outptr++ = lasttwo & 0xff; \
349 *statep = 0; \
350 continue; \
353 if (ch < 0x80) \
354 /* Plain ASCII character. */ \
355 *outptr++ = ch; \
356 else if (ch >= 0xff61 && ch <= 0xff9f) \
358 /* Half-width katakana. */ \
359 if (__builtin_expect (outptr + 1 >= outend, 0)) \
361 result = __GCONV_FULL_OUTPUT; \
362 break; \
364 *outptr++ = 0x8e; \
365 *outptr++ = ch - 0xfec0; \
367 else \
369 uint32_t jch = ucs4_to_jisx0213 (ch); \
370 if (jch == 0) \
372 UNICODE_TAG_HANDLER (ch, 4); \
374 /* Illegal character. */ \
375 STANDARD_TO_LOOP_ERR_HANDLER (4); \
378 if (jch & 0x0080) \
380 /* A possible match in comp_table_data. We have to buffer it. */\
382 /* We know it's a JISX 0213 plane 1 character. */ \
383 assert ((jch & 0x8000) == 0); \
385 *statep = (jch | 0x8080) << 3; \
386 inptr += 4; \
387 continue; \
390 if (jch & 0x8000) \
392 /* JISX 0213 plane 2. */ \
393 if (__builtin_expect (outptr + 2 >= outend, 0)) \
395 result = __GCONV_FULL_OUTPUT; \
396 break; \
398 *outptr++ = 0x8f; \
400 else \
402 /* JISX 0213 plane 1. */ \
403 if (__builtin_expect (outptr + 1 >= outend, 0)) \
405 result = __GCONV_FULL_OUTPUT; \
406 break; \
409 *outptr++ = (jch >> 8) | 0x80; \
410 *outptr++ = (jch & 0xff) | 0x80; \
413 inptr += 4; \
415 #define LOOP_NEED_FLAGS
416 #define EXTRA_LOOP_DECLS , int *statep
417 #include <iconv/loop.c>
420 /* Now define the toplevel functions. */
421 #include <iconv/skeleton.c>