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