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