This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix some style issues in vms/vms.c.
[perl5.git] / utf8.c
1 /*    utf8.c
2  *
3  *    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4  *    by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  */
10
11 /*
12  * 'What a fix!' said Sam.  'That's the one place in all the lands we've ever
13  *  heard of that we don't want to see any closer; and that's the one place
14  *  we're trying to get to!  And that's just where we can't get, nohow.'
15  *
16  *     [p.603 of _The Lord of the Rings_, IV/I: "The Taming of Sméagol"]
17  *
18  * 'Well do I understand your speech,' he answered in the same language;
19  * 'yet few strangers do so.  Why then do you not speak in the Common Tongue,
20  *  as is the custom in the West, if you wish to be answered?'
21  *                           --Gandalf, addressing Théoden's door wardens
22  *
23  *     [p.508 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
24  *
25  * ...the travellers perceived that the floor was paved with stones of many
26  * hues; branching runes and strange devices intertwined beneath their feet.
27  *
28  *     [p.512 of _The Lord of the Rings_, III/vi: "The King of the Golden Hall"]
29  */
30
31 #include "EXTERN.h"
32 #define PERL_IN_UTF8_C
33 #include "perl.h"
34 #include "inline_invlist.c"
35 #include "charclass_invlists.h"
36
37 static const char unees[] =
38     "Malformed UTF-8 character (unexpected end of string)";
39
40 /*
41 =head1 Unicode Support
42 These are various utility functions for manipulating UTF8-encoded
43 strings.  For the uninitiated, this is a method of representing arbitrary
44 Unicode characters as a variable number of bytes, in such a way that
45 characters in the ASCII range are unmodified, and a zero byte never appears
46 within non-zero characters.
47
48 =cut
49 */
50
51 /*
52 =for apidoc is_invariant_string
53
54 Returns true iff the first C<len> bytes of the string C<s> are the same
55 regardless of the UTF-8 encoding of the string (or UTF-EBCDIC encoding on
56 EBCDIC machines).  That is, if they are UTF-8 invariant.  On ASCII-ish
57 machines, all the ASCII characters and only the ASCII characters fit this
58 definition.  On EBCDIC machines, the ASCII-range characters are invariant, but
59 so also are the C1 controls and C<\c?> (which isn't in the ASCII range on
60 EBCDIC).
61
62 If C<len> is 0, it will be calculated using C<strlen(s)>, (which means if you
63 use this option, that C<s> can't have embedded C<NUL> characters and has to
64 have a terminating C<NUL> byte).
65
66 See also L</is_utf8_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>().
67
68 =cut
69 */
70
71 bool
72 Perl_is_invariant_string(const U8 *s, STRLEN len)
73 {
74     const U8* const send = s + (len ? len : strlen((const char *)s));
75     const U8* x = s;
76
77     PERL_ARGS_ASSERT_IS_INVARIANT_STRING;
78
79     for (; x < send; ++x) {
80         if (!UTF8_IS_INVARIANT(*x))
81             break;
82     }
83
84     return x == send;
85 }
86
87 /*
88 =for apidoc uvoffuni_to_utf8_flags
89
90 THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
91 Instead, B<Almost all code should use L</uvchr_to_utf8> or
92 L</uvchr_to_utf8_flags>>.
93
94 This function is like them, but the input is a strict Unicode
95 (as opposed to native) code point.  Only in very rare circumstances should code
96 not be using the native code point.
97
98 For details, see the description for L</uvchr_to_utf8_flags>>.
99
100 =cut
101 */
102
103 U8 *
104 Perl_uvoffuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
105 {
106     PERL_ARGS_ASSERT_UVOFFUNI_TO_UTF8_FLAGS;
107
108     if (UNI_IS_INVARIANT(uv)) {
109         *d++ = (U8) LATIN1_TO_NATIVE(uv);
110         return d;
111     }
112
113 #ifdef EBCDIC
114     /* Not representable in UTF-EBCDIC */
115     flags |= UNICODE_DISALLOW_FE_FF;
116 #endif
117
118     /* The first problematic code point is the first surrogate */
119     if (uv >= UNICODE_SURROGATE_FIRST
120         && ckWARN3_d(WARN_SURROGATE, WARN_NON_UNICODE, WARN_NONCHAR))
121     {
122         if (UNICODE_IS_SURROGATE(uv)) {
123             if (flags & UNICODE_WARN_SURROGATE) {
124                 Perl_ck_warner_d(aTHX_ packWARN(WARN_SURROGATE),
125                                             "UTF-16 surrogate U+%04"UVXf, uv);
126             }
127             if (flags & UNICODE_DISALLOW_SURROGATE) {
128                 return NULL;
129             }
130         }
131         else if (UNICODE_IS_SUPER(uv)) {
132             if (flags & UNICODE_WARN_SUPER
133                 || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_WARN_FE_FF)))
134             {
135                 Perl_ck_warner_d(aTHX_ packWARN(WARN_NON_UNICODE),
136                           "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv);
137             }
138             if (flags & UNICODE_DISALLOW_SUPER
139                 || (UNICODE_IS_FE_FF(uv) && (flags & UNICODE_DISALLOW_FE_FF)))
140             {
141 #ifdef EBCDIC
142                 Perl_die(aTHX_ "Can't represent character for Ox%"UVXf" on this platform", uv);
143                 NOT_REACHED;
144 #endif
145                 return NULL;
146             }
147         }
148         else if (UNICODE_IS_NONCHAR(uv)) {
149             if (flags & UNICODE_WARN_NONCHAR) {
150                 Perl_ck_warner_d(aTHX_ packWARN(WARN_NONCHAR),
151                  "Unicode non-character U+%04"UVXf" is illegal for open interchange",
152                  uv);
153             }
154             if (flags & UNICODE_DISALLOW_NONCHAR) {
155                 return NULL;
156             }
157         }
158     }
159
160 #if defined(EBCDIC)
161     {
162         STRLEN len  = OFFUNISKIP(uv);
163         U8 *p = d+len-1;
164         while (p > d) {
165             *p-- = (U8) I8_TO_NATIVE_UTF8((uv & UTF_CONTINUATION_MASK) | UTF_CONTINUATION_MARK);
166             uv >>= UTF_ACCUMULATION_SHIFT;
167         }
168         *p = (U8) I8_TO_NATIVE_UTF8((uv & UTF_START_MASK(len)) | UTF_START_MARK(len));
169         return d+len;
170     }
171 #else /* Non loop style */
172     if (uv < 0x800) {
173         *d++ = (U8)(( uv >>  6)         | 0xc0);
174         *d++ = (U8)(( uv        & 0x3f) | 0x80);
175         return d;
176     }
177     if (uv < 0x10000) {
178         *d++ = (U8)(( uv >> 12)         | 0xe0);
179         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
180         *d++ = (U8)(( uv        & 0x3f) | 0x80);
181         return d;
182     }
183     if (uv < 0x200000) {
184         *d++ = (U8)(( uv >> 18)         | 0xf0);
185         *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
186         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
187         *d++ = (U8)(( uv        & 0x3f) | 0x80);
188         return d;
189     }
190     if (uv < 0x4000000) {
191         *d++ = (U8)(( uv >> 24)         | 0xf8);
192         *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
193         *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
194         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
195         *d++ = (U8)(( uv        & 0x3f) | 0x80);
196         return d;
197     }
198     if (uv < 0x80000000) {
199         *d++ = (U8)(( uv >> 30)         | 0xfc);
200         *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
201         *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
202         *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
203         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
204         *d++ = (U8)(( uv        & 0x3f) | 0x80);
205         return d;
206     }
207 #ifdef UTF8_QUAD_MAX
208     if (uv < UTF8_QUAD_MAX)
209 #endif
210     {
211         *d++ =                            0xfe; /* Can't match U+FEFF! */
212         *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
213         *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
214         *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
215         *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
216         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
217         *d++ = (U8)(( uv        & 0x3f) | 0x80);
218         return d;
219     }
220 #ifdef UTF8_QUAD_MAX
221     {
222         *d++ =                            0xff;         /* Can't match U+FFFE! */
223         *d++ =                            0x80;         /* 6 Reserved bits */
224         *d++ = (U8)(((uv >> 60) & 0x0f) | 0x80);        /* 2 Reserved bits */
225         *d++ = (U8)(((uv >> 54) & 0x3f) | 0x80);
226         *d++ = (U8)(((uv >> 48) & 0x3f) | 0x80);
227         *d++ = (U8)(((uv >> 42) & 0x3f) | 0x80);
228         *d++ = (U8)(((uv >> 36) & 0x3f) | 0x80);
229         *d++ = (U8)(((uv >> 30) & 0x3f) | 0x80);
230         *d++ = (U8)(((uv >> 24) & 0x3f) | 0x80);
231         *d++ = (U8)(((uv >> 18) & 0x3f) | 0x80);
232         *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
233         *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
234         *d++ = (U8)(( uv        & 0x3f) | 0x80);
235         return d;
236     }
237 #endif
238 #endif /* Non loop style */
239 }
240 /*
241 =for apidoc uvchr_to_utf8
242
243 Adds the UTF-8 representation of the native code point C<uv> to the end
244 of the string C<d>; C<d> should have at least C<UNISKIP(uv)+1> (up to
245 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
246 the byte after the end of the new character.  In other words,
247
248     d = uvchr_to_utf8(d, uv);
249
250 is the recommended wide native character-aware way of saying
251
252     *(d++) = uv;
253
254 This function accepts any UV as input.  To forbid or warn on non-Unicode code
255 points, or those that may be problematic, see L</uvchr_to_utf8_flags>.
256
257 =cut
258 */
259
260 /* This is also a macro */
261 PERL_CALLCONV U8*       Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv);
262
263 U8 *
264 Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
265 {
266     return uvchr_to_utf8(d, uv);
267 }
268
269 /*
270 =for apidoc uvchr_to_utf8_flags
271
272 Adds the UTF-8 representation of the native code point C<uv> to the end
273 of the string C<d>; C<d> should have at least C<UNISKIP(uv)+1> (up to
274 C<UTF8_MAXBYTES+1>) free bytes available.  The return value is the pointer to
275 the byte after the end of the new character.  In other words,
276
277     d = uvchr_to_utf8_flags(d, uv, flags);
278
279 or, in most cases,
280
281     d = uvchr_to_utf8_flags(d, uv, 0);
282
283 This is the Unicode-aware way of saying
284
285     *(d++) = uv;
286
287 This function will convert to UTF-8 (and not warn) even code points that aren't
288 legal Unicode or are problematic, unless C<flags> contains one or more of the
289 following flags:
290
291 If C<uv> is a Unicode surrogate code point and UNICODE_WARN_SURROGATE is set,
292 the function will raise a warning, provided UTF8 warnings are enabled.  If instead
293 UNICODE_DISALLOW_SURROGATE is set, the function will fail and return NULL.
294 If both flags are set, the function will both warn and return NULL.
295
296 The UNICODE_WARN_NONCHAR and UNICODE_DISALLOW_NONCHAR flags
297 affect how the function handles a Unicode non-character.  And likewise, the
298 UNICODE_WARN_SUPER and UNICODE_DISALLOW_SUPER flags affect the handling of
299 code points that are
300 above the Unicode maximum of 0x10FFFF.  Code points above 0x7FFF_FFFF (which are
301 even less portable) can be warned and/or disallowed even if other above-Unicode
302 code points are accepted, by the UNICODE_WARN_FE_FF and UNICODE_DISALLOW_FE_FF
303 flags.
304
305 And finally, the flag UNICODE_WARN_ILLEGAL_INTERCHANGE selects all four of the
306 above WARN flags; and UNICODE_DISALLOW_ILLEGAL_INTERCHANGE selects all four
307 DISALLOW flags.
308
309 =cut
310 */
311
312 /* This is also a macro */
313 PERL_CALLCONV U8*       Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags);
314
315 U8 *
316 Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
317 {
318     return uvchr_to_utf8_flags(d, uv, flags);
319 }
320
321 /*
322 =for apidoc is_utf8_string
323
324 Returns true if the first C<len> bytes of string C<s> form a valid
325 UTF-8 string, false otherwise.  If C<len> is 0, it will be calculated
326 using C<strlen(s)> (which means if you use this option, that C<s> can't have
327 embedded C<NUL> characters and has to have a terminating C<NUL> byte).  Note
328 that all characters being ASCII constitute 'a valid UTF-8 string'.
329
330 See also L</is_invariant_string>(), L</is_utf8_string_loclen>(), and L</is_utf8_string_loc>().
331
332 =cut
333 */
334
335 bool
336 Perl_is_utf8_string(const U8 *s, STRLEN len)
337 {
338     const U8* const send = s + (len ? len : strlen((const char *)s));
339     const U8* x = s;
340
341     PERL_ARGS_ASSERT_IS_UTF8_STRING;
342
343     while (x < send) {
344         STRLEN len = isUTF8_CHAR(x, send);
345         if (UNLIKELY(! len)) {
346             return FALSE;
347         }
348         x += len;
349     }
350
351     return TRUE;
352 }
353
354 /*
355 Implemented as a macro in utf8.h
356
357 =for apidoc is_utf8_string_loc
358
359 Like L</is_utf8_string> but stores the location of the failure (in the
360 case of "utf8ness failure") or the location C<s>+C<len> (in the case of
361 "utf8ness success") in the C<ep>.
362
363 See also L</is_utf8_string_loclen>() and L</is_utf8_string>().
364
365 =for apidoc is_utf8_string_loclen
366
367 Like L</is_utf8_string>() but stores the location of the failure (in the
368 case of "utf8ness failure") or the location C<s>+C<len> (in the case of
369 "utf8ness success") in the C<ep>, and the number of UTF-8
370 encoded characters in the C<el>.
371
372 See also L</is_utf8_string_loc>() and L</is_utf8_string>().
373
374 =cut
375 */
376
377 bool
378 Perl_is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
379 {
380     const U8* const send = s + (len ? len : strlen((const char *)s));
381     const U8* x = s;
382     STRLEN outlen = 0;
383
384     PERL_ARGS_ASSERT_IS_UTF8_STRING_LOCLEN;
385
386     while (x < send) {
387         STRLEN len = isUTF8_CHAR(x, send);
388         if (UNLIKELY(! len)) {
389             goto out;
390         }
391         x += len;
392         outlen++;
393     }
394
395  out:
396     if (el)
397         *el = outlen;
398
399     if (ep)
400         *ep = x;
401     return (x == send);
402 }
403
404 /*
405
406 =for apidoc utf8n_to_uvchr
407
408 THIS FUNCTION SHOULD BE USED IN ONLY VERY SPECIALIZED CIRCUMSTANCES.
409 Most code should use L</utf8_to_uvchr_buf>() rather than call this directly.
410
411 Bottom level UTF-8 decode routine.
412 Returns the native code point value of the first character in the string C<s>,
413 which is assumed to be in UTF-8 (or UTF-EBCDIC) encoding, and no longer than
414 C<curlen> bytes; C<*retlen> (if C<retlen> isn't NULL) will be set to
415 the length, in bytes, of that character.
416
417 The value of C<flags> determines the behavior when C<s> does not point to a
418 well-formed UTF-8 character.  If C<flags> is 0, when a malformation is found,
419 zero is returned and C<*retlen> is set so that (S<C<s> + C<*retlen>>) is the
420 next possible position in C<s> that could begin a non-malformed character.
421 Also, if UTF-8 warnings haven't been lexically disabled, a warning is raised.
422
423 Various ALLOW flags can be set in C<flags> to allow (and not warn on)
424 individual types of malformations, such as the sequence being overlong (that
425 is, when there is a shorter sequence that can express the same code point;
426 overlong sequences are expressly forbidden in the UTF-8 standard due to
427 potential security issues).  Another malformation example is the first byte of
428 a character not being a legal first byte.  See F<utf8.h> for the list of such
429 flags.  For allowed 0 length strings, this function returns 0; for allowed
430 overlong sequences, the computed code point is returned; for all other allowed
431 malformations, the Unicode REPLACEMENT CHARACTER is returned, as these have no
432 determinable reasonable value.
433
434 The UTF8_CHECK_ONLY flag overrides the behavior when a non-allowed (by other
435 flags) malformation is found.  If this flag is set, the routine assumes that
436 the caller will raise a warning, and this function will silently just set
437 C<retlen> to C<-1> (cast to C<STRLEN>) and return zero.
438
439 Note that this API requires disambiguation between successful decoding a C<NUL>
440 character, and an error return (unless the UTF8_CHECK_ONLY flag is set), as
441 in both cases, 0 is returned.  To disambiguate, upon a zero return, see if the
442 first byte of C<s> is 0 as well.  If so, the input was a C<NUL>; if not, the
443 input had an error.
444
445 Certain code points are considered problematic.  These are Unicode surrogates,
446 Unicode non-characters, and code points above the Unicode maximum of 0x10FFFF.
447 By default these are considered regular code points, but certain situations
448 warrant special handling for them.  If C<flags> contains
449 UTF8_DISALLOW_ILLEGAL_INTERCHANGE, all three classes are treated as
450 malformations and handled as such.  The flags UTF8_DISALLOW_SURROGATE,
451 UTF8_DISALLOW_NONCHAR, and UTF8_DISALLOW_SUPER (meaning above the legal Unicode
452 maximum) can be set to disallow these categories individually.
453
454 The flags UTF8_WARN_ILLEGAL_INTERCHANGE, UTF8_WARN_SURROGATE,
455 UTF8_WARN_NONCHAR, and UTF8_WARN_SUPER will cause warning messages to be raised
456 for their respective categories, but otherwise the code points are considered
457 valid (not malformations).  To get a category to both be treated as a
458 malformation and raise a warning, specify both the WARN and DISALLOW flags.
459 (But note that warnings are not raised if lexically disabled nor if
460 UTF8_CHECK_ONLY is also specified.)
461
462 Very large code points (above 0x7FFF_FFFF) are considered more problematic than
463 the others that are above the Unicode legal maximum.  There are several
464 reasons: they requre at least 32 bits to represent them on ASCII platforms, are
465 not representable at all on EBCDIC platforms, and the original UTF-8
466 specification never went above this number (the current 0x10FFFF limit was
467 imposed later).  (The smaller ones, those that fit into 32 bits, are
468 representable by a UV on ASCII platforms, but not by an IV, which means that
469 the number of operations that can be performed on them is quite restricted.)
470 The UTF-8 encoding on ASCII platforms for these large code points begins with a
471 byte containing 0xFE or 0xFF.  The UTF8_DISALLOW_FE_FF flag will cause them to
472 be treated as malformations, while allowing smaller above-Unicode code points.
473 (Of course UTF8_DISALLOW_SUPER will treat all above-Unicode code points,
474 including these, as malformations.)
475 Similarly, UTF8_WARN_FE_FF acts just like
476 the other WARN flags, but applies just to these code points.
477
478 All other code points corresponding to Unicode characters, including private
479 use and those yet to be assigned, are never considered malformed and never
480 warn.
481
482 =cut
483 */
484
485 UV
486 Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
487 {
488     const U8 * const s0 = s;
489     U8 overflow_byte = '\0';    /* Save byte in case of overflow */
490     U8 * send;
491     UV uv = *s;
492     STRLEN expectlen;
493     SV* sv = NULL;
494     UV outlier_ret = 0; /* return value when input is in error or problematic
495                          */
496     UV pack_warn = 0;   /* Save result of packWARN() for later */
497     bool unexpected_non_continuation = FALSE;
498     bool overflowed = FALSE;
499     bool do_overlong_test = TRUE;   /* May have to skip this test */
500
501     const char* const malformed_text = "Malformed UTF-8 character";
502
503     PERL_ARGS_ASSERT_UTF8N_TO_UVCHR;
504
505     /* The order of malformation tests here is important.  We should consume as
506      * few bytes as possible in order to not skip any valid character.  This is
507      * required by the Unicode Standard (section 3.9 of Unicode 6.0); see also
508      * http://unicode.org/reports/tr36 for more discussion as to why.  For
509      * example, once we've done a UTF8SKIP, we can tell the expected number of
510      * bytes, and could fail right off the bat if the input parameters indicate
511      * that there are too few available.  But it could be that just that first
512      * byte is garbled, and the intended character occupies fewer bytes.  If we
513      * blindly assumed that the first byte is correct, and skipped based on
514      * that number, we could skip over a valid input character.  So instead, we
515      * always examine the sequence byte-by-byte.
516      *
517      * We also should not consume too few bytes, otherwise someone could inject
518      * things.  For example, an input could be deliberately designed to
519      * overflow, and if this code bailed out immediately upon discovering that,
520      * returning to the caller C<*retlen> pointing to the very next byte (one
521      * which is actually part of of the overflowing sequence), that could look
522      * legitimate to the caller, which could discard the initial partial
523      * sequence and process the rest, inappropriately */
524
525     /* Zero length strings, if allowed, of necessity are zero */
526     if (UNLIKELY(curlen == 0)) {
527         if (retlen) {
528             *retlen = 0;
529         }
530
531         if (flags & UTF8_ALLOW_EMPTY) {
532             return 0;
533         }
534         if (! (flags & UTF8_CHECK_ONLY)) {
535             sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (empty string)", malformed_text));
536         }
537         goto malformed;
538     }
539
540     expectlen = UTF8SKIP(s);
541
542     /* A well-formed UTF-8 character, as the vast majority of calls to this
543      * function will be for, has this expected length.  For efficiency, set
544      * things up here to return it.  It will be overriden only in those rare
545      * cases where a malformation is found */
546     if (retlen) {
547         *retlen = expectlen;
548     }
549
550     /* An invariant is trivially well-formed */
551     if (UTF8_IS_INVARIANT(uv)) {
552         return uv;
553     }
554
555     /* A continuation character can't start a valid sequence */
556     if (UNLIKELY(UTF8_IS_CONTINUATION(uv))) {
557         if (flags & UTF8_ALLOW_CONTINUATION) {
558             if (retlen) {
559                 *retlen = 1;
560             }
561             return UNICODE_REPLACEMENT;
562         }
563
564         if (! (flags & UTF8_CHECK_ONLY)) {
565             sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected continuation byte 0x%02x, with no preceding start byte)", malformed_text, *s0));
566         }
567         curlen = 1;
568         goto malformed;
569     }
570
571     /* Here is not a continuation byte, nor an invariant.  The only thing left
572      * is a start byte (possibly for an overlong) */
573
574 #ifdef EBCDIC
575     uv = NATIVE_UTF8_TO_I8(uv);
576 #endif
577
578     /* Remove the leading bits that indicate the number of bytes in the
579      * character's whole UTF-8 sequence, leaving just the bits that are part of
580      * the value */
581     uv &= UTF_START_MASK(expectlen);
582
583     /* Now, loop through the remaining bytes in the character's sequence,
584      * accumulating each into the working value as we go.  Be sure to not look
585      * past the end of the input string */
586     send =  (U8*) s0 + ((expectlen <= curlen) ? expectlen : curlen);
587
588     for (s = s0 + 1; s < send; s++) {
589         if (LIKELY(UTF8_IS_CONTINUATION(*s))) {
590 #ifndef EBCDIC  /* Can't overflow in EBCDIC */
591             if (uv & UTF_ACCUMULATION_OVERFLOW_MASK) {
592
593                 /* The original implementors viewed this malformation as more
594                  * serious than the others (though I, khw, don't understand
595                  * why, since other malformations also give very very wrong
596                  * results), so there is no way to turn off checking for it.
597                  * Set a flag, but keep going in the loop, so that we absorb
598                  * the rest of the bytes that comprise the character. */
599                 overflowed = TRUE;
600                 overflow_byte = *s; /* Save for warning message's use */
601             }
602 #endif
603             uv = UTF8_ACCUMULATE(uv, *s);
604         }
605         else {
606             /* Here, found a non-continuation before processing all expected
607              * bytes.  This byte begins a new character, so quit, even if
608              * allowing this malformation. */
609             unexpected_non_continuation = TRUE;
610             break;
611         }
612     } /* End of loop through the character's bytes */
613
614     /* Save how many bytes were actually in the character */
615     curlen = s - s0;
616
617     /* The loop above finds two types of malformations: non-continuation and/or
618      * overflow.  The non-continuation malformation is really a too-short
619      * malformation, as it means that the current character ended before it was
620      * expected to (being terminated prematurely by the beginning of the next
621      * character, whereas in the too-short malformation there just are too few
622      * bytes available to hold the character.  In both cases, the check below
623      * that we have found the expected number of bytes would fail if executed.)
624      * Thus the non-continuation malformation is really unnecessary, being a
625      * subset of the too-short malformation.  But there may be existing
626      * applications that are expecting the non-continuation type, so we retain
627      * it, and return it in preference to the too-short malformation.  (If this
628      * code were being written from scratch, the two types might be collapsed
629      * into one.)  I, khw, am also giving priority to returning the
630      * non-continuation and too-short malformations over overflow when multiple
631      * ones are present.  I don't know of any real reason to prefer one over
632      * the other, except that it seems to me that multiple-byte errors trumps
633      * errors from a single byte */
634     if (UNLIKELY(unexpected_non_continuation)) {
635         if (!(flags & UTF8_ALLOW_NON_CONTINUATION)) {
636             if (! (flags & UTF8_CHECK_ONLY)) {
637                 if (curlen == 1) {
638                     sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected non-continuation byte 0x%02x, immediately after start byte 0x%02x)", malformed_text, *s, *s0));
639                 }
640                 else {
641                     sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (unexpected non-continuation byte 0x%02x, %d bytes after start byte 0x%02x, expected %d bytes)", malformed_text, *s, (int) curlen, *s0, (int)expectlen));
642                 }
643             }
644             goto malformed;
645         }
646         uv = UNICODE_REPLACEMENT;
647
648         /* Skip testing for overlongs, as the REPLACEMENT may not be the same
649          * as what the original expectations were. */
650         do_overlong_test = FALSE;
651         if (retlen) {
652             *retlen = curlen;
653         }
654     }
655     else if (UNLIKELY(curlen < expectlen)) {
656         if (! (flags & UTF8_ALLOW_SHORT)) {
657             if (! (flags & UTF8_CHECK_ONLY)) {
658                 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (%d byte%s, need %d, after start byte 0x%02x)", malformed_text, (int)curlen, curlen == 1 ? "" : "s", (int)expectlen, *s0));
659             }
660             goto malformed;
661         }
662         uv = UNICODE_REPLACEMENT;
663         do_overlong_test = FALSE;
664         if (retlen) {
665             *retlen = curlen;
666         }
667     }
668
669 #ifndef EBCDIC  /* EBCDIC can't overflow */
670     if (UNLIKELY(overflowed)) {
671         sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (overflow at byte 0x%02x, after start byte 0x%02x)", malformed_text, overflow_byte, *s0));
672         goto malformed;
673     }
674 #endif
675
676     if (do_overlong_test
677         && expectlen > (STRLEN) OFFUNISKIP(uv)
678         && ! (flags & UTF8_ALLOW_LONG))
679     {
680         /* The overlong malformation has lower precedence than the others.
681          * Note that if this malformation is allowed, we return the actual
682          * value, instead of the replacement character.  This is because this
683          * value is actually well-defined. */
684         if (! (flags & UTF8_CHECK_ONLY)) {
685             sv = sv_2mortal(Perl_newSVpvf(aTHX_ "%s (%d byte%s, need %d, after start byte 0x%02x)", malformed_text, (int)expectlen, expectlen == 1 ? "": "s", OFFUNISKIP(uv), *s0));
686         }
687         goto malformed;
688     }
689
690     /* Here, the input is considered to be well-formed, but it still could be a
691      * problematic code point that is not allowed by the input parameters. */
692     if (uv >= UNICODE_SURROGATE_FIRST /* isn't problematic if < this */
693         && (flags & (UTF8_DISALLOW_ILLEGAL_INTERCHANGE
694                      |UTF8_WARN_ILLEGAL_INTERCHANGE)))
695     {
696         if (UNICODE_IS_SURROGATE(uv)) {
697
698             /* By adding UTF8_CHECK_ONLY to the test, we avoid unnecessary
699              * generation of the sv, since no warnings are raised under CHECK */
700             if ((flags & (UTF8_WARN_SURROGATE|UTF8_CHECK_ONLY)) == UTF8_WARN_SURROGATE
701                 && ckWARN_d(WARN_SURROGATE))
702             {
703                 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "UTF-16 surrogate U+%04"UVXf"", uv));
704                 pack_warn = packWARN(WARN_SURROGATE);
705             }
706             if (flags & UTF8_DISALLOW_SURROGATE) {
707                 goto disallowed;
708             }
709         }
710         else if ((uv > PERL_UNICODE_MAX)) {
711             if ((flags & (UTF8_WARN_SUPER|UTF8_CHECK_ONLY)) == UTF8_WARN_SUPER
712                 && ckWARN_d(WARN_NON_UNICODE))
713             {
714                 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv));
715                 pack_warn = packWARN(WARN_NON_UNICODE);
716             }
717 #ifndef EBCDIC  /* EBCDIC always allows FE, FF */
718
719             /* The first byte being 0xFE or 0xFF is a subset of the SUPER code
720              * points.  We test for these after the regular SUPER ones, and
721              * before possibly bailing out, so that the more dire warning
722              * overrides the regular one, if applicable */
723             if ((*s0 & 0xFE) == 0xFE    /* matches both FE, FF */
724                 && (flags & (UTF8_WARN_FE_FF|UTF8_DISALLOW_FE_FF)))
725             {
726                 if ((flags & (UTF8_WARN_FE_FF|UTF8_CHECK_ONLY))
727                                                             == UTF8_WARN_FE_FF
728                     && ckWARN_d(WARN_UTF8))
729                 {
730                     sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Code point 0x%"UVXf" is not Unicode, and not portable", uv));
731                     pack_warn = packWARN(WARN_UTF8);
732                 }
733                 if (flags & UTF8_DISALLOW_FE_FF) {
734                     goto disallowed;
735                 }
736             }
737 #endif
738             if (flags & UTF8_DISALLOW_SUPER) {
739                 goto disallowed;
740             }
741         }
742         else if (UNICODE_IS_NONCHAR(uv)) {
743             if ((flags & (UTF8_WARN_NONCHAR|UTF8_CHECK_ONLY)) == UTF8_WARN_NONCHAR
744                 && ckWARN_d(WARN_NONCHAR))
745             {
746                 sv = sv_2mortal(Perl_newSVpvf(aTHX_ "Unicode non-character U+%04"UVXf" is illegal for open interchange", uv));
747                 pack_warn = packWARN(WARN_NONCHAR);
748             }
749             if (flags & UTF8_DISALLOW_NONCHAR) {
750                 goto disallowed;
751             }
752         }
753
754         if (sv) {
755             outlier_ret = uv;   /* Note we don't bother to convert to native,
756                                    as all the outlier code points are the same
757                                    in both ASCII and EBCDIC */
758             goto do_warn;
759         }
760
761         /* Here, this is not considered a malformed character, so drop through
762          * to return it */
763     }
764
765     return UNI_TO_NATIVE(uv);
766
767     /* There are three cases which get to beyond this point.  In all 3 cases:
768      * <sv>         if not null points to a string to print as a warning.
769      * <curlen>     is what <*retlen> should be set to if UTF8_CHECK_ONLY isn't
770      *              set.
771      * <outlier_ret> is what return value to use if UTF8_CHECK_ONLY isn't set.
772      *              This is done by initializing it to 0, and changing it only
773      *              for case 1).
774      * The 3 cases are:
775      * 1)   The input is valid but problematic, and to be warned about.  The
776      *      return value is the resultant code point; <*retlen> is set to
777      *      <curlen>, the number of bytes that comprise the code point.
778      *      <pack_warn> contains the result of packWARN() for the warning
779      *      types.  The entry point for this case is the label <do_warn>;
780      * 2)   The input is a valid code point but disallowed by the parameters to
781      *      this function.  The return value is 0.  If UTF8_CHECK_ONLY is set,
782      *      <*relen> is -1; otherwise it is <curlen>, the number of bytes that
783      *      comprise the code point.  <pack_warn> contains the result of
784      *      packWARN() for the warning types.  The entry point for this case is
785      *      the label <disallowed>.
786      * 3)   The input is malformed.  The return value is 0.  If UTF8_CHECK_ONLY
787      *      is set, <*relen> is -1; otherwise it is <curlen>, the number of
788      *      bytes that comprise the malformation.  All such malformations are
789      *      assumed to be warning type <utf8>.  The entry point for this case
790      *      is the label <malformed>.
791      */
792
793   malformed:
794
795     if (sv && ckWARN_d(WARN_UTF8)) {
796         pack_warn = packWARN(WARN_UTF8);
797     }
798
799   disallowed:
800
801     if (flags & UTF8_CHECK_ONLY) {
802         if (retlen)
803             *retlen = ((STRLEN) -1);
804         return 0;
805     }
806
807   do_warn:
808
809     if (pack_warn) {    /* <pack_warn> was initialized to 0, and changed only
810                            if warnings are to be raised. */
811         const char * const string = SvPVX_const(sv);
812
813         if (PL_op)
814             Perl_warner(aTHX_ pack_warn, "%s in %s", string,  OP_DESC(PL_op));
815         else
816             Perl_warner(aTHX_ pack_warn, "%s", string);
817     }
818
819     if (retlen) {
820         *retlen = curlen;
821     }
822
823     return outlier_ret;
824 }
825
826 /*
827 =for apidoc utf8_to_uvchr_buf
828
829 Returns the native code point of the first character in the string C<s> which
830 is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
831 C<*retlen> will be set to the length, in bytes, of that character.
832
833 If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
834 enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
835 NULL) to -1.  If those warnings are off, the computed value, if well-defined
836 (or the Unicode REPLACEMENT CHARACTER if not), is silently returned, and
837 C<*retlen> is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is
838 the next possible position in C<s> that could begin a non-malformed character.
839 See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is
840 returned.
841
842 =cut
843 */
844
845
846 UV
847 Perl_utf8_to_uvchr_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
848 {
849     assert(s < send);
850
851     return utf8n_to_uvchr(s, send - s, retlen,
852                           ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY);
853 }
854
855 /* Like L</utf8_to_uvchr_buf>(), but should only be called when it is known that
856  * there are no malformations in the input UTF-8 string C<s>.  surrogates,
857  * non-character code points, and non-Unicode code points are allowed. */
858
859 UV
860 Perl_valid_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
861 {
862     UV expectlen = UTF8SKIP(s);
863     const U8* send = s + expectlen;
864     UV uv = *s;
865
866     PERL_ARGS_ASSERT_VALID_UTF8_TO_UVCHR;
867     PERL_UNUSED_CONTEXT;
868
869     if (retlen) {
870         *retlen = expectlen;
871     }
872
873     /* An invariant is trivially returned */
874     if (expectlen == 1) {
875         return uv;
876     }
877
878 #ifdef EBCDIC
879     uv = NATIVE_UTF8_TO_I8(uv);
880 #endif
881
882     /* Remove the leading bits that indicate the number of bytes, leaving just
883      * the bits that are part of the value */
884     uv &= UTF_START_MASK(expectlen);
885
886     /* Now, loop through the remaining bytes, accumulating each into the
887      * working total as we go.  (I khw tried unrolling the loop for up to 4
888      * bytes, but there was no performance improvement) */
889     for (++s; s < send; s++) {
890         uv = UTF8_ACCUMULATE(uv, *s);
891     }
892
893     return UNI_TO_NATIVE(uv);
894
895 }
896
897 /*
898 =for apidoc utf8_to_uvuni_buf
899
900 Only in very rare circumstances should code need to be dealing in Unicode
901 (as opposed to native) code points.  In those few cases, use
902 C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>> instead.
903
904 Returns the Unicode (not-native) code point of the first character in the
905 string C<s> which
906 is assumed to be in UTF-8 encoding; C<send> points to 1 beyond the end of C<s>.
907 C<retlen> will be set to the length, in bytes, of that character.
908
909 If C<s> does not point to a well-formed UTF-8 character and UTF8 warnings are
910 enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
911 NULL) to -1.  If those warnings are off, the computed value if well-defined (or
912 the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
913 is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
914 next possible position in C<s> that could begin a non-malformed character.
915 See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
916
917 =cut
918 */
919
920 UV
921 Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen)
922 {
923     PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF;
924
925     assert(send > s);
926
927     /* Call the low level routine asking for checks */
928     return NATIVE_TO_UNI(Perl_utf8n_to_uvchr(aTHX_ s, send -s, retlen,
929                                ckWARN_d(WARN_UTF8) ? 0 : UTF8_ALLOW_ANY));
930 }
931
932 /*
933 =for apidoc utf8_length
934
935 Return the length of the UTF-8 char encoded string C<s> in characters.
936 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
937 up past C<e>, croaks.
938
939 =cut
940 */
941
942 STRLEN
943 Perl_utf8_length(pTHX_ const U8 *s, const U8 *e)
944 {
945     STRLEN len = 0;
946
947     PERL_ARGS_ASSERT_UTF8_LENGTH;
948
949     /* Note: cannot use UTF8_IS_...() too eagerly here since e.g.
950      * the bitops (especially ~) can create illegal UTF-8.
951      * In other words: in Perl UTF-8 is not just for Unicode. */
952
953     if (e < s)
954         goto warn_and_return;
955     while (s < e) {
956         s += UTF8SKIP(s);
957         len++;
958     }
959
960     if (e != s) {
961         len--;
962         warn_and_return:
963         if (PL_op)
964             Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
965                              "%s in %s", unees, OP_DESC(PL_op));
966         else
967             Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
968     }
969
970     return len;
971 }
972
973 /*
974 =for apidoc utf8_distance
975
976 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
977 and C<b>.
978
979 WARNING: use only if you *know* that the pointers point inside the
980 same UTF-8 buffer.
981
982 =cut
983 */
984
985 IV
986 Perl_utf8_distance(pTHX_ const U8 *a, const U8 *b)
987 {
988     PERL_ARGS_ASSERT_UTF8_DISTANCE;
989
990     return (a < b) ? -1 * (IV) utf8_length(a, b) : (IV) utf8_length(b, a);
991 }
992
993 /*
994 =for apidoc utf8_hop
995
996 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
997 forward or backward.
998
999 WARNING: do not use the following unless you *know* C<off> is within
1000 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
1001 on the first byte of character or just after the last byte of a character.
1002
1003 =cut
1004 */
1005
1006 U8 *
1007 Perl_utf8_hop(const U8 *s, I32 off)
1008 {
1009     PERL_ARGS_ASSERT_UTF8_HOP;
1010
1011     /* Note: cannot use UTF8_IS_...() too eagerly here since e.g
1012      * the bitops (especially ~) can create illegal UTF-8.
1013      * In other words: in Perl UTF-8 is not just for Unicode. */
1014
1015     if (off >= 0) {
1016         while (off--)
1017             s += UTF8SKIP(s);
1018     }
1019     else {
1020         while (off++) {
1021             s--;
1022             while (UTF8_IS_CONTINUATION(*s))
1023                 s--;
1024         }
1025     }
1026     return (U8 *)s;
1027 }
1028
1029 /*
1030 =for apidoc bytes_cmp_utf8
1031
1032 Compares the sequence of characters (stored as octets) in C<b>, C<blen> with the
1033 sequence of characters (stored as UTF-8)
1034 in C<u>, C<ulen>.  Returns 0 if they are
1035 equal, -1 or -2 if the first string is less than the second string, +1 or +2
1036 if the first string is greater than the second string.
1037
1038 -1 or +1 is returned if the shorter string was identical to the start of the
1039 longer string.  -2 or +2 is returned if
1040 there was a difference between characters
1041 within the strings.
1042
1043 =cut
1044 */
1045
1046 int
1047 Perl_bytes_cmp_utf8(pTHX_ const U8 *b, STRLEN blen, const U8 *u, STRLEN ulen)
1048 {
1049     const U8 *const bend = b + blen;
1050     const U8 *const uend = u + ulen;
1051
1052     PERL_ARGS_ASSERT_BYTES_CMP_UTF8;
1053
1054     while (b < bend && u < uend) {
1055         U8 c = *u++;
1056         if (!UTF8_IS_INVARIANT(c)) {
1057             if (UTF8_IS_DOWNGRADEABLE_START(c)) {
1058                 if (u < uend) {
1059                     U8 c1 = *u++;
1060                     if (UTF8_IS_CONTINUATION(c1)) {
1061                         c = TWO_BYTE_UTF8_TO_NATIVE(c, c1);
1062                     } else {
1063                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1064                                          "Malformed UTF-8 character "
1065                                          "(unexpected non-continuation byte 0x%02x"
1066                                          ", immediately after start byte 0x%02x)"
1067                                          /* Dear diag.t, it's in the pod.  */
1068                                          "%s%s", c1, c,
1069                                          PL_op ? " in " : "",
1070                                          PL_op ? OP_DESC(PL_op) : "");
1071                         return -2;
1072                     }
1073                 } else {
1074                     if (PL_op)
1075                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
1076                                          "%s in %s", unees, OP_DESC(PL_op));
1077                     else
1078                         Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8), "%s", unees);
1079                     return -2; /* Really want to return undef :-)  */
1080                 }
1081             } else {
1082                 return -2;
1083             }
1084         }
1085         if (*b != c) {
1086             return *b < c ? -2 : +2;
1087         }
1088         ++b;
1089     }
1090
1091     if (b == bend && u == uend)
1092         return 0;
1093
1094     return b < bend ? +1 : -1;
1095 }
1096
1097 /*
1098 =for apidoc utf8_to_bytes
1099
1100 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
1101 Unlike L</bytes_to_utf8>, this over-writes the original string, and
1102 updates C<len> to contain the new length.
1103 Returns zero on failure, setting C<len> to -1.
1104
1105 If you need a copy of the string, see L</bytes_from_utf8>.
1106
1107 =cut
1108 */
1109
1110 U8 *
1111 Perl_utf8_to_bytes(pTHX_ U8 *s, STRLEN *len)
1112 {
1113     U8 * const save = s;
1114     U8 * const send = s + *len;
1115     U8 *d;
1116
1117     PERL_ARGS_ASSERT_UTF8_TO_BYTES;
1118     PERL_UNUSED_CONTEXT;
1119
1120     /* ensure valid UTF-8 and chars < 256 before updating string */
1121     while (s < send) {
1122         if (! UTF8_IS_INVARIANT(*s)) {
1123             if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1124                 *len = ((STRLEN) -1);
1125                 return 0;
1126             }
1127             s++;
1128         }
1129         s++;
1130     }
1131
1132     d = s = save;
1133     while (s < send) {
1134         U8 c = *s++;
1135         if (! UTF8_IS_INVARIANT(c)) {
1136             /* Then it is two-byte encoded */
1137             c = TWO_BYTE_UTF8_TO_NATIVE(c, *s);
1138             s++;
1139         }
1140         *d++ = c;
1141     }
1142     *d = '\0';
1143     *len = d - save;
1144     return save;
1145 }
1146
1147 /*
1148 =for apidoc bytes_from_utf8
1149
1150 Converts a string C<s> of length C<len> from UTF-8 into native byte encoding.
1151 Unlike L</utf8_to_bytes> but like L</bytes_to_utf8>, returns a pointer to
1152 the newly-created string, and updates C<len> to contain the new
1153 length.  Returns the original string if no conversion occurs, C<len>
1154 is unchanged.  Do nothing if C<is_utf8> points to 0.  Sets C<is_utf8> to
1155 0 if C<s> is converted or consisted entirely of characters that are invariant
1156 in utf8 (i.e., US-ASCII on non-EBCDIC machines).
1157
1158 =cut
1159 */
1160
1161 U8 *
1162 Perl_bytes_from_utf8(pTHX_ const U8 *s, STRLEN *len, bool *is_utf8)
1163 {
1164     U8 *d;
1165     const U8 *start = s;
1166     const U8 *send;
1167     I32 count = 0;
1168
1169     PERL_ARGS_ASSERT_BYTES_FROM_UTF8;
1170     PERL_UNUSED_CONTEXT;
1171     if (!*is_utf8)
1172         return (U8 *)start;
1173
1174     /* ensure valid UTF-8 and chars < 256 before converting string */
1175     for (send = s + *len; s < send;) {
1176         if (! UTF8_IS_INVARIANT(*s)) {
1177             if (! UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, send)) {
1178                 return (U8 *)start;
1179             }
1180             count++;
1181             s++;
1182         }
1183         s++;
1184     }
1185
1186     *is_utf8 = FALSE;
1187
1188     Newx(d, (*len) - count + 1, U8);
1189     s = start; start = d;
1190     while (s < send) {
1191         U8 c = *s++;
1192         if (! UTF8_IS_INVARIANT(c)) {
1193             /* Then it is two-byte encoded */
1194             c = TWO_BYTE_UTF8_TO_NATIVE(c, *s);
1195             s++;
1196         }
1197         *d++ = c;
1198     }
1199     *d = '\0';
1200     *len = d - start;
1201     return (U8 *)start;
1202 }
1203
1204 /*
1205 =for apidoc bytes_to_utf8
1206
1207 Converts a string C<s> of length C<len> bytes from the native encoding into
1208 UTF-8.
1209 Returns a pointer to the newly-created string, and sets C<len> to
1210 reflect the new length in bytes.
1211
1212 A C<NUL> character will be written after the end of the string.
1213
1214 If you want to convert to UTF-8 from encodings other than
1215 the native (Latin1 or EBCDIC),
1216 see L</sv_recode_to_utf8>().
1217
1218 =cut
1219 */
1220
1221 /* This logic is duplicated in sv_catpvn_flags, so any bug fixes will
1222    likewise need duplication. */
1223
1224 U8*
1225 Perl_bytes_to_utf8(pTHX_ const U8 *s, STRLEN *len)
1226 {
1227     const U8 * const send = s + (*len);
1228     U8 *d;
1229     U8 *dst;
1230
1231     PERL_ARGS_ASSERT_BYTES_TO_UTF8;
1232     PERL_UNUSED_CONTEXT;
1233
1234     Newx(d, (*len) * 2 + 1, U8);
1235     dst = d;
1236
1237     while (s < send) {
1238         append_utf8_from_native_byte(*s, &d);
1239         s++;
1240     }
1241     *d = '\0';
1242     *len = d-dst;
1243     return dst;
1244 }
1245
1246 /*
1247  * Convert native (big-endian) or reversed (little-endian) UTF-16 to UTF-8.
1248  *
1249  * Destination must be pre-extended to 3/2 source.  Do not use in-place.
1250  * We optimize for native, for obvious reasons. */
1251
1252 U8*
1253 Perl_utf16_to_utf8(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
1254 {
1255     U8* pend;
1256     U8* dstart = d;
1257
1258     PERL_ARGS_ASSERT_UTF16_TO_UTF8;
1259
1260     if (bytelen & 1)
1261         Perl_croak(aTHX_ "panic: utf16_to_utf8: odd bytelen %"UVuf, (UV)bytelen);
1262
1263     pend = p + bytelen;
1264
1265     while (p < pend) {
1266         UV uv = (p[0] << 8) + p[1]; /* UTF-16BE */
1267         p += 2;
1268         if (UNI_IS_INVARIANT(uv)) {
1269             *d++ = LATIN1_TO_NATIVE((U8) uv);
1270             continue;
1271         }
1272         if (uv <= MAX_UTF8_TWO_BYTE) {
1273             *d++ = UTF8_TWO_BYTE_HI(UNI_TO_NATIVE(uv));
1274             *d++ = UTF8_TWO_BYTE_LO(UNI_TO_NATIVE(uv));
1275             continue;
1276         }
1277 #define FIRST_HIGH_SURROGATE UNICODE_SURROGATE_FIRST
1278 #define LAST_HIGH_SURROGATE  0xDBFF
1279 #define FIRST_LOW_SURROGATE  0xDC00
1280 #define LAST_LOW_SURROGATE   UNICODE_SURROGATE_LAST
1281
1282         /* This assumes that most uses will be in the first Unicode plane, not
1283          * needing surrogates */
1284         if (UNLIKELY(uv >= UNICODE_SURROGATE_FIRST
1285                   && uv <= UNICODE_SURROGATE_LAST))
1286         {
1287             if (UNLIKELY(p >= pend) || UNLIKELY(uv > LAST_HIGH_SURROGATE)) {
1288                 Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1289             }
1290             else {
1291                 UV low = (p[0] << 8) + p[1];
1292                 if (   UNLIKELY(low < FIRST_LOW_SURROGATE)
1293                     || UNLIKELY(low > LAST_LOW_SURROGATE))
1294                 {
1295                     Perl_croak(aTHX_ "Malformed UTF-16 surrogate");
1296                 }
1297                 p += 2;
1298                 uv = ((uv - FIRST_HIGH_SURROGATE) << 10)
1299                                        + (low - FIRST_LOW_SURROGATE) + 0x10000;
1300             }
1301         }
1302 #ifdef EBCDIC
1303         d = uvoffuni_to_utf8_flags(d, uv, 0);
1304 #else
1305         if (uv < 0x10000) {
1306             *d++ = (U8)(( uv >> 12)         | 0xe0);
1307             *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
1308             *d++ = (U8)(( uv        & 0x3f) | 0x80);
1309             continue;
1310         }
1311         else {
1312             *d++ = (U8)(( uv >> 18)         | 0xf0);
1313             *d++ = (U8)(((uv >> 12) & 0x3f) | 0x80);
1314             *d++ = (U8)(((uv >>  6) & 0x3f) | 0x80);
1315             *d++ = (U8)(( uv        & 0x3f) | 0x80);
1316             continue;
1317         }
1318 #endif
1319     }
1320     *newlen = d - dstart;
1321     return d;
1322 }
1323
1324 /* Note: this one is slightly destructive of the source. */
1325
1326 U8*
1327 Perl_utf16_to_utf8_reversed(pTHX_ U8* p, U8* d, I32 bytelen, I32 *newlen)
1328 {
1329     U8* s = (U8*)p;
1330     U8* const send = s + bytelen;
1331
1332     PERL_ARGS_ASSERT_UTF16_TO_UTF8_REVERSED;
1333
1334     if (bytelen & 1)
1335         Perl_croak(aTHX_ "panic: utf16_to_utf8_reversed: odd bytelen %"UVuf,
1336                    (UV)bytelen);
1337
1338     while (s < send) {
1339         const U8 tmp = s[0];
1340         s[0] = s[1];
1341         s[1] = tmp;
1342         s += 2;
1343     }
1344     return utf16_to_utf8(p, d, bytelen, newlen);
1345 }
1346
1347 bool
1348 Perl__is_uni_FOO(pTHX_ const U8 classnum, const UV c)
1349 {
1350     U8 tmpbuf[UTF8_MAXBYTES+1];
1351     uvchr_to_utf8(tmpbuf, c);
1352     return _is_utf8_FOO(classnum, tmpbuf);
1353 }
1354
1355 /* Internal function so we can deprecate the external one, and call
1356    this one from other deprecated functions in this file */
1357
1358 bool
1359 Perl__is_utf8_idstart(pTHX_ const U8 *p)
1360 {
1361     PERL_ARGS_ASSERT__IS_UTF8_IDSTART;
1362
1363     if (*p == '_')
1364         return TRUE;
1365     return is_utf8_common(p, &PL_utf8_idstart, "IdStart", NULL);
1366 }
1367
1368 bool
1369 Perl__is_uni_perl_idcont(pTHX_ UV c)
1370 {
1371     U8 tmpbuf[UTF8_MAXBYTES+1];
1372     uvchr_to_utf8(tmpbuf, c);
1373     return _is_utf8_perl_idcont(tmpbuf);
1374 }
1375
1376 bool
1377 Perl__is_uni_perl_idstart(pTHX_ UV c)
1378 {
1379     U8 tmpbuf[UTF8_MAXBYTES+1];
1380     uvchr_to_utf8(tmpbuf, c);
1381     return _is_utf8_perl_idstart(tmpbuf);
1382 }
1383
1384 UV
1385 Perl__to_upper_title_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const char S_or_s)
1386 {
1387     /* We have the latin1-range values compiled into the core, so just use
1388      * those, converting the result to utf8.  The only difference between upper
1389      * and title case in this range is that LATIN_SMALL_LETTER_SHARP_S is
1390      * either "SS" or "Ss".  Which one to use is passed into the routine in
1391      * 'S_or_s' to avoid a test */
1392
1393     UV converted = toUPPER_LATIN1_MOD(c);
1394
1395     PERL_ARGS_ASSERT__TO_UPPER_TITLE_LATIN1;
1396
1397     assert(S_or_s == 'S' || S_or_s == 's');
1398
1399     if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for
1400                                              characters in this range */
1401         *p = (U8) converted;
1402         *lenp = 1;
1403         return converted;
1404     }
1405
1406     /* toUPPER_LATIN1_MOD gives the correct results except for three outliers,
1407      * which it maps to one of them, so as to only have to have one check for
1408      * it in the main case */
1409     if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) {
1410         switch (c) {
1411             case LATIN_SMALL_LETTER_Y_WITH_DIAERESIS:
1412                 converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS;
1413                 break;
1414             case MICRO_SIGN:
1415                 converted = GREEK_CAPITAL_LETTER_MU;
1416                 break;
1417             case LATIN_SMALL_LETTER_SHARP_S:
1418                 *(p)++ = 'S';
1419                 *p = S_or_s;
1420                 *lenp = 2;
1421                 return 'S';
1422             default:
1423                 Perl_croak(aTHX_ "panic: to_upper_title_latin1 did not expect '%c' to map to '%c'", c, LATIN_SMALL_LETTER_Y_WITH_DIAERESIS);
1424                 NOT_REACHED; /* NOTREACHED */
1425         }
1426     }
1427
1428     *(p)++ = UTF8_TWO_BYTE_HI(converted);
1429     *p = UTF8_TWO_BYTE_LO(converted);
1430     *lenp = 2;
1431
1432     return converted;
1433 }
1434
1435 /* Call the function to convert a UTF-8 encoded character to the specified case.
1436  * Note that there may be more than one character in the result.
1437  * INP is a pointer to the first byte of the input character
1438  * OUTP will be set to the first byte of the string of changed characters.  It
1439  *      needs to have space for UTF8_MAXBYTES_CASE+1 bytes
1440  * LENP will be set to the length in bytes of the string of changed characters
1441  *
1442  * The functions return the ordinal of the first character in the string of OUTP */
1443 #define CALL_UPPER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_toupper, "ToUc", "")
1444 #define CALL_TITLE_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_totitle, "ToTc", "")
1445 #define CALL_LOWER_CASE(INP, OUTP, LENP) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tolower, "ToLc", "")
1446
1447 /* This additionally has the input parameter SPECIALS, which if non-zero will
1448  * cause this to use the SPECIALS hash for folding (meaning get full case
1449  * folding); otherwise, when zero, this implies a simple case fold */
1450 #define CALL_FOLD_CASE(INP, OUTP, LENP, SPECIALS) Perl_to_utf8_case(aTHX_ INP, OUTP, LENP, &PL_utf8_tofold, "ToCf", (SPECIALS) ? "" : NULL)
1451
1452 UV
1453 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
1454 {
1455     /* Convert the Unicode character whose ordinal is <c> to its uppercase
1456      * version and store that in UTF-8 in <p> and its length in bytes in <lenp>.
1457      * Note that the <p> needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
1458      * the changed version may be longer than the original character.
1459      *
1460      * The ordinal of the first character of the changed version is returned
1461      * (but note, as explained above, that there may be more.) */
1462
1463     PERL_ARGS_ASSERT_TO_UNI_UPPER;
1464
1465     if (c < 256) {
1466         return _to_upper_title_latin1((U8) c, p, lenp, 'S');
1467     }
1468
1469     uvchr_to_utf8(p, c);
1470     return CALL_UPPER_CASE(p, p, lenp);
1471 }
1472
1473 UV
1474 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
1475 {
1476     PERL_ARGS_ASSERT_TO_UNI_TITLE;
1477
1478     if (c < 256) {
1479         return _to_upper_title_latin1((U8) c, p, lenp, 's');
1480     }
1481
1482     uvchr_to_utf8(p, c);
1483     return CALL_TITLE_CASE(p, p, lenp);
1484 }
1485
1486 STATIC U8
1487 S_to_lower_latin1(const U8 c, U8* p, STRLEN *lenp)
1488 {
1489     /* We have the latin1-range values compiled into the core, so just use
1490      * those, converting the result to utf8.  Since the result is always just
1491      * one character, we allow <p> to be NULL */
1492
1493     U8 converted = toLOWER_LATIN1(c);
1494
1495     if (p != NULL) {
1496         if (NATIVE_BYTE_IS_INVARIANT(converted)) {
1497             *p = converted;
1498             *lenp = 1;
1499         }
1500         else {
1501             /* Result is known to always be < 256, so can use the EIGHT_BIT
1502              * macros */
1503             *p = UTF8_EIGHT_BIT_HI(converted);
1504             *(p+1) = UTF8_EIGHT_BIT_LO(converted);
1505             *lenp = 2;
1506         }
1507     }
1508     return converted;
1509 }
1510
1511 UV
1512 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
1513 {
1514     PERL_ARGS_ASSERT_TO_UNI_LOWER;
1515
1516     if (c < 256) {
1517         return to_lower_latin1((U8) c, p, lenp);
1518     }
1519
1520     uvchr_to_utf8(p, c);
1521     return CALL_LOWER_CASE(p, p, lenp);
1522 }
1523
1524 UV
1525 Perl__to_fold_latin1(pTHX_ const U8 c, U8* p, STRLEN *lenp, const unsigned int flags)
1526 {
1527     /* Corresponds to to_lower_latin1(); <flags> bits meanings:
1528      *      FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
1529      *      FOLD_FLAGS_FULL  iff full folding is to be used;
1530      *
1531      *  Not to be used for locale folds
1532      */
1533
1534     UV converted;
1535
1536     PERL_ARGS_ASSERT__TO_FOLD_LATIN1;
1537     PERL_UNUSED_CONTEXT;
1538
1539     assert (! (flags & FOLD_FLAGS_LOCALE));
1540
1541     if (c == MICRO_SIGN) {
1542         converted = GREEK_SMALL_LETTER_MU;
1543     }
1544     else if ((flags & FOLD_FLAGS_FULL) && c == LATIN_SMALL_LETTER_SHARP_S) {
1545
1546         /* If can't cross 127/128 boundary, can't return "ss"; instead return
1547          * two U+017F characters, as fc("\df") should eq fc("\x{17f}\x{17f}")
1548          * under those circumstances. */
1549         if (flags & FOLD_FLAGS_NOMIX_ASCII) {
1550             *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
1551             Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
1552                  p, *lenp, U8);
1553             return LATIN_SMALL_LETTER_LONG_S;
1554         }
1555         else {
1556             *(p)++ = 's';
1557             *p = 's';
1558             *lenp = 2;
1559             return 's';
1560         }
1561     }
1562     else { /* In this range the fold of all other characters is their lower
1563               case */
1564         converted = toLOWER_LATIN1(c);
1565     }
1566
1567     if (UVCHR_IS_INVARIANT(converted)) {
1568         *p = (U8) converted;
1569         *lenp = 1;
1570     }
1571     else {
1572         *(p)++ = UTF8_TWO_BYTE_HI(converted);
1573         *p = UTF8_TWO_BYTE_LO(converted);
1574         *lenp = 2;
1575     }
1576
1577     return converted;
1578 }
1579
1580 UV
1581 Perl__to_uni_fold_flags(pTHX_ UV c, U8* p, STRLEN *lenp, U8 flags)
1582 {
1583
1584     /* Not currently externally documented, and subject to change
1585      *  <flags> bits meanings:
1586      *      FOLD_FLAGS_FULL  iff full folding is to be used;
1587      *      FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
1588      *                        locale are to be used.
1589      *      FOLD_FLAGS_NOMIX_ASCII iff non-ASCII to ASCII folds are prohibited
1590      */
1591
1592     PERL_ARGS_ASSERT__TO_UNI_FOLD_FLAGS;
1593
1594     if (flags & FOLD_FLAGS_LOCALE) {
1595         /* Treat a UTF-8 locale as not being in locale at all */
1596         if (IN_UTF8_CTYPE_LOCALE) {
1597             flags &= ~FOLD_FLAGS_LOCALE;
1598         }
1599         else {
1600             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
1601             goto needs_full_generality;
1602         }
1603     }
1604
1605     if (c < 256) {
1606         return _to_fold_latin1((U8) c, p, lenp,
1607                             flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
1608     }
1609
1610     /* Here, above 255.  If no special needs, just use the macro */
1611     if ( ! (flags & (FOLD_FLAGS_LOCALE|FOLD_FLAGS_NOMIX_ASCII))) {
1612         uvchr_to_utf8(p, c);
1613         return CALL_FOLD_CASE(p, p, lenp, flags & FOLD_FLAGS_FULL);
1614     }
1615     else {  /* Otherwise, _to_utf8_fold_flags has the intelligence to deal with
1616                the special flags. */
1617         U8 utf8_c[UTF8_MAXBYTES + 1];
1618
1619       needs_full_generality:
1620         uvchr_to_utf8(utf8_c, c);
1621         return _to_utf8_fold_flags(utf8_c, p, lenp, flags);
1622     }
1623 }
1624
1625 PERL_STATIC_INLINE bool
1626 S_is_utf8_common(pTHX_ const U8 *const p, SV **swash,
1627                  const char *const swashname, SV* const invlist)
1628 {
1629     /* returns a boolean giving whether or not the UTF8-encoded character that
1630      * starts at <p> is in the swash indicated by <swashname>.  <swash>
1631      * contains a pointer to where the swash indicated by <swashname>
1632      * is to be stored; which this routine will do, so that future calls will
1633      * look at <*swash> and only generate a swash if it is not null.  <invlist>
1634      * is NULL or an inversion list that defines the swash.  If not null, it
1635      * saves time during initialization of the swash.
1636      *
1637      * Note that it is assumed that the buffer length of <p> is enough to
1638      * contain all the bytes that comprise the character.  Thus, <*p> should
1639      * have been checked before this call for mal-formedness enough to assure
1640      * that. */
1641
1642     PERL_ARGS_ASSERT_IS_UTF8_COMMON;
1643
1644     /* The API should have included a length for the UTF-8 character in <p>,
1645      * but it doesn't.  We therefore assume that p has been validated at least
1646      * as far as there being enough bytes available in it to accommodate the
1647      * character without reading beyond the end, and pass that number on to the
1648      * validating routine */
1649     if (! isUTF8_CHAR(p, p + UTF8SKIP(p))) {
1650         if (ckWARN_d(WARN_UTF8)) {
1651             Perl_warner(aTHX_ packWARN2(WARN_DEPRECATED,WARN_UTF8),
1652                     "Passing malformed UTF-8 to \"%s\" is deprecated", swashname);
1653             if (ckWARN(WARN_UTF8)) {    /* This will output details as to the
1654                                            what the malformation is */
1655                 utf8_to_uvchr_buf(p, p + UTF8SKIP(p), NULL);
1656             }
1657         }
1658         return FALSE;
1659     }
1660     if (!*swash) {
1661         U8 flags = _CORE_SWASH_INIT_ACCEPT_INVLIST;
1662         *swash = _core_swash_init("utf8",
1663
1664                                   /* Only use the name if there is no inversion
1665                                    * list; otherwise will go out to disk */
1666                                   (invlist) ? "" : swashname,
1667
1668                                   &PL_sv_undef, 1, 0, invlist, &flags);
1669     }
1670
1671     return swash_fetch(*swash, p, TRUE) != 0;
1672 }
1673
1674 bool
1675 Perl__is_utf8_FOO(pTHX_ const U8 classnum, const U8 *p)
1676 {
1677     PERL_ARGS_ASSERT__IS_UTF8_FOO;
1678
1679     assert(classnum < _FIRST_NON_SWASH_CC);
1680
1681     return is_utf8_common(p,
1682                           &PL_utf8_swash_ptrs[classnum],
1683                           swash_property_names[classnum],
1684                           PL_XPosix_ptrs[classnum]);
1685 }
1686
1687 bool
1688 Perl__is_utf8_perl_idstart(pTHX_ const U8 *p)
1689 {
1690     SV* invlist = NULL;
1691
1692     PERL_ARGS_ASSERT__IS_UTF8_PERL_IDSTART;
1693
1694     if (! PL_utf8_perl_idstart) {
1695         invlist = _new_invlist_C_array(_Perl_IDStart_invlist);
1696     }
1697     return is_utf8_common(p, &PL_utf8_perl_idstart, "_Perl_IDStart", invlist);
1698 }
1699
1700 bool
1701 Perl__is_utf8_xidstart(pTHX_ const U8 *p)
1702 {
1703     PERL_ARGS_ASSERT__IS_UTF8_XIDSTART;
1704
1705     if (*p == '_')
1706         return TRUE;
1707     return is_utf8_common(p, &PL_utf8_xidstart, "XIdStart", NULL);
1708 }
1709
1710 bool
1711 Perl__is_utf8_perl_idcont(pTHX_ const U8 *p)
1712 {
1713     SV* invlist = NULL;
1714
1715     PERL_ARGS_ASSERT__IS_UTF8_PERL_IDCONT;
1716
1717     if (! PL_utf8_perl_idcont) {
1718         invlist = _new_invlist_C_array(_Perl_IDCont_invlist);
1719     }
1720     return is_utf8_common(p, &PL_utf8_perl_idcont, "_Perl_IDCont", invlist);
1721 }
1722
1723 bool
1724 Perl__is_utf8_idcont(pTHX_ const U8 *p)
1725 {
1726     PERL_ARGS_ASSERT__IS_UTF8_IDCONT;
1727
1728     return is_utf8_common(p, &PL_utf8_idcont, "IdContinue", NULL);
1729 }
1730
1731 bool
1732 Perl__is_utf8_xidcont(pTHX_ const U8 *p)
1733 {
1734     PERL_ARGS_ASSERT__IS_UTF8_XIDCONT;
1735
1736     return is_utf8_common(p, &PL_utf8_idcont, "XIdContinue", NULL);
1737 }
1738
1739 bool
1740 Perl__is_utf8_mark(pTHX_ const U8 *p)
1741 {
1742     PERL_ARGS_ASSERT__IS_UTF8_MARK;
1743
1744     return is_utf8_common(p, &PL_utf8_mark, "IsM", NULL);
1745 }
1746
1747 /*
1748 =for apidoc to_utf8_case
1749
1750 C<p> contains the pointer to the UTF-8 string encoding
1751 the character that is being converted.  This routine assumes that the character
1752 at C<p> is well-formed.
1753
1754 C<ustrp> is a pointer to the character buffer to put the
1755 conversion result to.  C<lenp> is a pointer to the length
1756 of the result.
1757
1758 C<swashp> is a pointer to the swash to use.
1759
1760 Both the special and normal mappings are stored in F<lib/unicore/To/Foo.pl>,
1761 and loaded by SWASHNEW, using F<lib/utf8_heavy.pl>.  C<special> (usually,
1762 but not always, a multicharacter mapping), is tried first.
1763
1764 C<special> is a string, normally C<NULL> or C<"">.  C<NULL> means to not use
1765 any special mappings; C<""> means to use the special mappings.  Values other
1766 than these two are treated as the name of the hash containing the special
1767 mappings, like C<"utf8::ToSpecLower">.
1768
1769 C<normal> is a string like "ToLower" which means the swash
1770 %utf8::ToLower.
1771
1772 =cut */
1773
1774 UV
1775 Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp,
1776                         SV **swashp, const char *normal, const char *special)
1777 {
1778     STRLEN len = 0;
1779     const UV uv1 = valid_utf8_to_uvchr(p, NULL);
1780
1781     PERL_ARGS_ASSERT_TO_UTF8_CASE;
1782
1783     /* Note that swash_fetch() doesn't output warnings for these because it
1784      * assumes we will */
1785     if (uv1 >= UNICODE_SURROGATE_FIRST) {
1786         if (uv1 <= UNICODE_SURROGATE_LAST) {
1787             if (ckWARN_d(WARN_SURROGATE)) {
1788                 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
1789                 Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
1790                     "Operation \"%s\" returns its argument for UTF-16 surrogate U+%04"UVXf"", desc, uv1);
1791             }
1792         }
1793         else if (UNICODE_IS_SUPER(uv1)) {
1794             if (ckWARN_d(WARN_NON_UNICODE)) {
1795                 const char* desc = (PL_op) ? OP_DESC(PL_op) : normal;
1796                 Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
1797                     "Operation \"%s\" returns its argument for non-Unicode code point 0x%04"UVXf"", desc, uv1);
1798             }
1799         }
1800
1801         /* Note that non-characters are perfectly legal, so no warning should
1802          * be given */
1803     }
1804
1805     if (!*swashp) /* load on-demand */
1806          *swashp = _core_swash_init("utf8", normal, &PL_sv_undef, 4, 0, NULL, NULL);
1807
1808     if (special) {
1809          /* It might be "special" (sometimes, but not always,
1810           * a multicharacter mapping) */
1811          HV *hv = NULL;
1812          SV **svp;
1813
1814          /* If passed in the specials name, use that; otherwise use any
1815           * given in the swash */
1816          if (*special != '\0') {
1817             hv = get_hv(special, 0);
1818         }
1819         else {
1820             svp = hv_fetchs(MUTABLE_HV(SvRV(*swashp)), "SPECIALS", 0);
1821             if (svp) {
1822                 hv = MUTABLE_HV(SvRV(*svp));
1823             }
1824         }
1825
1826          if (hv
1827              && (svp = hv_fetch(hv, (const char*)p, UNISKIP(uv1), FALSE))
1828              && (*svp))
1829          {
1830              const char *s;
1831
1832               s = SvPV_const(*svp, len);
1833               if (len == 1)
1834                   /* EIGHTBIT */
1835                    len = uvchr_to_utf8(ustrp, *(U8*)s) - ustrp;
1836               else {
1837                    Copy(s, ustrp, len, U8);
1838               }
1839          }
1840     }
1841
1842     if (!len && *swashp) {
1843         const UV uv2 = swash_fetch(*swashp, p, TRUE /* => is utf8 */);
1844
1845          if (uv2) {
1846               /* It was "normal" (a single character mapping). */
1847               len = uvchr_to_utf8(ustrp, uv2) - ustrp;
1848          }
1849     }
1850
1851     if (len) {
1852         if (lenp) {
1853             *lenp = len;
1854         }
1855         return valid_utf8_to_uvchr(ustrp, 0);
1856     }
1857
1858     /* Here, there was no mapping defined, which means that the code point maps
1859      * to itself.  Return the inputs */
1860     len = UTF8SKIP(p);
1861     if (p != ustrp) {   /* Don't copy onto itself */
1862         Copy(p, ustrp, len, U8);
1863     }
1864
1865     if (lenp)
1866          *lenp = len;
1867
1868     return uv1;
1869
1870 }
1871
1872 STATIC UV
1873 S_check_locale_boundary_crossing(pTHX_ const U8* const p, const UV result, U8* const ustrp, STRLEN *lenp)
1874 {
1875     /* This is called when changing the case of a utf8-encoded character above
1876      * the Latin1 range, and the operation is in a non-UTF-8 locale.  If the
1877      * result contains a character that crosses the 255/256 boundary, disallow
1878      * the change, and return the original code point.  See L<perlfunc/lc> for
1879      * why;
1880      *
1881      * p        points to the original string whose case was changed; assumed
1882      *          by this routine to be well-formed
1883      * result   the code point of the first character in the changed-case string
1884      * ustrp    points to the changed-case string (<result> represents its first char)
1885      * lenp     points to the length of <ustrp> */
1886
1887     UV original;    /* To store the first code point of <p> */
1888
1889     PERL_ARGS_ASSERT_CHECK_LOCALE_BOUNDARY_CROSSING;
1890
1891     assert(UTF8_IS_ABOVE_LATIN1(*p));
1892
1893     /* We know immediately if the first character in the string crosses the
1894      * boundary, so can skip */
1895     if (result > 255) {
1896
1897         /* Look at every character in the result; if any cross the
1898         * boundary, the whole thing is disallowed */
1899         U8* s = ustrp + UTF8SKIP(ustrp);
1900         U8* e = ustrp + *lenp;
1901         while (s < e) {
1902             if (! UTF8_IS_ABOVE_LATIN1(*s)) {
1903                 goto bad_crossing;
1904             }
1905             s += UTF8SKIP(s);
1906         }
1907
1908         /* Here, no characters crossed, result is ok as-is, but we warn. */
1909         _CHECK_AND_OUTPUT_WIDE_LOCALE_UTF8_MSG(p, p + UTF8SKIP(p));
1910         return result;
1911     }
1912
1913   bad_crossing:
1914
1915     /* Failed, have to return the original */
1916     original = valid_utf8_to_uvchr(p, lenp);
1917
1918     /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
1919     Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
1920                            "Can't do %s(\"\\x{%"UVXf"}\") on non-UTF-8 locale; "
1921                            "resolved to \"\\x{%"UVXf"}\".",
1922                            OP_DESC(PL_op),
1923                            original,
1924                            original);
1925     Copy(p, ustrp, *lenp, char);
1926     return original;
1927 }
1928
1929 /*
1930 =for apidoc to_utf8_upper
1931
1932 Instead use L</toUPPER_utf8>.
1933
1934 =cut */
1935
1936 /* Not currently externally documented, and subject to change:
1937  * <flags> is set iff iff the rules from the current underlying locale are to
1938  *         be used. */
1939
1940 UV
1941 Perl__to_utf8_upper_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
1942 {
1943     UV result;
1944
1945     PERL_ARGS_ASSERT__TO_UTF8_UPPER_FLAGS;
1946
1947     if (flags) {
1948         /* Treat a UTF-8 locale as not being in locale at all */
1949         if (IN_UTF8_CTYPE_LOCALE) {
1950             flags = FALSE;
1951         }
1952         else {
1953             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
1954         }
1955     }
1956
1957     if (UTF8_IS_INVARIANT(*p)) {
1958         if (flags) {
1959             result = toUPPER_LC(*p);
1960         }
1961         else {
1962             return _to_upper_title_latin1(*p, ustrp, lenp, 'S');
1963         }
1964     }
1965     else if UTF8_IS_DOWNGRADEABLE_START(*p) {
1966         if (flags) {
1967             U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
1968             result = toUPPER_LC(c);
1969         }
1970         else {
1971             return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
1972                                           ustrp, lenp, 'S');
1973         }
1974     }
1975     else {  /* utf8, ord above 255 */
1976         result = CALL_UPPER_CASE(p, ustrp, lenp);
1977
1978         if (flags) {
1979             result = check_locale_boundary_crossing(p, result, ustrp, lenp);
1980         }
1981         return result;
1982     }
1983
1984     /* Here, used locale rules.  Convert back to utf8 */
1985     if (UTF8_IS_INVARIANT(result)) {
1986         *ustrp = (U8) result;
1987         *lenp = 1;
1988     }
1989     else {
1990         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
1991         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
1992         *lenp = 2;
1993     }
1994
1995     return result;
1996 }
1997
1998 /*
1999 =for apidoc to_utf8_title
2000
2001 Instead use L</toTITLE_utf8>.
2002
2003 =cut */
2004
2005 /* Not currently externally documented, and subject to change:
2006  * <flags> is set iff the rules from the current underlying locale are to be
2007  *         used.  Since titlecase is not defined in POSIX, for other than a
2008  *         UTF-8 locale, uppercase is used instead for code points < 256.
2009  */
2010
2011 UV
2012 Perl__to_utf8_title_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
2013 {
2014     UV result;
2015
2016     PERL_ARGS_ASSERT__TO_UTF8_TITLE_FLAGS;
2017
2018     if (flags) {
2019         /* Treat a UTF-8 locale as not being in locale at all */
2020         if (IN_UTF8_CTYPE_LOCALE) {
2021             flags = FALSE;
2022         }
2023         else {
2024             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2025         }
2026     }
2027
2028     if (UTF8_IS_INVARIANT(*p)) {
2029         if (flags) {
2030             result = toUPPER_LC(*p);
2031         }
2032         else {
2033             return _to_upper_title_latin1(*p, ustrp, lenp, 's');
2034         }
2035     }
2036     else if UTF8_IS_DOWNGRADEABLE_START(*p) {
2037         if (flags) {
2038             U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
2039             result = toUPPER_LC(c);
2040         }
2041         else {
2042             return _to_upper_title_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
2043                                           ustrp, lenp, 's');
2044         }
2045     }
2046     else {  /* utf8, ord above 255 */
2047         result = CALL_TITLE_CASE(p, ustrp, lenp);
2048
2049         if (flags) {
2050             result = check_locale_boundary_crossing(p, result, ustrp, lenp);
2051         }
2052         return result;
2053     }
2054
2055     /* Here, used locale rules.  Convert back to utf8 */
2056     if (UTF8_IS_INVARIANT(result)) {
2057         *ustrp = (U8) result;
2058         *lenp = 1;
2059     }
2060     else {
2061         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2062         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
2063         *lenp = 2;
2064     }
2065
2066     return result;
2067 }
2068
2069 /*
2070 =for apidoc to_utf8_lower
2071
2072 Instead use L</toLOWER_utf8>.
2073
2074 =cut */
2075
2076 /* Not currently externally documented, and subject to change:
2077  * <flags> is set iff iff the rules from the current underlying locale are to
2078  *         be used.
2079  */
2080
2081 UV
2082 Perl__to_utf8_lower_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, bool flags)
2083 {
2084     UV result;
2085
2086     PERL_ARGS_ASSERT__TO_UTF8_LOWER_FLAGS;
2087
2088     if (flags) {
2089         /* Treat a UTF-8 locale as not being in locale at all */
2090         if (IN_UTF8_CTYPE_LOCALE) {
2091             flags = FALSE;
2092         }
2093         else {
2094             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2095         }
2096     }
2097
2098     if (UTF8_IS_INVARIANT(*p)) {
2099         if (flags) {
2100             result = toLOWER_LC(*p);
2101         }
2102         else {
2103             return to_lower_latin1(*p, ustrp, lenp);
2104         }
2105     }
2106     else if UTF8_IS_DOWNGRADEABLE_START(*p) {
2107         if (flags) {
2108             U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
2109             result = toLOWER_LC(c);
2110         }
2111         else {
2112             return to_lower_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
2113                                    ustrp, lenp);
2114         }
2115     }
2116     else {  /* utf8, ord above 255 */
2117         result = CALL_LOWER_CASE(p, ustrp, lenp);
2118
2119         if (flags) {
2120             result = check_locale_boundary_crossing(p, result, ustrp, lenp);
2121         }
2122
2123         return result;
2124     }
2125
2126     /* Here, used locale rules.  Convert back to utf8 */
2127     if (UTF8_IS_INVARIANT(result)) {
2128         *ustrp = (U8) result;
2129         *lenp = 1;
2130     }
2131     else {
2132         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2133         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
2134         *lenp = 2;
2135     }
2136
2137     return result;
2138 }
2139
2140 /*
2141 =for apidoc to_utf8_fold
2142
2143 Instead use L</toFOLD_utf8>.
2144
2145 =cut */
2146
2147 /* Not currently externally documented, and subject to change,
2148  * in <flags>
2149  *      bit FOLD_FLAGS_LOCALE is set iff the rules from the current underlying
2150  *                            locale are to be used.
2151  *      bit FOLD_FLAGS_FULL   is set iff full case folds are to be used;
2152  *                            otherwise simple folds
2153  *      bit FOLD_FLAGS_NOMIX_ASCII is set iff folds of non-ASCII to ASCII are
2154  *                            prohibited
2155  */
2156
2157 UV
2158 Perl__to_utf8_fold_flags(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, U8 flags)
2159 {
2160     UV result;
2161
2162     PERL_ARGS_ASSERT__TO_UTF8_FOLD_FLAGS;
2163
2164     /* These are mutually exclusive */
2165     assert (! ((flags & FOLD_FLAGS_LOCALE) && (flags & FOLD_FLAGS_NOMIX_ASCII)));
2166
2167     assert(p != ustrp); /* Otherwise overwrites */
2168
2169     if (flags & FOLD_FLAGS_LOCALE) {
2170         /* Treat a UTF-8 locale as not being in locale at all */
2171         if (IN_UTF8_CTYPE_LOCALE) {
2172             flags &= ~FOLD_FLAGS_LOCALE;
2173         }
2174         else {
2175             _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
2176         }
2177     }
2178
2179     if (UTF8_IS_INVARIANT(*p)) {
2180         if (flags & FOLD_FLAGS_LOCALE) {
2181             result = toFOLD_LC(*p);
2182         }
2183         else {
2184             return _to_fold_latin1(*p, ustrp, lenp,
2185                             flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
2186         }
2187     }
2188     else if UTF8_IS_DOWNGRADEABLE_START(*p) {
2189         if (flags & FOLD_FLAGS_LOCALE) {
2190             U8 c = TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1));
2191             result = toFOLD_LC(c);
2192         }
2193         else {
2194             return _to_fold_latin1(TWO_BYTE_UTF8_TO_NATIVE(*p, *(p+1)),
2195                             ustrp, lenp,
2196                             flags & (FOLD_FLAGS_FULL | FOLD_FLAGS_NOMIX_ASCII));
2197         }
2198     }
2199     else {  /* utf8, ord above 255 */
2200         result = CALL_FOLD_CASE(p, ustrp, lenp, flags & FOLD_FLAGS_FULL);
2201
2202         if (flags & FOLD_FLAGS_LOCALE) {
2203
2204 #           define CAP_SHARP_S   LATIN_CAPITAL_LETTER_SHARP_S_UTF8
2205 #           define LONG_S_T      LATIN_SMALL_LIGATURE_LONG_S_T_UTF8
2206
2207             const unsigned int cap_sharp_s_len = sizeof(CAP_SHARP_S) - 1;
2208             const unsigned int long_s_t_len    = sizeof(LONG_S_T) - 1;
2209
2210             /* Special case these two characters, as what normally gets
2211              * returned under locale doesn't work */
2212             if (UTF8SKIP(p) == cap_sharp_s_len
2213                 && memEQ((char *) p, CAP_SHARP_S, cap_sharp_s_len))
2214             {
2215                 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
2216                 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2217                               "Can't do fc(\"\\x{1E9E}\") on non-UTF-8 locale; "
2218                               "resolved to \"\\x{17F}\\x{17F}\".");
2219                 goto return_long_s;
2220             }
2221             else if (UTF8SKIP(p) == long_s_t_len
2222                      && memEQ((char *) p, LONG_S_T, long_s_t_len))
2223             {
2224                 /* diag_listed_as: Can't do %s("%s") on non-UTF-8 locale; resolved to "%s". */
2225                 Perl_ck_warner(aTHX_ packWARN(WARN_LOCALE),
2226                               "Can't do fc(\"\\x{FB05}\") on non-UTF-8 locale; "
2227                               "resolved to \"\\x{FB06}\".");
2228                 goto return_ligature_st;
2229             }
2230             return check_locale_boundary_crossing(p, result, ustrp, lenp);
2231         }
2232         else if (! (flags & FOLD_FLAGS_NOMIX_ASCII)) {
2233             return result;
2234         }
2235         else {
2236             /* This is called when changing the case of a utf8-encoded
2237              * character above the ASCII range, and the result should not
2238              * contain an ASCII character. */
2239
2240             UV original;    /* To store the first code point of <p> */
2241
2242             /* Look at every character in the result; if any cross the
2243             * boundary, the whole thing is disallowed */
2244             U8* s = ustrp;
2245             U8* e = ustrp + *lenp;
2246             while (s < e) {
2247                 if (isASCII(*s)) {
2248                     /* Crossed, have to return the original */
2249                     original = valid_utf8_to_uvchr(p, lenp);
2250
2251                     /* But in these instances, there is an alternative we can
2252                      * return that is valid */
2253                     if (original == LATIN_CAPITAL_LETTER_SHARP_S
2254                         || original == LATIN_SMALL_LETTER_SHARP_S)
2255                     {
2256                         goto return_long_s;
2257                     }
2258                     else if (original == LATIN_SMALL_LIGATURE_LONG_S_T) {
2259                         goto return_ligature_st;
2260                     }
2261                     Copy(p, ustrp, *lenp, char);
2262                     return original;
2263                 }
2264                 s += UTF8SKIP(s);
2265             }
2266
2267             /* Here, no characters crossed, result is ok as-is */
2268             return result;
2269         }
2270     }
2271
2272     /* Here, used locale rules.  Convert back to utf8 */
2273     if (UTF8_IS_INVARIANT(result)) {
2274         *ustrp = (U8) result;
2275         *lenp = 1;
2276     }
2277     else {
2278         *ustrp = UTF8_EIGHT_BIT_HI((U8) result);
2279         *(ustrp + 1) = UTF8_EIGHT_BIT_LO((U8) result);
2280         *lenp = 2;
2281     }
2282
2283     return result;
2284
2285   return_long_s:
2286     /* Certain folds to 'ss' are prohibited by the options, but they do allow
2287      * folds to a string of two of these characters.  By returning this
2288      * instead, then, e.g.,
2289      *      fc("\x{1E9E}") eq fc("\x{17F}\x{17F}")
2290      * works. */
2291
2292     *lenp = 2 * sizeof(LATIN_SMALL_LETTER_LONG_S_UTF8) - 2;
2293     Copy(LATIN_SMALL_LETTER_LONG_S_UTF8 LATIN_SMALL_LETTER_LONG_S_UTF8,
2294         ustrp, *lenp, U8);
2295     return LATIN_SMALL_LETTER_LONG_S;
2296
2297   return_ligature_st:
2298     /* Two folds to 'st' are prohibited by the options; instead we pick one and
2299      * have the other one fold to it */
2300
2301     *lenp = sizeof(LATIN_SMALL_LIGATURE_ST_UTF8) - 1;
2302     Copy(LATIN_SMALL_LIGATURE_ST_UTF8, ustrp, *lenp, U8);
2303     return LATIN_SMALL_LIGATURE_ST;
2304 }
2305
2306 /* Note:
2307  * Returns a "swash" which is a hash described in utf8.c:Perl_swash_fetch().
2308  * C<pkg> is a pointer to a package name for SWASHNEW, should be "utf8".
2309  * For other parameters, see utf8::SWASHNEW in lib/utf8_heavy.pl.
2310  */
2311
2312 SV*
2313 Perl_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none)
2314 {
2315     PERL_ARGS_ASSERT_SWASH_INIT;
2316
2317     /* Returns a copy of a swash initiated by the called function.  This is the
2318      * public interface, and returning a copy prevents others from doing
2319      * mischief on the original */
2320
2321     return newSVsv(_core_swash_init(pkg, name, listsv, minbits, none, NULL, NULL));
2322 }
2323
2324 SV*
2325 Perl__core_swash_init(pTHX_ const char* pkg, const char* name, SV *listsv, I32 minbits, I32 none, SV* invlist, U8* const flags_p)
2326 {
2327
2328     /*NOTE NOTE NOTE - If you want to use "return" in this routine you MUST
2329      * use the following define */
2330
2331 #define CORE_SWASH_INIT_RETURN(x)   \
2332     PL_curpm= old_PL_curpm;         \
2333     return x
2334
2335     /* Initialize and return a swash, creating it if necessary.  It does this
2336      * by calling utf8_heavy.pl in the general case.  The returned value may be
2337      * the swash's inversion list instead if the input parameters allow it.
2338      * Which is returned should be immaterial to callers, as the only
2339      * operations permitted on a swash, swash_fetch(), _get_swash_invlist(),
2340      * and swash_to_invlist() handle both these transparently.
2341      *
2342      * This interface should only be used by functions that won't destroy or
2343      * adversely change the swash, as doing so affects all other uses of the
2344      * swash in the program; the general public should use 'Perl_swash_init'
2345      * instead.
2346      *
2347      * pkg  is the name of the package that <name> should be in.
2348      * name is the name of the swash to find.  Typically it is a Unicode
2349      *      property name, including user-defined ones
2350      * listsv is a string to initialize the swash with.  It must be of the form
2351      *      documented as the subroutine return value in
2352      *      L<perlunicode/User-Defined Character Properties>
2353      * minbits is the number of bits required to represent each data element.
2354      *      It is '1' for binary properties.
2355      * none I (khw) do not understand this one, but it is used only in tr///.
2356      * invlist is an inversion list to initialize the swash with (or NULL)
2357      * flags_p if non-NULL is the address of various input and output flag bits
2358      *      to the routine, as follows:  ('I' means is input to the routine;
2359      *      'O' means output from the routine.  Only flags marked O are
2360      *      meaningful on return.)
2361      *  _CORE_SWASH_INIT_USER_DEFINED_PROPERTY indicates if the swash
2362      *      came from a user-defined property.  (I O)
2363      *  _CORE_SWASH_INIT_RETURN_IF_UNDEF indicates that instead of croaking
2364      *      when the swash cannot be located, to simply return NULL. (I)
2365      *  _CORE_SWASH_INIT_ACCEPT_INVLIST indicates that the caller will accept a
2366      *      return of an inversion list instead of a swash hash if this routine
2367      *      thinks that would result in faster execution of swash_fetch() later
2368      *      on. (I)
2369      *
2370      * Thus there are three possible inputs to find the swash: <name>,
2371      * <listsv>, and <invlist>.  At least one must be specified.  The result
2372      * will be the union of the specified ones, although <listsv>'s various
2373      * actions can intersect, etc. what <name> gives.  To avoid going out to
2374      * disk at all, <invlist> should specify completely what the swash should
2375      * have, and <listsv> should be &PL_sv_undef and <name> should be "".
2376      *
2377      * <invlist> is only valid for binary properties */
2378
2379     PMOP *old_PL_curpm= PL_curpm; /* save away the old PL_curpm */
2380
2381     SV* retval = &PL_sv_undef;
2382     HV* swash_hv = NULL;
2383     const int invlist_swash_boundary =
2384         (flags_p && *flags_p & _CORE_SWASH_INIT_ACCEPT_INVLIST)
2385         ? 512    /* Based on some benchmarking, but not extensive, see commit
2386                     message */
2387         : -1;   /* Never return just an inversion list */
2388
2389     assert(listsv != &PL_sv_undef || strNE(name, "") || invlist);
2390     assert(! invlist || minbits == 1);
2391
2392     PL_curpm= NULL; /* reset PL_curpm so that we dont get confused between the regex
2393                        that triggered the swash init and the swash init perl logic itself.
2394                        See perl #122747 */
2395
2396     /* If data was passed in to go out to utf8_heavy to find the swash of, do
2397      * so */
2398     if (listsv != &PL_sv_undef || strNE(name, "")) {
2399         dSP;
2400         const size_t pkg_len = strlen(pkg);
2401         const size_t name_len = strlen(name);
2402         HV * const stash = gv_stashpvn(pkg, pkg_len, 0);
2403         SV* errsv_save;
2404         GV *method;
2405
2406         PERL_ARGS_ASSERT__CORE_SWASH_INIT;
2407
2408         PUSHSTACKi(PERLSI_MAGIC);
2409         ENTER;
2410         SAVEHINTS();
2411         /* We might get here via a subroutine signature which uses a utf8
2412          * parameter name, at which point PL_subname will have been set
2413          * but not yet used. */
2414         save_item(PL_subname);
2415         if (PL_parser && PL_parser->error_count)
2416             SAVEI8(PL_parser->error_count), PL_parser->error_count = 0;
2417         method = gv_fetchmeth(stash, "SWASHNEW", 8, -1);
2418         if (!method) {  /* demand load utf8 */
2419             ENTER;
2420             if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
2421             GvSV(PL_errgv) = NULL;
2422 #ifndef NO_TAINT_SUPPORT
2423             /* It is assumed that callers of this routine are not passing in
2424              * any user derived data.  */
2425             SAVEBOOL(TAINT_get);
2426             TAINT_NOT;
2427 #endif
2428             Perl_load_module(aTHX_ PERL_LOADMOD_NOIMPORT, newSVpvn(pkg,pkg_len),
2429                              NULL);
2430             {
2431                 /* Not ERRSV, as there is no need to vivify a scalar we are
2432                    about to discard. */
2433                 SV * const errsv = GvSV(PL_errgv);
2434                 if (!SvTRUE(errsv)) {
2435                     GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
2436                     SvREFCNT_dec(errsv);
2437                 }
2438             }
2439             LEAVE;
2440         }
2441         SPAGAIN;
2442         PUSHMARK(SP);
2443         EXTEND(SP,5);
2444         mPUSHp(pkg, pkg_len);
2445         mPUSHp(name, name_len);
2446         PUSHs(listsv);
2447         mPUSHi(minbits);
2448         mPUSHi(none);
2449         PUTBACK;
2450         if ((errsv_save = GvSV(PL_errgv))) SAVEFREESV(errsv_save);
2451         GvSV(PL_errgv) = NULL;
2452         /* If we already have a pointer to the method, no need to use
2453          * call_method() to repeat the lookup.  */
2454         if (method
2455             ? call_sv(MUTABLE_SV(method), G_SCALAR)
2456             : call_sv(newSVpvs_flags("SWASHNEW", SVs_TEMP), G_SCALAR | G_METHOD))
2457         {
2458             retval = *PL_stack_sp--;
2459             SvREFCNT_inc(retval);
2460         }
2461         {
2462             /* Not ERRSV.  See above. */
2463             SV * const errsv = GvSV(PL_errgv);
2464             if (!SvTRUE(errsv)) {
2465                 GvSV(PL_errgv) = SvREFCNT_inc_simple(errsv_save);
2466                 SvREFCNT_dec(errsv);
2467             }
2468         }
2469         LEAVE;
2470         POPSTACK;
2471         if (IN_PERL_COMPILETIME) {
2472             CopHINTS_set(PL_curcop, PL_hints);
2473         }
2474         if (!SvROK(retval) || SvTYPE(SvRV(retval)) != SVt_PVHV) {
2475             if (SvPOK(retval))
2476
2477                 /* If caller wants to handle missing properties, let them */
2478                 if (flags_p && *flags_p & _CORE_SWASH_INIT_RETURN_IF_UNDEF) {
2479                     CORE_SWASH_INIT_RETURN(NULL);
2480                 }
2481                 Perl_croak(aTHX_
2482                            "Can't find Unicode property definition \"%"SVf"\"",
2483                            SVfARG(retval));
2484                 NOT_REACHED; /* NOTREACHED */
2485         }
2486     } /* End of calling the module to find the swash */
2487
2488     /* If this operation fetched a swash, and we will need it later, get it */
2489     if (retval != &PL_sv_undef
2490         && (minbits == 1 || (flags_p
2491                             && ! (*flags_p
2492                                   & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY))))
2493     {
2494         swash_hv = MUTABLE_HV(SvRV(retval));
2495
2496         /* If we don't already know that there is a user-defined component to
2497          * this swash, and the user has indicated they wish to know if there is
2498          * one (by passing <flags_p>), find out */
2499         if (flags_p && ! (*flags_p & _CORE_SWASH_INIT_USER_DEFINED_PROPERTY)) {
2500             SV** user_defined = hv_fetchs(swash_hv, "USER_DEFINED", FALSE);
2501             if (user_defined && SvUV(*user_defined)) {
2502                 *flags_p |= _CORE_SWASH_INIT_USER_DEFINED_PROPERTY;
2503             }
2504         }
2505     }
2506
2507     /* Make sure there is an inversion list for binary properties */
2508     if (minbits == 1) {
2509         SV** swash_invlistsvp = NULL;
2510         SV* swash_invlist = NULL;
2511         bool invlist_in_swash_is_valid = FALSE;
2512         bool swash_invlist_unclaimed = FALSE; /* whether swash_invlist has
2513                                             an unclaimed reference count */
2514
2515         /* If this operation fetched a swash, get its already existing
2516          * inversion list, or create one for it */
2517
2518         if (swash_hv) {
2519             swash_invlistsvp = hv_fetchs(swash_hv, "V", FALSE);
2520             if (swash_invlistsvp) {
2521                 swash_invlist = *swash_invlistsvp;
2522                 invlist_in_swash_is_valid = TRUE;
2523             }
2524             else {
2525                 swash_invlist = _swash_to_invlist(retval);
2526                 swash_invlist_unclaimed = TRUE;
2527             }
2528         }
2529
2530         /* If an inversion list was passed in, have to include it */
2531         if (invlist) {
2532
2533             /* Any fetched swash will by now have an inversion list in it;
2534              * otherwise <swash_invlist>  will be NULL, indicating that we
2535              * didn't fetch a swash */
2536             if (swash_invlist) {
2537
2538                 /* Add the passed-in inversion list, which invalidates the one
2539                  * already stored in the swash */
2540                 invlist_in_swash_is_valid = FALSE;
2541                 _invlist_union(invlist, swash_invlist, &swash_invlist);
2542             }
2543             else {
2544
2545                 /* Here, there is no swash already.  Set up a minimal one, if
2546                  * we are going to return a swash */
2547                 if ((int) _invlist_len(invlist) > invlist_swash_boundary) {
2548                     swash_hv = newHV();
2549                     retval = newRV_noinc(MUTABLE_SV(swash_hv));
2550                 }
2551                 swash_invlist = invlist;
2552             }
2553         }
2554
2555         /* Here, we have computed the union of all the passed-in data.  It may
2556          * be that there was an inversion list in the swash which didn't get
2557          * touched; otherwise save the computed one */
2558         if (! invlist_in_swash_is_valid
2559             && (int) _invlist_len(swash_invlist) > invlist_swash_boundary)
2560         {
2561             if (! hv_stores(MUTABLE_HV(SvRV(retval)), "V", swash_invlist))
2562             {
2563                 Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
2564             }
2565             /* We just stole a reference count. */
2566             if (swash_invlist_unclaimed) swash_invlist_unclaimed = FALSE;
2567             else SvREFCNT_inc_simple_void_NN(swash_invlist);
2568         }
2569
2570         SvREADONLY_on(swash_invlist);
2571
2572         /* Use the inversion list stand-alone if small enough */
2573         if ((int) _invlist_len(swash_invlist) <= invlist_swash_boundary) {
2574             SvREFCNT_dec(retval);
2575             if (!swash_invlist_unclaimed)
2576                 SvREFCNT_inc_simple_void_NN(swash_invlist);
2577             retval = newRV_noinc(swash_invlist);
2578         }
2579     }
2580
2581     CORE_SWASH_INIT_RETURN(retval);
2582 #undef CORE_SWASH_INIT_RETURN
2583 }
2584
2585
2586 /* This API is wrong for special case conversions since we may need to
2587  * return several Unicode characters for a single Unicode character
2588  * (see lib/unicore/SpecCase.txt) The SWASHGET in lib/utf8_heavy.pl is
2589  * the lower-level routine, and it is similarly broken for returning
2590  * multiple values.  --jhi
2591  * For those, you should use to_utf8_case() instead */
2592 /* Now SWASHGET is recasted into S_swatch_get in this file. */
2593
2594 /* Note:
2595  * Returns the value of property/mapping C<swash> for the first character
2596  * of the string C<ptr>. If C<do_utf8> is true, the string C<ptr> is
2597  * assumed to be in well-formed utf8. If C<do_utf8> is false, the string C<ptr>
2598  * is assumed to be in native 8-bit encoding. Caches the swatch in C<swash>.
2599  *
2600  * A "swash" is a hash which contains initially the keys/values set up by
2601  * SWASHNEW.  The purpose is to be able to completely represent a Unicode
2602  * property for all possible code points.  Things are stored in a compact form
2603  * (see utf8_heavy.pl) so that calculation is required to find the actual
2604  * property value for a given code point.  As code points are looked up, new
2605  * key/value pairs are added to the hash, so that the calculation doesn't have
2606  * to ever be re-done.  Further, each calculation is done, not just for the
2607  * desired one, but for a whole block of code points adjacent to that one.
2608  * For binary properties on ASCII machines, the block is usually for 64 code
2609  * points, starting with a code point evenly divisible by 64.  Thus if the
2610  * property value for code point 257 is requested, the code goes out and
2611  * calculates the property values for all 64 code points between 256 and 319,
2612  * and stores these as a single 64-bit long bit vector, called a "swatch",
2613  * under the key for code point 256.  The key is the UTF-8 encoding for code
2614  * point 256, minus the final byte.  Thus, if the length of the UTF-8 encoding
2615  * for a code point is 13 bytes, the key will be 12 bytes long.  If the value
2616  * for code point 258 is then requested, this code realizes that it would be
2617  * stored under the key for 256, and would find that value and extract the
2618  * relevant bit, offset from 256.
2619  *
2620  * Non-binary properties are stored in as many bits as necessary to represent
2621  * their values (32 currently, though the code is more general than that), not
2622  * as single bits, but the principal is the same: the value for each key is a
2623  * vector that encompasses the property values for all code points whose UTF-8
2624  * representations are represented by the key.  That is, for all code points
2625  * whose UTF-8 representations are length N bytes, and the key is the first N-1
2626  * bytes of that.
2627  */
2628 UV
2629 Perl_swash_fetch(pTHX_ SV *swash, const U8 *ptr, bool do_utf8)
2630 {
2631     HV *const hv = MUTABLE_HV(SvRV(swash));
2632     U32 klen;
2633     U32 off;
2634     STRLEN slen = 0;
2635     STRLEN needents;
2636     const U8 *tmps = NULL;
2637     SV *swatch;
2638     const U8 c = *ptr;
2639
2640     PERL_ARGS_ASSERT_SWASH_FETCH;
2641
2642     /* If it really isn't a hash, it isn't really swash; must be an inversion
2643      * list */
2644     if (SvTYPE(hv) != SVt_PVHV) {
2645         return _invlist_contains_cp((SV*)hv,
2646                                     (do_utf8)
2647                                      ? valid_utf8_to_uvchr(ptr, NULL)
2648                                      : c);
2649     }
2650
2651     /* We store the values in a "swatch" which is a vec() value in a swash
2652      * hash.  Code points 0-255 are a single vec() stored with key length
2653      * (klen) 0.  All other code points have a UTF-8 representation
2654      * 0xAA..0xYY,0xZZ.  A vec() is constructed containing all of them which
2655      * share 0xAA..0xYY, which is the key in the hash to that vec.  So the key
2656      * length for them is the length of the encoded char - 1.  ptr[klen] is the
2657      * final byte in the sequence representing the character */
2658     if (!do_utf8 || UTF8_IS_INVARIANT(c)) {
2659         klen = 0;
2660         needents = 256;
2661         off = c;
2662     }
2663     else if (UTF8_IS_DOWNGRADEABLE_START(c)) {
2664         klen = 0;
2665         needents = 256;
2666         off = TWO_BYTE_UTF8_TO_NATIVE(c, *(ptr + 1));
2667     }
2668     else {
2669         klen = UTF8SKIP(ptr) - 1;
2670
2671         /* Each vec() stores 2**UTF_ACCUMULATION_SHIFT values.  The offset into
2672          * the vec is the final byte in the sequence.  (In EBCDIC this is
2673          * converted to I8 to get consecutive values.)  To help you visualize
2674          * all this:
2675          *                       Straight 1047   After final byte
2676          *             UTF-8      UTF-EBCDIC     I8 transform
2677          *  U+0400:  \xD0\x80    \xB8\x41\x41    \xB8\x41\xA0
2678          *  U+0401:  \xD0\x81    \xB8\x41\x42    \xB8\x41\xA1
2679          *    ...
2680          *  U+0409:  \xD0\x89    \xB8\x41\x4A    \xB8\x41\xA9
2681          *  U+040A:  \xD0\x8A    \xB8\x41\x51    \xB8\x41\xAA
2682          *    ...
2683          *  U+0412:  \xD0\x92    \xB8\x41\x59    \xB8\x41\xB2
2684          *  U+0413:  \xD0\x93    \xB8\x41\x62    \xB8\x41\xB3
2685          *    ...
2686          *  U+041B:  \xD0\x9B    \xB8\x41\x6A    \xB8\x41\xBB
2687          *  U+041C:  \xD0\x9C    \xB8\x41\x70    \xB8\x41\xBC
2688          *    ...
2689          *  U+041F:  \xD0\x9F    \xB8\x41\x73    \xB8\x41\xBF
2690          *  U+0420:  \xD0\xA0    \xB8\x42\x41    \xB8\x42\x41
2691          *
2692          * (There are no discontinuities in the elided (...) entries.)
2693          * The UTF-8 key for these 33 code points is '\xD0' (which also is the
2694          * key for the next 31, up through U+043F, whose UTF-8 final byte is
2695          * \xBF).  Thus in UTF-8, each key is for a vec() for 64 code points.
2696          * The final UTF-8 byte, which ranges between \x80 and \xBF, is an
2697          * index into the vec() swatch (after subtracting 0x80, which we
2698          * actually do with an '&').
2699          * In UTF-EBCDIC, each key is for a 32 code point vec().  The first 32
2700          * code points above have key '\xB8\x41'. The final UTF-EBCDIC byte has
2701          * dicontinuities which go away by transforming it into I8, and we
2702          * effectively subtract 0xA0 to get the index. */
2703         needents = (1 << UTF_ACCUMULATION_SHIFT);
2704         off      = NATIVE_UTF8_TO_I8(ptr[klen]) & UTF_CONTINUATION_MASK;
2705     }
2706
2707     /*
2708      * This single-entry cache saves about 1/3 of the utf8 overhead in test
2709      * suite.  (That is, only 7-8% overall over just a hash cache.  Still,
2710      * it's nothing to sniff at.)  Pity we usually come through at least
2711      * two function calls to get here...
2712      *
2713      * NB: this code assumes that swatches are never modified, once generated!
2714      */
2715
2716     if (hv   == PL_last_swash_hv &&
2717         klen == PL_last_swash_klen &&
2718         (!klen || memEQ((char *)ptr, (char *)PL_last_swash_key, klen)) )
2719     {
2720         tmps = PL_last_swash_tmps;
2721         slen = PL_last_swash_slen;
2722     }
2723     else {
2724         /* Try our second-level swatch cache, kept in a hash. */
2725         SV** svp = hv_fetch(hv, (const char*)ptr, klen, FALSE);
2726
2727         /* If not cached, generate it via swatch_get */
2728         if (!svp || !SvPOK(*svp)
2729                  || !(tmps = (const U8*)SvPV_const(*svp, slen)))
2730         {
2731             if (klen) {
2732                 const UV code_point = valid_utf8_to_uvchr(ptr, NULL);
2733                 swatch = swatch_get(swash,
2734                                     code_point & ~((UV)needents - 1),
2735                                     needents);
2736             }
2737             else {  /* For the first 256 code points, the swatch has a key of
2738                        length 0 */
2739                 swatch = swatch_get(swash, 0, needents);
2740             }
2741
2742             if (IN_PERL_COMPILETIME)
2743                 CopHINTS_set(PL_curcop, PL_hints);
2744
2745             svp = hv_store(hv, (const char *)ptr, klen, swatch, 0);
2746
2747             if (!svp || !(tmps = (U8*)SvPV(*svp, slen))
2748                      || (slen << 3) < needents)
2749                 Perl_croak(aTHX_ "panic: swash_fetch got improper swatch, "
2750                            "svp=%p, tmps=%p, slen=%"UVuf", needents=%"UVuf,
2751                            svp, tmps, (UV)slen, (UV)needents);
2752         }
2753
2754         PL_last_swash_hv = hv;
2755         assert(klen <= sizeof(PL_last_swash_key));
2756         PL_last_swash_klen = (U8)klen;
2757         /* FIXME change interpvar.h?  */
2758         PL_last_swash_tmps = (U8 *) tmps;
2759         PL_last_swash_slen = slen;
2760         if (klen)
2761             Copy(ptr, PL_last_swash_key, klen, U8);
2762     }
2763
2764     switch ((int)((slen << 3) / needents)) {
2765     case 1:
2766         return ((UV) tmps[off >> 3] & (1 << (off & 7))) != 0;
2767     case 8:
2768         return ((UV) tmps[off]);
2769     case 16:
2770         off <<= 1;
2771         return
2772             ((UV) tmps[off    ] << 8) +
2773             ((UV) tmps[off + 1]);
2774     case 32:
2775         off <<= 2;
2776         return
2777             ((UV) tmps[off    ] << 24) +
2778             ((UV) tmps[off + 1] << 16) +
2779             ((UV) tmps[off + 2] <<  8) +
2780             ((UV) tmps[off + 3]);
2781     }
2782     Perl_croak(aTHX_ "panic: swash_fetch got swatch of unexpected bit width, "
2783                "slen=%"UVuf", needents=%"UVuf, (UV)slen, (UV)needents);
2784     NORETURN_FUNCTION_END;
2785 }
2786
2787 /* Read a single line of the main body of the swash input text.  These are of
2788  * the form:
2789  * 0053 0056    0073
2790  * where each number is hex.  The first two numbers form the minimum and
2791  * maximum of a range, and the third is the value associated with the range.
2792  * Not all swashes should have a third number
2793  *
2794  * On input: l    points to the beginning of the line to be examined; it points
2795  *                to somewhere in the string of the whole input text, and is
2796  *                terminated by a \n or the null string terminator.
2797  *           lend   points to the null terminator of that string
2798  *           wants_value    is non-zero if the swash expects a third number
2799  *           typestr is the name of the swash's mapping, like 'ToLower'
2800  * On output: *min, *max, and *val are set to the values read from the line.
2801  *            returns a pointer just beyond the line examined.  If there was no
2802  *            valid min number on the line, returns lend+1
2803  */
2804
2805 STATIC U8*
2806 S_swash_scan_list_line(pTHX_ U8* l, U8* const lend, UV* min, UV* max, UV* val,
2807                              const bool wants_value, const U8* const typestr)
2808 {
2809     const int  typeto  = typestr[0] == 'T' && typestr[1] == 'o';
2810     STRLEN numlen;          /* Length of the number */
2811     I32 flags = PERL_SCAN_SILENT_ILLDIGIT
2812                 | PERL_SCAN_DISALLOW_PREFIX
2813                 | PERL_SCAN_SILENT_NON_PORTABLE;
2814
2815     /* nl points to the next \n in the scan */
2816     U8* const nl = (U8*)memchr(l, '\n', lend - l);
2817
2818     PERL_ARGS_ASSERT_SWASH_SCAN_LIST_LINE;
2819
2820     /* Get the first number on the line: the range minimum */
2821     numlen = lend - l;
2822     *min = grok_hex((char *)l, &numlen, &flags, NULL);
2823     *max = *min;    /* So can never return without setting max */
2824     if (numlen)     /* If found a hex number, position past it */
2825         l += numlen;
2826     else if (nl) {          /* Else, go handle next line, if any */
2827         return nl + 1;  /* 1 is length of "\n" */
2828     }
2829     else {              /* Else, no next line */
2830         return lend + 1;        /* to LIST's end at which \n is not found */
2831     }
2832
2833     /* The max range value follows, separated by a BLANK */
2834     if (isBLANK(*l)) {
2835         ++l;
2836         flags = PERL_SCAN_SILENT_ILLDIGIT
2837                 | PERL_SCAN_DISALLOW_PREFIX
2838                 | PERL_SCAN_SILENT_NON_PORTABLE;
2839         numlen = lend - l;
2840         *max = grok_hex((char *)l, &numlen, &flags, NULL);
2841         if (numlen)
2842             l += numlen;
2843         else    /* If no value here, it is a single element range */
2844             *max = *min;
2845
2846         /* Non-binary tables have a third entry: what the first element of the
2847          * range maps to.  The map for those currently read here is in hex */
2848         if (wants_value) {
2849             if (isBLANK(*l)) {
2850                 ++l;
2851                 flags = PERL_SCAN_SILENT_ILLDIGIT
2852                     | PERL_SCAN_DISALLOW_PREFIX
2853                     | PERL_SCAN_SILENT_NON_PORTABLE;
2854                 numlen = lend - l;
2855                 *val = grok_hex((char *)l, &numlen, &flags, NULL);
2856                 if (numlen)
2857                     l += numlen;
2858                 else
2859                     *val = 0;
2860             }
2861             else {
2862                 *val = 0;
2863                 if (typeto) {
2864                     /* diag_listed_as: To%s: illegal mapping '%s' */
2865                     Perl_croak(aTHX_ "%s: illegal mapping '%s'",
2866                                      typestr, l);
2867                 }
2868             }
2869         }
2870         else
2871             *val = 0; /* bits == 1, then any val should be ignored */
2872     }
2873     else { /* Nothing following range min, should be single element with no
2874               mapping expected */
2875         if (wants_value) {
2876             *val = 0;
2877             if (typeto) {
2878                 /* diag_listed_as: To%s: illegal mapping '%s' */
2879                 Perl_croak(aTHX_ "%s: illegal mapping '%s'", typestr, l);
2880             }
2881         }
2882         else
2883             *val = 0; /* bits == 1, then val should be ignored */
2884     }
2885
2886     /* Position to next line if any, or EOF */
2887     if (nl)
2888         l = nl + 1;
2889     else
2890         l = lend;
2891
2892     return l;
2893 }
2894
2895 /* Note:
2896  * Returns a swatch (a bit vector string) for a code point sequence
2897  * that starts from the value C<start> and comprises the number C<span>.
2898  * A C<swash> must be an object created by SWASHNEW (see lib/utf8_heavy.pl).
2899  * Should be used via swash_fetch, which will cache the swatch in C<swash>.
2900  */
2901 STATIC SV*
2902 S_swatch_get(pTHX_ SV* swash, UV start, UV span)
2903 {
2904     SV *swatch;
2905     U8 *l, *lend, *x, *xend, *s, *send;
2906     STRLEN lcur, xcur, scur;
2907     HV *const hv = MUTABLE_HV(SvRV(swash));
2908     SV** const invlistsvp = hv_fetchs(hv, "V", FALSE);
2909
2910     SV** listsvp = NULL; /* The string containing the main body of the table */
2911     SV** extssvp = NULL;
2912     SV** invert_it_svp = NULL;
2913     U8* typestr = NULL;
2914     STRLEN bits;
2915     STRLEN octets; /* if bits == 1, then octets == 0 */
2916     UV  none;
2917     UV  end = start + span;
2918
2919     if (invlistsvp == NULL) {
2920         SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
2921         SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
2922         SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
2923         extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
2924         listsvp = hv_fetchs(hv, "LIST", FALSE);
2925         invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
2926
2927         bits  = SvUV(*bitssvp);
2928         none  = SvUV(*nonesvp);
2929         typestr = (U8*)SvPV_nolen(*typesvp);
2930     }
2931     else {
2932         bits = 1;
2933         none = 0;
2934     }
2935     octets = bits >> 3; /* if bits == 1, then octets == 0 */
2936
2937     PERL_ARGS_ASSERT_SWATCH_GET;
2938
2939     if (bits != 1 && bits != 8 && bits != 16 && bits != 32) {
2940         Perl_croak(aTHX_ "panic: swatch_get doesn't expect bits %"UVuf,
2941                                                  (UV)bits);
2942     }
2943
2944     /* If overflowed, use the max possible */
2945     if (end < start) {
2946         end = UV_MAX;
2947         span = end - start;
2948     }
2949
2950     /* create and initialize $swatch */
2951     scur   = octets ? (span * octets) : (span + 7) / 8;
2952     swatch = newSV(scur);
2953     SvPOK_on(swatch);
2954     s = (U8*)SvPVX(swatch);
2955     if (octets && none) {
2956         const U8* const e = s + scur;
2957         while (s < e) {
2958             if (bits == 8)
2959                 *s++ = (U8)(none & 0xff);
2960             else if (bits == 16) {
2961                 *s++ = (U8)((none >>  8) & 0xff);
2962                 *s++ = (U8)( none        & 0xff);
2963             }
2964             else if (bits == 32) {
2965                 *s++ = (U8)((none >> 24) & 0xff);
2966                 *s++ = (U8)((none >> 16) & 0xff);
2967                 *s++ = (U8)((none >>  8) & 0xff);
2968                 *s++ = (U8)( none        & 0xff);
2969             }
2970         }
2971         *s = '\0';
2972     }
2973     else {
2974         (void)memzero((U8*)s, scur + 1);
2975     }
2976     SvCUR_set(swatch, scur);
2977     s = (U8*)SvPVX(swatch);
2978
2979     if (invlistsvp) {   /* If has an inversion list set up use that */
2980         _invlist_populate_swatch(*invlistsvp, start, end, s);
2981         return swatch;
2982     }
2983
2984     /* read $swash->{LIST} */
2985     l = (U8*)SvPV(*listsvp, lcur);
2986     lend = l + lcur;
2987     while (l < lend) {
2988         UV min, max, val, upper;
2989         l = swash_scan_list_line(l, lend, &min, &max, &val,
2990                                                         cBOOL(octets), typestr);
2991         if (l > lend) {
2992             break;
2993         }
2994
2995         /* If looking for something beyond this range, go try the next one */
2996         if (max < start)
2997             continue;
2998
2999         /* <end> is generally 1 beyond where we want to set things, but at the
3000          * platform's infinity, where we can't go any higher, we want to
3001          * include the code point at <end> */
3002         upper = (max < end)
3003                 ? max
3004                 : (max != UV_MAX || end != UV_MAX)
3005                   ? end - 1
3006                   : end;
3007
3008         if (octets) {
3009             UV key;
3010             if (min < start) {
3011                 if (!none || val < none) {
3012                     val += start - min;
3013                 }
3014                 min = start;
3015             }
3016             for (key = min; key <= upper; key++) {
3017                 STRLEN offset;
3018                 /* offset must be non-negative (start <= min <= key < end) */
3019                 offset = octets * (key - start);
3020                 if (bits == 8)
3021                     s[offset] = (U8)(val & 0xff);
3022                 else if (bits == 16) {
3023                     s[offset    ] = (U8)((val >>  8) & 0xff);
3024                     s[offset + 1] = (U8)( val        & 0xff);
3025                 }
3026                 else if (bits == 32) {
3027                     s[offset    ] = (U8)((val >> 24) & 0xff);
3028                     s[offset + 1] = (U8)((val >> 16) & 0xff);
3029                     s[offset + 2] = (U8)((val >>  8) & 0xff);
3030                     s[offset + 3] = (U8)( val        & 0xff);
3031                 }
3032
3033                 if (!none || val < none)
3034                     ++val;
3035             }
3036         }
3037         else { /* bits == 1, then val should be ignored */
3038             UV key;
3039             if (min < start)
3040                 min = start;
3041
3042             for (key = min; key <= upper; key++) {
3043                 const STRLEN offset = (STRLEN)(key - start);
3044                 s[offset >> 3] |= 1 << (offset & 7);
3045             }
3046         }
3047     } /* while */
3048
3049     /* Invert if the data says it should be.  Assumes that bits == 1 */
3050     if (invert_it_svp && SvUV(*invert_it_svp)) {
3051
3052         /* Unicode properties should come with all bits above PERL_UNICODE_MAX
3053          * be 0, and their inversion should also be 0, as we don't succeed any
3054          * Unicode property matches for non-Unicode code points */
3055         if (start <= PERL_UNICODE_MAX) {
3056
3057             /* The code below assumes that we never cross the
3058              * Unicode/above-Unicode boundary in a range, as otherwise we would
3059              * have to figure out where to stop flipping the bits.  Since this
3060              * boundary is divisible by a large power of 2, and swatches comes
3061              * in small powers of 2, this should be a valid assumption */
3062             assert(start + span - 1 <= PERL_UNICODE_MAX);
3063
3064             send = s + scur;
3065             while (s < send) {
3066                 *s = ~(*s);
3067                 s++;
3068             }
3069         }
3070     }
3071
3072     /* read $swash->{EXTRAS}
3073      * This code also copied to swash_to_invlist() below */
3074     x = (U8*)SvPV(*extssvp, xcur);
3075     xend = x + xcur;
3076     while (x < xend) {
3077         STRLEN namelen;
3078         U8 *namestr;
3079         SV** othersvp;
3080         HV* otherhv;
3081         STRLEN otherbits;
3082         SV **otherbitssvp, *other;
3083         U8 *s, *o, *nl;
3084         STRLEN slen, olen;
3085
3086         const U8 opc = *x++;
3087         if (opc == '\n')
3088             continue;
3089
3090         nl = (U8*)memchr(x, '\n', xend - x);
3091
3092         if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
3093             if (nl) {
3094                 x = nl + 1; /* 1 is length of "\n" */
3095                 continue;
3096             }
3097             else {
3098                 x = xend; /* to EXTRAS' end at which \n is not found */
3099                 break;
3100             }
3101         }
3102
3103         namestr = x;
3104         if (nl) {
3105             namelen = nl - namestr;
3106             x = nl + 1;
3107         }
3108         else {
3109             namelen = xend - namestr;
3110             x = xend;
3111         }
3112
3113         othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
3114         otherhv = MUTABLE_HV(SvRV(*othersvp));
3115         otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
3116         otherbits = (STRLEN)SvUV(*otherbitssvp);
3117         if (bits < otherbits)
3118             Perl_croak(aTHX_ "panic: swatch_get found swatch size mismatch, "
3119                        "bits=%"UVuf", otherbits=%"UVuf, (UV)bits, (UV)otherbits);
3120
3121         /* The "other" swatch must be destroyed after. */
3122         other = swatch_get(*othersvp, start, span);
3123         o = (U8*)SvPV(other, olen);
3124
3125         if (!olen)
3126             Perl_croak(aTHX_ "panic: swatch_get got improper swatch");
3127
3128         s = (U8*)SvPV(swatch, slen);
3129         if (bits == 1 && otherbits == 1) {
3130             if (slen != olen)
3131                 Perl_croak(aTHX_ "panic: swatch_get found swatch length "
3132                            "mismatch, slen=%"UVuf", olen=%"UVuf,
3133                            (UV)slen, (UV)olen);
3134
3135             switch (opc) {
3136             case '+':
3137                 while (slen--)
3138                     *s++ |= *o++;
3139                 break;
3140             case '!':
3141                 while (slen--)
3142                     *s++ |= ~*o++;
3143                 break;
3144             case '-':
3145                 while (slen--)
3146                     *s++ &= ~*o++;
3147                 break;
3148             case '&':
3149                 while (slen--)
3150                     *s++ &= *o++;
3151                 break;
3152             default:
3153                 break;
3154             }
3155         }
3156         else {
3157             STRLEN otheroctets = otherbits >> 3;
3158             STRLEN offset = 0;
3159             U8* const send = s + slen;
3160
3161             while (s < send) {
3162                 UV otherval = 0;
3163
3164                 if (otherbits == 1) {
3165                     otherval = (o[offset >> 3] >> (offset & 7)) & 1;
3166                     ++offset;
3167                 }
3168                 else {
3169                     STRLEN vlen = otheroctets;
3170                     otherval = *o++;
3171                     while (--vlen) {
3172                         otherval <<= 8;
3173                         otherval |= *o++;
3174                     }
3175                 }
3176
3177                 if (opc == '+' && otherval)
3178                     NOOP;   /* replace with otherval */
3179                 else if (opc == '!' && !otherval)
3180                     otherval = 1;
3181                 else if (opc == '-' && otherval)
3182                     otherval = 0;
3183                 else if (opc == '&' && !otherval)
3184                     otherval = 0;
3185                 else {
3186                     s += octets; /* no replacement */
3187                     continue;
3188                 }
3189
3190                 if (bits == 8)
3191                     *s++ = (U8)( otherval & 0xff);
3192                 else if (bits == 16) {
3193                     *s++ = (U8)((otherval >>  8) & 0xff);
3194                     *s++ = (U8)( otherval        & 0xff);
3195                 }
3196                 else if (bits == 32) {
3197                     *s++ = (U8)((otherval >> 24) & 0xff);
3198                     *s++ = (U8)((otherval >> 16) & 0xff);
3199                     *s++ = (U8)((otherval >>  8) & 0xff);
3200                     *s++ = (U8)( otherval        & 0xff);
3201                 }
3202             }
3203         }
3204         sv_free(other); /* through with it! */
3205     } /* while */
3206     return swatch;
3207 }
3208
3209 HV*
3210 Perl__swash_inversion_hash(pTHX_ SV* const swash)
3211 {
3212
3213    /* Subject to change or removal.  For use only in regcomp.c and regexec.c
3214     * Can't be used on a property that is subject to user override, as it
3215     * relies on the value of SPECIALS in the swash which would be set by
3216     * utf8_heavy.pl to the hash in the non-overriden file, and hence is not set
3217     * for overridden properties
3218     *
3219     * Returns a hash which is the inversion and closure of a swash mapping.
3220     * For example, consider the input lines:
3221     * 004B              006B
3222     * 004C              006C
3223     * 212A              006B
3224     *
3225     * The returned hash would have two keys, the utf8 for 006B and the utf8 for
3226     * 006C.  The value for each key is an array.  For 006C, the array would
3227     * have two elements, the utf8 for itself, and for 004C.  For 006B, there
3228     * would be three elements in its array, the utf8 for 006B, 004B and 212A.
3229     *
3230     * Note that there are no elements in the hash for 004B, 004C, 212A.  The
3231     * keys are only code points that are folded-to, so it isn't a full closure.
3232     *
3233     * Essentially, for any code point, it gives all the code points that map to
3234     * it, or the list of 'froms' for that point.
3235     *
3236     * Currently it ignores any additions or deletions from other swashes,
3237     * looking at just the main body of the swash, and if there are SPECIALS
3238     * in the swash, at that hash
3239     *
3240     * The specials hash can be extra code points, and most likely consists of
3241     * maps from single code points to multiple ones (each expressed as a string
3242     * of utf8 characters).   This function currently returns only 1-1 mappings.
3243     * However consider this possible input in the specials hash:
3244     * "\xEF\xAC\x85" => "\x{0073}\x{0074}",         # U+FB05 => 0073 0074
3245     * "\xEF\xAC\x86" => "\x{0073}\x{0074}",         # U+FB06 => 0073 0074
3246     *
3247     * Both FB05 and FB06 map to the same multi-char sequence, which we don't
3248     * currently handle.  But it also means that FB05 and FB06 are equivalent in
3249     * a 1-1 mapping which we should handle, and this relationship may not be in
3250     * the main table.  Therefore this function examines all the multi-char
3251     * sequences and adds the 1-1 mappings that come out of that.  */
3252
3253     U8 *l, *lend;
3254     STRLEN lcur;
3255     HV *const hv = MUTABLE_HV(SvRV(swash));
3256
3257     /* The string containing the main body of the table.  This will have its
3258      * assertion fail if the swash has been converted to its inversion list */
3259     SV** const listsvp = hv_fetchs(hv, "LIST", FALSE);
3260
3261     SV** const typesvp = hv_fetchs(hv, "TYPE", FALSE);
3262     SV** const bitssvp = hv_fetchs(hv, "BITS", FALSE);
3263     SV** const nonesvp = hv_fetchs(hv, "NONE", FALSE);
3264     /*SV** const extssvp = hv_fetchs(hv, "EXTRAS", FALSE);*/
3265     const U8* const typestr = (U8*)SvPV_nolen(*typesvp);
3266     const STRLEN bits  = SvUV(*bitssvp);
3267     const STRLEN octets = bits >> 3; /* if bits == 1, then octets == 0 */
3268     const UV     none  = SvUV(*nonesvp);
3269     SV **specials_p = hv_fetchs(hv, "SPECIALS", 0);
3270
3271     HV* ret = newHV();
3272
3273     PERL_ARGS_ASSERT__SWASH_INVERSION_HASH;
3274
3275     /* Must have at least 8 bits to get the mappings */
3276     if (bits != 8 && bits != 16 && bits != 32) {
3277         Perl_croak(aTHX_ "panic: swash_inversion_hash doesn't expect bits %"UVuf,
3278                                                  (UV)bits);
3279     }
3280
3281     if (specials_p) { /* It might be "special" (sometimes, but not always, a
3282                         mapping to more than one character */
3283
3284         /* Construct an inverse mapping hash for the specials */
3285         HV * const specials_hv = MUTABLE_HV(SvRV(*specials_p));
3286         HV * specials_inverse = newHV();
3287         char *char_from; /* the lhs of the map */
3288         I32 from_len;   /* its byte length */
3289         char *char_to;  /* the rhs of the map */
3290         I32 to_len;     /* its byte length */
3291         SV *sv_to;      /* and in a sv */
3292         AV* from_list;  /* list of things that map to each 'to' */
3293
3294         hv_iterinit(specials_hv);
3295
3296         /* The keys are the characters (in utf8) that map to the corresponding
3297          * utf8 string value.  Iterate through the list creating the inverse
3298          * list. */
3299         while ((sv_to = hv_iternextsv(specials_hv, &char_from, &from_len))) {
3300             SV** listp;
3301             if (! SvPOK(sv_to)) {
3302                 Perl_croak(aTHX_ "panic: value returned from hv_iternextsv() "
3303                            "unexpectedly is not a string, flags=%lu",
3304                            (unsigned long)SvFLAGS(sv_to));
3305             }
3306             /*DEBUG_U(PerlIO_printf(Perl_debug_log, "Found mapping from %"UVXf", First char of to is %"UVXf"\n", valid_utf8_to_uvchr((U8*) char_from, 0), valid_utf8_to_uvchr((U8*) SvPVX(sv_to), 0)));*/
3307
3308             /* Each key in the inverse list is a mapped-to value, and the key's
3309              * hash value is a list of the strings (each in utf8) that map to
3310              * it.  Those strings are all one character long */
3311             if ((listp = hv_fetch(specials_inverse,
3312                                     SvPVX(sv_to),
3313                                     SvCUR(sv_to), 0)))
3314             {
3315                 from_list = (AV*) *listp;
3316             }
3317             else { /* No entry yet for it: create one */
3318                 from_list = newAV();
3319                 if (! hv_store(specials_inverse,
3320                                 SvPVX(sv_to),
3321                                 SvCUR(sv_to),
3322                                 (SV*) from_list, 0))
3323                 {
3324                     Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3325                 }
3326             }
3327
3328             /* Here have the list associated with this 'to' (perhaps newly
3329              * created and empty).  Just add to it.  Note that we ASSUME that
3330              * the input is guaranteed to not have duplications, so we don't
3331              * check for that.  Duplications just slow down execution time. */
3332             av_push(from_list, newSVpvn_utf8(char_from, from_len, TRUE));
3333         }
3334
3335         /* Here, 'specials_inverse' contains the inverse mapping.  Go through
3336          * it looking for cases like the FB05/FB06 examples above.  There would
3337          * be an entry in the hash like
3338         *       'st' => [ FB05, FB06 ]
3339         * In this example we will create two lists that get stored in the
3340         * returned hash, 'ret':
3341         *       FB05 => [ FB05, FB06 ]
3342         *       FB06 => [ FB05, FB06 ]
3343         *
3344         * Note that there is nothing to do if the array only has one element.
3345         * (In the normal 1-1 case handled below, we don't have to worry about
3346         * two lists, as everything gets tied to the single list that is
3347         * generated for the single character 'to'.  But here, we are omitting
3348         * that list, ('st' in the example), so must have multiple lists.) */
3349         while ((from_list = (AV *) hv_iternextsv(specials_inverse,
3350                                                  &char_to, &to_len)))
3351         {
3352             if (av_tindex(from_list) > 0) {
3353                 SSize_t i;
3354
3355                 /* We iterate over all combinations of i,j to place each code
3356                  * point on each list */
3357                 for (i = 0; i <= av_tindex(from_list); i++) {
3358                     SSize_t j;
3359                     AV* i_list = newAV();
3360                     SV** entryp = av_fetch(from_list, i, FALSE);
3361                     if (entryp == NULL) {
3362                         Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3363                     }
3364                     if (hv_fetch(ret, SvPVX(*entryp), SvCUR(*entryp), FALSE)) {
3365                         Perl_croak(aTHX_ "panic: unexpected entry for %s", SvPVX(*entryp));
3366                     }
3367                     if (! hv_store(ret, SvPVX(*entryp), SvCUR(*entryp),
3368                                    (SV*) i_list, FALSE))
3369                     {
3370                         Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3371                     }
3372
3373                     /* For DEBUG_U: UV u = valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0);*/
3374                     for (j = 0; j <= av_tindex(from_list); j++) {
3375                         entryp = av_fetch(from_list, j, FALSE);
3376                         if (entryp == NULL) {
3377                             Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3378                         }
3379
3380                         /* When i==j this adds itself to the list */
3381                         av_push(i_list, newSVuv(utf8_to_uvchr_buf(
3382                                         (U8*) SvPVX(*entryp),
3383                                         (U8*) SvPVX(*entryp) + SvCUR(*entryp),
3384                                         0)));
3385                         /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, valid_utf8_to_uvchr((U8*) SvPVX(*entryp), 0), u));*/
3386                     }
3387                 }
3388             }
3389         }
3390         SvREFCNT_dec(specials_inverse); /* done with it */
3391     } /* End of specials */
3392
3393     /* read $swash->{LIST} */
3394     l = (U8*)SvPV(*listsvp, lcur);
3395     lend = l + lcur;
3396
3397     /* Go through each input line */
3398     while (l < lend) {
3399         UV min, max, val;
3400         UV inverse;
3401         l = swash_scan_list_line(l, lend, &min, &max, &val,
3402                                                      cBOOL(octets), typestr);
3403         if (l > lend) {
3404             break;
3405         }
3406
3407         /* Each element in the range is to be inverted */
3408         for (inverse = min; inverse <= max; inverse++) {
3409             AV* list;
3410             SV** listp;
3411             IV i;
3412             bool found_key = FALSE;
3413             bool found_inverse = FALSE;
3414
3415             /* The key is the inverse mapping */
3416             char key[UTF8_MAXBYTES+1];
3417             char* key_end = (char *) uvchr_to_utf8((U8*) key, val);
3418             STRLEN key_len = key_end - key;
3419
3420             /* Get the list for the map */
3421             if ((listp = hv_fetch(ret, key, key_len, FALSE))) {
3422                 list = (AV*) *listp;
3423             }
3424             else { /* No entry yet for it: create one */
3425                 list = newAV();
3426                 if (! hv_store(ret, key, key_len, (SV*) list, FALSE)) {
3427                     Perl_croak(aTHX_ "panic: hv_store() unexpectedly failed");
3428                 }
3429             }
3430
3431             /* Look through list to see if this inverse mapping already is
3432              * listed, or if there is a mapping to itself already */
3433             for (i = 0; i <= av_tindex(list); i++) {
3434                 SV** entryp = av_fetch(list, i, FALSE);
3435                 SV* entry;
3436                 UV uv;
3437                 if (entryp == NULL) {
3438                     Perl_croak(aTHX_ "panic: av_fetch() unexpectedly failed");
3439                 }
3440                 entry = *entryp;
3441                 uv = SvUV(entry);
3442                 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "list for %"UVXf" contains %"UVXf"\n", val, uv));*/
3443                 if (uv == val) {
3444                     found_key = TRUE;
3445                 }
3446                 if (uv == inverse) {
3447                     found_inverse = TRUE;
3448                 }
3449
3450                 /* No need to continue searching if found everything we are
3451                  * looking for */
3452                 if (found_key && found_inverse) {
3453                     break;
3454                 }
3455             }
3456
3457             /* Make sure there is a mapping to itself on the list */
3458             if (! found_key) {
3459                 av_push(list, newSVuv(val));
3460                 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, val, val));*/
3461             }
3462
3463
3464             /* Simply add the value to the list */
3465             if (! found_inverse) {
3466                 av_push(list, newSVuv(inverse));
3467                 /*DEBUG_U(PerlIO_printf(Perl_debug_log, "%s: %d: Adding %"UVXf" to list for %"UVXf"\n", __FILE__, __LINE__, inverse, val));*/
3468             }
3469
3470             /* swatch_get() increments the value of val for each element in the
3471              * range.  That makes more compact tables possible.  You can
3472              * express the capitalization, for example, of all consecutive
3473              * letters with a single line: 0061\t007A\t0041 This maps 0061 to
3474              * 0041, 0062 to 0042, etc.  I (khw) have never understood 'none',
3475              * and it's not documented; it appears to be used only in
3476              * implementing tr//; I copied the semantics from swatch_get(), just
3477              * in case */
3478             if (!none || val < none) {
3479                 ++val;
3480             }
3481         }
3482     }
3483
3484     return ret;
3485 }
3486
3487 SV*
3488 Perl__swash_to_invlist(pTHX_ SV* const swash)
3489 {
3490
3491    /* Subject to change or removal.  For use only in one place in regcomp.c.
3492     * Ownership is given to one reference count in the returned SV* */
3493
3494     U8 *l, *lend;
3495     char *loc;
3496     STRLEN lcur;
3497     HV *const hv = MUTABLE_HV(SvRV(swash));
3498     UV elements = 0;    /* Number of elements in the inversion list */
3499     U8 empty[] = "";
3500     SV** listsvp;
3501     SV** typesvp;
3502     SV** bitssvp;
3503     SV** extssvp;
3504     SV** invert_it_svp;
3505
3506     U8* typestr;
3507     STRLEN bits;
3508     STRLEN octets; /* if bits == 1, then octets == 0 */
3509     U8 *x, *xend;
3510     STRLEN xcur;
3511
3512     SV* invlist;
3513
3514     PERL_ARGS_ASSERT__SWASH_TO_INVLIST;
3515
3516     /* If not a hash, it must be the swash's inversion list instead */
3517     if (SvTYPE(hv) != SVt_PVHV) {
3518         return SvREFCNT_inc_simple_NN((SV*) hv);
3519     }
3520
3521     /* The string containing the main body of the table */
3522     listsvp = hv_fetchs(hv, "LIST", FALSE);
3523     typesvp = hv_fetchs(hv, "TYPE", FALSE);
3524     bitssvp = hv_fetchs(hv, "BITS", FALSE);
3525     extssvp = hv_fetchs(hv, "EXTRAS", FALSE);
3526     invert_it_svp = hv_fetchs(hv, "INVERT_IT", FALSE);
3527
3528     typestr = (U8*)SvPV_nolen(*typesvp);
3529     bits  = SvUV(*bitssvp);
3530     octets = bits >> 3; /* if bits == 1, then octets == 0 */
3531
3532     /* read $swash->{LIST} */
3533     if (SvPOK(*listsvp)) {
3534         l = (U8*)SvPV(*listsvp, lcur);
3535     }
3536     else {
3537         /* LIST legitimately doesn't contain a string during compilation phases
3538          * of Perl itself, before the Unicode tables are generated.  In this
3539          * case, just fake things up by creating an empty list */
3540         l = empty;
3541         lcur = 0;
3542     }
3543     loc = (char *) l;
3544     lend = l + lcur;
3545
3546     if (*l == 'V') {    /*  Inversion list format */
3547         const char *after_atou = (char *) lend;
3548         UV element0;
3549         UV* other_elements_ptr;
3550
3551         /* The first number is a count of the rest */
3552         l++;
3553         elements = grok_atou((const char *)l, &after_atou);
3554         if (elements == 0) {
3555             invlist = _new_invlist(0);
3556         }
3557         else {
3558             while (isSPACE(*l)) l++;
3559             l = (U8 *) after_atou;
3560
3561             /* Get the 0th element, which is needed to setup the inversion list */
3562             while (isSPACE(*l)) l++;
3563             element0 = (UV) grok_atou((const char *)l, &after_atou);
3564             l = (U8 *) after_atou;
3565             invlist = _setup_canned_invlist(elements, element0, &other_elements_ptr);
3566             elements--;
3567
3568             /* Then just populate the rest of the input */
3569             while (elements-- > 0) {
3570                 if (l > lend) {
3571                     Perl_croak(aTHX_ "panic: Expecting %"UVuf" more elements than available", elements);
3572                 }
3573                 while (isSPACE(*l)) l++;
3574                 *other_elements_ptr++ = (UV) grok_atou((const char *)l, &after_atou);
3575                 l = (U8 *) after_atou;
3576             }
3577         }
3578     }
3579     else {
3580
3581         /* Scan the input to count the number of lines to preallocate array
3582          * size based on worst possible case, which is each line in the input
3583          * creates 2 elements in the inversion list: 1) the beginning of a
3584          * range in the list; 2) the beginning of a range not in the list.  */
3585         while ((loc = (strchr(loc, '\n'))) != NULL) {
3586             elements += 2;
3587             loc++;
3588         }
3589
3590         /* If the ending is somehow corrupt and isn't a new line, add another
3591          * element for the final range that isn't in the inversion list */
3592         if (! (*lend == '\n'
3593             || (*lend == '\0' && (lcur == 0 || *(lend - 1) == '\n'))))
3594         {
3595             elements++;
3596         }
3597
3598         invlist = _new_invlist(elements);
3599
3600         /* Now go through the input again, adding each range to the list */
3601         while (l < lend) {
3602             UV start, end;
3603             UV val;             /* Not used by this function */
3604
3605             l = swash_scan_list_line(l, lend, &start, &end, &val,
3606                                                         cBOOL(octets), typestr);
3607
3608             if (l > lend) {
3609                 break;
3610             }
3611
3612             invlist = _add_range_to_invlist(invlist, start, end);
3613         }
3614     }
3615
3616     /* Invert if the data says it should be */
3617     if (invert_it_svp && SvUV(*invert_it_svp)) {
3618         _invlist_invert(invlist);
3619     }
3620
3621     /* This code is copied from swatch_get()
3622      * read $swash->{EXTRAS} */
3623     x = (U8*)SvPV(*extssvp, xcur);
3624     xend = x + xcur;
3625     while (x < xend) {
3626         STRLEN namelen;
3627         U8 *namestr;
3628         SV** othersvp;
3629         HV* otherhv;
3630         STRLEN otherbits;
3631         SV **otherbitssvp, *other;
3632         U8 *nl;
3633
3634         const U8 opc = *x++;
3635         if (opc == '\n')
3636             continue;
3637
3638         nl = (U8*)memchr(x, '\n', xend - x);
3639
3640         if (opc != '-' && opc != '+' && opc != '!' && opc != '&') {
3641             if (nl) {
3642                 x = nl + 1; /* 1 is length of "\n" */
3643                 continue;
3644             }
3645             else {
3646                 x = xend; /* to EXTRAS' end at which \n is not found */
3647                 break;
3648             }
3649         }
3650
3651         namestr = x;
3652         if (nl) {
3653             namelen = nl - namestr;
3654             x = nl + 1;
3655         }
3656         else {
3657             namelen = xend - namestr;
3658             x = xend;
3659         }
3660
3661         othersvp = hv_fetch(hv, (char *)namestr, namelen, FALSE);
3662         otherhv = MUTABLE_HV(SvRV(*othersvp));
3663         otherbitssvp = hv_fetchs(otherhv, "BITS", FALSE);
3664         otherbits = (STRLEN)SvUV(*otherbitssvp);
3665
3666         if (bits != otherbits || bits != 1) {
3667             Perl_croak(aTHX_ "panic: _swash_to_invlist only operates on boolean "
3668                        "properties, bits=%"UVuf", otherbits=%"UVuf,
3669                        (UV)bits, (UV)otherbits);
3670         }
3671
3672         /* The "other" swatch must be destroyed after. */
3673         other = _swash_to_invlist((SV *)*othersvp);
3674
3675         /* End of code copied from swatch_get() */
3676         switch (opc) {
3677         case '+':
3678             _invlist_union(invlist, other, &invlist);
3679             break;
3680         case '!':
3681             _invlist_union_maybe_complement_2nd(invlist, other, TRUE, &invlist);
3682             break;
3683         case '-':
3684             _invlist_subtract(invlist, other, &invlist);
3685             break;
3686         case '&':
3687             _invlist_intersection(invlist, other, &invlist);
3688             break;
3689         default:
3690             break;
3691         }
3692         sv_free(other); /* through with it! */
3693     }
3694
3695     SvREADONLY_on(invlist);
3696     return invlist;
3697 }
3698
3699 SV*
3700 Perl__get_swash_invlist(pTHX_ SV* const swash)
3701 {
3702     SV** ptr;
3703
3704     PERL_ARGS_ASSERT__GET_SWASH_INVLIST;
3705
3706     if (! SvROK(swash)) {
3707         return NULL;
3708     }
3709
3710     /* If it really isn't a hash, it isn't really swash; must be an inversion
3711      * list */
3712     if (SvTYPE(SvRV(swash)) != SVt_PVHV) {
3713         return SvRV(swash);
3714     }
3715
3716     ptr = hv_fetchs(MUTABLE_HV(SvRV(swash)), "V", FALSE);
3717     if (! ptr) {
3718         return NULL;
3719     }
3720
3721     return *ptr;
3722 }
3723
3724 bool
3725 Perl_check_utf8_print(pTHX_ const U8* s, const STRLEN len)
3726 {
3727     /* May change: warns if surrogates, non-character code points, or
3728      * non-Unicode code points are in s which has length len bytes.  Returns
3729      * TRUE if none found; FALSE otherwise.  The only other validity check is
3730      * to make sure that this won't exceed the string's length */
3731
3732     const U8* const e = s + len;
3733     bool ok = TRUE;
3734
3735     PERL_ARGS_ASSERT_CHECK_UTF8_PRINT;
3736
3737     while (s < e) {
3738         if (UTF8SKIP(s) > len) {
3739             Perl_ck_warner_d(aTHX_ packWARN(WARN_UTF8),
3740                            "%s in %s", unees, PL_op ? OP_DESC(PL_op) : "print");
3741             return FALSE;
3742         }
3743         if (UNLIKELY(*s >= UTF8_FIRST_PROBLEMATIC_CODE_POINT_FIRST_BYTE)) {
3744             STRLEN char_len;
3745             if (UTF8_IS_SUPER(s)) {
3746                 if (ckWARN_d(WARN_NON_UNICODE)) {
3747                     UV uv = utf8_to_uvchr_buf(s, e, &char_len);
3748                     Perl_warner(aTHX_ packWARN(WARN_NON_UNICODE),
3749                         "Code point 0x%04"UVXf" is not Unicode, may not be portable", uv);
3750                     ok = FALSE;
3751                 }
3752             }
3753             else if (UTF8_IS_SURROGATE(s)) {
3754                 if (ckWARN_d(WARN_SURROGATE)) {
3755                     UV uv = utf8_to_uvchr_buf(s, e, &char_len);
3756                     Perl_warner(aTHX_ packWARN(WARN_SURROGATE),
3757                         "Unicode surrogate U+%04"UVXf" is illegal in UTF-8", uv);
3758                     ok = FALSE;
3759                 }
3760             }
3761             else if
3762                 ((UTF8_IS_NONCHAR_GIVEN_THAT_NON_SUPER_AND_GE_PROBLEMATIC(s))
3763                  && (ckWARN_d(WARN_NONCHAR)))
3764             {
3765                 UV uv = utf8_to_uvchr_buf(s, e, &char_len);
3766                 Perl_warner(aTHX_ packWARN(WARN_NONCHAR),
3767                     "Unicode non-character U+%04"UVXf" is illegal for open interchange", uv);
3768                 ok = FALSE;
3769             }
3770         }
3771         s += UTF8SKIP(s);
3772     }
3773
3774     return ok;
3775 }
3776
3777 /*
3778 =for apidoc pv_uni_display
3779
3780 Build to the scalar C<dsv> a displayable version of the string C<spv>,
3781 length C<len>, the displayable version being at most C<pvlim> bytes long
3782 (if longer, the rest is truncated and "..." will be appended).
3783
3784 The C<flags> argument can have UNI_DISPLAY_ISPRINT set to display
3785 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
3786 to display the \\[nrfta\\] as the backslashed versions (like '\n')
3787 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
3788 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
3789 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
3790
3791 The pointer to the PV of the C<dsv> is returned.
3792
3793 =cut */
3794 char *
3795 Perl_pv_uni_display(pTHX_ SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
3796 {
3797     int truncated = 0;
3798     const char *s, *e;
3799
3800     PERL_ARGS_ASSERT_PV_UNI_DISPLAY;
3801
3802     sv_setpvs(dsv, "");
3803     SvUTF8_off(dsv);
3804     for (s = (const char *)spv, e = s + len; s < e; s += UTF8SKIP(s)) {
3805          UV u;
3806           /* This serves double duty as a flag and a character to print after
3807              a \ when flags & UNI_DISPLAY_BACKSLASH is true.
3808           */
3809          char ok = 0;
3810
3811          if (pvlim && SvCUR(dsv) >= pvlim) {
3812               truncated++;
3813               break;
3814          }
3815          u = utf8_to_uvchr_buf((U8*)s, (U8*)e, 0);
3816          if (u < 256) {
3817              const unsigned char c = (unsigned char)u & 0xFF;
3818              if (flags & UNI_DISPLAY_BACKSLASH) {
3819                  switch (c) {
3820                  case '\n':
3821                      ok = 'n'; break;
3822                  case '\r':
3823                      ok = 'r'; break;
3824                  case '\t':
3825                      ok = 't'; break;
3826                  case '\f':
3827                      ok = 'f'; break;
3828                  case '\a':
3829                      ok = 'a'; break;
3830                  case '\\':
3831                      ok = '\\'; break;
3832                  default: break;
3833                  }
3834                  if (ok) {
3835                      const char string = ok;
3836                      sv_catpvs(dsv, "\\");
3837                      sv_catpvn(dsv, &string, 1);
3838                  }
3839              }
3840              /* isPRINT() is the locale-blind version. */
3841              if (!ok && (flags & UNI_DISPLAY_ISPRINT) && isPRINT(c)) {
3842                  const char string = c;
3843                  sv_catpvn(dsv, &string, 1);
3844                  ok = 1;
3845              }
3846          }
3847          if (!ok)
3848              Perl_sv_catpvf(aTHX_ dsv, "\\x{%"UVxf"}", u);
3849     }
3850     if (truncated)
3851          sv_catpvs(dsv, "...");
3852
3853     return SvPVX(dsv);
3854 }
3855
3856 /*
3857 =for apidoc sv_uni_display
3858
3859 Build to the scalar C<dsv> a displayable version of the scalar C<sv>,
3860 the displayable version being at most C<pvlim> bytes long
3861 (if longer, the rest is truncated and "..." will be appended).
3862
3863 The C<flags> argument is as in L</pv_uni_display>().
3864
3865 The pointer to the PV of the C<dsv> is returned.
3866
3867 =cut
3868 */
3869 char *
3870 Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
3871 {
3872     const char * const ptr =
3873         isREGEXP(ssv) ? RX_WRAPPED((REGEXP*)ssv) : SvPVX_const(ssv);
3874
3875     PERL_ARGS_ASSERT_SV_UNI_DISPLAY;
3876
3877     return Perl_pv_uni_display(aTHX_ dsv, (const U8*)ptr,
3878                                 SvCUR(ssv), pvlim, flags);
3879 }
3880
3881 /*
3882 =for apidoc foldEQ_utf8
3883
3884 Returns true if the leading portions of the strings C<s1> and C<s2> (either or both
3885 of which may be in UTF-8) are the same case-insensitively; false otherwise.
3886 How far into the strings to compare is determined by other input parameters.
3887
3888 If C<u1> is true, the string C<s1> is assumed to be in UTF-8-encoded Unicode;
3889 otherwise it is assumed to be in native 8-bit encoding.  Correspondingly for C<u2>
3890 with respect to C<s2>.
3891
3892 If the byte length C<l1> is non-zero, it says how far into C<s1> to check for fold
3893 equality.  In other words, C<s1>+C<l1> will be used as a goal to reach.  The
3894 scan will not be considered to be a match unless the goal is reached, and
3895 scanning won't continue past that goal.  Correspondingly for C<l2> with respect to
3896 C<s2>.
3897
3898 If C<pe1> is non-NULL and the pointer it points to is not NULL, that pointer is
3899 considered an end pointer to the position 1 byte past the maximum point
3900 in C<s1> beyond which scanning will not continue under any circumstances.
3901 (This routine assumes that UTF-8 encoded input strings are not malformed;
3902 malformed input can cause it to read past C<pe1>).
3903 This means that if both C<l1> and C<pe1> are specified, and C<pe1>
3904 is less than C<s1>+C<l1>, the match will never be successful because it can
3905 never
3906 get as far as its goal (and in fact is asserted against).  Correspondingly for
3907 C<pe2> with respect to C<s2>.
3908
3909 At least one of C<s1> and C<s2> must have a goal (at least one of C<l1> and
3910 C<l2> must be non-zero), and if both do, both have to be
3911 reached for a successful match.   Also, if the fold of a character is multiple
3912 characters, all of them must be matched (see tr21 reference below for
3913 'folding').
3914
3915 Upon a successful match, if C<pe1> is non-NULL,
3916 it will be set to point to the beginning of the I<next> character of C<s1>
3917 beyond what was matched.  Correspondingly for C<pe2> and C<s2>.
3918
3919 For case-insensitiveness, the "casefolding" of Unicode is used
3920 instead of upper/lowercasing both the characters, see
3921 L<http://www.unicode.org/unicode/reports/tr21/> (Case Mappings).
3922
3923 =cut */
3924
3925 /* A flags parameter has been added which may change, and hence isn't
3926  * externally documented.  Currently it is:
3927  *  0 for as-documented above
3928  *  FOLDEQ_UTF8_NOMIX_ASCII meaning that if a non-ASCII character folds to an
3929                             ASCII one, to not match
3930  *  FOLDEQ_LOCALE           is set iff the rules from the current underlying
3931  *                          locale are to be used.
3932  *  FOLDEQ_S1_ALREADY_FOLDED  s1 has already been folded before calling this
3933  *                          routine.  This allows that step to be skipped.
3934  *                          Currently, this requires s1 to be encoded as UTF-8
3935  *                          (u1 must be true), which is asserted for.
3936  *  FOLDEQ_S1_FOLDS_SANE    With either NOMIX_ASCII or LOCALE, no folds may
3937  *                          cross certain boundaries.  Hence, the caller should
3938  *                          let this function do the folding instead of
3939  *                          pre-folding.  This code contains an assertion to
3940  *                          that effect.  However, if the caller knows what
3941  *                          it's doing, it can pass this flag to indicate that,
3942  *                          and the assertion is skipped.
3943  *  FOLDEQ_S2_ALREADY_FOLDED  Similarly.
3944  *  FOLDEQ_S2_FOLDS_SANE
3945  */
3946 I32
3947 Perl_foldEQ_utf8_flags(pTHX_ const char *s1, char **pe1, UV l1, bool u1, const char *s2, char **pe2, UV l2, bool u2, U32 flags)
3948 {
3949     const U8 *p1  = (const U8*)s1; /* Point to current char */
3950     const U8 *p2  = (const U8*)s2;
3951     const U8 *g1 = NULL;       /* goal for s1 */
3952     const U8 *g2 = NULL;
3953     const U8 *e1 = NULL;       /* Don't scan s1 past this */
3954     U8 *f1 = NULL;             /* Point to current folded */
3955     const U8 *e2 = NULL;
3956     U8 *f2 = NULL;
3957     STRLEN n1 = 0, n2 = 0;              /* Number of bytes in current char */
3958     U8 foldbuf1[UTF8_MAXBYTES_CASE+1];
3959     U8 foldbuf2[UTF8_MAXBYTES_CASE+1];
3960     U8 flags_for_folder = FOLD_FLAGS_FULL;
3961
3962     PERL_ARGS_ASSERT_FOLDEQ_UTF8_FLAGS;
3963
3964     assert( ! ((flags & (FOLDEQ_UTF8_NOMIX_ASCII | FOLDEQ_LOCALE))
3965                && (((flags & FOLDEQ_S1_ALREADY_FOLDED)
3966                      && !(flags & FOLDEQ_S1_FOLDS_SANE))
3967                    || ((flags & FOLDEQ_S2_ALREADY_FOLDED)
3968                        && !(flags & FOLDEQ_S2_FOLDS_SANE)))));
3969     /* The algorithm is to trial the folds without regard to the flags on
3970      * the first line of the above assert(), and then see if the result
3971      * violates them.  This means that the inputs can't be pre-folded to a
3972      * violating result, hence the assert.  This could be changed, with the
3973      * addition of extra tests here for the already-folded case, which would
3974      * slow it down.  That cost is more than any possible gain for when these
3975      * flags are specified, as the flags indicate /il or /iaa matching which
3976      * is less common than /iu, and I (khw) also believe that real-world /il
3977      * and /iaa matches are most likely to involve code points 0-255, and this
3978      * function only under rare conditions gets called for 0-255. */
3979
3980     if (flags & FOLDEQ_LOCALE) {
3981         if (IN_UTF8_CTYPE_LOCALE) {
3982             flags &= ~FOLDEQ_LOCALE;
3983         }
3984         else {
3985             flags_for_folder |= FOLD_FLAGS_LOCALE;
3986         }
3987     }
3988
3989     if (pe1) {
3990         e1 = *(U8**)pe1;
3991     }
3992
3993     if (l1) {
3994         g1 = (const U8*)s1 + l1;
3995     }
3996
3997     if (pe2) {
3998         e2 = *(U8**)pe2;
3999     }
4000
4001     if (l2) {
4002         g2 = (const U8*)s2 + l2;
4003     }
4004
4005     /* Must have at least one goal */
4006     assert(g1 || g2);
4007
4008     if (g1) {
4009
4010         /* Will never match if goal is out-of-bounds */
4011         assert(! e1  || e1 >= g1);
4012
4013         /* Here, there isn't an end pointer, or it is beyond the goal.  We
4014         * only go as far as the goal */
4015         e1 = g1;
4016     }
4017     else {
4018         assert(e1);    /* Must have an end for looking at s1 */
4019     }
4020
4021     /* Same for goal for s2 */
4022     if (g2) {
4023         assert(! e2  || e2 >= g2);
4024         e2 = g2;
4025     }
4026     else {
4027         assert(e2);
4028     }
4029
4030     /* If both operands are already folded, we could just do a memEQ on the
4031      * whole strings at once, but it would be better if the caller realized
4032      * this and didn't even call us */
4033
4034     /* Look through both strings, a character at a time */
4035     while (p1 < e1 && p2 < e2) {
4036
4037         /* If at the beginning of a new character in s1, get its fold to use
4038          * and the length of the fold. */
4039         if (n1 == 0) {
4040             if (flags & FOLDEQ_S1_ALREADY_FOLDED) {
4041                 f1 = (U8 *) p1;
4042                 assert(u1);
4043                 n1 = UTF8SKIP(f1);
4044             }
4045             else {
4046                 if (isASCII(*p1) && ! (flags & FOLDEQ_LOCALE)) {
4047
4048                     /* We have to forbid mixing ASCII with non-ASCII if the
4049                      * flags so indicate.  And, we can short circuit having to
4050                      * call the general functions for this common ASCII case,
4051                      * all of whose non-locale folds are also ASCII, and hence
4052                      * UTF-8 invariants, so the UTF8ness of the strings is not
4053                      * relevant. */
4054                     if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p2)) {
4055                         return 0;
4056                     }
4057                     n1 = 1;
4058                     *foldbuf1 = toFOLD(*p1);
4059                 }
4060                 else if (u1) {
4061                     _to_utf8_fold_flags(p1, foldbuf1, &n1, flags_for_folder);
4062                 }
4063                 else {  /* Not utf8, get utf8 fold */
4064                     _to_uni_fold_flags(*p1, foldbuf1, &n1, flags_for_folder);
4065                 }
4066                 f1 = foldbuf1;
4067             }
4068         }
4069
4070         if (n2 == 0) {    /* Same for s2 */
4071             if (flags & FOLDEQ_S2_ALREADY_FOLDED) {
4072                 f2 = (U8 *) p2;
4073                 assert(u2);
4074                 n2 = UTF8SKIP(f2);
4075             }
4076             else {
4077                 if (isASCII(*p2) && ! (flags & FOLDEQ_LOCALE)) {
4078                     if ((flags & FOLDEQ_UTF8_NOMIX_ASCII) && ! isASCII(*p1)) {
4079                         return 0;
4080                     }
4081                     n2 = 1;
4082                     *foldbuf2 = toFOLD(*p2);
4083                 }
4084                 else if (u2) {
4085                     _to_utf8_fold_flags(p2, foldbuf2, &n2, flags_for_folder);
4086                 }
4087                 else {
4088                     _to_uni_fold_flags(*p2, foldbuf2, &n2, flags_for_folder);
4089                 }
4090                 f2 = foldbuf2;
4091             }
4092         }
4093
4094         /* Here f1 and f2 point to the beginning of the strings to compare.
4095          * These strings are the folds of the next character from each input
4096          * string, stored in utf8. */
4097
4098         /* While there is more to look for in both folds, see if they
4099         * continue to match */
4100         while (n1 && n2) {
4101             U8 fold_length = UTF8SKIP(f1);
4102             if (fold_length != UTF8SKIP(f2)
4103                 || (fold_length == 1 && *f1 != *f2) /* Short circuit memNE
4104                                                        function call for single
4105                                                        byte */
4106                 || memNE((char*)f1, (char*)f2, fold_length))
4107             {
4108                 return 0; /* mismatch */
4109             }
4110
4111             /* Here, they matched, advance past them */
4112             n1 -= fold_length;
4113             f1 += fold_length;
4114             n2 -= fold_length;
4115             f2 += fold_length;
4116         }
4117
4118         /* When reach the end of any fold, advance the input past it */
4119         if (n1 == 0) {
4120             p1 += u1 ? UTF8SKIP(p1) : 1;
4121         }
4122         if (n2 == 0) {
4123             p2 += u2 ? UTF8SKIP(p2) : 1;
4124         }
4125     } /* End of loop through both strings */
4126
4127     /* A match is defined by each scan that specified an explicit length
4128     * reaching its final goal, and the other not having matched a partial
4129     * character (which can happen when the fold of a character is more than one
4130     * character). */
4131     if (! ((g1 == 0 || p1 == g1) && (g2 == 0 || p2 == g2)) || n1 || n2) {
4132         return 0;
4133     }
4134
4135     /* Successful match.  Set output pointers */
4136     if (pe1) {
4137         *pe1 = (char*)p1;
4138     }
4139     if (pe2) {
4140         *pe2 = (char*)p2;
4141     }
4142     return 1;
4143 }
4144
4145 /* XXX The next two functions should likely be moved to mathoms.c once all
4146  * occurrences of them are removed from the core; some cpan-upstream modules
4147  * still use them */
4148
4149 U8 *
4150 Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
4151 {
4152     PERL_ARGS_ASSERT_UVUNI_TO_UTF8;
4153
4154     return Perl_uvoffuni_to_utf8_flags(aTHX_ d, uv, 0);
4155 }
4156
4157 /*
4158 =for apidoc utf8n_to_uvuni
4159
4160 Instead use L</utf8_to_uvchr_buf>, or rarely, L</utf8n_to_uvchr>.
4161
4162 This function was useful for code that wanted to handle both EBCDIC and
4163 ASCII platforms with Unicode properties, but starting in Perl v5.20, the
4164 distinctions between the platforms have mostly been made invisible to most
4165 code, so this function is quite unlikely to be what you want.  If you do need
4166 this precise functionality, use instead
4167 C<L<NATIVE_TO_UNI(utf8_to_uvchr_buf(...))|/utf8_to_uvchr_buf>>
4168 or C<L<NATIVE_TO_UNI(utf8n_to_uvchr(...))|/utf8n_to_uvchr>>.
4169
4170 =cut
4171 */
4172
4173 UV
4174 Perl_utf8n_to_uvuni(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
4175 {
4176     PERL_ARGS_ASSERT_UTF8N_TO_UVUNI;
4177
4178     return NATIVE_TO_UNI(utf8n_to_uvchr(s, curlen, retlen, flags));
4179 }
4180
4181 /*
4182 =for apidoc uvuni_to_utf8_flags
4183
4184 Instead you almost certainly want to use L</uvchr_to_utf8> or
4185 L</uvchr_to_utf8_flags>>.
4186
4187 This function is a deprecated synonym for L</uvoffuni_to_utf8_flags>,
4188 which itself, while not deprecated, should be used only in isolated
4189 circumstances.  These functions were useful for code that wanted to handle
4190 both EBCDIC and ASCII platforms with Unicode properties, but starting in Perl
4191 v5.20, the distinctions between the platforms have mostly been made invisible
4192 to most code, so this function is quite unlikely to be what you want.
4193
4194 =cut
4195 */
4196
4197 U8 *
4198 Perl_uvuni_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags)
4199 {
4200     PERL_ARGS_ASSERT_UVUNI_TO_UTF8_FLAGS;
4201
4202     return uvoffuni_to_utf8_flags(d, uv, flags);
4203 }
4204
4205 /*
4206  * Local variables:
4207  * c-indentation-style: bsd
4208  * c-basic-offset: 4
4209  * indent-tabs-mode: nil
4210  * End:
4211  *
4212  * ex: set ts=8 sts=4 sw=4 et:
4213  */