1 /* Conversion between UTF-8 and UTF-16 - s390 version.
3 This module uses the Z9-109 variants of the Convert Unicode
5 Copyright (C) 1997-2017 Free Software Foundation, Inc.
7 Author: Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
8 Based on the work by Ulrich Drepper <drepper@cygnus.com>, 1997.
10 Thanks to Daniel Appich who covered the relevant performance work
11 in his diploma thesis.
13 This is free software; you can redistribute it and/or
14 modify it under the terms of the GNU Lesser General Public
15 License as published by the Free Software Foundation; either
16 version 2.1 of the License, or (at your option) any later version.
18 This is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 Lesser General Public License for more details.
23 You should have received a copy of the GNU Lesser General Public
24 License along with the GNU C Library; if not, see
25 <http://www.gnu.org/licenses/>. */
33 /* Select which versions should be defined depending on support
34 for multiarch, vector and used minimum architecture level. */
35 #ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
36 # define HAVE_FROM_C 0
37 # define FROM_LOOP_DEFAULT FROM_LOOP_CU
39 # define HAVE_FROM_C 1
40 # define FROM_LOOP_DEFAULT FROM_LOOP_C
44 #define TO_LOOP_DEFAULT TO_LOOP_C
46 #if defined HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT || defined USE_MULTIARCH
47 # define HAVE_FROM_CU 1
49 # define HAVE_FROM_CU 0
52 #if defined HAVE_S390_VX_ASM_SUPPORT && defined USE_MULTIARCH
53 # define HAVE_FROM_VX 1
55 # define HAVE_TO_VX_CU 1
57 # define HAVE_FROM_VX 0
59 # define HAVE_TO_VX_CU 0
62 #if defined HAVE_S390_VX_GCC_SUPPORT
63 # define ASM_CLOBBER_VR(NR) , NR
65 # define ASM_CLOBBER_VR(NR)
69 # define CONVERT_32BIT_SIZE_T(REG)
71 # define CONVERT_32BIT_SIZE_T(REG) "llgfr %" #REG ",%" #REG "\n\t"
74 /* Defines for skeleton.c. */
77 #define MIN_NEEDED_FROM 1
78 #define MAX_NEEDED_FROM 4
79 #define MIN_NEEDED_TO 2
80 #define MAX_NEEDED_TO 4
81 #define FROM_LOOP FROM_LOOP_DEFAULT
82 #define TO_LOOP TO_LOOP_DEFAULT
83 #define FROM_DIRECTION (dir == from_utf8)
84 #define ONE_DIRECTION 0
87 /* UTF-16 big endian byte order mark. */
88 #define BOM_UTF16 0xfeff
90 /* Direction of the transformation. */
105 extern int gconv_init (struct __gconv_step
*step
);
107 gconv_init (struct __gconv_step
*step
)
109 /* Determine which direction. */
110 struct utf8_data
*new_data
;
111 enum direction dir
= illegal_dir
;
115 emit_bom
= (__strcasecmp (step
->__to_name
, "UTF-16//") == 0);
117 if (__strcasecmp (step
->__from_name
, "ISO-10646/UTF8/") == 0
118 && (__strcasecmp (step
->__to_name
, "UTF-16//") == 0
119 || __strcasecmp (step
->__to_name
, "UTF-16BE//") == 0))
123 else if (__strcasecmp (step
->__from_name
, "UTF-16BE//") == 0
124 && __strcasecmp (step
->__to_name
, "ISO-10646/UTF8/") == 0)
129 result
= __GCONV_NOCONV
;
130 if (dir
!= illegal_dir
)
132 new_data
= (struct utf8_data
*) malloc (sizeof (struct utf8_data
));
134 result
= __GCONV_NOMEM
;
135 if (new_data
!= NULL
)
138 new_data
->emit_bom
= emit_bom
;
139 step
->__data
= new_data
;
141 if (dir
== from_utf8
)
143 step
->__min_needed_from
= MIN_NEEDED_FROM
;
144 step
->__max_needed_from
= MIN_NEEDED_FROM
;
145 step
->__min_needed_to
= MIN_NEEDED_TO
;
146 step
->__max_needed_to
= MIN_NEEDED_TO
;
150 step
->__min_needed_from
= MIN_NEEDED_TO
;
151 step
->__max_needed_from
= MIN_NEEDED_TO
;
152 step
->__min_needed_to
= MIN_NEEDED_FROM
;
153 step
->__max_needed_to
= MIN_NEEDED_FROM
;
156 step
->__stateful
= 0;
166 extern void gconv_end (struct __gconv_step
*data
);
168 gconv_end (struct __gconv_step
*data
)
173 /* The macro for the hardware loop. This is used for both
175 #define HARDWARE_CONVERT(INSTRUCTION) \
177 register const unsigned char* pInput __asm__ ("8") = inptr; \
178 register size_t inlen __asm__ ("9") = inend - inptr; \
179 register unsigned char* pOutput __asm__ ("10") = outptr; \
180 register size_t outlen __asm__("11") = outend - outptr; \
181 unsigned long cc = 0; \
183 __asm__ __volatile__ (".machine push \n\t" \
184 ".machine \"z9-109\" \n\t" \
185 ".machinemode \"zarch_nohighgprs\"\n\t" \
186 "0: " INSTRUCTION " \n\t" \
187 ".machine pop \n\t" \
190 : "+a" (pOutput), "+a" (pInput), "+d" (cc), \
191 "+d" (outlen), "+d" (inlen) \
201 result = __GCONV_FULL_OUTPUT; \
205 result = __GCONV_ILLEGAL_INPUT; \
209 #define PREPARE_LOOP \
210 enum direction dir = ((struct utf8_data *) step->__data)->dir; \
211 int emit_bom = ((struct utf8_data *) step->__data)->emit_bom; \
213 if (emit_bom && !data->__internal_use \
214 && data->__invocation_counter == 0) \
216 /* Emit the UTF-16 Byte Order Mark. */ \
217 if (__glibc_unlikely (outbuf + 2 > outend)) \
218 return __GCONV_FULL_OUTPUT; \
220 put16u (outbuf, BOM_UTF16); \
224 /* Conversion function from UTF-8 to UTF-16. */
225 #define BODY_FROM_HW(ASM) \
228 if (__glibc_likely (inptr == inend) \
229 || result == __GCONV_FULL_OUTPUT) \
233 for (i = 1; inptr + i < inend && i < 5; ++i) \
234 if ((inptr[i] & 0xc0) != 0x80) \
237 if (__glibc_likely (inptr + i == inend \
238 && result == __GCONV_EMPTY_INPUT)) \
240 result = __GCONV_INCOMPLETE_INPUT; \
243 STANDARD_FROM_LOOP_ERR_HANDLER (i); \
246 #if HAVE_FROM_VX == 1
247 # define HW_FROM_VX \
249 register const unsigned char* pInput asm ("8") = inptr; \
250 register size_t inlen asm ("9") = inend - inptr; \
251 register unsigned char* pOutput asm ("10") = outptr; \
252 register size_t outlen asm("11") = outend - outptr; \
253 unsigned long tmp, tmp2, tmp3; \
254 asm volatile (".machine push\n\t" \
255 ".machine \"z13\"\n\t" \
256 ".machinemode \"zarch_nohighgprs\"\n\t" \
257 " vrepib %%v30,0x7f\n\t" /* For compare > 0x7f. */ \
258 " vrepib %%v31,0x20\n\t" \
259 CONVERT_32BIT_SIZE_T ([R_INLEN]) \
260 CONVERT_32BIT_SIZE_T ([R_OUTLEN]) \
261 /* Loop which handles UTF-8 chars <=0x7f. */ \
262 "0: clgijl %[R_INLEN],16,20f\n\t" \
263 " clgijl %[R_OUTLEN],32,20f\n\t" \
264 "1: vl %%v16,0(%[R_IN])\n\t" \
265 " vstrcbs %%v17,%%v16,%%v30,%%v31\n\t" \
266 " jno 10f\n\t" /* Jump away if not all bytes are 1byte \
268 /* Enlarge to UTF-16. */ \
269 " vuplhb %%v18,%%v16\n\t" \
270 " la %[R_IN],16(%[R_IN])\n\t" \
271 " vupllb %%v19,%%v16\n\t" \
272 " aghi %[R_INLEN],-16\n\t" \
273 /* Store 32 bytes to buf_out. */ \
274 " vstm %%v18,%%v19,0(%[R_OUT])\n\t" \
275 " aghi %[R_OUTLEN],-32\n\t" \
276 " la %[R_OUT],32(%[R_OUT])\n\t" \
277 " clgijl %[R_INLEN],16,20f\n\t" \
278 " clgijl %[R_OUTLEN],32,20f\n\t" \
281 /* At least one byte is > 0x7f. \
282 Store the preceding 1-byte chars. */ \
283 " vlgvb %[R_TMP],%%v17,7\n\t" \
284 " sllk %[R_TMP2],%[R_TMP],1\n\t" /* Compute highest \
286 " llgfr %[R_TMP3],%[R_TMP2]\n\t" \
287 " ahi %[R_TMP2],-1\n\t" \
289 " vuplhb %%v18,%%v16\n\t" \
290 " vstl %%v18,%[R_TMP2],0(%[R_OUT])\n\t" \
291 " ahi %[R_TMP2],-16\n\t" \
293 " vupllb %%v19,%%v16\n\t" \
294 " vstl %%v19,%[R_TMP2],16(%[R_OUT])\n\t" \
295 "11: \n\t" /* Update pointers. */ \
296 " la %[R_IN],0(%[R_TMP],%[R_IN])\n\t" \
297 " slgr %[R_INLEN],%[R_TMP]\n\t" \
298 " la %[R_OUT],0(%[R_TMP3],%[R_OUT])\n\t" \
299 " slgr %[R_OUTLEN],%[R_TMP3]\n\t" \
300 /* Handle multibyte utf8-char with convert instruction. */ \
301 "20: cu12 %[R_OUT],%[R_IN],1\n\t" \
302 " jo 0b\n\t" /* Try vector implemenation again. */ \
303 " lochil %[R_RES],%[RES_OUT_FULL]\n\t" /* cc == 1. */ \
304 " lochih %[R_RES],%[RES_IN_ILL]\n\t" /* cc == 2. */ \
306 : /* outputs */ [R_IN] "+a" (pInput) \
307 , [R_INLEN] "+d" (inlen), [R_OUT] "+a" (pOutput) \
308 , [R_OUTLEN] "+d" (outlen), [R_TMP] "=a" (tmp) \
309 , [R_TMP2] "=d" (tmp2), [R_TMP3] "=a" (tmp3) \
310 , [R_RES] "+d" (result) \
312 [RES_OUT_FULL] "i" (__GCONV_FULL_OUTPUT) \
313 , [RES_IN_ILL] "i" (__GCONV_ILLEGAL_INPUT) \
314 : /* clobber list */ "memory", "cc" \
315 ASM_CLOBBER_VR ("v16") ASM_CLOBBER_VR ("v17") \
316 ASM_CLOBBER_VR ("v18") ASM_CLOBBER_VR ("v19") \
317 ASM_CLOBBER_VR ("v30") ASM_CLOBBER_VR ("v31") \
322 # define BODY_FROM_VX BODY_FROM_HW (HW_FROM_VX)
324 /* Generate loop-function with hardware vector and utf-convert instructions. */
325 # define MIN_NEEDED_INPUT MIN_NEEDED_FROM
326 # define MAX_NEEDED_INPUT MAX_NEEDED_FROM
327 # define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
328 # define MAX_NEEDED_OUTPUT MAX_NEEDED_TO
329 # define FROM_LOOP_VX __from_utf8_loop_vx
330 # define LOOPFCT FROM_LOOP_VX
331 # define LOOP_NEED_FLAGS
332 # define BODY BODY_FROM_VX
333 # include <iconv/loop.c>
335 # define FROM_LOOP_VX NULL
336 #endif /* HAVE_FROM_VX != 1 */
338 #if HAVE_FROM_CU == 1
339 # define BODY_FROM_ETF3EH BODY_FROM_HW (HARDWARE_CONVERT ("cu12 %0, %1, 1"))
341 /* Generate loop-function with hardware utf-convert instruction. */
342 # define MIN_NEEDED_INPUT MIN_NEEDED_FROM
343 # define MAX_NEEDED_INPUT MAX_NEEDED_FROM
344 # define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
345 # define MAX_NEEDED_OUTPUT MAX_NEEDED_TO
346 # define FROM_LOOP_CU __from_utf8_loop_etf3eh
347 # define LOOPFCT FROM_LOOP_CU
348 # define LOOP_NEED_FLAGS
349 # define BODY BODY_FROM_ETF3EH
350 # include <iconv/loop.c>
352 # define FROM_LOOP_CU NULL
353 #endif /* HAVE_FROM_CU != 1 */
356 /* The software implementation is based on the code in gconv_simple.c. */
357 # define BODY_FROM_C \
359 /* Next input byte. */ \
360 uint16_t ch = *inptr; \
362 if (__glibc_likely (ch < 0x80)) \
364 /* One byte sequence. */ \
372 if (ch >= 0xc2 && ch < 0xe0) \
374 /* We expect two bytes. The first byte cannot be 0xc0 \
375 or 0xc1, otherwise the wide character could have been \
376 represented using a single byte. */ \
380 else if (__glibc_likely ((ch & 0xf0) == 0xe0)) \
382 /* We expect three bytes. */ \
386 else if (__glibc_likely ((ch & 0xf8) == 0xf0)) \
388 /* We expect four bytes. */ \
394 /* Search the end of this ill-formed UTF-8 character. This \
395 is the next byte with (x & 0xc0) != 0x80. */ \
399 while (inptr + i < inend \
400 && (*(inptr + i) & 0xc0) == 0x80 \
404 STANDARD_FROM_LOOP_ERR_HANDLER (i); \
407 if (__glibc_unlikely (inptr + cnt > inend)) \
409 /* We don't have enough input. But before we report \
410 that check that all the bytes are correct. */ \
411 for (i = 1; inptr + i < inend; ++i) \
412 if ((inptr[i] & 0xc0) != 0x80) \
415 if (__glibc_likely (inptr + i == inend)) \
417 result = __GCONV_INCOMPLETE_INPUT; \
426 /* For 4 byte UTF-8 chars two UTF-16 chars (high and \
427 low) are needed. */ \
428 uint16_t zabcd, high, low; \
430 if (__glibc_unlikely (outptr + 4 > outend)) \
432 /* Overflow in the output buffer. */ \
433 result = __GCONV_FULL_OUTPUT; \
437 /* Check if tail-bytes >= 0x80, < 0xc0. */ \
438 for (i = 1; i < cnt; ++i) \
440 if ((inptr[i] & 0xc0) != 0x80) \
441 /* This is an illegal encoding. */ \
445 /* See Principles of Operations cu12. */ \
446 zabcd = (((inptr[0] & 0x7) << 2) | \
447 ((inptr[1] & 0x30) >> 4)) - 1; \
449 /* z-bit must be zero after subtracting 1. */ \
451 STANDARD_FROM_LOOP_ERR_HANDLER (4) \
453 high = (uint16_t)(0xd8 << 8); /* high surrogate id */ \
454 high |= zabcd << 6; /* abcd bits */ \
455 high |= (inptr[1] & 0xf) << 2; /* efgh bits */ \
456 high |= (inptr[2] & 0x30) >> 4; /* ij bits */ \
458 low = (uint16_t)(0xdc << 8); /* low surrogate id */ \
459 low |= ((uint16_t)inptr[2] & 0xc) << 6; /* kl bits */ \
460 low |= (inptr[2] & 0x3) << 6; /* mn bits */ \
461 low |= inptr[3] & 0x3f; /* opqrst bits */ \
463 put16 (outptr, high); \
465 put16 (outptr, low); \
472 /* Read the possible remaining bytes. */ \
473 for (i = 1; i < cnt; ++i) \
475 uint16_t byte = inptr[i]; \
477 if ((byte & 0xc0) != 0x80) \
478 /* This is an illegal encoding. */ \
485 /* If i < cnt, some trail byte was not >= 0x80, < 0xc0. \
486 If cnt > 2 and ch < 2^(5*cnt-4), the wide character ch could \
487 have been represented with fewer than cnt bytes. */ \
488 if (i < cnt || (cnt > 2 && (ch >> (5 * cnt - 4)) == 0) \
489 /* Do not accept UTF-16 surrogates. */ \
490 || (ch >= 0xd800 && ch <= 0xdfff)) \
492 /* This is an illegal encoding. */ \
499 /* Now adjust the pointers and store the result. */ \
500 *((uint16_t *) outptr) = ch; \
501 outptr += sizeof (uint16_t); \
504 /* Generate loop-function with software implementation. */
505 # define MIN_NEEDED_INPUT MIN_NEEDED_FROM
506 # define MAX_NEEDED_INPUT MAX_NEEDED_FROM
507 # define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
508 # define MAX_NEEDED_OUTPUT MAX_NEEDED_TO
509 # define FROM_LOOP_C __from_utf8_loop_c
510 # define LOOPFCT FROM_LOOP_C
511 # define LOOP_NEED_FLAGS
512 # define BODY BODY_FROM_C
513 # include <iconv/loop.c>
515 # define FROM_LOOP_C NULL
516 #endif /* HAVE_FROM_C != 1 */
518 /* Conversion from UTF-16 to UTF-8. */
521 /* The software routine is based on the functionality of the S/390
522 hardware instruction (cu21) as described in the Principles of
526 uint16_t c = get16 (inptr); \
528 if (__glibc_likely (c <= 0x007f)) \
530 /* Single byte UTF-8 char. */ \
531 *outptr = c & 0xff; \
534 else if (c >= 0x0080 && c <= 0x07ff) \
536 /* Two byte UTF-8 char. */ \
538 if (__glibc_unlikely (outptr + 2 > outend)) \
540 /* Overflow in the output buffer. */ \
541 result = __GCONV_FULL_OUTPUT; \
546 outptr[0] |= c >> 6; \
549 outptr[1] |= c & 0x3f; \
553 else if ((c >= 0x0800 && c <= 0xd7ff) || c > 0xdfff) \
555 /* Three byte UTF-8 char. */ \
557 if (__glibc_unlikely (outptr + 3 > outend)) \
559 /* Overflow in the output buffer. */ \
560 result = __GCONV_FULL_OUTPUT; \
564 outptr[0] |= c >> 12; \
567 outptr[1] |= (c >> 6) & 0x3f; \
570 outptr[2] |= c & 0x3f; \
574 else if (c >= 0xd800 && c <= 0xdbff) \
576 /* Four byte UTF-8 char. */ \
577 uint16_t low, uvwxy; \
579 if (__glibc_unlikely (outptr + 4 > outend)) \
581 /* Overflow in the output buffer. */ \
582 result = __GCONV_FULL_OUTPUT; \
585 if (__glibc_unlikely (inptr + 4 > inend)) \
587 result = __GCONV_INCOMPLETE_INPUT; \
592 low = get16 (inptr); \
594 if ((low & 0xfc00) != 0xdc00) \
597 STANDARD_TO_LOOP_ERR_HANDLER (2); \
599 uvwxy = ((c >> 6) & 0xf) + 1; \
601 outptr[0] |= uvwxy >> 2; \
604 outptr[1] |= (uvwxy << 4) & 0x30; \
605 outptr[1] |= (c >> 2) & 0x0f; \
608 outptr[2] |= (c & 0x03) << 4; \
609 outptr[2] |= (low >> 6) & 0x0f; \
612 outptr[3] |= low & 0x3f; \
618 STANDARD_TO_LOOP_ERR_HANDLER (2); \
623 /* Generate loop-function with software implementation. */
624 # define MIN_NEEDED_INPUT MIN_NEEDED_TO
625 # define MAX_NEEDED_INPUT MAX_NEEDED_TO
626 # define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
627 # define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
628 # define TO_LOOP_C __to_utf8_loop_c
629 # define LOOPFCT TO_LOOP_C
630 # define BODY BODY_TO_C
631 # define LOOP_NEED_FLAGS
632 # include <iconv/loop.c>
634 # define TO_LOOP_C NULL
635 #endif /* HAVE_TO_C != 1 */
638 # define BODY_TO_VX \
640 size_t inlen = inend - inptr; \
641 size_t outlen = outend - outptr; \
642 unsigned long tmp, tmp2, tmp3; \
643 asm volatile (".machine push\n\t" \
644 ".machine \"z13\"\n\t" \
645 ".machinemode \"zarch_nohighgprs\"\n\t" \
646 /* Setup to check for values <= 0x7f. */ \
647 " larl %[R_TMP],9f\n\t" \
648 " vlm %%v30,%%v31,0(%[R_TMP])\n\t" \
649 CONVERT_32BIT_SIZE_T ([R_INLEN]) \
650 CONVERT_32BIT_SIZE_T ([R_OUTLEN]) \
651 /* Loop which handles UTF-16 chars <=0x7f. */ \
652 "0: clgijl %[R_INLEN],32,2f\n\t" \
653 " clgijl %[R_OUTLEN],16,2f\n\t" \
654 "1: vlm %%v16,%%v17,0(%[R_IN])\n\t" \
655 " lghi %[R_TMP2],0\n\t" \
656 /* Check for > 1byte UTF-8 chars. */ \
657 " vstrchs %%v19,%%v16,%%v30,%%v31\n\t" \
658 " jno 10f\n\t" /* Jump away if not all bytes are 1byte \
660 " vstrchs %%v19,%%v17,%%v30,%%v31\n\t" \
661 " jno 11f\n\t" /* Jump away if not all bytes are 1byte \
663 /* Shorten to UTF-8. */ \
664 " vpkh %%v18,%%v16,%%v17\n\t" \
665 " la %[R_IN],32(%[R_IN])\n\t" \
666 " aghi %[R_INLEN],-32\n\t" \
667 /* Store 16 bytes to buf_out. */ \
668 " vst %%v18,0(%[R_OUT])\n\t" \
669 " aghi %[R_OUTLEN],-16\n\t" \
670 " la %[R_OUT],16(%[R_OUT])\n\t" \
671 " clgijl %[R_INLEN],32,2f\n\t" \
672 " clgijl %[R_OUTLEN],16,2f\n\t" \
674 /* Setup to check for ch > 0x7f. (v30, v31) */ \
675 "9: .short 0x7f,0x7f,0x0,0x0,0x0,0x0,0x0,0x0\n\t" \
676 " .short 0x2000,0x2000,0x0,0x0,0x0,0x0,0x0,0x0\n\t" \
677 /* At least one byte is > 0x7f. \
678 Store the preceding 1-byte chars. */ \
679 "11: lghi %[R_TMP2],16\n\t" /* match was found in v17. */ \
681 " vlgvb %[R_TMP],%%v19,7\n\t" \
682 /* Shorten to UTF-8. */ \
683 " vpkh %%v18,%%v16,%%v17\n\t" \
684 " ar %[R_TMP],%[R_TMP2]\n\t" /* Number of in bytes. */ \
685 " srlg %[R_TMP3],%[R_TMP],1\n\t" /* Number of out bytes. */ \
686 " ahik %[R_TMP2],%[R_TMP3],-1\n\t" /* Highest index to store. */ \
688 " vstl %%v18,%[R_TMP2],0(%[R_OUT])\n\t" \
689 /* Update pointers. */ \
690 " la %[R_IN],0(%[R_TMP],%[R_IN])\n\t" \
691 " slgr %[R_INLEN],%[R_TMP]\n\t" \
692 " la %[R_OUT],0(%[R_TMP3],%[R_OUT])\n\t" \
693 " slgr %[R_OUTLEN],%[R_TMP3]\n\t" \
695 /* Calculate remaining uint16_t values in loaded vrs. */ \
696 " lghi %[R_TMP2],16\n\t" \
697 " slgr %[R_TMP2],%[R_TMP3]\n\t" \
698 " llh %[R_TMP],0(%[R_IN])\n\t" \
699 " aghi %[R_INLEN],-2\n\t" \
701 /* Handle remaining bytes. */ \
703 /* Zero, one or more bytes available? */ \
704 " clgfi %[R_INLEN],1\n\t" \
705 " locghie %[R_RES],%[RES_IN_FULL]\n\t" /* Only one byte. */ \
706 " jle 99f\n\t" /* End if less than two bytes. */ \
707 /* Calculate remaining uint16_t values in inptr. */ \
708 " srlg %[R_TMP2],%[R_INLEN],1\n\t" \
709 /* Handle multibyte utf8-char. */ \
710 "20: llh %[R_TMP],0(%[R_IN])\n\t" \
711 " aghi %[R_INLEN],-2\n\t" \
712 /* Test if ch is 1-byte UTF-8 char. */ \
713 "21: clijh %[R_TMP],0x7f,22f\n\t" \
714 /* Handle 1-byte UTF-8 char. */ \
715 "31: slgfi %[R_OUTLEN],1\n\t" \
717 " stc %[R_TMP],0(%[R_OUT])\n\t" \
718 " la %[R_IN],2(%[R_IN])\n\t" \
719 " la %[R_OUT],1(%[R_OUT])\n\t" \
720 " brctg %[R_TMP2],20b\n\t" \
721 " j 0b\n\t" /* Switch to vx-loop. */ \
722 /* Test if ch is 2-byte UTF-8 char. */ \
723 "22: clfi %[R_TMP],0x7ff\n\t" \
725 /* Handle 2-byte UTF-8 char. */ \
726 "32: slgfi %[R_OUTLEN],2\n\t" \
728 " llill %[R_TMP3],0xc080\n\t" \
729 " la %[R_IN],2(%[R_IN])\n\t" \
730 " risbgn %[R_TMP3],%[R_TMP],51,55,2\n\t" /* 1. byte. */ \
731 " risbgn %[R_TMP3],%[R_TMP],58,63,0\n\t" /* 2. byte. */ \
732 " sth %[R_TMP3],0(%[R_OUT])\n\t" \
733 " la %[R_OUT],2(%[R_OUT])\n\t" \
734 " brctg %[R_TMP2],20b\n\t" \
735 " j 0b\n\t" /* Switch to vx-loop. */ \
736 /* Test if ch is 3-byte UTF-8 char. */ \
737 "23: clfi %[R_TMP],0xd7ff\n\t" \
739 /* Handle 3-byte UTF-8 char. */ \
740 "33: slgfi %[R_OUTLEN],3\n\t" \
742 " llilf %[R_TMP3],0xe08080\n\t" \
743 " la %[R_IN],2(%[R_IN])\n\t" \
744 " risbgn %[R_TMP3],%[R_TMP],44,47,4\n\t" /* 1. byte. */ \
745 " risbgn %[R_TMP3],%[R_TMP],50,55,2\n\t" /* 2. byte. */ \
746 " risbgn %[R_TMP3],%[R_TMP],58,63,0\n\t" /* 3. byte. */ \
747 " stcm %[R_TMP3],7,0(%[R_OUT])\n\t" \
748 " la %[R_OUT],3(%[R_OUT])\n\t" \
749 " brctg %[R_TMP2],20b\n\t" \
750 " j 0b\n\t" /* Switch to vx-loop. */ \
751 /* Test if ch is 4-byte UTF-8 char. */ \
752 "24: clfi %[R_TMP],0xdfff\n\t" \
753 " jh 33b\n\t" /* Handle this 3-byte UTF-8 char. */ \
754 " clfi %[R_TMP],0xdbff\n\t" \
755 " locghih %[R_RES],%[RES_IN_ILL]\n\t" \
756 " jh 99f\n\t" /* Jump away if this is a low surrogate \
757 without a preceding high surrogate. */ \
758 /* Handle 4-byte UTF-8 char. */ \
759 "34: slgfi %[R_OUTLEN],4\n\t" \
761 " slgfi %[R_INLEN],2\n\t" \
762 " locghil %[R_RES],%[RES_IN_FULL]\n\t" \
763 " jl 99f\n\t" /* Jump away if low surrogate is missing. */ \
764 " llilf %[R_TMP3],0xf0808080\n\t" \
765 " aghi %[R_TMP],0x40\n\t" \
766 " risbgn %[R_TMP3],%[R_TMP],37,39,16\n\t" /* 1. byte: uvw */ \
767 " risbgn %[R_TMP3],%[R_TMP],42,43,14\n\t" /* 2. byte: xy */ \
768 " risbgn %[R_TMP3],%[R_TMP],44,47,14\n\t" /* 2. byte: efgh */ \
769 " risbgn %[R_TMP3],%[R_TMP],50,51,12\n\t" /* 3. byte: ij */ \
770 " llh %[R_TMP],2(%[R_IN])\n\t" /* Load low surrogate. */ \
771 " risbgn %[R_TMP3],%[R_TMP],52,55,2\n\t" /* 3. byte: klmn */ \
772 " risbgn %[R_TMP3],%[R_TMP],58,63,0\n\t" /* 4. byte: opqrst */ \
773 " nilf %[R_TMP],0xfc00\n\t" \
774 " clfi %[R_TMP],0xdc00\n\t" /* Check if it starts with 0xdc00. */ \
775 " locghine %[R_RES],%[RES_IN_ILL]\n\t" \
776 " jne 99f\n\t" /* Jump away if low surrogate is invalid. */ \
777 " st %[R_TMP3],0(%[R_OUT])\n\t" \
778 " la %[R_IN],4(%[R_IN])\n\t" \
779 " la %[R_OUT],4(%[R_OUT])\n\t" \
780 " aghi %[R_TMP2],-2\n\t" \
782 " j 0b\n\t" /* Switch to vx-loop. */ \
783 /* Exit with __GCONV_FULL_OUTPUT. */ \
784 "90: lghi %[R_RES],%[RES_OUT_FULL]\n\t" \
787 : /* outputs */ [R_IN] "+a" (inptr) \
788 , [R_INLEN] "+d" (inlen), [R_OUT] "+a" (outptr) \
789 , [R_OUTLEN] "+d" (outlen), [R_TMP] "=a" (tmp) \
790 , [R_TMP2] "=d" (tmp2), [R_TMP3] "=a" (tmp3) \
791 , [R_RES] "+d" (result) \
793 [RES_OUT_FULL] "i" (__GCONV_FULL_OUTPUT) \
794 , [RES_IN_ILL] "i" (__GCONV_ILLEGAL_INPUT) \
795 , [RES_IN_FULL] "i" (__GCONV_INCOMPLETE_INPUT) \
796 : /* clobber list */ "memory", "cc" \
797 ASM_CLOBBER_VR ("v16") ASM_CLOBBER_VR ("v17") \
798 ASM_CLOBBER_VR ("v18") ASM_CLOBBER_VR ("v19") \
799 ASM_CLOBBER_VR ("v30") ASM_CLOBBER_VR ("v31") \
801 if (__glibc_likely (inptr == inend) \
802 || result != __GCONV_ILLEGAL_INPUT) \
805 STANDARD_TO_LOOP_ERR_HANDLER (2); \
808 /* Generate loop-function with vector implementation. */
809 # define MIN_NEEDED_INPUT MIN_NEEDED_TO
810 # define MAX_NEEDED_INPUT MAX_NEEDED_TO
811 # define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
812 # define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
813 # define TO_LOOP_VX __to_utf8_loop_vx
814 # define LOOPFCT TO_LOOP_VX
815 # define BODY BODY_TO_VX
816 # define LOOP_NEED_FLAGS
817 # include <iconv/loop.c>
819 # define TO_LOOP_VX NULL
820 #endif /* HAVE_TO_VX != 1 */
822 #if HAVE_TO_VX_CU == 1
823 #define BODY_TO_VX_CU \
825 register const unsigned char* pInput asm ("8") = inptr; \
826 register size_t inlen asm ("9") = inend - inptr; \
827 register unsigned char* pOutput asm ("10") = outptr; \
828 register size_t outlen asm ("11") = outend - outptr; \
829 unsigned long tmp, tmp2, tmp3; \
830 asm volatile (".machine push\n\t" \
831 ".machine \"z13\"\n\t" \
832 ".machinemode \"zarch_nohighgprs\"\n\t" \
833 /* Setup to check for values <= 0x7f. */ \
834 " larl %[R_TMP],9f\n\t" \
835 " vlm %%v30,%%v31,0(%[R_TMP])\n\t" \
836 CONVERT_32BIT_SIZE_T ([R_INLEN]) \
837 CONVERT_32BIT_SIZE_T ([R_OUTLEN]) \
838 /* Loop which handles UTF-16 chars <=0x7f. */ \
839 "0: clgijl %[R_INLEN],32,20f\n\t" \
840 " clgijl %[R_OUTLEN],16,20f\n\t" \
841 "1: vlm %%v16,%%v17,0(%[R_IN])\n\t" \
842 " lghi %[R_TMP2],0\n\t" \
843 /* Check for > 1byte UTF-8 chars. */ \
844 " vstrchs %%v19,%%v16,%%v30,%%v31\n\t" \
845 " jno 10f\n\t" /* Jump away if not all bytes are 1byte \
847 " vstrchs %%v19,%%v17,%%v30,%%v31\n\t" \
848 " jno 11f\n\t" /* Jump away if not all bytes are 1byte \
850 /* Shorten to UTF-8. */ \
851 " vpkh %%v18,%%v16,%%v17\n\t" \
852 " la %[R_IN],32(%[R_IN])\n\t" \
853 " aghi %[R_INLEN],-32\n\t" \
854 /* Store 16 bytes to buf_out. */ \
855 " vst %%v18,0(%[R_OUT])\n\t" \
856 " aghi %[R_OUTLEN],-16\n\t" \
857 " la %[R_OUT],16(%[R_OUT])\n\t" \
858 " clgijl %[R_INLEN],32,20f\n\t" \
859 " clgijl %[R_OUTLEN],16,20f\n\t" \
861 /* Setup to check for ch > 0x7f. (v30, v31) */ \
862 "9: .short 0x7f,0x7f,0x0,0x0,0x0,0x0,0x0,0x0\n\t" \
863 " .short 0x2000,0x2000,0x0,0x0,0x0,0x0,0x0,0x0\n\t" \
864 /* At least one byte is > 0x7f. \
865 Store the preceding 1-byte chars. */ \
866 "11: lghi %[R_TMP2],16\n\t" /* match was found in v17. */ \
867 "10: vlgvb %[R_TMP],%%v19,7\n\t" \
868 /* Shorten to UTF-8. */ \
869 " vpkh %%v18,%%v16,%%v17\n\t" \
870 " ar %[R_TMP],%[R_TMP2]\n\t" /* Number of in bytes. */ \
871 " srlg %[R_TMP3],%[R_TMP],1\n\t" /* Number of out bytes. */ \
872 " ahik %[R_TMP2],%[R_TMP3],-1\n\t" /* Highest index to store. */ \
874 " vstl %%v18,%[R_TMP2],0(%[R_OUT])\n\t" \
875 /* Update pointers. */ \
876 " la %[R_IN],0(%[R_TMP],%[R_IN])\n\t" \
877 " slgr %[R_INLEN],%[R_TMP]\n\t" \
878 " la %[R_OUT],0(%[R_TMP3],%[R_OUT])\n\t" \
879 " slgr %[R_OUTLEN],%[R_TMP3]\n\t" \
880 /* Handles UTF16 surrogates with convert instruction. */ \
881 "20: cu21 %[R_OUT],%[R_IN],1\n\t" \
882 " jo 0b\n\t" /* Try vector implemenation again. */ \
883 " lochil %[R_RES],%[RES_OUT_FULL]\n\t" /* cc == 1. */ \
884 " lochih %[R_RES],%[RES_IN_ILL]\n\t" /* cc == 2. */ \
886 : /* outputs */ [R_IN] "+a" (pInput) \
887 , [R_INLEN] "+d" (inlen), [R_OUT] "+a" (pOutput) \
888 , [R_OUTLEN] "+d" (outlen), [R_TMP] "=a" (tmp) \
889 , [R_TMP2] "=d" (tmp2), [R_TMP3] "=a" (tmp3) \
890 , [R_RES] "+d" (result) \
892 [RES_OUT_FULL] "i" (__GCONV_FULL_OUTPUT) \
893 , [RES_IN_ILL] "i" (__GCONV_ILLEGAL_INPUT) \
894 : /* clobber list */ "memory", "cc" \
895 ASM_CLOBBER_VR ("v16") ASM_CLOBBER_VR ("v17") \
896 ASM_CLOBBER_VR ("v18") ASM_CLOBBER_VR ("v19") \
897 ASM_CLOBBER_VR ("v30") ASM_CLOBBER_VR ("v31") \
902 if (__glibc_likely (inlen == 0) \
903 || result == __GCONV_FULL_OUTPUT) \
907 /* Input does not contain a complete utf16 character. */ \
908 result = __GCONV_INCOMPLETE_INPUT; \
911 else if (result != __GCONV_ILLEGAL_INPUT) \
913 /* Input is >= 2 and < 4 bytes (as cu21 would have processed \
914 a possible next utf16 character) and not illegal. \
915 => we have a single high surrogate at end of input. */ \
916 result = __GCONV_INCOMPLETE_INPUT; \
920 STANDARD_TO_LOOP_ERR_HANDLER (2); \
923 /* Generate loop-function with vector and utf-convert instructions. */
924 # define MIN_NEEDED_INPUT MIN_NEEDED_TO
925 # define MAX_NEEDED_INPUT MAX_NEEDED_TO
926 # define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
927 # define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
928 # define TO_LOOP_VX_CU __to_utf8_loop_vx_cu
929 # define LOOPFCT TO_LOOP_VX_CU
930 # define BODY BODY_TO_VX_CU
931 # define LOOP_NEED_FLAGS
932 # include <iconv/loop.c>
934 # define TO_LOOP_VX_CU NULL
935 #endif /* HAVE_TO_VX_CU != 1 */
937 /* This file also exists in sysdeps/s390/multiarch/ which
938 generates ifunc resolvers for FROM/TO_LOOP functions
939 and includes iconv/skeleton.c afterwards. */
940 #if ! defined USE_MULTIARCH
941 # include <iconv/skeleton.c>