This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix spurious 'Use of reference' warning
[perl5.git] / handy.h
1 /*    handy.h
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000,
4  *    2001, 2002, 2004, 2005, 2006, 2007, 2008, 2012 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 /* IMPORTANT NOTE: Everything whose name begins with an underscore is for
12  * internal core Perl use only. */
13
14 #ifndef HANDY_H /* Guard against nested #inclusion */
15 #define HANDY_H
16
17 #if !defined(__STDC__)
18 #ifdef NULL
19 #undef NULL
20 #endif
21 #  define NULL 0
22 #endif
23
24 #ifndef PERL_CORE
25 #  define Null(type) ((type)NULL)
26
27 /*
28 =head1 Handy Values
29
30 =for apidoc AmU||Nullch
31 Null character pointer.  (No longer available when C<PERL_CORE> is
32 defined.)
33
34 =for apidoc AmU||Nullsv
35 Null SV pointer.  (No longer available when C<PERL_CORE> is defined.)
36
37 =cut
38 */
39
40 #  define Nullch Null(char*)
41 #  define Nullfp Null(PerlIO*)
42 #  define Nullsv Null(SV*)
43 #endif
44
45 #ifdef TRUE
46 #undef TRUE
47 #endif
48 #ifdef FALSE
49 #undef FALSE
50 #endif
51 #define TRUE (1)
52 #define FALSE (0)
53
54 /* The MUTABLE_*() macros cast pointers to the types shown, in such a way
55  * (compiler permitting) that casting away const-ness will give a warning;
56  * e.g.:
57  *
58  * const SV *sv = ...;
59  * AV *av1 = (AV*)sv;        <== BAD:  the const has been silently cast away
60  * AV *av2 = MUTABLE_AV(sv); <== GOOD: it may warn
61  */
62
63 #if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
64 #  define MUTABLE_PTR(p) ({ void *_p = (p); _p; })
65 #else
66 #  define MUTABLE_PTR(p) ((void *) (p))
67 #endif
68
69 #define MUTABLE_AV(p)   ((AV *)MUTABLE_PTR(p))
70 #define MUTABLE_CV(p)   ((CV *)MUTABLE_PTR(p))
71 #define MUTABLE_GV(p)   ((GV *)MUTABLE_PTR(p))
72 #define MUTABLE_HV(p)   ((HV *)MUTABLE_PTR(p))
73 #define MUTABLE_IO(p)   ((IO *)MUTABLE_PTR(p))
74 #define MUTABLE_SV(p)   ((SV *)MUTABLE_PTR(p))
75
76 #if defined(I_STDBOOL) && !defined(PERL_BOOL_AS_CHAR)
77 #  include <stdbool.h>
78 #  ifndef HAS_BOOL
79 #    define HAS_BOOL 1
80 #  endif
81 #endif
82
83 /* bool is built-in for g++-2.6.3 and later, which might be used
84    for extensions.  <_G_config.h> defines _G_HAVE_BOOL, but we can't
85    be sure _G_config.h will be included before this file.  _G_config.h
86    also defines _G_HAVE_BOOL for both gcc and g++, but only g++
87    actually has bool.  Hence, _G_HAVE_BOOL is pretty useless for us.
88    g++ can be identified by __GNUG__.
89    Andy Dougherty       February 2000
90 */
91 #ifdef __GNUG__         /* GNU g++ has bool built-in */
92 # ifndef PERL_BOOL_AS_CHAR
93 #  ifndef HAS_BOOL
94 #    define HAS_BOOL 1
95 #  endif
96 # endif
97 #endif
98
99 #ifndef HAS_BOOL
100 # ifdef bool
101 #  undef bool
102 # endif
103 # define bool char
104 # define HAS_BOOL 1
105 #endif
106
107 /* cast-to-bool.  A simple (bool) cast may not do the right thing: if bool is
108  * defined as char for example, then the cast from int is
109  * implementation-defined (bool)!!(cbool) in a ternary triggers a bug in xlc on
110  * AIX */
111 #define cBOOL(cbool) ((cbool) ? (bool)1 : (bool)0)
112
113 /* Try to figure out __func__ or __FUNCTION__ equivalent, if any.
114  * XXX Should really be a Configure probe, with HAS__FUNCTION__
115  *     and FUNCTION__ as results.
116  * XXX Similarly, a Configure probe for __FILE__ and __LINE__ is needed. */
117 #if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || (defined(__SUNPRO_C)) /* C99 or close enough. */
118 #  define FUNCTION__ __func__
119 #else
120 #  if (defined(USING_MSVC6)) || /* MSVC6 has neither __func__ nor __FUNCTION and no good workarounds, either. */ \
121       (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tur64, -c99 not known, only -std1). */
122 #    define FUNCTION__ ""
123 #  else
124 #    define FUNCTION__ __FUNCTION__ /* Common extension. */
125 #  endif
126 #endif
127
128 /* XXX A note on the perl source internal type system.  The
129    original intent was that I32 be *exactly* 32 bits.
130
131    Currently, we only guarantee that I32 is *at least* 32 bits.
132    Specifically, if int is 64 bits, then so is I32.  (This is the case
133    for the Cray.)  This has the advantage of meshing nicely with
134    standard library calls (where we pass an I32 and the library is
135    expecting an int), but the disadvantage that an I32 is not 32 bits.
136    Andy Dougherty       August 1996
137
138    There is no guarantee that there is *any* integral type with
139    exactly 32 bits.  It is perfectly legal for a system to have
140    sizeof(short) == sizeof(int) == sizeof(long) == 8.
141
142    Similarly, there is no guarantee that I16 and U16 have exactly 16
143    bits.
144
145    For dealing with issues that may arise from various 32/64-bit
146    systems, we will ask Configure to check out
147
148         SHORTSIZE == sizeof(short)
149         INTSIZE == sizeof(int)
150         LONGSIZE == sizeof(long)
151         LONGLONGSIZE == sizeof(long long) (if HAS_LONG_LONG)
152         PTRSIZE == sizeof(void *)
153         DOUBLESIZE == sizeof(double)
154         LONG_DOUBLESIZE == sizeof(long double) (if HAS_LONG_DOUBLE).
155
156 */
157
158 #ifdef I_INTTYPES /* e.g. Linux has int64_t without <inttypes.h> */
159 #   include <inttypes.h>
160 #   ifdef INT32_MIN_BROKEN
161 #       undef  INT32_MIN
162 #       define INT32_MIN (-2147483647-1)
163 #   endif
164 #   ifdef INT64_MIN_BROKEN
165 #       undef  INT64_MIN
166 #       define INT64_MIN (-9223372036854775807LL-1)
167 #   endif
168 #endif
169
170 typedef I8TYPE I8;
171 typedef U8TYPE U8;
172 typedef I16TYPE I16;
173 typedef U16TYPE U16;
174 typedef I32TYPE I32;
175 typedef U32TYPE U32;
176 #ifdef PERL_CORE
177 #   ifdef HAS_QUAD
178 typedef I64TYPE I64;
179 typedef U64TYPE U64;
180 #   endif
181 #endif /* PERL_CORE */
182
183 /* INT64_C/UINT64_C are C99 from <stdint.h> (so they will not be
184  * available in strict C89 mode), but they are nice, so let's define
185  * them if necessary. */
186 #if defined(HAS_QUAD)
187 #  undef PeRl_INT64_C
188 #  undef PeRl_UINT64_C
189 /* Prefer the native integer types (int and long) over long long
190  * (which is not C89) and Win32-specific __int64. */
191 #  if QUADKIND == QUAD_IS_INT && INTSIZE == 8
192 #    define PeRl_INT64_C(c)     (c)
193 #    define PeRl_UINT64_C(c)    CAT2(c,U)
194 #  endif
195 #  if QUADKIND == QUAD_IS_LONG && LONGSIZE == 8
196 #    define PeRl_INT64_C(c)     CAT2(c,L)
197 #    define PeRl_UINT64_C(c)    CAT2(c,UL)
198 #  endif
199 #  if QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_LONG_LONG)
200 #    define PeRl_INT64_C(c)     CAT2(c,LL)
201 #    define PeRl_UINT64_C(c)    CAT2(c,ULL)
202 #  endif
203 #  if QUADKIND == QUAD_IS___INT64
204 #    define PeRl_INT64_C(c)     CAT2(c,I64)
205 #    define PeRl_UINT64_C(c)    CAT2(c,UI64)
206 #  endif
207 #  ifndef PeRl_INT64_C
208 #    define PeRl_INT64_C(c)     ((I64TYPE)(c)) /* last resort */
209 #    define PeRl_UINT64_C(c)    ((U64TYPE)(c))
210 #  endif
211 /* In OS X the INT64_C/UINT64_C are defined with LL/ULL, which will
212  * not fly with C89-pedantic gcc, so let's undefine them first so that
213  * we can redefine them with our native integer preferring versions. */
214 #  if defined(PERL_DARWIN) && defined(PERL_GCC_PEDANTIC)
215 #    undef INT64_C
216 #    undef UINT64_C
217 #  endif
218 #  ifndef INT64_C
219 #    define INT64_C(c) PeRl_INT64_C(c)
220 #  endif
221 #  ifndef UINT64_C
222 #    define UINT64_C(c) PeRl_UINT64_C(c)
223 #  endif
224 #endif
225
226 #if defined(UINT8_MAX) && defined(INT16_MAX) && defined(INT32_MAX)
227
228 /* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
229    Please search CHAR_MAX in perl.h for further details. */
230 #define U8_MAX UINT8_MAX
231 #define U8_MIN UINT8_MIN
232
233 #define I16_MAX INT16_MAX
234 #define I16_MIN INT16_MIN
235 #define U16_MAX UINT16_MAX
236 #define U16_MIN UINT16_MIN
237
238 #define I32_MAX INT32_MAX
239 #define I32_MIN INT32_MIN
240 #ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
241 #  define U32_MAX UINT32_MAX
242 #else
243 #  define U32_MAX 4294967295U
244 #endif
245 #define U32_MIN UINT32_MIN
246
247 #else
248
249 /* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
250    Please search CHAR_MAX in perl.h for further details. */
251 #define U8_MAX PERL_UCHAR_MAX
252 #define U8_MIN PERL_UCHAR_MIN
253
254 #define I16_MAX PERL_SHORT_MAX
255 #define I16_MIN PERL_SHORT_MIN
256 #define U16_MAX PERL_USHORT_MAX
257 #define U16_MIN PERL_USHORT_MIN
258
259 #if LONGSIZE > 4
260 # define I32_MAX PERL_INT_MAX
261 # define I32_MIN PERL_INT_MIN
262 # define U32_MAX PERL_UINT_MAX
263 # define U32_MIN PERL_UINT_MIN
264 #else
265 # define I32_MAX PERL_LONG_MAX
266 # define I32_MIN PERL_LONG_MIN
267 # define U32_MAX PERL_ULONG_MAX
268 # define U32_MIN PERL_ULONG_MIN
269 #endif
270
271 #endif
272
273 /* log(2) is pretty close to  0.30103, just in case anyone is grepping for it */
274 #define BIT_DIGITS(N)   (((N)*146)/485 + 1)  /* log2(10) =~ 146/485 */
275 #define TYPE_DIGITS(T)  BIT_DIGITS(sizeof(T) * 8)
276 #define TYPE_CHARS(T)   (TYPE_DIGITS(T) + 2) /* sign, NUL */
277
278 /* Unused by core; should be deprecated */
279 #define Ctl(ch) ((ch) & 037)
280
281 /* This is a helper macro to avoid preprocessor issues, replaced by nothing
282  * unless under DEBUGGING, where it expands to an assert of its argument,
283  * followed by a comma (hence the comma operator).  If we just used a straight
284  * assert(), we would get a comma with nothing before it when not DEBUGGING */
285 #ifdef DEBUGGING
286 #   define __ASSERT_(statement)  assert(statement),
287 #else
288 #   define __ASSERT_(statement)
289 #endif
290
291 /*
292 =head1 SV-Body Allocation
293
294 =for apidoc Ama|SV*|newSVpvs|const char* s
295 Like C<newSVpvn>, but takes a literal C<NUL>-terminated string instead of a
296 string/length pair.
297
298 =for apidoc Ama|SV*|newSVpvs_flags|const char* s|U32 flags
299 Like C<newSVpvn_flags>, but takes a literal C<NUL>-terminated string instead of
300 a string/length pair.
301
302 =for apidoc Ama|SV*|newSVpvs_share|const char* s
303 Like C<newSVpvn_share>, but takes a literal C<NUL>-terminated string instead of
304 a string/length pair and omits the hash parameter.
305
306 =for apidoc Am|void|sv_catpvs_flags|SV* sv|const char* s|I32 flags
307 Like C<sv_catpvn_flags>, but takes a literal C<NUL>-terminated string instead
308 of a string/length pair.
309
310 =for apidoc Am|void|sv_catpvs_nomg|SV* sv|const char* s
311 Like C<sv_catpvn_nomg>, but takes a literal string instead of a
312 string/length pair.
313
314 =for apidoc Am|void|sv_catpvs|SV* sv|const char* s
315 Like C<sv_catpvn>, but takes a literal string instead of a string/length pair.
316
317 =for apidoc Am|void|sv_catpvs_mg|SV* sv|const char* s
318 Like C<sv_catpvn_mg>, but takes a literal string instead of a
319 string/length pair.
320
321 =for apidoc Am|void|sv_setpvs|SV* sv|const char* s
322 Like C<sv_setpvn>, but takes a literal string instead of a string/length pair.
323
324 =for apidoc Am|void|sv_setpvs_mg|SV* sv|const char* s
325 Like C<sv_setpvn_mg>, but takes a literal string instead of a
326 string/length pair.
327
328 =for apidoc Am|SV *|sv_setref_pvs|const char* s
329 Like C<sv_setref_pvn>, but takes a literal string instead of a
330 string/length pair.
331
332 =head1 Memory Management
333
334 =for apidoc Ama|char*|savepvs|const char* s
335 Like C<savepvn>, but takes a literal C<NUL>-terminated string instead of a
336 string/length pair.
337
338 =for apidoc Ama|char*|savesharedpvs|const char* s
339 A version of C<savepvs()> which allocates the duplicate string in memory
340 which is shared between threads.
341
342 =head1 GV Functions
343
344 =for apidoc Am|HV*|gv_stashpvs|const char* name|I32 create
345 Like C<gv_stashpvn>, but takes a literal string instead of a string/length pair.
346
347 =head1 Hash Manipulation Functions
348
349 =for apidoc Am|SV**|hv_fetchs|HV* tb|const char* key|I32 lval
350 Like C<hv_fetch>, but takes a literal string instead of a string/length pair.
351
352 =for apidoc Am|SV**|hv_stores|HV* tb|const char* key|NULLOK SV* val
353 Like C<hv_store>, but takes a literal string instead of a string/length pair
354 and omits the hash parameter.
355
356 =head1 Lexer interface
357
358 =for apidoc Amx|void|lex_stuff_pvs|const char *pv|U32 flags
359
360 Like L</lex_stuff_pvn>, but takes a literal string instead of a
361 string/length pair.
362
363 =cut
364 */
365
366 /* concatenating with "" ensures that only literal strings are accepted as
367  * argument */
368 #define STR_WITH_LEN(s)  ("" s ""), (sizeof(s)-1)
369
370 /* note that STR_WITH_LEN() can't be used as argument to macros or functions
371  * that under some configurations might be macros, which means that it requires
372  * the full Perl_xxx(aTHX_ ...) form for any API calls where it's used.
373  */
374
375 /* STR_WITH_LEN() shortcuts */
376 #define newSVpvs(str) Perl_newSVpvn(aTHX_ STR_WITH_LEN(str))
377 #define newSVpvs_flags(str,flags)       \
378     Perl_newSVpvn_flags(aTHX_ STR_WITH_LEN(str), flags)
379 #define newSVpvs_share(str) Perl_newSVpvn_share(aTHX_ STR_WITH_LEN(str), 0)
380 #define sv_catpvs_flags(sv, str, flags) \
381     Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), flags)
382 #define sv_catpvs_nomg(sv, str) \
383     Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), 0)
384 #define sv_catpvs(sv, str) \
385     Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC)
386 #define sv_catpvs_mg(sv, str) \
387     Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC|SV_SMAGIC)
388 #define sv_setpvs(sv, str) Perl_sv_setpvn(aTHX_ sv, STR_WITH_LEN(str))
389 #define sv_setpvs_mg(sv, str) Perl_sv_setpvn_mg(aTHX_ sv, STR_WITH_LEN(str))
390 #define sv_setref_pvs(rv, classname, str) \
391     Perl_sv_setref_pvn(aTHX_ rv, classname, STR_WITH_LEN(str))
392 #define savepvs(str) Perl_savepvn(aTHX_ STR_WITH_LEN(str))
393 #define savesharedpvs(str) Perl_savesharedpvn(aTHX_ STR_WITH_LEN(str))
394 #define gv_stashpvs(str, create) \
395     Perl_gv_stashpvn(aTHX_ STR_WITH_LEN(str), create)
396 #define gv_fetchpvs(namebeg, add, sv_type) \
397     Perl_gv_fetchpvn_flags(aTHX_ STR_WITH_LEN(namebeg), add, sv_type)
398 #define gv_fetchpvn(namebeg, len, add, sv_type) \
399     Perl_gv_fetchpvn_flags(aTHX_ namebeg, len, add, sv_type)
400 #define sv_catxmlpvs(dsv, str, utf8) \
401     Perl_sv_catxmlpvn(aTHX_ dsv, STR_WITH_LEN(str), utf8)
402 #define hv_fetchs(hv,key,lval)                                          \
403   ((SV **)Perl_hv_common(aTHX_ (hv), NULL, STR_WITH_LEN(key), 0,        \
404                          (lval) ? (HV_FETCH_JUST_SV | HV_FETCH_LVALUE)  \
405                          : HV_FETCH_JUST_SV, NULL, 0))
406
407 #define hv_stores(hv,key,val)                                           \
408   ((SV **)Perl_hv_common(aTHX_ (hv), NULL, STR_WITH_LEN(key), 0,        \
409                          (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), (val), 0))
410
411 #define lex_stuff_pvs(pv,flags) Perl_lex_stuff_pvn(aTHX_ STR_WITH_LEN(pv), flags)
412
413 #define get_cvs(str, flags)                                     \
414         Perl_get_cvn_flags(aTHX_ STR_WITH_LEN(str), (flags))
415
416 /*
417 =head1 Miscellaneous Functions
418
419 =for apidoc Am|bool|strNE|char* s1|char* s2
420 Test two strings to see if they are different.  Returns true or
421 false.
422
423 =for apidoc Am|bool|strEQ|char* s1|char* s2
424 Test two strings to see if they are equal.  Returns true or false.
425
426 =for apidoc Am|bool|strLT|char* s1|char* s2
427 Test two strings to see if the first, C<s1>, is less than the second,
428 C<s2>.  Returns true or false.
429
430 =for apidoc Am|bool|strLE|char* s1|char* s2
431 Test two strings to see if the first, C<s1>, is less than or equal to the
432 second, C<s2>.  Returns true or false.
433
434 =for apidoc Am|bool|strGT|char* s1|char* s2
435 Test two strings to see if the first, C<s1>, is greater than the second,
436 C<s2>.  Returns true or false.
437
438 =for apidoc Am|bool|strGE|char* s1|char* s2
439 Test two strings to see if the first, C<s1>, is greater than or equal to
440 the second, C<s2>.  Returns true or false.
441
442 =for apidoc Am|bool|strnNE|char* s1|char* s2|STRLEN len
443 Test two strings to see if they are different.  The C<len> parameter
444 indicates the number of bytes to compare.  Returns true or false.  (A
445 wrapper for C<strncmp>).
446
447 =for apidoc Am|bool|strnEQ|char* s1|char* s2|STRLEN len
448 Test two strings to see if they are equal.  The C<len> parameter indicates
449 the number of bytes to compare.  Returns true or false.  (A wrapper for
450 C<strncmp>).
451
452 =cut
453 */
454
455 #define strNE(s1,s2) (strcmp(s1,s2))
456 #define strEQ(s1,s2) (!strcmp(s1,s2))
457 #define strLT(s1,s2) (strcmp(s1,s2) < 0)
458 #define strLE(s1,s2) (strcmp(s1,s2) <= 0)
459 #define strGT(s1,s2) (strcmp(s1,s2) > 0)
460 #define strGE(s1,s2) (strcmp(s1,s2) >= 0)
461 #define strnNE(s1,s2,l) (strncmp(s1,s2,l))
462 #define strnEQ(s1,s2,l) (!strncmp(s1,s2,l))
463
464 #ifdef HAS_MEMCMP
465 #  define memNE(s1,s2,l) (memcmp(s1,s2,l))
466 #  define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
467 #else
468 #  define memNE(s1,s2,l) (bcmp(s1,s2,l))
469 #  define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
470 #endif
471
472 #define memEQs(s1, l, s2) \
473         (sizeof(s2)-1 == l && memEQ(s1, ("" s2 ""), (sizeof(s2)-1)))
474 #define memNEs(s1, l, s2) !memEQs(s1, l, s2)
475
476 /*
477  * Character classes.
478  *
479  * Unfortunately, the introduction of locales means that we
480  * can't trust isupper(), etc. to tell the truth.  And when
481  * it comes to /\w+/ with tainting enabled, we *must* be able
482  * to trust our character classes.
483  *
484  * Therefore, the default tests in the text of Perl will be
485  * independent of locale.  Any code that wants to depend on
486  * the current locale will use the tests that begin with "lc".
487  */
488
489 #ifdef HAS_SETLOCALE  /* XXX Is there a better test for this? */
490 #  ifndef CTYPE256
491 #    define CTYPE256
492 #  endif
493 #endif
494
495 /*
496
497 =head1 Character classification
498 This section is about functions (really macros) that classify characters
499 into types, such as punctuation versus alphabetic, etc.  Most of these are
500 analogous to regular expression character classes.  (See
501 L<perlrecharclass/POSIX Character Classes>.)  There are several variants for
502 each class.  (Not all macros have all variants; each item below lists the
503 ones valid for it.)  None are affected by C<use bytes>, and only the ones
504 with C<LC> in the name are affected by the current locale.
505
506 The base function, e.g., C<isALPHA()>, takes an octet (either a C<char> or a
507 C<U8>) as input and returns a boolean as to whether or not the character
508 represented by that octet is (or on non-ASCII platforms, corresponds to) an
509 ASCII character in the named class based on platform, Unicode, and Perl rules.
510 If the input is a number that doesn't fit in an octet, FALSE is returned.
511
512 Variant C<isFOO_A> (e.g., C<isALPHA_A()>) is identical to the base function
513 with no suffix C<"_A">.
514
515 Variant C<isFOO_L1> imposes the Latin-1 (or EBCDIC equivlalent) character set
516 onto the platform.  That is, the code points that are ASCII are unaffected,
517 since ASCII is a subset of Latin-1.  But the non-ASCII code points are treated
518 as if they are Latin-1 characters.  For example, C<isWORDCHAR_L1()> will return
519 true when called with the code point 0xDF, which is a word character in both
520 ASCII and EBCDIC (though it represents different characters in each).
521
522 Variant C<isFOO_uni> is like the C<isFOO_L1> variant, but accepts any UV code
523 point as input.  If the code point is larger than 255, Unicode rules are used
524 to determine if it is in the character class.  For example,
525 C<isWORDCHAR_uni(0x100)> returns TRUE, since 0x100 is LATIN CAPITAL LETTER A
526 WITH MACRON in Unicode, and is a word character.
527
528 Variant C<isFOO_utf8> is like C<isFOO_uni>, but the input is a pointer to a
529 (known to be well-formed) UTF-8 encoded string (C<U8*> or C<char*>).  The
530 classification of just the first (possibly multi-byte) character in the string
531 is tested.
532
533 Variant C<isFOO_LC> is like the C<isFOO_A> and C<isFOO_L1> variants, but the
534 result is based on the current locale, which is what C<LC> in the name stands
535 for.  If Perl can determine that the current locale is a UTF-8 locale, it uses
536 the published Unicode rules; otherwise, it uses the C library function that
537 gives the named classification.  For example, C<isDIGIT_LC()> when not in a
538 UTF-8 locale returns the result of calling C<isdigit()>.  FALSE is always
539 returned if the input won't fit into an octet.  On some platforms where the C
540 library function is known to be defective, Perl changes its result to follow
541 the POSIX standard's rules.
542
543 Variant C<isFOO_LC_uvchr> is like C<isFOO_LC>, but is defined on any UV.  It
544 returns the same as C<isFOO_LC> for input code points less than 256, and
545 returns the hard-coded, not-affected-by-locale, Unicode results for larger ones.
546
547 Variant C<isFOO_LC_utf8> is like C<isFOO_LC_uvchr>, but the input is a pointer to a
548 (known to be well-formed) UTF-8 encoded string (C<U8*> or C<char*>).  The
549 classification of just the first (possibly multi-byte) character in the string
550 is tested.
551
552 =for apidoc Am|bool|isALPHA|char ch
553 Returns a boolean indicating whether the specified character is an
554 alphabetic character, analogous to C<m/[[:alpha:]]/>.
555 See the L<top of this section|/Character classification> for an explanation of
556 variants
557 C<isALPHA_A>, C<isALPHA_L1>, C<isALPHA_uni>, C<isALPHA_utf8>, C<isALPHA_LC>,
558 C<isALPHA_LC_uvchr>, and C<isALPHA_LC_utf8>.
559
560 =for apidoc Am|bool|isALPHANUMERIC|char ch
561 Returns a boolean indicating whether the specified character is a either an
562 alphabetic character or decimal digit, analogous to C<m/[[:alnum:]]/>.
563 See the L<top of this section|/Character classification> for an explanation of
564 variants
565 C<isALPHANUMERIC_A>, C<isALPHANUMERIC_L1>, C<isALPHANUMERIC_uni>,
566 C<isALPHANUMERIC_utf8>, C<isALPHANUMERIC_LC>, C<isALPHANUMERIC_LC_uvchr>, and
567 C<isALPHANUMERIC_LC_utf8>.
568
569 =for apidoc Am|bool|isASCII|char ch
570 Returns a boolean indicating whether the specified character is one of the 128
571 characters in the ASCII character set, analogous to C<m/[[:ascii:]]/>.
572 On non-ASCII platforms, it returns TRUE iff this
573 character corresponds to an ASCII character.  Variants C<isASCII_A()> and
574 C<isASCII_L1()> are identical to C<isASCII()>.
575 See the L<top of this section|/Character classification> for an explanation of
576 variants
577 C<isASCII_uni>, C<isASCII_utf8>, C<isASCII_LC>, C<isASCII_LC_uvchr>, and
578 C<isASCII_LC_utf8>.  Note, however, that some platforms do not have the C
579 library routine C<isascii()>.  In these cases, the variants whose names contain
580 C<LC> are the same as the corresponding ones without.
581
582 Also note, that because all ASCII characters are UTF-8 invariant (meaning they
583 have the exact same representation (always a single byte) whether encoded in
584 UTF-8 or not), C<isASCII> will give the correct results when called with any
585 byte in any string encoded or not in UTF-8.  And similarly C<isASCII_utf8> will
586 work properly on any string encoded or not in UTF-8.
587
588 =for apidoc Am|bool|isBLANK|char ch
589 Returns a boolean indicating whether the specified character is a
590 character considered to be a blank, analogous to C<m/[[:blank:]]/>.
591 See the L<top of this section|/Character classification> for an explanation of
592 variants
593 C<isBLANK_A>, C<isBLANK_L1>, C<isBLANK_uni>, C<isBLANK_utf8>, C<isBLANK_LC>,
594 C<isBLANK_LC_uvchr>, and C<isBLANK_LC_utf8>.  Note, however, that some
595 platforms do not have the C library routine C<isblank()>.  In these cases, the
596 variants whose names contain C<LC> are the same as the corresponding ones
597 without.
598
599 =for apidoc Am|bool|isCNTRL|char ch
600 Returns a boolean indicating whether the specified character is a
601 control character, analogous to C<m/[[:cntrl:]]/>.
602 See the L<top of this section|/Character classification> for an explanation of
603 variants
604 C<isCNTRL_A>, C<isCNTRL_L1>, C<isCNTRL_uni>, C<isCNTRL_utf8>, C<isCNTRL_LC>,
605 C<isCNTRL_LC_uvchr>, and C<isCNTRL_LC_utf8>
606 On EBCDIC platforms, you almost always want to use the C<isCNTRL_L1> variant.
607
608 =for apidoc Am|bool|isDIGIT|char ch
609 Returns a boolean indicating whether the specified character is a
610 digit, analogous to C<m/[[:digit:]]/>.
611 Variants C<isDIGIT_A> and C<isDIGIT_L1> are identical to C<isDIGIT>.
612 See the L<top of this section|/Character classification> for an explanation of
613 variants
614 C<isDIGIT_uni>, C<isDIGIT_utf8>, C<isDIGIT_LC>, C<isDIGIT_LC_uvchr>, and
615 C<isDIGIT_LC_utf8>.
616
617 =for apidoc Am|bool|isGRAPH|char ch
618 Returns a boolean indicating whether the specified character is a
619 graphic character, analogous to C<m/[[:graph:]]/>.
620 See the L<top of this section|/Character classification> for an explanation of
621 variants
622 C<isGRAPH_A>, C<isGRAPH_L1>, C<isGRAPH_uni>, C<isGRAPH_utf8>, C<isGRAPH_LC>,
623 C<isGRAPH_LC_uvchr>, and C<isGRAPH_LC_utf8>.
624
625 =for apidoc Am|bool|isLOWER|char ch
626 Returns a boolean indicating whether the specified character is a
627 lowercase character, analogous to C<m/[[:lower:]]/>.
628 See the L<top of this section|/Character classification> for an explanation of
629 variants
630 C<isLOWER_A>, C<isLOWER_L1>, C<isLOWER_uni>, C<isLOWER_utf8>, C<isLOWER_LC>,
631 C<isLOWER_LC_uvchr>, and C<isLOWER_LC_utf8>.
632
633 =for apidoc Am|bool|isOCTAL|char ch
634 Returns a boolean indicating whether the specified character is an
635 octal digit, [0-7].
636 The only two variants are C<isOCTAL_A> and C<isOCTAL_L1>; each is identical to
637 C<isOCTAL>.
638
639 =for apidoc Am|bool|isPUNCT|char ch
640 Returns a boolean indicating whether the specified character is a
641 punctuation character, analogous to C<m/[[:punct:]]/>.
642 Note that the definition of what is punctuation isn't as
643 straightforward as one might desire.  See L<perlrecharclass/POSIX Character
644 Classes> for details.
645 See the L<top of this section|/Character classification> for an explanation of
646 variants
647 C<isPUNCT_A>, C<isPUNCT_L1>, C<isPUNCT_uni>, C<isPUNCT_utf8>, C<isPUNCT_LC>,
648 C<isPUNCT_LC_uvchr>, and C<isPUNCT_LC_utf8>.
649
650 =for apidoc Am|bool|isSPACE|char ch
651 Returns a boolean indicating whether the specified character is a
652 whitespace character.  This is analogous
653 to what C<m/\s/> matches in a regular expression.  Starting in Perl 5.18
654 (experimentally), this also matches what C<m/[[:space:]]/> does.
655 ("Experimentally" means that this change may be backed out in 5.22 if
656 field experience indicates that it was unwise.)  Prior to 5.18, only the
657 locale forms of this macro (the ones with C<LC> in their names) matched
658 precisely what C<m/[[:space:]]/> does.  In those releases, the only difference,
659 in the non-locale variants, was that C<isSPACE()> did not match a vertical tab.
660 (See L</isPSXSPC> for a macro that matches a vertical tab in all releases.)
661 See the L<top of this section|/Character classification> for an explanation of
662 variants
663 C<isSPACE_A>, C<isSPACE_L1>, C<isSPACE_uni>, C<isSPACE_utf8>, C<isSPACE_LC>,
664 C<isSPACE_LC_uvchr>, and C<isSPACE_LC_utf8>.
665
666 =for apidoc Am|bool|isPSXSPC|char ch
667 (short for Posix Space)
668 Starting in 5.18, this is identical (experimentally) in all its forms to the
669 corresponding C<isSPACE()> macros.  ("Experimentally" means that this change
670 may be backed out in 5.22 if field experience indicates that it
671 was unwise.)
672 The locale forms of this macro are identical to their corresponding
673 C<isSPACE()> forms in all Perl releases.  In releases prior to 5.18, the
674 non-locale forms differ from their C<isSPACE()> forms only in that the
675 C<isSPACE()> forms don't match a Vertical Tab, and the C<isPSXSPC()> forms do.
676 Otherwise they are identical.  Thus this macro is analogous to what
677 C<m/[[:space:]]/> matches in a regular expression.
678 See the L<top of this section|/Character classification> for an explanation of
679 variants
680 C<isPSXSPC_A>, C<isPSXSPC_L1>, C<isPSXSPC_uni>, C<isPSXSPC_utf8>, C<isPSXSPC_LC>,
681 C<isPSXSPC_LC_uvchr>, and C<isPSXSPC_LC_utf8>.
682
683 =for apidoc Am|bool|isUPPER|char ch
684 Returns a boolean indicating whether the specified character is an
685 uppercase character, analogous to C<m/[[:upper:]]/>.
686 See the L<top of this section|/Character classification> for an explanation of
687 variants
688 C<isUPPER_A>, C<isUPPER_L1>, C<isUPPER_uni>, C<isUPPER_utf8>, C<isUPPER_LC>,
689 C<isUPPER_LC_uvchr>, and C<isUPPER_LC_utf8>.
690
691 =for apidoc Am|bool|isPRINT|char ch
692 Returns a boolean indicating whether the specified character is a
693 printable character, analogous to C<m/[[:print:]]/>.
694 See the L<top of this section|/Character classification> for an explanation of
695 variants
696 C<isPRINT_A>, C<isPRINT_L1>, C<isPRINT_uni>, C<isPRINT_utf8>, C<isPRINT_LC>,
697 C<isPRINT_LC_uvchr>, and C<isPRINT_LC_utf8>.
698
699 =for apidoc Am|bool|isWORDCHAR|char ch
700 Returns a boolean indicating whether the specified character is a character
701 that is a word character, analogous to what C<m/\w/> and C<m/[[:word:]]/> match
702 in a regular expression.  A word character is an alphabetic character, a
703 decimal digit, a connecting punctuation character (such as an underscore), or
704 a "mark" character that attaches to one of those (like some sort of accent).
705 C<isALNUM()> is a synonym provided for backward compatibility, even though a
706 word character includes more than the standard C language meaning of
707 alphanumeric.
708 See the L<top of this section|/Character classification> for an explanation of
709 variants
710 C<isWORDCHAR_A>, C<isWORDCHAR_L1>, C<isWORDCHAR_uni>, and C<isWORDCHAR_utf8>.
711 C<isWORDCHAR_LC>, C<isWORDCHAR_LC_uvchr>, and C<isWORDCHAR_LC_utf8> are also as
712 described there, but additionally include the platform's native underscore.
713
714 =for apidoc Am|bool|isXDIGIT|char ch
715 Returns a boolean indicating whether the specified character is a hexadecimal
716 digit.  In the ASCII range these are C<[0-9A-Fa-f]>.  Variants C<isXDIGIT_A()>
717 and C<isXDIGIT_L1()> are identical to C<isXDIGIT()>.
718 See the L<top of this section|/Character classification> for an explanation of
719 variants
720 C<isXDIGIT_uni>, C<isXDIGIT_utf8>, C<isXDIGIT_LC>, C<isXDIGIT_LC_uvchr>, and
721 C<isXDIGIT_LC_utf8>.
722
723 =for apidoc Am|bool|isIDFIRST|char ch
724 Returns a boolean indicating whether the specified character can be the first
725 character of an identifier.  This is very close to, but not quite the same as
726 the official Unicode property C<XID_Start>.  The difference is that this
727 returns true only if the input character also matches L</isWORDCHAR>.
728 See the L<top of this section|/Character classification> for an explanation of
729 variants
730 C<isIDFIRST_A>, C<isIDFIRST_L1>, C<isIDFIRST_uni>, C<isIDFIRST_utf8>,
731 C<isIDFIRST_LC>, C<isIDFIRST_LC_uvchr>, and C<isIDFIRST_LC_utf8>.
732
733 =for apidoc Am|bool|isIDCONT|char ch
734 Returns a boolean indicating whether the specified character can be the
735 second or succeeding character of an identifier.  This is very close to, but
736 not quite the same as the official Unicode property C<XID_Continue>.  The
737 difference is that this returns true only if the input character also matches
738 L</isWORDCHAR>.  See the L<top of this section|/Character classification> for
739 an
740 explanation of variants C<isIDCONT_A>, C<isIDCONT_L1>, C<isIDCONT_uni>,
741 C<isIDCONT_utf8>, C<isIDCONT_LC>, C<isIDCONT_LC_uvchr>, and
742 C<isIDCONT_LC_utf8>.
743
744 =head1 Miscellaneous Functions
745
746 =for apidoc Am|U8|READ_XDIGIT|char str*
747 Returns the value of an ASCII-range hex digit and advances the string pointer.
748 Behaviour is only well defined when isXDIGIT(*str) is true.
749
750 =head1 Character case changing
751
752 =for apidoc Am|U8|toUPPER|U8 ch
753 Converts the specified character to uppercase.  If the input is anything but an
754 ASCII lowercase character, that input character itself is returned.  Variant
755 C<toUPPER_A> is equivalent.
756
757 =for apidoc Am|UV|toUPPER_uni|UV cp|U8* s|STRLEN* lenp
758 Converts the Unicode code point C<cp> to its uppercase version, and
759 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
760 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
761 bytes since the uppercase version may be longer than the original character.
762
763 The first code point of the uppercased version is returned
764 (but note, as explained just above, that there may be more.)
765
766 =for apidoc Am|UV|toUPPER_utf8|U8* p|U8* s|STRLEN* lenp
767 Converts the UTF-8 encoded character at C<p> to its uppercase version, and
768 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
769 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
770 bytes since the uppercase version may be longer than the original character.
771
772 The first code point of the uppercased version is returned
773 (but note, as explained just above, that there may be more.)
774
775 The input character at C<p> is assumed to be well-formed.
776
777 =for apidoc Am|U8|toFOLD|U8 ch
778 Converts the specified character to foldcase.  If the input is anything but an
779 ASCII uppercase character, that input character itself is returned.  Variant
780 C<toFOLD_A> is equivalent.  (There is no equivalent C<to_FOLD_L1> for the full
781 Latin1 range, as the full generality of L</toFOLD_uni> is needed there.)
782
783 =for apidoc Am|UV|toFOLD_uni|UV cp|U8* s|STRLEN* lenp
784 Converts the Unicode code point C<cp> to its foldcase version, and
785 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
786 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
787 bytes since the foldcase version may be longer than the original character.
788
789 The first code point of the foldcased version is returned
790 (but note, as explained just above, that there may be more.)
791
792 =for apidoc Am|UV|toFOLD_utf8|U8* p|U8* s|STRLEN* lenp
793 Converts the UTF-8 encoded character at C<p> to its foldcase version, and
794 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
795 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
796 bytes since the foldcase version may be longer than the original character.
797
798 The first code point of the foldcased version is returned
799 (but note, as explained just above, that there may be more.)
800
801 The input character at C<p> is assumed to be well-formed.
802
803 =for apidoc Am|U8|toLOWER|U8 ch
804 Converts the specified character to lowercase.  If the input is anything but an
805 ASCII uppercase character, that input character itself is returned.  Variant
806 C<toLOWER_A> is equivalent.
807
808 =for apidoc Am|U8|toLOWER_L1|U8 ch
809 Converts the specified Latin1 character to lowercase.  The results are undefined if
810 the input doesn't fit in a byte.
811
812 =for apidoc Am|U8|toLOWER_LC|U8 ch
813 Converts the specified character to lowercase using the current locale's rules,
814 if possible; otherwise returns the input character itself.
815
816 =for apidoc Am|UV|toLOWER_uni|UV cp|U8* s|STRLEN* lenp
817 Converts the Unicode code point C<cp> to its lowercase version, and
818 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
819 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
820 bytes since the lowercase version may be longer than the original character.
821
822 The first code point of the lowercased version is returned
823 (but note, as explained just above, that there may be more.)
824
825 =for apidoc Am|UV|toLOWER_utf8|U8* p|U8* s|STRLEN* lenp
826 Converts the UTF-8 encoded character at C<p> to its lowercase version, and
827 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
828 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
829 bytes since the lowercase version may be longer than the original character.
830
831 The first code point of the lowercased version is returned
832 (but note, as explained just above, that there may be more.)
833
834 The input character at C<p> is assumed to be well-formed.
835
836 =for apidoc Am|U8|toLOWER_LC|U8 ch
837 Converts the specified character to lowercase using the current locale's rules,
838 if possible; otherwise returns the input character itself.
839
840 =for apidoc Am|U8|toTITLE|U8 ch
841 Converts the specified character to titlecase.  If the input is anything but an
842 ASCII lowercase character, that input character itself is returned.  Variant
843 C<toTITLE_A> is equivalent.  (There is no C<toTITLE_L1> for the full Latin1 range,
844 as the full generality of L</toTITLE_uni> is needed there.  Titlecase is not a
845 concept used in locale handling, so there is no functionality for that.)
846
847 =for apidoc Am|UV|toTITLE_uni|UV cp|U8* s|STRLEN* lenp
848 Converts the Unicode code point C<cp> to its titlecase version, and
849 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
850 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
851 bytes since the titlecase version may be longer than the original character.
852
853 The first code point of the titlecased version is returned
854 (but note, as explained just above, that there may be more.)
855
856 =for apidoc Am|UV|toTITLE_utf8|U8* p|U8* s|STRLEN* lenp
857 Converts the UTF-8 encoded character at C<p> to its titlecase version, and
858 stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>.  Note
859 that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
860 bytes since the titlecase version may be longer than the original character.
861
862 The first code point of the titlecased version is returned
863 (but note, as explained just above, that there may be more.)
864
865 The input character at C<p> is assumed to be well-formed.
866
867 =cut
868
869 XXX Still undocumented isVERTWS_uni and _utf8; it's unclear what their names
870 really should be.  Also toUPPER_LC and toFOLD_LC, which are subject to change.
871
872 Note that these macros are repeated in Devel::PPPort, so should also be
873 patched there.  The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
874
875 */
876
877 /* Specify the widest unsigned type on the platform.  Use U64TYPE because U64
878  * is known only in the perl core, and this macro can be called from outside
879  * that */
880 #ifdef HAS_QUAD
881 #   define WIDEST_UTYPE U64TYPE
882 #else
883 #   define WIDEST_UTYPE U32
884 #endif
885
886 /* FITS_IN_8_BITS(c) returns true if c doesn't have  a bit set other than in
887  * the lower 8.  It is designed to be hopefully bomb-proof, making sure that no
888  * bits of information are lost even on a 64-bit machine, but to get the
889  * compiler to optimize it out if possible.  This is because Configure makes
890  * sure that the machine has an 8-bit byte, so if c is stored in a byte, the
891  * sizeof() guarantees that this evaluates to a constant true at compile time.
892  */
893 #define FITS_IN_8_BITS(c) ((sizeof(c) == 1) || !(((WIDEST_UTYPE)(c)) & ~0xFF))
894
895 #ifdef EBCDIC
896 #   ifndef _ALL_SOURCE
897         /* The native libc isascii() et.al. functions return the wrong results
898          * on at least z/OS unless this is defined. */
899 #       error   _ALL_SOURCE should probably be defined
900 #   endif
901 #else
902     /* There is a simple definition of ASCII for ASCII platforms.  But the
903      * EBCDIC one isn't so simple, so is defined using table look-up like the
904      * other macros below */
905 #   define isASCII(c)    ((WIDEST_UTYPE)(c) < 128)
906 #endif
907
908 /* The lower 3 bits in both the ASCII and EBCDIC representations of '0' are 0,
909  * and the 8 possible permutations of those bits exactly comprise the 8 octal
910  * digits */
911 #define isOCTAL_A(c)  cBOOL(FITS_IN_8_BITS(c) && (0xF8 & (c)) == '0')
912
913 #ifdef H_PERL       /* If have access to perl.h, lookup in its table */
914
915 /* Character class numbers.  For internal core Perl use only.  The ones less
916  * than 32 are used in PL_charclass[] and the ones up through the one that
917  * corresponds to <_HIGHEST_REGCOMP_DOT_H_SYNC> are used by regcomp.h and
918  * related files.  PL_charclass ones use names used in l1_char_class_tab.h but
919  * their actual definitions are here.  If that file has a name not used here,
920  * it won't compile.
921  *
922  * The first group of these is ordered in what I (khw) estimate to be the
923  * frequency of their use.  This gives a slight edge to exiting a loop earlier
924  * (in reginclass() in regexec.c) */
925 #  define _CC_WORDCHAR           0      /* \w and [:word:] */
926 #  define _CC_DIGIT              1      /* \d and [:digit:] */
927 #  define _CC_ALPHA              2      /* [:alpha:] */
928 #  define _CC_LOWER              3      /* [:lower:] */
929 #  define _CC_UPPER              4      /* [:upper:] */
930 #  define _CC_PUNCT              5      /* [:punct:] */
931 #  define _CC_PRINT              6      /* [:print:] */
932 #  define _CC_ALPHANUMERIC       7      /* [:alnum:] */
933 #  define _CC_GRAPH              8      /* [:graph:] */
934 #  define _CC_CASED              9      /* [:lower:] and [:upper:] under /i */
935
936 #define _FIRST_NON_SWASH_CC     10
937 /* The character classes above are implemented with swashes.  The second group
938  * (just below) contains the ones implemented without.  These are also sorted
939  * in rough order of the frequency of their use, except that \v should be last,
940  * as it isn't a real Posix character class, and some (small) inefficiencies in
941  * regular expression handling would be introduced by putting it in the middle
942  * of those that are.  Also, cntrl and ascii come after the others as it may be
943  * useful to group these which have no members that match above Latin1, (or
944  * above ASCII in the latter case) */
945
946 #  define _CC_SPACE             10      /* \s */
947 #  define _CC_BLANK             11      /* [:blank:] */
948 #  define _CC_XDIGIT            12      /* [:xdigit:] */
949 #  define _CC_PSXSPC            13      /* [:space:] */
950 #  define _CC_CNTRL             14      /* [:cntrl:] */
951 #  define _CC_ASCII             15      /* [:ascii:] */
952 #  define _CC_VERTSPACE         16      /* \v */
953
954 #  define _HIGHEST_REGCOMP_DOT_H_SYNC _CC_VERTSPACE
955
956 /* The members of the third group below do not need to be coordinated with data
957  * structures in regcomp.[ch] and regexec.c. */
958 #  define _CC_IDFIRST                  17
959 #  define _CC_CHARNAME_CONT            18
960 #  define _CC_NONLATIN1_FOLD           19
961 #  define _CC_NONLATIN1_SIMPLE_FOLD    20
962 #  define _CC_QUOTEMETA                21
963 #  define _CC_NON_FINAL_FOLD           22
964 #  define _CC_IS_IN_SOME_FOLD          23
965 #  define _CC_MNEMONIC_CNTRL           24
966 /* Unused: 25-31
967  * If more bits are needed, one could add a second word for non-64bit
968  * QUAD_IS_INT systems, using some #ifdefs to distinguish between having a 2nd
969  * word or not.  The IS_IN_SOME_FOLD bit is the most easily expendable, as it
970  * is used only for optimization (as of this writing), and differs in the
971  * Latin1 range from the ALPHA bit only in two relatively unimportant
972  * characters: the masculine and feminine ordinal indicators, so removing it
973  * would just cause /i regexes which match them to run less efficiently */
974
975 #if defined(PERL_CORE) || defined(PERL_EXT)
976 /* An enum version of the character class numbers, to help compilers
977  * optimize */
978 typedef enum {
979     _CC_ENUM_ALPHA          = _CC_ALPHA,
980     _CC_ENUM_ALPHANUMERIC   = _CC_ALPHANUMERIC,
981     _CC_ENUM_ASCII          = _CC_ASCII,
982     _CC_ENUM_BLANK          = _CC_BLANK,
983     _CC_ENUM_CASED          = _CC_CASED,
984     _CC_ENUM_CNTRL          = _CC_CNTRL,
985     _CC_ENUM_DIGIT          = _CC_DIGIT,
986     _CC_ENUM_GRAPH          = _CC_GRAPH,
987     _CC_ENUM_LOWER          = _CC_LOWER,
988     _CC_ENUM_PRINT          = _CC_PRINT,
989     _CC_ENUM_PSXSPC         = _CC_PSXSPC,
990     _CC_ENUM_PUNCT          = _CC_PUNCT,
991     _CC_ENUM_SPACE          = _CC_SPACE,
992     _CC_ENUM_UPPER          = _CC_UPPER,
993     _CC_ENUM_VERTSPACE      = _CC_VERTSPACE,
994     _CC_ENUM_WORDCHAR       = _CC_WORDCHAR,
995     _CC_ENUM_XDIGIT         = _CC_XDIGIT
996 } _char_class_number;
997 #endif
998
999 #define POSIX_SWASH_COUNT _FIRST_NON_SWASH_CC
1000 #define POSIX_CC_COUNT    (_HIGHEST_REGCOMP_DOT_H_SYNC + 1)
1001
1002 #if defined(PERL_IN_UTF8_C) || defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
1003 #   if _CC_WORDCHAR != 0 || _CC_DIGIT != 1 || _CC_ALPHA != 2 || _CC_LOWER != 3 \
1004        || _CC_UPPER != 4 || _CC_PUNCT != 5 || _CC_PRINT != 6                   \
1005        || _CC_ALPHANUMERIC != 7 || _CC_GRAPH != 8 || _CC_CASED != 9
1006       #error Need to adjust order of swash_property_names[]
1007 #   endif
1008
1009 /* This is declared static in each of the few files that this is #defined for
1010  * to keep them from being publicly accessible.  Hence there is a small amount
1011  * of wasted space */
1012
1013 static const char* const swash_property_names[] = {
1014     "XPosixWord",
1015     "XPosixDigit",
1016     "XPosixAlpha",
1017     "XPosixLower",
1018     "XPosixUpper",
1019     "XPosixPunct",
1020     "XPosixPrint",
1021     "XPosixAlnum",
1022     "XPosixGraph",
1023     "Cased"
1024 };
1025 #endif
1026
1027 #  ifdef DOINIT
1028 EXTCONST  U32 PL_charclass[] = {
1029 #    include "l1_char_class_tab.h"
1030 };
1031
1032 #  else /* ! DOINIT */
1033 EXTCONST U32 PL_charclass[];
1034 #  endif
1035
1036     /* The 1U keeps Solaris from griping when shifting sets the uppermost bit */
1037 #   define _CC_mask(classnum) (1U << (classnum))
1038
1039     /* For internal core Perl use only: the base macro for defining macros like
1040      * isALPHA */
1041 #   define _generic_isCC(c, classnum) cBOOL(FITS_IN_8_BITS(c)    \
1042                 && (PL_charclass[(U8) (c)] & _CC_mask(classnum)))
1043
1044     /* The mask for the _A versions of the macros; it just adds in the bit for
1045      * ASCII. */
1046 #   define _CC_mask_A(classnum) (_CC_mask(classnum) | _CC_mask(_CC_ASCII))
1047
1048     /* For internal core Perl use only: the base macro for defining macros like
1049      * isALPHA_A.  The foo_A version makes sure that both the desired bit and
1050      * the ASCII bit are present */
1051 #   define _generic_isCC_A(c, classnum) (FITS_IN_8_BITS(c)  \
1052         && ((PL_charclass[(U8) (c)] & _CC_mask_A(classnum)) \
1053                                 == _CC_mask_A(classnum)))
1054
1055 #   define isALPHA_A(c)  _generic_isCC_A(c, _CC_ALPHA)
1056 #   define isALPHANUMERIC_A(c) _generic_isCC_A(c, _CC_ALPHANUMERIC)
1057 #   define isBLANK_A(c)  _generic_isCC_A(c, _CC_BLANK)
1058 #   define isCNTRL_A(c)  _generic_isCC_A(c, _CC_CNTRL)
1059 #   define isDIGIT_A(c)  _generic_isCC(c, _CC_DIGIT) /* No non-ASCII digits */
1060 #   define isGRAPH_A(c)  _generic_isCC_A(c, _CC_GRAPH)
1061 #   define isLOWER_A(c)  _generic_isCC_A(c, _CC_LOWER)
1062 #   define isPRINT_A(c)  _generic_isCC_A(c, _CC_PRINT)
1063 #   define isPSXSPC_A(c) _generic_isCC_A(c, _CC_PSXSPC)
1064 #   define isPUNCT_A(c)  _generic_isCC_A(c, _CC_PUNCT)
1065 #   define isSPACE_A(c)  _generic_isCC_A(c, _CC_SPACE)
1066 #   define isUPPER_A(c)  _generic_isCC_A(c, _CC_UPPER)
1067 #   define isWORDCHAR_A(c) _generic_isCC_A(c, _CC_WORDCHAR)
1068 #   define isXDIGIT_A(c)  _generic_isCC(c, _CC_XDIGIT) /* No non-ASCII xdigits */
1069 #   define isIDFIRST_A(c) _generic_isCC_A(c, _CC_IDFIRST)
1070 #   define isALPHA_L1(c)  _generic_isCC(c, _CC_ALPHA)
1071 #   define isALPHANUMERIC_L1(c) _generic_isCC(c, _CC_ALPHANUMERIC)
1072 #   define isBLANK_L1(c)  _generic_isCC(c, _CC_BLANK)
1073
1074     /* continuation character for legal NAME in \N{NAME} */
1075 #   define isCHARNAME_CONT(c) _generic_isCC(c, _CC_CHARNAME_CONT)
1076
1077 #   define isCNTRL_L1(c)  _generic_isCC(c, _CC_CNTRL)
1078 #   define isGRAPH_L1(c)  _generic_isCC(c, _CC_GRAPH)
1079 #   define isLOWER_L1(c)  _generic_isCC(c, _CC_LOWER)
1080 #   define isPRINT_L1(c)  _generic_isCC(c, _CC_PRINT)
1081 #   define isPSXSPC_L1(c) _generic_isCC(c, _CC_PSXSPC)
1082 #   define isPUNCT_L1(c)  _generic_isCC(c, _CC_PUNCT)
1083 #   define isSPACE_L1(c)  _generic_isCC(c, _CC_SPACE)
1084 #   define isUPPER_L1(c)  _generic_isCC(c, _CC_UPPER)
1085 #   define isWORDCHAR_L1(c) _generic_isCC(c, _CC_WORDCHAR)
1086 #   define isIDFIRST_L1(c) _generic_isCC(c, _CC_IDFIRST)
1087
1088 #   ifdef EBCDIC
1089 #       define isASCII(c) _generic_isCC(c, _CC_ASCII)
1090 #   endif
1091
1092     /* Participates in a single-character fold with a character above 255 */
1093 #   define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) ((! cBOOL(FITS_IN_8_BITS(c))) || (PL_charclass[(U8) (c)] & _CC_mask(_CC_NONLATIN1_SIMPLE_FOLD)))
1094
1095     /* Like the above, but also can be part of a multi-char fold */
1096 #   define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) ((! cBOOL(FITS_IN_8_BITS(c))) || (PL_charclass[(U8) (c)] & _CC_mask(_CC_NONLATIN1_FOLD)))
1097
1098 #   define _isQUOTEMETA(c) _generic_isCC(c, _CC_QUOTEMETA)
1099 #   define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
1100                                             _generic_isCC(c, _CC_NON_FINAL_FOLD)
1101 #   define _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
1102                                             _generic_isCC(c, _CC_IS_IN_SOME_FOLD)
1103 #   define _IS_MNEMONIC_CNTRL_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
1104                                             _generic_isCC(c, _CC_MNEMONIC_CNTRL)
1105 #else   /* else we don't have perl.h H_PERL */
1106
1107     /* If we don't have perl.h, we are compiling a utility program.  Below we
1108      * hard-code various macro definitions that wouldn't otherwise be available
1109      * to it. Most are coded based on first principals.  First some ones common
1110      * to both ASCII and EBCDIC */
1111 #   define isDIGIT_A(c)  ((c) <= '9' && (c) >= '0')
1112 #   define isBLANK_A(c)  ((c) == ' ' || (c) == '\t')
1113 #   define isSPACE_A(c)  (isBLANK_A(c)                                       \
1114                           || (c) == '\n'                                     \
1115                           || (c) == '\r'                                     \
1116                           || (c) == '\v'                                     \
1117                           || (c) == '\f')
1118 #   ifdef EBCDIC    /* There are gaps between 'i' and 'j'; 'r' and 's'.  Same
1119                        for uppercase.  This is ordered to exclude most things
1120                        early */
1121 #       define isLOWER_A(c)  ((c) >= 'a' && (c) <= 'z'                       \
1122                                && ((c) <= 'i'                                \
1123                                    || ((c) >= 'j' && (c) <= 'r')             \
1124                                    || (c) >= 's'))
1125 #       define isUPPER_A(c)  ((c) >= 'A' && (c) <= 'Z'                       \
1126                                && ((c) <= 'I'                                \
1127                                    || ((c) >= 'J' && (c) <= 'R')             \
1128                                    || (c) >= 'S'))
1129 #   else   /* ASCII platform. */
1130 #       define isLOWER_A(c)  ((c) >= 'a' && (c) <= 'z')
1131 #       define isUPPER_A(c)  ((c) <= 'Z' && (c) >= 'A')
1132 #   endif
1133
1134     /* Some more ASCII, non-ASCII common definitions */
1135 #   define isALPHA_A(c)  (isUPPER_A(c) || isLOWER_A(c))
1136 #   define isALPHANUMERIC_A(c) (isALPHA_A(c) || isDIGIT_A(c))
1137 #   define isWORDCHAR_A(c)   (isALPHANUMERIC_A(c) || (c) == '_')
1138 #   define isIDFIRST_A(c)    (isALPHA_A(c) || (c) == '_')
1139 #   define isXDIGIT_A(c) (isDIGIT_A(c)                                      \
1140                           || ((c) >= 'a' && (c) <= 'f')                     \
1141                           || ((c) <= 'F' && (c) >= 'A'))
1142
1143 #   ifdef EBCDIC
1144 #       define isPUNCT_A(c)  ((c) == '-' || (c) == '!' || (c) == '"'        \
1145                            || (c) == '#' || (c) == '$' || (c) == '%'        \
1146                            || (c) == '&' || (c) == '\'' || (c) == '('       \
1147                            || (c) == ')' || (c) == '*' || (c) == '+'        \
1148                            || (c) == ',' || (c) == '.' || (c) == '/'        \
1149                            || (c) == ':' || (c) == ';' || (c) == '<'        \
1150                            || (c) == '=' || (c) == '>' || (c) == '?'        \
1151                            || (c) == '@' || (c) == '[' || (c) == '\\'       \
1152                            || (c) == ']' || (c) == '^' || (c) == '_'        \
1153                            || (c) == '`' || (c) == '{' || (c) == '|'        \
1154                            || (c) == '}' || (c) == '~')
1155 #       define isGRAPH_A(c)  (isALPHANUMERIC_A(c) || isPUNCT_A(c))
1156 #       define isPRINT_A(c)  (isGRAPH_A(c) || (c) == ' ')
1157
1158 #       ifdef QUESTION_MARK_CTRL
1159 #           define _isQMC(c) ((c) == QUESTION_MARK_CTRL)
1160 #       else
1161 #           define _isQMC(c) 0
1162 #       endif
1163
1164         /* I (khw) can't think of a way to define all the ASCII controls
1165          * without resorting to a libc (locale-sensitive) call.  But we know
1166          * that all controls but the question-mark one are in the range 0-0x3f.
1167          * This makes sure that all the controls that have names are included,
1168          * and all controls that are also considered ASCII in the locale.  This
1169          * may include more or fewer than what it actually should, but the
1170          * wrong ones are less-important controls, so likely won't impact
1171          * things (keep in mind that this is compiled only if perl.h isn't
1172          * available).  The question mark control is included if available */
1173 #       define isCNTRL_A(c)  (((c) < 0x40 && isascii(c))                    \
1174                             || (c) == '\0' || (c) == '\a' || (c) == '\b'    \
1175                             || (c) == '\f' || (c) == '\n' || (c) == '\r'    \
1176                             || (c) == '\t' || (c) == '\v' || _isQMC(c))
1177
1178 #       define isASCII(c)    (isCNTRL_A(c) || isPRINT_A(c))
1179 #   else    /* ASCII platform; things are simpler, and  isASCII has already
1180                been defined */
1181 #       define isGRAPH_A(c)  (((c) > ' ' && (c) < 127))
1182 #       define isPRINT_A(c)  (isGRAPH_A(c) || (c) == ' ')
1183 #       define isPUNCT_A(c)  (isGRAPH_A(c) && (! isALPHANUMERIC_A(c)))
1184 #       define isCNTRL_A(c)  (isASCII(c) && (! isPRINT_A(c)))
1185 #   endif
1186
1187     /* The _L1 macros may be unnecessary for the utilities; I (khw) added them
1188      * during debugging, and it seems best to keep them.  We may be called
1189      * without NATIVE_TO_LATIN1 being defined.  On ASCII platforms, it doesn't
1190      * do anything anyway, so make it not a problem */
1191 #   if ! defined(EBCDIC) && ! defined(NATIVE_TO_LATIN1)
1192 #       define NATIVE_TO_LATIN1(ch) (ch)
1193 #   endif
1194 #   define isPSXSPC_A(c)     isSPACE_A(c) /* XXX Assumes SPACE matches '\v' */
1195 #   define isALPHA_L1(c)     (isUPPER_L1(c) || isLOWER_L1(c))
1196 #   define isALPHANUMERIC_L1(c) (isALPHA_L1(c) || isDIGIT_A(c))
1197 #   define isBLANK_L1(c)     (isBLANK_A(c)                                   \
1198                               || (FITS_IN_8_BITS(c)                          \
1199                                   && NATIVE_TO_LATIN1((U8) c) == 0xA0))
1200 #   define isCNTRL_L1(c)     (FITS_IN_8_BITS(c) && (! isPRINT_L1(c)))
1201 #   define isGRAPH_L1(c)     (isPRINT_L1(c) && (! isBLANK_L1(c)))
1202 #   define isLOWER_L1(c)     (isLOWER_A(c)                                   \
1203                               || (FITS_IN_8_BITS(c)                          \
1204                                   && ((NATIVE_TO_LATIN1((U8) c) >= 0xDF      \
1205                                        && NATIVE_TO_LATIN1((U8) c) != 0xF7)  \
1206                                        || NATIVE_TO_LATIN1((U8) c) == 0xAA   \
1207                                        || NATIVE_TO_LATIN1((U8) c) == 0xBA   \
1208                                        || NATIVE_TO_LATIN1((U8) c) == 0xB5)))
1209 #   define isPRINT_L1(c)     (isPRINT_A(c)                                   \
1210                               || (FITS_IN_8_BITS(c)                          \
1211                                   && NATIVE_TO_LATIN1((U8) c) >= 0xA0))
1212 #   define isPSXSPC_L1(c)    isSPACE_L1(c)
1213 #   define isPUNCT_L1(c)     (isPUNCT_A(c)                                   \
1214                               || (FITS_IN_8_BITS(c)                          \
1215                                   && (NATIVE_TO_LATIN1((U8) c) == 0xA1       \
1216                                       || NATIVE_TO_LATIN1((U8) c) == 0xA7    \
1217                                       || NATIVE_TO_LATIN1((U8) c) == 0xAB    \
1218                                       || NATIVE_TO_LATIN1((U8) c) == 0xB6    \
1219                                       || NATIVE_TO_LATIN1((U8) c) == 0xB7    \
1220                                       || NATIVE_TO_LATIN1((U8) c) == 0xBB    \
1221                                       || NATIVE_TO_LATIN1((U8) c) == 0xBF)))
1222 #   define isSPACE_L1(c)     (isSPACE_A(c)                                   \
1223                               || (FITS_IN_8_BITS(c)                          \
1224                                   && (NATIVE_TO_LATIN1((U8) c) == 0x85       \
1225                                       || NATIVE_TO_LATIN1((U8) c) == 0xA0)))
1226 #   define isUPPER_L1(c)     (isUPPER_A(c)                                   \
1227                               || (FITS_IN_8_BITS(c)                          \
1228                                   && (NATIVE_TO_LATIN1((U8) c) >= 0xC0       \
1229                                       && NATIVE_TO_LATIN1((U8) c) <= 0xDE    \
1230                                       && NATIVE_TO_LATIN1((U8) c) != 0xD7)))
1231 #   define isWORDCHAR_L1(c)  (isIDFIRST_L1(c) || isDIGIT_A(c))
1232 #   define isIDFIRST_L1(c)   (isALPHA_L1(c) || NATIVE_TO_LATIN1(c) == '_')
1233 #   define isCHARNAME_CONT(c) (isWORDCHAR_L1(c)                              \
1234                                || isBLANK_L1(c)                              \
1235                                || (c) == '-'                                 \
1236                                || (c) == '('                                 \
1237                                || (c) == ')')
1238     /* The following are not fully accurate in the above-ASCII range.  I (khw)
1239      * don't think it's necessary to be so for the purposes where this gets
1240      * compiled */
1241 #   define _isQUOTEMETA(c)      (FITS_IN_8_BITS(c) && ! isWORDCHAR_L1(c))
1242 #   define _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) isALPHA_L1(c)
1243
1244     /*  And these aren't accurate at all.  They are useful only for above
1245      *  Latin1, which utilities and bootstrapping don't deal with */
1246 #   define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) 0
1247 #   define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
1248 #   define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
1249
1250     /* Many of the macros later in this file are defined in terms of these.  By
1251      * implementing them with a function, which converts the class number into
1252      * a call to the desired macro, all of the later ones work.  However, that
1253      * function won't be actually defined when building a utility program (no
1254      * perl.h), and so a compiler error will be generated if one is attempted
1255      * to be used.  And the above-Latin1 code points require Unicode tables to
1256      * be present, something unlikely to be the case when bootstrapping */
1257 #   define _generic_isCC(c, classnum)                                        \
1258          (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), TRUE))
1259 #   define _generic_isCC_A(c, classnum)                                      \
1260          (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), FALSE))
1261 #endif  /* End of no perl.h H_PERL */
1262
1263 #define isALPHANUMERIC(c)  isALPHANUMERIC_A(c)
1264 #define isALPHA(c)   isALPHA_A(c)
1265 #define isASCII_A(c)  isASCII(c)
1266 #define isASCII_L1(c)  isASCII(c)
1267 #define isBLANK(c)   isBLANK_A(c)
1268 #define isCNTRL(c)   isCNTRL_A(c)
1269 #define isDIGIT(c)   isDIGIT_A(c)
1270 #define isGRAPH(c)   isGRAPH_A(c)
1271 #define isIDFIRST(c) isIDFIRST_A(c)
1272 #define isLOWER(c)   isLOWER_A(c)
1273 #define isPRINT(c)   isPRINT_A(c)
1274 #define isPSXSPC(c)  isPSXSPC_A(c)
1275 #define isPUNCT(c)   isPUNCT_A(c)
1276 #define isSPACE(c)   isSPACE_A(c)
1277 #define isUPPER(c)   isUPPER_A(c)
1278 #define isWORDCHAR(c) isWORDCHAR_A(c)
1279 #define isXDIGIT(c)  isXDIGIT_A(c)
1280
1281 /* ASCII casing.  These could also be written as
1282     #define toLOWER(c) (isASCII(c) ? toLOWER_LATIN1(c) : (c))
1283     #define toUPPER(c) (isASCII(c) ? toUPPER_LATIN1_MOD(c) : (c))
1284    which uses table lookup and mask instead of subtraction.  (This would
1285    work because the _MOD does not apply in the ASCII range) */
1286 #define toLOWER(c)  (isUPPER(c) ? (U8)((c) + ('a' - 'A')) : (c))
1287 #define toUPPER(c)  (isLOWER(c) ? (U8)((c) - ('a' - 'A')) : (c))
1288
1289 /* In the ASCII range, these are equivalent to what they're here defined to be.
1290  * But by creating these definitions, other code doesn't have to be aware of
1291  * this detail */
1292 #define toFOLD(c)    toLOWER(c)
1293 #define toTITLE(c)   toUPPER(c)
1294
1295 #define toLOWER_A(c) toLOWER(c)
1296 #define toUPPER_A(c) toUPPER(c)
1297 #define toFOLD_A(c)  toFOLD(c)
1298 #define toTITLE_A(c) toTITLE(c)
1299
1300 /* Use table lookup for speed; returns the input itself if is out-of-range */
1301 #define toLOWER_LATIN1(c)    ((! FITS_IN_8_BITS(c))                        \
1302                              ? (c)                                         \
1303                              : PL_latin1_lc[ (U8) (c) ])
1304 #define toLOWER_L1(c)    toLOWER_LATIN1(c)  /* Synonym for consistency */
1305
1306 /* Modified uc.  Is correct uc except for three non-ascii chars which are
1307  * all mapped to one of them, and these need special handling; returns the
1308  * input itself if is out-of-range */
1309 #define toUPPER_LATIN1_MOD(c) ((! FITS_IN_8_BITS(c))                       \
1310                                ? (c)                                       \
1311                                : PL_mod_latin1_uc[ (U8) (c) ])
1312 #define IN_UTF8_CTYPE_LOCALE PL_in_utf8_CTYPE_locale
1313
1314 /* Use foo_LC_uvchr() instead  of these for beyond the Latin1 range */
1315
1316 /* For internal core Perl use only: the base macro for defining macros like
1317  * isALPHA_LC, which uses the current LC_CTYPE locale.  'c' is the code point
1318  * (0-255) to check.  In a UTF-8 locale, the result is the same as calling
1319  * isFOO_L1(); the 'utf8_locale_classnum' parameter is something like
1320  * _CC_UPPER, which gives the class number for doing this.  For non-UTF-8
1321  * locales, the code to actually do the test this is passed in 'non_utf8'.  If
1322  * 'c' is above 255, 0 is returned.  For accessing the full range of possible
1323  * code points under locale rules, use the macros based on _generic_LC_uvchr
1324  * instead of this. */
1325 #define _generic_LC_base(c, utf8_locale_classnum, non_utf8)                    \
1326            (! FITS_IN_8_BITS(c)                                                \
1327            ? 0                                                                 \
1328            : IN_UTF8_CTYPE_LOCALE                                              \
1329              ? cBOOL(PL_charclass[(U8) (c)] & _CC_mask(utf8_locale_classnum))  \
1330              : cBOOL(non_utf8))
1331
1332 /* For internal core Perl use only: a helper macro for defining macros like
1333  * isALPHA_LC.  'c' is the code point (0-255) to check.  The function name to
1334  * actually do this test is passed in 'non_utf8_func', which is called on 'c',
1335  * casting 'c' to the macro _LC_CAST, which should not be parenthesized.  See
1336  * _generic_LC_base for more info */
1337 #define _generic_LC(c, utf8_locale_classnum, non_utf8_func)                    \
1338                         _generic_LC_base(c,utf8_locale_classnum,               \
1339                                          non_utf8_func( (_LC_CAST) (c)))
1340
1341 /* For internal core Perl use only: like _generic_LC, but also returns TRUE if
1342  * 'c' is the platform's native underscore character */
1343 #define _generic_LC_underscore(c,utf8_locale_classnum,non_utf8_func)           \
1344                         _generic_LC_base(c, utf8_locale_classnum,              \
1345                                          (non_utf8_func( (_LC_CAST) (c))       \
1346                                           || (char)(c) == '_'))
1347
1348 /* These next three are also for internal core Perl use only: case-change
1349  * helper macros */
1350 #define _generic_toLOWER_LC(c, function, cast)  (! FITS_IN_8_BITS(c)           \
1351                                                 ? (c)                          \
1352                                                 : (IN_UTF8_CTYPE_LOCALE)       \
1353                                                   ? PL_latin1_lc[ (U8) (c) ]   \
1354                                                 : function((cast)(c)))
1355
1356 /* Note that the result can be larger than a byte in a UTF-8 locale.  It
1357  * returns a single value, so can't adequately return the upper case of LATIN
1358  * SMALL LETTER SHARP S in a UTF-8 locale (which should be a string of two
1359  * values "SS");  instead it asserts against that under DEBUGGING, and
1360  * otherwise returns its input */
1361 #define _generic_toUPPER_LC(c, function, cast)                                 \
1362                     (! FITS_IN_8_BITS(c)                                       \
1363                     ? (c)                                                      \
1364                     : ((! IN_UTF8_CTYPE_LOCALE)                                \
1365                       ? function((cast)(c))                                    \
1366                       : ((((U8)(c)) == MICRO_SIGN)                             \
1367                         ? GREEK_CAPITAL_LETTER_MU                              \
1368                         : ((((U8)(c)) == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)  \
1369                           ? LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS              \
1370                           : ((((U8)(c)) == LATIN_SMALL_LETTER_SHARP_S)         \
1371                             ? (__ASSERT_(0) (c))                               \
1372                             : PL_mod_latin1_uc[ (U8) (c) ])))))
1373
1374 /* Note that the result can be larger than a byte in a UTF-8 locale.  It
1375  * returns a single value, so can't adequately return the fold case of LATIN
1376  * SMALL LETTER SHARP S in a UTF-8 locale (which should be a string of two
1377  * values "ss"); instead it asserts against that under DEBUGGING, and
1378  * otherwise returns its input */
1379 #define _generic_toFOLD_LC(c, function, cast)                                  \
1380                     ((UNLIKELY((c) == MICRO_SIGN) && IN_UTF8_CTYPE_LOCALE)     \
1381                       ? GREEK_SMALL_LETTER_MU                                  \
1382                       : (__ASSERT_(! IN_UTF8_CTYPE_LOCALE                      \
1383                                    || (c) != LATIN_SMALL_LETTER_SHARP_S)       \
1384                          _generic_toLOWER_LC(c, function, cast)))
1385
1386 /* Use the libc versions for these if available. */
1387 #if defined(HAS_ISASCII)
1388 #   define isASCII_LC(c) (FITS_IN_8_BITS(c) && isascii( (U8) (c)))
1389 #else
1390 #   define isASCII_LC(c) isASCII(c)
1391 #endif
1392
1393 #if defined(HAS_ISBLANK)
1394 #   define isBLANK_LC(c) _generic_LC(c, _CC_BLANK, isblank)
1395 #else /* Unlike isASCII, varies if in a UTF-8 locale */
1396 #   define isBLANK_LC(c) ((IN_UTF8_CTYPE_LOCALE) ? isBLANK_L1(c) : isBLANK(c))
1397 #endif
1398
1399 #define _LC_CAST U8
1400
1401 #ifdef WIN32
1402     /* The Windows functions don't bother to follow the POSIX standard, which
1403      * for example says that something can't both be a printable and a control.
1404      * But Windows treats the \t control as a printable, and does such things
1405      * as making superscripts into both digits and punctuation.  This tames
1406      * these flaws by assuming that the definitions of both controls and space
1407      * are correct, and then making sure that other definitions don't have
1408      * weirdnesses, by making sure that isalnum() isn't also ispunct(), etc.
1409      * Not all possible weirdnesses are checked for, just the ones that were
1410      * detected on actual Microsoft code pages */
1411
1412 #  define isCNTRL_LC(c)    _generic_LC(c, _CC_CNTRL, iscntrl)
1413 #  define isSPACE_LC(c)    _generic_LC(c, _CC_SPACE, isspace)
1414
1415 #  define isALPHA_LC(c)    (_generic_LC(c, _CC_ALPHA, isalpha) && isALPHANUMERIC_LC(c))
1416 #  define isALPHANUMERIC_LC(c)  (_generic_LC(c, _CC_ALPHANUMERIC, isalnum) && ! isPUNCT_LC(c))
1417 #  define isDIGIT_LC(c)    (_generic_LC(c, _CC_DIGIT, isdigit) && isALPHANUMERIC_LC(c))
1418 #  define isGRAPH_LC(c)    (_generic_LC(c, _CC_GRAPH, isgraph) && isPRINT_LC(c))
1419 #  define isIDFIRST_LC(c)  (((c) == '_') || (_generic_LC(c, _CC_IDFIRST, isalpha) && ! isPUNCT_LC(c)))
1420 #  define isLOWER_LC(c)    (_generic_LC(c, _CC_LOWER, islower) && isALPHA_LC(c))
1421 #  define isPRINT_LC(c)    (_generic_LC(c, _CC_PRINT, isprint) && ! isCNTRL_LC(c))
1422 #  define isPUNCT_LC(c)    (_generic_LC(c, _CC_PUNCT, ispunct) && ! isCNTRL_LC(c))
1423 #  define isUPPER_LC(c)    (_generic_LC(c, _CC_UPPER, isupper) && isALPHA_LC(c))
1424 #  define isWORDCHAR_LC(c) (((c) == '_') || isALPHANUMERIC_LC(c))
1425 #  define isXDIGIT_LC(c)   (_generic_LC(c, _CC_XDIGIT, isxdigit) && isALPHANUMERIC_LC(c))
1426
1427 #  define toLOWER_LC(c) _generic_toLOWER_LC((c), tolower, U8)
1428 #  define toUPPER_LC(c) _generic_toUPPER_LC((c), toupper, U8)
1429 #  define toFOLD_LC(c)  _generic_toFOLD_LC((c), tolower, U8)
1430
1431 #elif defined(CTYPE256) || (!defined(isascii) && !defined(HAS_ISASCII))
1432     /* For most other platforms */
1433
1434 #  define isALPHA_LC(c)   _generic_LC(c, _CC_ALPHA, isalpha)
1435 #  define isALPHANUMERIC_LC(c)  _generic_LC(c, _CC_ALPHANUMERIC, isalnum)
1436 #  define isCNTRL_LC(c)    _generic_LC(c, _CC_CNTRL, iscntrl)
1437 #  define isDIGIT_LC(c)    _generic_LC(c, _CC_DIGIT, isdigit)
1438 #  define isGRAPH_LC(c)    _generic_LC(c, _CC_GRAPH, isgraph)
1439 #  define isIDFIRST_LC(c)  _generic_LC_underscore(c, _CC_IDFIRST, isalpha)
1440 #  define isLOWER_LC(c)    _generic_LC(c, _CC_LOWER, islower)
1441 #  define isPRINT_LC(c)    _generic_LC(c, _CC_PRINT, isprint)
1442 #  define isPUNCT_LC(c)    _generic_LC(c, _CC_PUNCT, ispunct)
1443 #  define isSPACE_LC(c)    _generic_LC(c, _CC_SPACE, isspace)
1444 #  define isUPPER_LC(c)    _generic_LC(c, _CC_UPPER, isupper)
1445 #  define isWORDCHAR_LC(c) _generic_LC_underscore(c, _CC_WORDCHAR, isalnum)
1446 #  define isXDIGIT_LC(c)   _generic_LC(c, _CC_XDIGIT, isxdigit)
1447
1448
1449 #  define toLOWER_LC(c) _generic_toLOWER_LC((c), tolower, U8)
1450 #  define toUPPER_LC(c) _generic_toUPPER_LC((c), toupper, U8)
1451 #  define toFOLD_LC(c)  _generic_toFOLD_LC((c), tolower, U8)
1452
1453 #else  /* The final fallback position */
1454
1455 #  define isALPHA_LC(c) (isascii(c) && isalpha(c))
1456 #  define isALPHANUMERIC_LC(c) (isascii(c) && isalnum(c))
1457 #  define isCNTRL_LC(c) (isascii(c) && iscntrl(c))
1458 #  define isDIGIT_LC(c) (isascii(c) && isdigit(c))
1459 #  define isGRAPH_LC(c) (isascii(c) && isgraph(c))
1460 #  define isIDFIRST_LC(c)       (isascii(c) && (isalpha(c) || (c) == '_'))
1461 #  define isLOWER_LC(c) (isascii(c) && islower(c))
1462 #  define isPRINT_LC(c) (isascii(c) && isprint(c))
1463 #  define isPUNCT_LC(c) (isascii(c) && ispunct(c))
1464 #  define isSPACE_LC(c) (isascii(c) && isspace(c))
1465 #  define isUPPER_LC(c) (isascii(c) && isupper(c))
1466 #  define isWORDCHAR_LC(c)      (isascii(c) && (isalnum(c) || (c) == '_'))
1467 #  define isXDIGIT_LC(c)      (isascii(c) && isxdigit(c))
1468
1469 #  define toLOWER_LC(c) (isascii(c) ? tolower(c) : (c))
1470 #  define toUPPER_LC(c) (isascii(c) ? toupper(c) : (c))
1471 #  define toFOLD_LC(c)  (isascii(c) ? tolower(c) : (c))
1472
1473 #endif
1474
1475 #define isIDCONT(c)             isWORDCHAR(c)
1476 #define isIDCONT_A(c)           isWORDCHAR_A(c)
1477 #define isIDCONT_L1(c)          isWORDCHAR_L1(c)
1478 #define isIDCONT_LC(c)          isWORDCHAR_LC(c)
1479 #define isPSXSPC_LC(c)          isSPACE_LC(c)
1480
1481 /* For internal core Perl use only: the base macros for defining macros like
1482  * isALPHA_uni.  'c' is the code point to check.  'classnum' is the POSIX class
1483  * number defined earlier in this file.  _generic_uni() is used for POSIX
1484  * classes where there is a macro or function 'above_latin1' that takes the
1485  * single argument 'c' and returns the desired value.  These exist for those
1486  * classes which have simple definitions, avoiding the overhead of a hash
1487  * lookup or inversion list binary search.  _generic_swash_uni() can be used
1488  * for classes where that overhead is faster than a direct lookup.
1489  * _generic_uni() won't compile if 'c' isn't unsigned, as it won't match the
1490  * 'above_latin1' prototype. _generic_isCC() macro does bounds checking, so
1491  * have duplicate checks here, so could create versions of the macros that
1492  * don't, but experiments show that gcc optimizes them out anyway. */
1493
1494 /* Note that all ignore 'use bytes' */
1495 #define _generic_uni(classnum, above_latin1, c) ((c) < 256                    \
1496                                              ? _generic_isCC(c, classnum)     \
1497                                              : above_latin1(c))
1498 #define _generic_swash_uni(classnum, c) ((c) < 256                            \
1499                                              ? _generic_isCC(c, classnum)     \
1500                                              : _is_uni_FOO(classnum, c))
1501 #define isALPHA_uni(c)      _generic_swash_uni(_CC_ALPHA, c)
1502 #define isALPHANUMERIC_uni(c) _generic_swash_uni(_CC_ALPHANUMERIC, c)
1503 #define isASCII_uni(c)      isASCII(c)
1504 #define isBLANK_uni(c)      _generic_uni(_CC_BLANK, is_HORIZWS_cp_high, c)
1505 #define isCNTRL_uni(c)      isCNTRL_L1(c) /* All controls are in Latin1 */
1506 #define isDIGIT_uni(c)      _generic_swash_uni(_CC_DIGIT, c)
1507 #define isGRAPH_uni(c)      _generic_swash_uni(_CC_GRAPH, c)
1508 #define isIDCONT_uni(c)     _generic_uni(_CC_WORDCHAR, _is_uni_perl_idcont, c)
1509 #define isIDFIRST_uni(c)    _generic_uni(_CC_IDFIRST, _is_uni_perl_idstart, c)
1510 #define isLOWER_uni(c)      _generic_swash_uni(_CC_LOWER, c)
1511 #define isPRINT_uni(c)      _generic_swash_uni(_CC_PRINT, c)
1512
1513 /* Posix and regular space are identical above Latin1 */
1514 #define isPSXSPC_uni(c)     _generic_uni(_CC_PSXSPC, is_XPERLSPACE_cp_high, c)
1515
1516 #define isPUNCT_uni(c)      _generic_swash_uni(_CC_PUNCT, c)
1517 #define isSPACE_uni(c)      _generic_uni(_CC_SPACE, is_XPERLSPACE_cp_high, c)
1518 #define isUPPER_uni(c)      _generic_swash_uni(_CC_UPPER, c)
1519 #define isVERTWS_uni(c)     _generic_uni(_CC_VERTSPACE, is_VERTWS_cp_high, c)
1520 #define isWORDCHAR_uni(c)   _generic_swash_uni(_CC_WORDCHAR, c)
1521 #define isXDIGIT_uni(c)     _generic_uni(_CC_XDIGIT, is_XDIGIT_cp_high, c)
1522
1523 #define toFOLD_uni(c,s,l)       to_uni_fold(c,s,l)
1524 #define toLOWER_uni(c,s,l)      to_uni_lower(c,s,l)
1525 #define toTITLE_uni(c,s,l)      to_uni_title(c,s,l)
1526 #define toUPPER_uni(c,s,l)      to_uni_upper(c,s,l)
1527
1528 /* For internal core Perl use only: the base macros for defining macros like
1529  * isALPHA_LC_uvchr.  These are like isALPHA_LC, but the input can be any code
1530  * point, not just 0-255.  Like _generic_uni, there are two versions, one for
1531  * simple class definitions; the other for more complex.  These are like
1532  * _generic_uni, so see it for more info. */
1533 #define _generic_LC_uvchr(latin1, above_latin1, c)                            \
1534                                     (c < 256 ? latin1(c) : above_latin1(c))
1535 #define _generic_LC_swash_uvchr(latin1, classnum, c)                          \
1536                             (c < 256 ? latin1(c) : _is_uni_FOO(classnum, c))
1537
1538 #define isALPHA_LC_uvchr(c)  _generic_LC_swash_uvchr(isALPHA_LC, _CC_ALPHA, c)
1539 #define isALPHANUMERIC_LC_uvchr(c)  _generic_LC_swash_uvchr(isALPHANUMERIC_LC, \
1540                                                          _CC_ALPHANUMERIC, c)
1541 #define isASCII_LC_uvchr(c)  isASCII_LC(c)
1542 #define isBLANK_LC_uvchr(c)  _generic_LC_uvchr(isBLANK_LC, is_HORIZWS_cp_high, c)
1543 #define isCNTRL_LC_uvchr(c)  (c < 256 ? isCNTRL_LC(c) : 0)
1544 #define isDIGIT_LC_uvchr(c)  _generic_LC_swash_uvchr(isDIGIT_LC, _CC_DIGIT, c)
1545 #define isGRAPH_LC_uvchr(c)  _generic_LC_swash_uvchr(isGRAPH_LC, _CC_GRAPH, c)
1546 #define isIDCONT_LC_uvchr(c)  _generic_LC_uvchr(isIDCONT_LC,                  \
1547                                                   _is_uni_perl_idcont, c)
1548 #define isIDFIRST_LC_uvchr(c)  _generic_LC_uvchr(isIDFIRST_LC,                 \
1549                                                   _is_uni_perl_idstart, c)
1550 #define isLOWER_LC_uvchr(c)  _generic_LC_swash_uvchr(isLOWER_LC, _CC_LOWER, c)
1551 #define isPRINT_LC_uvchr(c)  _generic_LC_swash_uvchr(isPRINT_LC, _CC_PRINT, c)
1552 #define isPSXSPC_LC_uvchr(c) isSPACE_LC_uvchr(c) /* space is identical to posix
1553                                                     space under locale */
1554 #define isPUNCT_LC_uvchr(c)  _generic_LC_swash_uvchr(isPUNCT_LC, _CC_PUNCT, c)
1555 #define isSPACE_LC_uvchr(c)  _generic_LC_uvchr(isSPACE_LC,                     \
1556                                                     is_XPERLSPACE_cp_high, c)
1557 #define isUPPER_LC_uvchr(c)  _generic_LC_swash_uvchr(isUPPER_LC, _CC_UPPER, c)
1558 #define isWORDCHAR_LC_uvchr(c)  _generic_LC_swash_uvchr(isWORDCHAR_LC,              \
1559                                                            _CC_WORDCHAR, c)
1560 #define isXDIGIT_LC_uvchr(c) _generic_LC_uvchr(isXDIGIT_LC, is_XDIGIT_cp_high, c)
1561
1562 #define isBLANK_LC_uni(c)       isBLANK_LC_uvchr(UNI_TO_NATIVE(c))
1563
1564 /* For internal core Perl use only: the base macros for defining macros like
1565  * isALPHA_utf8.  These are like the earlier defined macros, but take an input
1566  * UTF-8 encoded string 'p'. If the input is in the Latin1 range, use
1567  * the Latin1 macro 'classnum' on 'p'.  Otherwise use the value given by the
1568  * 'utf8' parameter.  This relies on the fact that ASCII characters have the
1569  * same representation whether utf8 or not.  Note that it assumes that the utf8
1570  * has been validated, and ignores 'use bytes' */
1571 #define _generic_utf8(classnum, p, utf8) (UTF8_IS_INVARIANT(*(p))              \
1572                                          ? _generic_isCC(*(p), classnum)       \
1573                                          : (UTF8_IS_DOWNGRADEABLE_START(*(p))) \
1574                                            ? _generic_isCC(                    \
1575                                                 TWO_BYTE_UTF8_TO_NATIVE(*(p),  \
1576                                                                    *((p)+1 )), \
1577                                                 classnum)                      \
1578                                            : utf8)
1579 /* Like the above, but calls 'above_latin1(p)' to get the utf8 value.  'above_latin1'
1580  * can be a macro */
1581 #define _generic_func_utf8(classnum, above_latin1, p)  \
1582                                     _generic_utf8(classnum, p, above_latin1(p))
1583 /* Like the above, but passes classnum to _isFOO_utf8(), instead of having an
1584  * 'above_latin1' parameter */
1585 #define _generic_swash_utf8(classnum, p)  \
1586                       _generic_utf8(classnum, p, _is_utf8_FOO(classnum, p))
1587
1588 /* Like the above, but should be used only when it is known that there are no
1589  * characters in the upper-Latin1 range (128-255 on ASCII platforms) which the
1590  * class is TRUE for.  Hence it can skip the tests for this range.
1591  * 'above_latin1' should include its arguments */
1592 #define _generic_utf8_no_upper_latin1(classnum, p, above_latin1)               \
1593                                          (UTF8_IS_INVARIANT(*(p))              \
1594                                          ? _generic_isCC(*(p), classnum)       \
1595                                          : (UTF8_IS_ABOVE_LATIN1(*(p)))        \
1596                                            ? above_latin1                      \
1597                                            : 0)
1598
1599 /* NOTE that some of these macros have very similar ones in regcharclass.h.
1600  * For example, there is (at the time of this writing) an 'is_SPACE_utf8()'
1601  * there, differing in name only by an underscore from the one here
1602  * 'isSPACE_utf8().  The difference is that the ones here are probably more
1603  * efficient and smaller, using an O(1) array lookup for Latin1-range code
1604  * points; the regcharclass.h ones are implemented as a series of
1605  * "if-else-if-else ..." */
1606
1607 #define isALPHA_utf8(p)         _generic_swash_utf8(_CC_ALPHA, p)
1608 #define isALPHANUMERIC_utf8(p)  _generic_swash_utf8(_CC_ALPHANUMERIC, p)
1609 #define isASCII_utf8(p)         isASCII(*p) /* Because ASCII is invariant under
1610                                                utf8, the non-utf8 macro works
1611                                              */
1612 #define isBLANK_utf8(p)         _generic_func_utf8(_CC_BLANK, is_HORIZWS_high, p)
1613
1614 #ifdef EBCDIC
1615     /* Because all controls are UTF-8 invariants in EBCDIC, we can use this
1616      * more efficient macro instead of the more general one */
1617 #   define isCNTRL_utf8(p)      isCNTRL_L1(*(p))
1618 #else
1619 #   define isCNTRL_utf8(p)      _generic_utf8(_CC_CNTRL, p, 0)
1620 #endif
1621
1622 #define isDIGIT_utf8(p)         _generic_utf8_no_upper_latin1(_CC_DIGIT, p,   \
1623                                                   _is_utf8_FOO(_CC_DIGIT, p))
1624 #define isGRAPH_utf8(p)         _generic_swash_utf8(_CC_GRAPH, p)
1625 #define isIDCONT_utf8(p)        _generic_func_utf8(_CC_WORDCHAR,              \
1626                                                   _is_utf8_perl_idcont, p)
1627
1628 /* To prevent S_scan_word in toke.c from hanging, we have to make sure that
1629  * IDFIRST is an alnum.  See
1630  * http://rt.perl.org/rt3/Ticket/Display.html?id=74022 for more detail than you
1631  * ever wanted to know about.  (In the ASCII range, there isn't a difference.)
1632  * This used to be not the XID version, but we decided to go with the more
1633  * modern Unicode definition */
1634 #define isIDFIRST_utf8(p)       _generic_func_utf8(_CC_IDFIRST,               \
1635                                                 _is_utf8_perl_idstart, p)
1636
1637 #define isLOWER_utf8(p)         _generic_swash_utf8(_CC_LOWER, p)
1638 #define isPRINT_utf8(p)         _generic_swash_utf8(_CC_PRINT, p)
1639
1640 /* Posix and regular space are identical above Latin1 */
1641 #define isPSXSPC_utf8(p)        _generic_func_utf8(_CC_PSXSPC, is_XPERLSPACE_high, p)
1642
1643 #define isPUNCT_utf8(p)         _generic_swash_utf8(_CC_PUNCT, p)
1644 #define isSPACE_utf8(p)         _generic_func_utf8(_CC_SPACE, is_XPERLSPACE_high, p)
1645 #define isUPPER_utf8(p)         _generic_swash_utf8(_CC_UPPER, p)
1646 #define isVERTWS_utf8(p)        _generic_func_utf8(_CC_VERTSPACE, is_VERTWS_high, p)
1647 #define isWORDCHAR_utf8(p)      _generic_swash_utf8(_CC_WORDCHAR, p)
1648 #define isXDIGIT_utf8(p)        _generic_utf8_no_upper_latin1(_CC_XDIGIT, p,   \
1649                                                           is_XDIGIT_high(p))
1650
1651 #define toFOLD_utf8(p,s,l)      to_utf8_fold(p,s,l)
1652 #define toLOWER_utf8(p,s,l)     to_utf8_lower(p,s,l)
1653 #define toTITLE_utf8(p,s,l)     to_utf8_title(p,s,l)
1654 #define toUPPER_utf8(p,s,l)     to_utf8_upper(p,s,l)
1655
1656 /* For internal core Perl use only: the base macros for defining macros like
1657  * isALPHA_LC_utf8.  These are like _generic_utf8, but if the first code point
1658  * in 'p' is within the 0-255 range, it uses locale rules from the passed-in
1659  * 'macro' parameter */
1660 #define _generic_LC_utf8(macro, p, utf8)                                    \
1661                          (UTF8_IS_INVARIANT(*(p))                           \
1662                          ? macro(*(p))                                      \
1663                          : (UTF8_IS_DOWNGRADEABLE_START(*(p)))              \
1664                            ? macro(TWO_BYTE_UTF8_TO_NATIVE(*(p), *((p)+1))) \
1665                            : utf8)
1666
1667 #define _generic_LC_swash_utf8(macro, classnum, p)                         \
1668                     _generic_LC_utf8(macro, p, _is_utf8_FOO(classnum, p))
1669 #define _generic_LC_func_utf8(macro, above_latin1, p)                         \
1670                               _generic_LC_utf8(macro, p, above_latin1(p))
1671
1672 #define isALPHANUMERIC_LC_utf8(p)  _generic_LC_swash_utf8(isALPHANUMERIC_LC,  \
1673                                                       _CC_ALPHANUMERIC, p)
1674 #define isALPHA_LC_utf8(p)   _generic_LC_swash_utf8(isALPHA_LC, _CC_ALPHA, p)
1675 #define isASCII_LC_utf8(p)   isASCII_LC(*p)
1676 #define isBLANK_LC_utf8(p)   _generic_LC_func_utf8(isBLANK_LC, is_HORIZWS_high, p)
1677 #define isCNTRL_LC_utf8(p)   _generic_LC_utf8(isCNTRL_LC, p, 0)
1678 #define isDIGIT_LC_utf8(p)   _generic_LC_swash_utf8(isDIGIT_LC, _CC_DIGIT, p)
1679 #define isGRAPH_LC_utf8(p)   _generic_LC_swash_utf8(isGRAPH_LC, _CC_GRAPH, p)
1680 #define isIDCONT_LC_utf8(p) _generic_LC_func_utf8(isIDCONT_LC, _is_utf8_perl_idcont, p)
1681 #define isIDFIRST_LC_utf8(p) _generic_LC_func_utf8(isIDFIRST_LC, _is_utf8_perl_idstart, p)
1682 #define isLOWER_LC_utf8(p)   _generic_LC_swash_utf8(isLOWER_LC, _CC_LOWER, p)
1683 #define isPRINT_LC_utf8(p)   _generic_LC_swash_utf8(isPRINT_LC, _CC_PRINT, p)
1684 #define isPSXSPC_LC_utf8(p)  isSPACE_LC_utf8(p) /* space is identical to posix
1685                                                    space under locale */
1686 #define isPUNCT_LC_utf8(p)   _generic_LC_swash_utf8(isPUNCT_LC, _CC_PUNCT, p)
1687 #define isSPACE_LC_utf8(p)   _generic_LC_func_utf8(isSPACE_LC, is_XPERLSPACE_high, p)
1688 #define isUPPER_LC_utf8(p)   _generic_LC_swash_utf8(isUPPER_LC, _CC_UPPER, p)
1689 #define isWORDCHAR_LC_utf8(p) _generic_LC_swash_utf8(isWORDCHAR_LC,           \
1690                                                             _CC_WORDCHAR, p)
1691 #define isXDIGIT_LC_utf8(p)  _generic_LC_func_utf8(isXDIGIT_LC, is_XDIGIT_high, p)
1692
1693 /* Macros for backwards compatibility and for completeness when the ASCII and
1694  * Latin1 values are identical */
1695 #define isALPHAU(c)     isALPHA_L1(c)
1696 #define isDIGIT_L1(c)   isDIGIT_A(c)
1697 #define isOCTAL(c)      isOCTAL_A(c)
1698 #define isOCTAL_L1(c)   isOCTAL_A(c)
1699 #define isXDIGIT_L1(c)  isXDIGIT_A(c)
1700 #define isALNUM(c)      isWORDCHAR(c)
1701 #define isALNUMU(c)     isWORDCHAR_L1(c)
1702 #define isALNUM_LC(c)   isWORDCHAR_LC(c)
1703 #define isALNUM_uni(c)  isWORDCHAR_uni(c)
1704 #define isALNUM_LC_uvchr(c) isWORDCHAR_LC_uvchr(c)
1705 #define isALNUM_utf8(p) isWORDCHAR_utf8(p)
1706 #define isALNUM_LC_utf8(p) isWORDCHAR_LC_utf8(p)
1707 #define isALNUMC_A(c)   isALPHANUMERIC_A(c)      /* Mnemonic: "C's alnum" */
1708 #define isALNUMC_L1(c)  isALPHANUMERIC_L1(c)
1709 #define isALNUMC(c)     isALPHANUMERIC(c)
1710 #define isALNUMC_LC(c)  isALPHANUMERIC_LC(c)
1711 #define isALNUMC_uni(c) isALPHANUMERIC_uni(c)
1712 #define isALNUMC_LC_uvchr(c) isALPHANUMERIC_LC_uvchr(c)
1713 #define isALNUMC_utf8(p) isALPHANUMERIC_utf8(p)
1714 #define isALNUMC_LC_utf8(p) isALPHANUMERIC_LC_utf8(p)
1715
1716 /* On EBCDIC platforms, CTRL-@ is 0, CTRL-A is 1, etc, just like on ASCII,
1717  * except that they don't necessarily mean the same characters, e.g. CTRL-D is
1718  * 4 on both systems, but that is EOT on ASCII;  ST on EBCDIC.
1719  * '?' is special-cased on EBCDIC to APC, which is the control there that is
1720  * the outlier from the block that contains the other controls, just like
1721  * toCTRL('?') on ASCII yields DEL, the control that is the outlier from the C0
1722  * block.  If it weren't special cased, it would yield a non-control.
1723  * The conversion works both ways, so toCTRL('D') is 4, and toCTRL(4) is D,
1724  * etc. */
1725 #ifndef EBCDIC
1726 #  define toCTRL(c)    (__ASSERT_(FITS_IN_8_BITS(c)) toUPPER(c) ^ 64)
1727 #else
1728 #  define toCTRL(c)   (__ASSERT_(FITS_IN_8_BITS(c))              \
1729                       ((isPRINT_A(c))                            \
1730                        ? (UNLIKELY((c) == '?')                   \
1731                          ? QUESTION_MARK_CTRL                    \
1732                          : (NATIVE_TO_LATIN1(toUPPER(c)) ^ 64))  \
1733                        : (UNLIKELY((c) == QUESTION_MARK_CTRL)    \
1734                          ? '?'                                   \
1735                          : (LATIN1_TO_NATIVE((c) ^ 64)))))
1736 #endif
1737
1738 /* Line numbers are unsigned, 32 bits. */
1739 typedef U32 line_t;
1740 #define NOLINE ((line_t) 4294967295UL)  /* = FFFFFFFF */
1741
1742 /* Helpful alias for version prescan */
1743 #define is_LAX_VERSION(a,b) \
1744         (a != Perl_prescan_version(aTHX_ a, FALSE, b, NULL, NULL, NULL, NULL))
1745
1746 #define is_STRICT_VERSION(a,b) \
1747         (a != Perl_prescan_version(aTHX_ a, TRUE, b, NULL, NULL, NULL, NULL))
1748
1749 #define BADVERSION(a,b,c) \
1750         if (b) { \
1751             *b = c; \
1752         } \
1753         return a;
1754
1755 /* Converts a character known to represent a hexadecimal digit (0-9, A-F, or
1756  * a-f) to its numeric value.  READ_XDIGIT's argument is a string pointer,
1757  * which is advanced.  The input is validated only by an assert() in DEBUGGING
1758  * builds.  In both ASCII and EBCDIC the last 4 bits of the digits are 0-9; and
1759  * the last 4 bits of A-F and a-f are 1-6, so adding 9 yields 10-15 */
1760 #define XDIGIT_VALUE(c) (__ASSERT_(isXDIGIT(c)) (0xf & (isDIGIT(c)        \
1761                                                         ? (c)             \
1762                                                         : ((c) + 9))))
1763 #define READ_XDIGIT(s)  (__ASSERT_(isXDIGIT(*s)) (0xf & (isDIGIT(*(s))     \
1764                                                         ? (*(s)++)         \
1765                                                         : (*(s)++ + 9))))
1766
1767 /* Converts a character known to represent an octal digit (0-7) to its numeric
1768  * value.  The input is validated only by an assert() in DEBUGGING builds.  In
1769  * both ASCII and EBCDIC the last 3 bits of the octal digits range from 0-7. */
1770 #define OCTAL_VALUE(c) (__ASSERT_(isOCTAL(c)) (7 & (c)))
1771
1772 /* Efficiently returns a boolean as to if two native characters are equivalent
1773  * case-insenstively.  At least one of the characters must be one of [A-Za-z];
1774  * the ALPHA in the name is to remind you of that.  This is asserted() in
1775  * DEBUGGING builds.  Because [A-Za-z] are invariant under UTF-8, this macro
1776  * works (on valid input) for both non- and UTF-8-encoded bytes.
1777  *
1778  * When one of the inputs is a compile-time constant and gets folded by the
1779  * compiler, this reduces to an AND and a TEST.  On both EBCDIC and ASCII
1780  * machines, 'A' and 'a' differ by a single bit; the same with the upper and
1781  * lower case of all other ASCII-range alphabetics.  On ASCII platforms, they
1782  * are 32 apart; on EBCDIC, they are 64.  At compile time, this uses an
1783  * exclusive 'or' to find that bit and then inverts it to form a mask, with
1784  * just a single 0, in the bit position where the upper- and lowercase differ.
1785  * */
1786 #define isALPHA_FOLD_EQ(c1, c2)                                         \
1787                       (__ASSERT_(isALPHA_A(c1) || isALPHA_A(c2))        \
1788                       ((c1) & ~('A' ^ 'a')) ==  ((c2) & ~('A' ^ 'a')))
1789 #define isALPHA_FOLD_NE(c1, c2) (! isALPHA_FOLD_EQ((c1), (c2)))
1790
1791 /*
1792 =head1 Memory Management
1793
1794 =for apidoc Am|void|Newx|void* ptr|int nitems|type
1795 The XSUB-writer's interface to the C C<malloc> function.
1796
1797 Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
1798
1799 In 5.9.3, Newx() and friends replace the older New() API, and drops
1800 the first parameter, I<x>, a debug aid which allowed callers to identify
1801 themselves.  This aid has been superseded by a new build option,
1802 PERL_MEM_LOG (see L<perlhacktips/PERL_MEM_LOG>).  The older API is still
1803 there for use in XS modules supporting older perls.
1804
1805 =for apidoc Am|void|Newxc|void* ptr|int nitems|type|cast
1806 The XSUB-writer's interface to the C C<malloc> function, with
1807 cast.  See also C<Newx>.
1808
1809 Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
1810
1811 =for apidoc Am|void|Newxz|void* ptr|int nitems|type
1812 The XSUB-writer's interface to the C C<malloc> function.  The allocated
1813 memory is zeroed with C<memzero>.  See also C<Newx>.
1814
1815 Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
1816
1817 =for apidoc Am|void|Renew|void* ptr|int nitems|type
1818 The XSUB-writer's interface to the C C<realloc> function.
1819
1820 Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
1821
1822 =for apidoc Am|void|Renewc|void* ptr|int nitems|type|cast
1823 The XSUB-writer's interface to the C C<realloc> function, with
1824 cast.
1825
1826 Memory obtained by this should B<ONLY> be freed with L<"Safefree">.
1827
1828 =for apidoc Am|void|Safefree|void* ptr
1829 The XSUB-writer's interface to the C C<free> function.
1830
1831 This should B<ONLY> be used on memory obtained using L<"Newx"> and friends.
1832
1833 =for apidoc Am|void|Move|void* src|void* dest|int nitems|type
1834 The XSUB-writer's interface to the C C<memmove> function.  The C<src> is the
1835 source, C<dest> is the destination, C<nitems> is the number of items, and
1836 C<type> is the type.  Can do overlapping moves.  See also C<Copy>.
1837
1838 =for apidoc Am|void *|MoveD|void* src|void* dest|int nitems|type
1839 Like C<Move> but returns dest.  Useful
1840 for encouraging compilers to tail-call
1841 optimise.
1842
1843 =for apidoc Am|void|Copy|void* src|void* dest|int nitems|type
1844 The XSUB-writer's interface to the C C<memcpy> function.  The C<src> is the
1845 source, C<dest> is the destination, C<nitems> is the number of items, and
1846 C<type> is the type.  May fail on overlapping copies.  See also C<Move>.
1847
1848 =for apidoc Am|void *|CopyD|void* src|void* dest|int nitems|type
1849
1850 Like C<Copy> but returns dest.  Useful
1851 for encouraging compilers to tail-call
1852 optimise.
1853
1854 =for apidoc Am|void|Zero|void* dest|int nitems|type
1855
1856 The XSUB-writer's interface to the C C<memzero> function.  The C<dest> is the
1857 destination, C<nitems> is the number of items, and C<type> is the type.
1858
1859 =for apidoc Am|void *|ZeroD|void* dest|int nitems|type
1860
1861 Like C<Zero> but returns dest.  Useful
1862 for encouraging compilers to tail-call
1863 optimise.
1864
1865 =for apidoc Am|void|StructCopy|type *src|type *dest|type
1866 This is an architecture-independent macro to copy one structure to another.
1867
1868 =for apidoc Am|void|PoisonWith|void* dest|int nitems|type|U8 byte
1869
1870 Fill up memory with a byte pattern (a byte repeated over and over
1871 again) that hopefully catches attempts to access uninitialized memory.
1872
1873 =for apidoc Am|void|PoisonNew|void* dest|int nitems|type
1874
1875 PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
1876
1877 =for apidoc Am|void|PoisonFree|void* dest|int nitems|type
1878
1879 PoisonWith(0xEF) for catching access to freed memory.
1880
1881 =for apidoc Am|void|Poison|void* dest|int nitems|type
1882
1883 PoisonWith(0xEF) for catching access to freed memory.
1884
1885 =cut */
1886
1887 /* Maintained for backwards-compatibility only. Use newSV() instead. */
1888 #ifndef PERL_CORE
1889 #define NEWSV(x,len)    newSV(len)
1890 #endif
1891
1892 #define MEM_SIZE_MAX ((MEM_SIZE)~0)
1893
1894 /* The +0.0 in MEM_WRAP_CHECK_ is an attempt to foil
1895  * overly eager compilers that will bleat about e.g.
1896  * (U16)n > (size_t)~0/sizeof(U16) always being false. */
1897 #ifdef PERL_MALLOC_WRAP
1898 #define MEM_WRAP_CHECK(n,t) \
1899         (void)(UNLIKELY(sizeof(t) > 1 && ((MEM_SIZE)(n)+0.0) > MEM_SIZE_MAX/sizeof(t)) && (croak_memory_wrap(),0))
1900 #define MEM_WRAP_CHECK_1(n,t,a) \
1901         (void)(UNLIKELY(sizeof(t) > 1 && ((MEM_SIZE)(n)+0.0) > MEM_SIZE_MAX/sizeof(t)) && (Perl_croak_nocontext("%s",(a)),0))
1902 #define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
1903
1904 #define PERL_STRLEN_ROUNDUP(n) ((void)(((n) > MEM_SIZE_MAX - 2 * PERL_STRLEN_ROUNDUP_QUANTUM) ? (croak_memory_wrap(),0):0),((n-1+PERL_STRLEN_ROUNDUP_QUANTUM)&~((MEM_SIZE)PERL_STRLEN_ROUNDUP_QUANTUM-1)))
1905 #else
1906
1907 #define MEM_WRAP_CHECK(n,t)
1908 #define MEM_WRAP_CHECK_1(n,t,a)
1909 #define MEM_WRAP_CHECK_2(n,t,a,b)
1910 #define MEM_WRAP_CHECK_(n,t)
1911
1912 #define PERL_STRLEN_ROUNDUP(n) (((n-1+PERL_STRLEN_ROUNDUP_QUANTUM)&~((MEM_SIZE)PERL_STRLEN_ROUNDUP_QUANTUM-1)))
1913
1914 #endif
1915
1916 #ifdef PERL_MEM_LOG
1917 /*
1918  * If PERL_MEM_LOG is defined, all Newx()s, Renew()s, and Safefree()s
1919  * go through functions, which are handy for debugging breakpoints, but
1920  * which more importantly get the immediate calling environment (file and
1921  * line number, and C function name if available) passed in.  This info can
1922  * then be used for logging the calls, for which one gets a sample
1923  * implementation unless -DPERL_MEM_LOG_NOIMPL is also defined.
1924  *
1925  * Known problems:
1926  * - not all memory allocs get logged, only those
1927  *   that go through Newx() and derivatives (while all
1928  *   Safefrees do get logged)
1929  * - __FILE__ and __LINE__ do not work everywhere
1930  * - __func__ or __FUNCTION__ even less so
1931  * - I think more goes on after the perlio frees but
1932  *   the thing is that STDERR gets closed (as do all
1933  *   the file descriptors)
1934  * - no deeper calling stack than the caller of the Newx()
1935  *   or the kind, but do I look like a C reflection/introspection
1936  *   utility to you?
1937  * - the function prototypes for the logging functions
1938  *   probably should maybe be somewhere else than handy.h
1939  * - one could consider inlining (macrofying) the logging
1940  *   for speed, but I am too lazy
1941  * - one could imagine recording the allocations in a hash,
1942  *   (keyed by the allocation address?), and maintain that
1943  *   through reallocs and frees, but how to do that without
1944  *   any News() happening...?
1945  * - lots of -Ddefines to get useful/controllable output
1946  * - lots of ENV reads
1947  */
1948
1949 PERL_EXPORT_C Malloc_t Perl_mem_log_alloc(const UV n, const UV typesize, const char *type_name, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
1950
1951 PERL_EXPORT_C Malloc_t Perl_mem_log_realloc(const UV n, const UV typesize, const char *type_name, Malloc_t oldalloc, Malloc_t newalloc, const char *filename, const int linenumber, const char *funcname);
1952
1953 PERL_EXPORT_C Malloc_t Perl_mem_log_free(Malloc_t oldalloc, const char *filename, const int linenumber, const char *funcname);
1954
1955 # ifdef PERL_CORE
1956 #  ifndef PERL_MEM_LOG_NOIMPL
1957 enum mem_log_type {
1958   MLT_ALLOC,
1959   MLT_REALLOC,
1960   MLT_FREE,
1961   MLT_NEW_SV,
1962   MLT_DEL_SV
1963 };
1964 #  endif
1965 #  if defined(PERL_IN_SV_C)  /* those are only used in sv.c */
1966 void Perl_mem_log_new_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname);
1967 void Perl_mem_log_del_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname);
1968 #  endif
1969 # endif
1970
1971 #endif
1972
1973 #ifdef PERL_MEM_LOG
1974 #define MEM_LOG_ALLOC(n,t,a)     Perl_mem_log_alloc(n,sizeof(t),STRINGIFY(t),a,__FILE__,__LINE__,FUNCTION__)
1975 #define MEM_LOG_REALLOC(n,t,v,a) Perl_mem_log_realloc(n,sizeof(t),STRINGIFY(t),v,a,__FILE__,__LINE__,FUNCTION__)
1976 #define MEM_LOG_FREE(a)          Perl_mem_log_free(a,__FILE__,__LINE__,FUNCTION__)
1977 #endif
1978
1979 #ifndef MEM_LOG_ALLOC
1980 #define MEM_LOG_ALLOC(n,t,a)     (a)
1981 #endif
1982 #ifndef MEM_LOG_REALLOC
1983 #define MEM_LOG_REALLOC(n,t,v,a) (a)
1984 #endif
1985 #ifndef MEM_LOG_FREE
1986 #define MEM_LOG_FREE(a)          (a)
1987 #endif
1988
1989 #define Newx(v,n,t)     (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
1990 #define Newxc(v,n,t,c)  (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
1991 #define Newxz(v,n,t)    (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safecalloc((n),sizeof(t)))))
1992
1993 #ifndef PERL_CORE
1994 /* pre 5.9.x compatibility */
1995 #define New(x,v,n,t)    Newx(v,n,t)
1996 #define Newc(x,v,n,t,c) Newxc(v,n,t,c)
1997 #define Newz(x,v,n,t)   Newxz(v,n,t)
1998 #endif
1999
2000 #define Renew(v,n,t) \
2001           (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
2002 #define Renewc(v,n,t,c) \
2003           (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
2004
2005 #ifdef PERL_POISON
2006 #define Safefree(d) \
2007   ((d) ? (void)(safefree(MEM_LOG_FREE((Malloc_t)(d))), Poison(&(d), 1, Malloc_t)) : (void) 0)
2008 #else
2009 #define Safefree(d)     safefree(MEM_LOG_FREE((Malloc_t)(d)))
2010 #endif
2011
2012 #define Move(s,d,n,t)   (MEM_WRAP_CHECK_(n,t) (void)memmove((char*)(d),(const char*)(s), (n) * sizeof(t)))
2013 #define Copy(s,d,n,t)   (MEM_WRAP_CHECK_(n,t) (void)memcpy((char*)(d),(const char*)(s), (n) * sizeof(t)))
2014 #define Zero(d,n,t)     (MEM_WRAP_CHECK_(n,t) (void)memzero((char*)(d), (n) * sizeof(t)))
2015
2016 #define MoveD(s,d,n,t)  (MEM_WRAP_CHECK_(n,t) memmove((char*)(d),(const char*)(s), (n) * sizeof(t)))
2017 #define CopyD(s,d,n,t)  (MEM_WRAP_CHECK_(n,t) memcpy((char*)(d),(const char*)(s), (n) * sizeof(t)))
2018 #ifdef HAS_MEMSET
2019 #define ZeroD(d,n,t)    (MEM_WRAP_CHECK_(n,t) memzero((char*)(d), (n) * sizeof(t)))
2020 #else
2021 /* Using bzero(), which returns void.  */
2022 #define ZeroD(d,n,t)    (MEM_WRAP_CHECK_(n,t) memzero((char*)(d), (n) * sizeof(t)),d)
2023 #endif
2024
2025 #define PoisonWith(d,n,t,b)     (MEM_WRAP_CHECK_(n,t) (void)memset((char*)(d), (U8)(b), (n) * sizeof(t)))
2026 #define PoisonNew(d,n,t)        PoisonWith(d,n,t,0xAB)
2027 #define PoisonFree(d,n,t)       PoisonWith(d,n,t,0xEF)
2028 #define Poison(d,n,t)           PoisonFree(d,n,t)
2029
2030 #ifdef PERL_POISON
2031 #  define PERL_POISON_EXPR(x) x
2032 #else
2033 #  define PERL_POISON_EXPR(x)
2034 #endif
2035
2036 #ifdef USE_STRUCT_COPY
2037 #define StructCopy(s,d,t) (*((t*)(d)) = *((t*)(s)))
2038 #else
2039 #define StructCopy(s,d,t) Copy(s,d,1,t)
2040 #endif
2041
2042 /* C_ARRAY_LENGTH is the number of elements in the C array (so you
2043  * want your zero-based indices to be less than but not equal to).
2044  *
2045  * C_ARRAY_END is one past the last: half-open/half-closed range,
2046  * not last-inclusive range. */
2047 #define C_ARRAY_LENGTH(a)       (sizeof(a)/sizeof((a)[0]))
2048 #define C_ARRAY_END(a)          ((a) + C_ARRAY_LENGTH(a))
2049
2050 #ifdef NEED_VA_COPY
2051 # ifdef va_copy
2052 #  define Perl_va_copy(s, d) va_copy(d, s)
2053 # else
2054 #  if defined(__va_copy)
2055 #   define Perl_va_copy(s, d) __va_copy(d, s)
2056 #  else
2057 #   define Perl_va_copy(s, d) Copy(s, d, 1, va_list)
2058 #  endif
2059 # endif
2060 #endif
2061
2062 /* convenience debug macros */
2063 #ifdef USE_ITHREADS
2064 #define pTHX_FORMAT  "Perl interpreter: 0x%p"
2065 #define pTHX__FORMAT ", Perl interpreter: 0x%p"
2066 #define pTHX_VALUE_   (void *)my_perl,
2067 #define pTHX_VALUE    (void *)my_perl
2068 #define pTHX__VALUE_ ,(void *)my_perl,
2069 #define pTHX__VALUE  ,(void *)my_perl
2070 #else
2071 #define pTHX_FORMAT
2072 #define pTHX__FORMAT
2073 #define pTHX_VALUE_
2074 #define pTHX_VALUE
2075 #define pTHX__VALUE_
2076 #define pTHX__VALUE
2077 #endif /* USE_ITHREADS */
2078
2079 /* Perl_deprecate was not part of the public API, and did not have a deprecate()
2080    shortcut macro defined without -DPERL_CORE. Neither codesearch.google.com nor
2081    CPAN::Unpack show any users outside the core.  */
2082 #ifdef PERL_CORE
2083 #  define deprecate(s) Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), "Use of " s " is deprecated")
2084 #endif
2085
2086 /* Internal macros to deal with gids and uids */
2087 #ifdef PERL_CORE
2088
2089 #  if Uid_t_size > IVSIZE
2090 #    define sv_setuid(sv, uid)       sv_setnv((sv), (NV)(uid))
2091 #    define SvUID(sv)                SvNV(sv)
2092 #  else
2093 #    if Uid_t_sign <= 0
2094 #      define sv_setuid(sv, uid)       sv_setiv((sv), (IV)(uid))
2095 #      define SvUID(sv)                SvIV(sv)
2096 #    else
2097 #      define sv_setuid(sv, uid)       sv_setuv((sv), (UV)(uid))
2098 #      define SvUID(sv)                SvUV(sv)
2099 #    endif
2100 #  endif /* Uid_t_size */
2101
2102 #  if Gid_t_size > IVSIZE
2103 #    define sv_setgid(sv, gid)       sv_setnv((sv), (NV)(gid))
2104 #    define SvGID(sv)                SvNV(sv)
2105 #  else
2106 #    if Gid_t_sign <= 0
2107 #      define sv_setgid(sv, gid)       sv_setiv((sv), (IV)(gid))
2108 #      define SvGID(sv)                SvIV(sv)
2109 #    else
2110 #      define sv_setgid(sv, gid)       sv_setuv((sv), (UV)(gid))
2111 #      define SvGID(sv)                SvUV(sv)
2112 #    endif
2113 #  endif /* Gid_t_size */
2114
2115 #endif
2116
2117 #endif  /* HANDY_H */
2118
2119 /*
2120  * Local variables:
2121  * c-indentation-style: bsd
2122  * c-basic-offset: 4
2123  * indent-tabs-mode: nil
2124  * End:
2125  *
2126  * ex: set ts=8 sts=4 sw=4 et:
2127  */