This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Promote v5.36 usage and feature bundles doc
[perl5.git] / handy.h
CommitLineData
a0d0e21e 1/* handy.h
a687059c 2 *
1129b882 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000,
da5d8dbb 4 * 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2012 by Larry Wall and others
a687059c 5 *
6e21c824
LW
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.
8d063cd8 8 *
8d063cd8
LW
9 */
10
4650c663
KW
11/* IMPORTANT NOTE: Everything whose name begins with an underscore is for
12 * internal core Perl use only. */
13
6a5bc5ac
KW
14#ifndef PERL_HANDY_H_ /* Guard against nested #inclusion */
15#define PERL_HANDY_H_
9d745869 16
24792b8d
NC
17#ifndef PERL_CORE
18# define Null(type) ((type)NULL)
954c1994
GS
19
20/*
3f620621 21=for apidoc_section $string
78342678 22=for apidoc AmnU||Nullch
72d33970
FC
23Null character pointer. (No longer available when C<PERL_CORE> is
24defined.)
2307c6d0 25
3f620621 26=for apidoc_section $SV
78342678 27=for apidoc AmnU||Nullsv
72d33970 28Null SV pointer. (No longer available when C<PERL_CORE> is defined.)
954c1994
GS
29
30=cut
51b56f5c
KW
31
32Below are signatures of functions from config.h which can't easily be gleaned
33from it, and are very unlikely to change
34
3f620621 35=for apidoc_section $signals
51b56f5c
KW
36=for apidoc Am|int|Sigsetjmp|jmp_buf env|int savesigs
37=for apidoc Am|void|Siglongjmp|jmp_buf env|int val
38
3f620621 39=for apidoc_section $filesystem
51b56f5c
KW
40=for apidoc Am|void *|FILE_ptr|FILE * f
41=for apidoc Am|Size_t|FILE_cnt|FILE * f
42=for apidoc Am|void *|FILE_base|FILE * f
b290de04 43=for apidoc Am|Size_t|FILE_bufsiz|FILE *f
51b56f5c 44
3f620621 45=for apidoc_section $string
b290de04
KW
46=for apidoc Amu|token|CAT2|token x|token y
47=for apidoc Amu|string|STRINGIFY|token x
51b56f5c 48
3f620621 49=for apidoc_section $numeric
b290de04 50=for apidoc Am|double|Drand01
51b56f5c
KW
51=for apidoc Am|void|seedDrand01|Rand_seed_t x
52=for apidoc Am|char *|Gconvert|double x|Size_t n|bool t|char * b
53
54=cut
954c1994
GS
55*/
56
24792b8d
NC
57# define Nullch Null(char*)
58# define Nullfp Null(PerlIO*)
59# define Nullsv Null(SV*)
60#endif
8d063cd8 61
641d3f0b 62#ifdef TRUE
63#undef TRUE
64#endif
65#ifdef FALSE
66#undef FALSE
67#endif
68#define TRUE (1)
69#define FALSE (0)
70
df87895c 71/*
3f620621 72=for apidoc_section $SV
1607e393
KW
73=for apidoc Am |AV * |MUTABLE_AV |AV * p
74=for apidoc_item |CV * |MUTABLE_CV |CV * p
75=for apidoc_item |GV * |MUTABLE_GV |GV * p
76=for apidoc_item |HV * |MUTABLE_HV |HV * p
77=for apidoc_item |IO * |MUTABLE_IO |IO * p
78=for apidoc_item |void *|MUTABLE_PTR|void * p
79=for apidoc_item |SV * |MUTABLE_SV |SV * p
df87895c
KW
80
81The C<MUTABLE_I<*>>() macros cast pointers to the types shown, in such a way
82(compiler permitting) that casting away const-ness will give a warning;
83e.g.:
84
85 const SV *sv = ...;
86 AV *av1 = (AV*)sv; <== BAD: the const has been silently
87 cast away
88 AV *av2 = MUTABLE_AV(sv); <== GOOD: it may warn
89
54ba56f3
KW
90C<MUTABLE_PTR> is the base macro used to derive new casts. The other
91already-built-in ones return pointers to what their names indicate.
df87895c
KW
92
93=cut
cf3f0ffb 94
ba04fd90
KW
95The brace group version will raise a diagnostic if 'p' is const; the other
96blindly casts away const.
97 */
041c1a23 98#if defined(PERL_USE_GCC_BRACE_GROUPS)
6c2255e0 99# define MUTABLE_PTR(p) ({ void *p_ = (p); p_; })
b1bc3f34
NC
100#else
101# define MUTABLE_PTR(p) ((void *) (p))
102#endif
103
a062e10d 104#define MUTABLE_AV(p) ((AV *)MUTABLE_PTR(p))
ea726b52 105#define MUTABLE_CV(p) ((CV *)MUTABLE_PTR(p))
159b6efe 106#define MUTABLE_GV(p) ((GV *)MUTABLE_PTR(p))
dbebbdb4 107#define MUTABLE_HV(p) ((HV *)MUTABLE_PTR(p))
a45c7426 108#define MUTABLE_IO(p) ((IO *)MUTABLE_PTR(p))
b1bc3f34 109#define MUTABLE_SV(p) ((SV *)MUTABLE_PTR(p))
27d4fb96 110
b1c011dc 111#ifndef __cplusplus
bd31be4b 112# include <stdbool.h>
bd31be4b
NC
113#endif
114
25ba28ce 115/*
3f620621 116=for apidoc_section $casting
25ba28ce
KW
117=for apidoc Am|bool|cBOOL|bool expr
118
9fa5fd96
KW
119Cast-to-bool. When Perl was able to be compiled on pre-C99 compilers, a
120C<(bool)> cast didn't necessarily do the right thing, so this macro was
121created (and made somewhat complicated to work around bugs in old
122compilers). Now, many years later, and C99 is used, this is no longer
123required, but is kept for backwards compatibility.
25ba28ce
KW
124
125=cut
126*/
9fa5fd96 127#define cBOOL(cbool) ((bool) (cbool))
f2338a2e 128
46c6c7e2 129/* Try to figure out __func__ or __FUNCTION__ equivalent, if any.
e352bcff
JH
130 * XXX Should really be a Configure probe, with HAS__FUNCTION__
131 * and FUNCTION__ as results.
132 * XXX Similarly, a Configure probe for __FILE__ and __LINE__ is needed. */
46c6c7e2
JH
133#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || (defined(__SUNPRO_C)) /* C99 or close enough. */
134# define FUNCTION__ __func__
7adf2470 135#elif (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tur64, -c99 not known, only -std1). */
07798b17 136# define FUNCTION__ ""
46c6c7e2 137#else
07798b17 138# define FUNCTION__ __FUNCTION__ /* Common extension. */
46c6c7e2
JH
139#endif
140
27d4fb96 141/* XXX A note on the perl source internal type system. The
142 original intent was that I32 be *exactly* 32 bits.
143
144 Currently, we only guarantee that I32 is *at least* 32 bits.
145 Specifically, if int is 64 bits, then so is I32. (This is the case
146 for the Cray.) This has the advantage of meshing nicely with
147 standard library calls (where we pass an I32 and the library is
148 expecting an int), but the disadvantage that an I32 is not 32 bits.
149 Andy Dougherty August 1996
24fef2a7 150
dc45a647
MB
151 There is no guarantee that there is *any* integral type with
152 exactly 32 bits. It is perfectly legal for a system to have
153 sizeof(short) == sizeof(int) == sizeof(long) == 8.
693762b4 154
dc45a647
MB
155 Similarly, there is no guarantee that I16 and U16 have exactly 16
156 bits.
693762b4 157
8e84507e
NIS
158 For dealing with issues that may arise from various 32/64-bit
159 systems, we will ask Configure to check out
8175356b 160
1604cfb0
MS
161 SHORTSIZE == sizeof(short)
162 INTSIZE == sizeof(int)
163 LONGSIZE == sizeof(long)
164 LONGLONGSIZE == sizeof(long long) (if HAS_LONG_LONG)
165 PTRSIZE == sizeof(void *)
166 DOUBLESIZE == sizeof(double)
167 LONG_DOUBLESIZE == sizeof(long double) (if HAS_LONG_DOUBLE).
8175356b 168
27d4fb96 169*/
170
69512466
JH
171#ifdef I_INTTYPES /* e.g. Linux has int64_t without <inttypes.h> */
172# include <inttypes.h>
dd0eed91
JH
173# ifdef INT32_MIN_BROKEN
174# undef INT32_MIN
175# define INT32_MIN (-2147483647-1)
176# endif
177# ifdef INT64_MIN_BROKEN
178# undef INT64_MIN
179# define INT64_MIN (-9223372036854775807LL-1)
180# endif
69512466
JH
181#endif
182
8175356b
JH
183typedef I8TYPE I8;
184typedef U8TYPE U8;
185typedef I16TYPE I16;
186typedef U16TYPE U16;
187typedef I32TYPE I32;
188typedef U32TYPE U32;
16d89be8 189
74b807c7 190#ifdef QUADKIND
8175356b
JH
191typedef I64TYPE I64;
192typedef U64TYPE U64;
16d89be8 193#endif
8175356b 194
5ff3f7a4
GS
195/* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
196 Please search CHAR_MAX in perl.h for further details. */
26e4a9a9
KW
197#ifdef UINT8_MAX
198# define U8_MAX UINT8_MAX
0e983133 199#else
26e4a9a9 200# define U8_MAX PERL_UCHAR_MAX
0e983133 201#endif
26e4a9a9
KW
202#ifdef UINT8_MIN
203# define U8_MIN UINT8_MIN
5ff3f7a4 204#else
26e4a9a9
KW
205# define U8_MIN PERL_UCHAR_MIN
206#endif
5ff3f7a4 207
26e4a9a9
KW
208#ifdef INT16_MAX
209# define I16_MAX INT16_MAX
79072805 210#else
26e4a9a9
KW
211# define I16_MAX PERL_SHORT_MAX
212#endif
213#ifdef INT16_MIN
214# define I16_MIN INT16_MIN
215#else
216# define I16_MIN PERL_SHORT_MIN
217#endif
218#ifdef UINT16_MAX
219# define U16_MAX UINT16_MAX
220#else
221# define U16_MAX PERL_USHORT_MAX
222#endif
223#ifdef UINT16_MIN
224# define U16_MIN UINT16_MIN
225#else
226# define U16_MIN PERL_USHORT_MIN
79072805
LW
227#endif
228
26e4a9a9
KW
229#ifdef INT32_MAX
230# define I32_MAX INT32_MAX
231#elif LONGSIZE > 4
232# define I32_MAX PERL_INT_MAX
233#else
234# define I32_MAX PERL_LONG_MAX
235#endif
236#ifdef INT32_MIN
237# define I32_MIN INT32_MIN
238#elif LONGSIZE > 4
239# define I32_MIN PERL_INT_MIN
240#else
241# define I32_MIN PERL_LONG_MIN
242#endif
243#ifdef UINT32_MAX
244# ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
245# define U32_MAX UINT_MAX
246# else
247# define U32_MAX 4294967295U
248# endif
249#elif LONGSIZE > 4
250# define U32_MAX PERL_UINT_MAX
251#else
252# define U32_MAX PERL_ULONG_MAX
253#endif
254#ifdef UINT32_MIN
255# define U32_MIN UINT32_MIN
256#elif LONGSIZE > 4
257# define U32_MIN PERL_UINT_MIN
258#else
259# define U32_MIN PERL_ULONG_MIN
5ff3f7a4
GS
260#endif
261
23332c7d
KW
262/*
263=for apidoc_section $integer
264=for apidoc Ay|| PERL_INT_FAST8_T
265=for apidoc_item PERL_INT_FAST16_T
266=for apidoc_item PERL_UINT_FAST8_T
267=for apidoc_item PERL_UINT_FAST16_T
268
269These are equivalent to the correspondingly-named C99 typedefs on platforms
270that have those; they evaluate to C<int> and C<unsigned int> on platforms that
271don't, so that you can portably take advantage of this C99 feature.
272
273=cut
274*/
934902b8 275#ifdef I_STDINT
247cee9f
KW
276 typedef int_fast8_t PERL_INT_FAST8_T;
277 typedef uint_fast8_t PERL_UINT_FAST8_T;
278 typedef int_fast16_t PERL_INT_FAST16_T;
279 typedef uint_fast16_t PERL_UINT_FAST16_T;
934902b8 280#else
247cee9f
KW
281 typedef int PERL_INT_FAST8_T;
282 typedef unsigned int PERL_UINT_FAST8_T;
283 typedef int PERL_INT_FAST16_T;
284 typedef unsigned int PERL_UINT_FAST16_T;
934902b8 285#endif
247cee9f 286
464decb6 287/* log(2) (i.e., log base 10 of 2) is pretty close to 0.30103, just in case
ab350cbd
KW
288 * anyone is grepping for it. So BIT_DIGITS gives the number of decimal digits
289 * required to represent any possible unsigned number containing N bits.
290 * TYPE_DIGITS gives the number of decimal digits required to represent any
291 * possible unsigned number of type T. */
464decb6 292#define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log10(2) =~ 146/485 */
fc36a67e 293#define TYPE_DIGITS(T) BIT_DIGITS(sizeof(T) * 8)
294#define TYPE_CHARS(T) (TYPE_DIGITS(T) + 2) /* sign, NUL */
295
88794300 296/* Unused by core; should be deprecated */
ff68c719 297#define Ctl(ch) ((ch) & 037)
8d063cd8 298
98fce2a4
KW
299#if defined(PERL_CORE) || defined(PERL_EXT)
300# ifndef MIN
301# define MIN(a,b) ((a) < (b) ? (a) : (b))
302# endif
303# ifndef MAX
304# define MAX(a,b) ((a) > (b) ? (a) : (b))
305# endif
306#endif
307
84ff4fa9
KW
308/* Returns a boolean as to whether the input unsigned number is a power of 2
309 * (2**0, 2**1, etc). In other words if it has just a single bit set.
310 * If not, subtracting 1 would leave the uppermost bit set, so the & would
311 * yield non-zero */
312#if defined(PERL_CORE) || defined(PERL_EXT)
011b1419 313# define isPOWER_OF_2(n) ((n) && ((n) & ((n)-1)) == 0)
84ff4fa9
KW
314#endif
315
d223e1ea 316/* Returns a mask with the lowest n bits set */
fae1e72b 317#define nBIT_MASK(n) ((UINTMAX_C(1) << (n)) - 1)
d223e1ea 318
1381ccb1
KW
319/* The largest unsigned number that will fit into n bits */
320#define nBIT_UMAX(n) nBIT_MASK(n)
321
8d9433eb 322/*
3f620621 323=for apidoc_section $directives
d23778e6 324=for apidoc Am||__ASSERT_|bool expr
8d9433eb
KW
325
326This is a helper macro to avoid preprocessor issues, replaced by nothing
327unless under DEBUGGING, where it expands to an assert of its argument,
328followed by a comma (hence the comma operator). If we just used a straight
329assert(), we would get a comma with nothing before it when not DEBUGGING.
330
331=cut
332
803e4935 333We also use empty definition under Coverity since the __ASSERT_
8d9433eb
KW
334checks often check for things that Really Cannot Happen, and Coverity
335detects that and gets all excited. */
3e94db23 336
e7ae132e
KW
337#if defined(DEBUGGING) && !defined(__COVERITY__) \
338 && ! defined(PERL_SMALL_MACRO_BUFFER)
0f092d08
KW
339# define __ASSERT_(statement) assert(statement),
340#else
341# define __ASSERT_(statement)
342#endif
343
3fe05580 344/*
3f620621 345=for apidoc_section $SV
3fe05580 346
3bb9fd01 347=for apidoc Ama|SV*|newSVpvs|"literal string"
1568d13a 348Like C<newSVpvn>, but takes a literal string instead of a
30a15352 349string/length pair.
3fe05580 350
3bb9fd01 351=for apidoc Ama|SV*|newSVpvs_flags|"literal string"|U32 flags
1568d13a 352Like C<newSVpvn_flags>, but takes a literal string instead of
30a15352 353a string/length pair.
84bafc02 354
3bb9fd01 355=for apidoc Ama|SV*|newSVpvs_share|"literal string"
1568d13a 356Like C<newSVpvn_share>, but takes a literal string instead of
30a15352 357a string/length pair and omits the hash parameter.
3fe05580 358
3bb9fd01 359=for apidoc Am|void|sv_catpvs_flags|SV* sv|"literal string"|I32 flags
1568d13a 360Like C<sv_catpvn_flags>, but takes a literal string instead
30a15352 361of a string/length pair.
9dcc53ea 362
3bb9fd01 363=for apidoc Am|void|sv_catpvs_nomg|SV* sv|"literal string"
1568d13a 364Like C<sv_catpvn_nomg>, but takes a literal string instead of
0c395ea5 365a string/length pair.
9dcc53ea 366
3bb9fd01 367=for apidoc Am|void|sv_catpvs|SV* sv|"literal string"
1568d13a 368Like C<sv_catpvn>, but takes a literal string instead of a
0c395ea5 369string/length pair.
3fe05580 370
3bb9fd01 371=for apidoc Am|void|sv_catpvs_mg|SV* sv|"literal string"
1568d13a 372Like C<sv_catpvn_mg>, but takes a literal string instead of a
9dcc53ea
Z
373string/length pair.
374
3bb9fd01 375=for apidoc Am|SV *|sv_setref_pvs|SV *const rv|const char *const classname|"literal string"
1568d13a 376Like C<sv_setref_pvn>, but takes a literal string instead of
0c395ea5 377a string/length pair.
9dcc53ea 378
3f620621 379=for apidoc_section $string
3fe05580 380
3bb9fd01 381=for apidoc Ama|char*|savepvs|"literal string"
1568d13a 382Like C<savepvn>, but takes a literal string instead of a
30a15352 383string/length pair.
3fe05580 384
3bb9fd01 385=for apidoc Ama|char*|savesharedpvs|"literal string"
9dcc53ea
Z
386A version of C<savepvs()> which allocates the duplicate string in memory
387which is shared between threads.
388
3f620621 389=for apidoc_section $GV
3fe05580 390
3bb9fd01 391=for apidoc Am|HV*|gv_stashpvs|"name"|I32 create
1568d13a 392Like C<gv_stashpvn>, but takes a literal string instead of a
0c395ea5 393string/length pair.
3fe05580 394
3f620621 395=for apidoc_section $HV
3fe05580 396
3bb9fd01 397=for apidoc Am|SV**|hv_fetchs|HV* tb|"key"|I32 lval
1568d13a 398Like C<hv_fetch>, but takes a literal string instead of a
0c395ea5 399string/length pair.
3f620621 400=for apidoc_section $lexer
510966aa 401
3bb9fd01 402=for apidoc Amx|void|lex_stuff_pvs|"pv"|U32 flags
510966aa 403
1568d13a 404Like L</lex_stuff_pvn>, but takes a literal string instead of
0c395ea5 405a string/length pair.
510966aa 406
3fe05580
MHM
407=cut
408*/
409
ca0572d7
KW
410#define ASSERT_IS_LITERAL(s) ("" s "")
411
a34e53fc 412/*
3f620621 413=for apidoc_section $string
2efa8cc7 414
a34e53fc
KW
415=for apidoc Amu|pair|STR_WITH_LEN|"literal string"
416
417Returns two comma separated tokens of the input literal string, and its length.
418This is convenience macro which helps out in some API calls.
419Note that it can't be used as an argument to macros or functions that under
420some configurations might be macros, which means that it requires the full
421Perl_xxx(aTHX_ ...) form for any API calls where it's used.
422
423=cut
424*/
425
ca0572d7 426#define STR_WITH_LEN(s) ASSERT_IS_LITERAL(s), (sizeof(s)-1)
ba3a79e7
GA
427
428/* STR_WITH_LEN() shortcuts */
429#define newSVpvs(str) Perl_newSVpvn(aTHX_ STR_WITH_LEN(str))
84bafc02
NC
430#define newSVpvs_flags(str,flags) \
431 Perl_newSVpvn_flags(aTHX_ STR_WITH_LEN(str), flags)
ba3a79e7 432#define newSVpvs_share(str) Perl_newSVpvn_share(aTHX_ STR_WITH_LEN(str), 0)
9dcc53ea
Z
433#define sv_catpvs_flags(sv, str, flags) \
434 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), flags)
435#define sv_catpvs_nomg(sv, str) \
436 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), 0)
437#define sv_catpvs(sv, str) \
438 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC)
439#define sv_catpvs_mg(sv, str) \
440 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC|SV_SMAGIC)
3fe05580 441#define sv_setpvs(sv, str) Perl_sv_setpvn(aTHX_ sv, STR_WITH_LEN(str))
9dcc53ea
Z
442#define sv_setpvs_mg(sv, str) Perl_sv_setpvn_mg(aTHX_ sv, STR_WITH_LEN(str))
443#define sv_setref_pvs(rv, classname, str) \
444 Perl_sv_setref_pvn(aTHX_ rv, classname, STR_WITH_LEN(str))
ba3a79e7 445#define savepvs(str) Perl_savepvn(aTHX_ STR_WITH_LEN(str))
9dcc53ea
Z
446#define savesharedpvs(str) Perl_savesharedpvn(aTHX_ STR_WITH_LEN(str))
447#define gv_stashpvs(str, create) \
448 Perl_gv_stashpvn(aTHX_ STR_WITH_LEN(str), create)
3752a9fe
KW
449
450#define gv_fetchpvs(namebeg, flags, sv_type) \
451 Perl_gv_fetchpvn_flags(aTHX_ STR_WITH_LEN(namebeg), flags, sv_type)
72659597 452#define gv_fetchpvn gv_fetchpvn_flags
9dcc53ea
Z
453#define sv_catxmlpvs(dsv, str, utf8) \
454 Perl_sv_catxmlpvn(aTHX_ dsv, STR_WITH_LEN(str), utf8)
4ac46235 455
ba3a79e7 456
510966aa
Z
457#define lex_stuff_pvs(pv,flags) Perl_lex_stuff_pvn(aTHX_ STR_WITH_LEN(pv), flags)
458
b96d8cd9 459#define get_cvs(str, flags) \
1604cfb0 460 Perl_get_cvn_flags(aTHX_ STR_WITH_LEN(str), (flags))
5c1737d1 461
9b6e9510 462/* internal helpers */
4a1bbd3d 463/* Transitional */
d67f622b
N
464#ifndef PERL_VERSION_MAJOR
465# define PERL_VERSION_MAJOR PERL_REVISION
4a1bbd3d
KW
466#else
467# undef PERL_REVISION /* We don't want code to be using these */
468#endif
d67f622b
N
469#ifndef PERL_VERSION_MINOR
470# define PERL_VERSION_MINOR PERL_VERSION
4a1bbd3d
KW
471#else
472# undef PERL_VERSION
473#endif
d67f622b
N
474#ifndef PERL_VERSION_PATCH
475# define PERL_VERSION_PATCH PERL_SUBVERSION
4a1bbd3d
KW
476#else
477# undef PERL_SUBVERSION
478#endif
479
480#define PERL_JNP_TO_DECIMAL_(maJor,miNor,Patch) \
481 /* '10*' leaves room for things like alpha, beta, releases */ \
482 (10 * ((maJor) * 1000000) + ((miNor) * 1000) + (Patch))
9b6e9510 483#define PERL_DECIMAL_VERSION_ \
d67f622b
N
484 PERL_JNP_TO_DECIMAL_(PERL_VERSION_MAJOR, PERL_VERSION_MINOR, \
485 PERL_VERSION_PATCH)
9b6e9510
KW
486
487/*
3f620621 488=for apidoc_section $versioning
4a1bbd3d 489=for apidoc AmR|bool|PERL_VERSION_EQ|const U8 major|const U8 minor|const U8 patch
9de44d19 490=for apidoc_item PERL_VERSION_GE
1607e393
KW
491=for apidoc_item PERL_VERSION_GT
492=for apidoc_item PERL_VERSION_LE
493=for apidoc_item PERL_VERSION_LT
494=for apidoc_item PERL_VERSION_NE
9b6e9510 495
4a1bbd3d 496Returns whether or not the perl currently being compiled has the specified
9b6e9510
KW
497relationship to the perl given by the parameters. For example,
498
499 #if PERL_VERSION_GT(5,24,2)
500 code that will only be compiled on perls after v5.24.2
501 #else
502 fallback code
503 #endif
504
505Note that this is usable in making compile-time decisions
506
4a1bbd3d
KW
507You may use the special value '*' for the final number to mean ALL possible
508values for it. Thus,
509
510 #if PERL_VERSION_EQ(5,31,'*')
511
512means all perls in the 5.31 series. And
513
514 #if PERL_VERSION_NE(5,24,'*')
515
516means all perls EXCEPT 5.24 ones. And
517
518 #if PERL_VERSION_LE(5,9,'*')
519
520is effectively
521
522 #if PERL_VERSION_LT(5,10,0)
523
524This means you don't have to think so much when converting from the existing
525deprecated C<PERL_VERSION> to using this macro:
526
527 #if PERL_VERSION <= 9
528
529becomes
530
531 #if PERL_VERSION_LE(5,9,'*')
532
9b6e9510
KW
533=cut
534*/
535
4a1bbd3d
KW
536/* N.B. These don't work if the patch version is 42 or 92, as those are what
537 * '*' is in ASCII and EBCDIC respectively */
538# define PERL_VERSION_EQ(j,n,p) \
539 (((p) == '*') \
d67f622b
N
540 ? ( (j) == PERL_VERSION_MAJOR \
541 && (n) == PERL_VERSION_MINOR) \
4a1bbd3d
KW
542 : (PERL_DECIMAL_VERSION_ == PERL_JNP_TO_DECIMAL_(j,n,p)))
543# define PERL_VERSION_NE(j,n,p) (! PERL_VERSION_EQ(j,n,p))
544
545# define PERL_VERSION_LT(j,n,p) /* < '*' effectively means < 0 */ \
546 (PERL_DECIMAL_VERSION_ < PERL_JNP_TO_DECIMAL_( (j), \
547 (n), \
548 (((p) == '*') ? 0 : p)))
549# define PERL_VERSION_GE(j,n,p) (! PERL_VERSION_LT(j,n,p))
550
551# define PERL_VERSION_LE(j,n,p) /* <= '*' effectively means < n+1 */ \
552 (PERL_DECIMAL_VERSION_ < PERL_JNP_TO_DECIMAL_( (j), \
553 (((p) == '*') ? ((n)+1) : (n)), \
554 (((p) == '*') ? 0 : p)))
555# define PERL_VERSION_GT(j,n,p) (! PERL_VERSION_LE(j,n,p))
9b6e9510 556
954c1994 557/*
3f620621 558=for apidoc_section $string
ccfc67b7 559
954c1994 560=for apidoc Am|bool|strNE|char* s1|char* s2
dc6b0978
KW
561Test two C<NUL>-terminated strings to see if they are different. Returns true
562or false.
954c1994
GS
563
564=for apidoc Am|bool|strEQ|char* s1|char* s2
dc6b0978
KW
565Test two C<NUL>-terminated strings to see if they are equal. Returns true or
566false.
954c1994
GS
567
568=for apidoc Am|bool|strLT|char* s1|char* s2
dc6b0978
KW
569Test two C<NUL>-terminated strings to see if the first, C<s1>, is less than the
570second, C<s2>. Returns true or false.
954c1994
GS
571
572=for apidoc Am|bool|strLE|char* s1|char* s2
dc6b0978
KW
573Test two C<NUL>-terminated strings to see if the first, C<s1>, is less than or
574equal to the second, C<s2>. Returns true or false.
954c1994
GS
575
576=for apidoc Am|bool|strGT|char* s1|char* s2
dc6b0978
KW
577Test two C<NUL>-terminated strings to see if the first, C<s1>, is greater than
578the second, C<s2>. Returns true or false.
954c1994
GS
579
580=for apidoc Am|bool|strGE|char* s1|char* s2
dc6b0978
KW
581Test two C<NUL>-terminated strings to see if the first, C<s1>, is greater than
582or equal to the second, C<s2>. Returns true or false.
954c1994
GS
583
584=for apidoc Am|bool|strnNE|char* s1|char* s2|STRLEN len
dc6b0978
KW
585Test two C<NUL>-terminated strings to see if they are different. The C<len>
586parameter indicates the number of bytes to compare. Returns true or false. (A
954c1994
GS
587wrapper for C<strncmp>).
588
589=for apidoc Am|bool|strnEQ|char* s1|char* s2|STRLEN len
dc6b0978
KW
590Test two C<NUL>-terminated strings to see if they are equal. The C<len>
591parameter indicates the number of bytes to compare. Returns true or false. (A
592wrapper for C<strncmp>).
954c1994 593
bd18bd40
KW
594=for apidoc Am|bool|memEQ|char* s1|char* s2|STRLEN len
595Test two buffers (which may contain embedded C<NUL> characters, to see if they
596are equal. The C<len> parameter indicates the number of bytes to compare.
b96bd7bf
KW
597Returns true or false. It is undefined behavior if either of the buffers
598doesn't contain at least C<len> bytes.
bd18bd40 599
3bb9fd01 600=for apidoc Am|bool|memEQs|char* s1|STRLEN l1|"s2"
2d8eeddb
KW
601Like L</memEQ>, but the second string is a literal enclosed in double quotes,
602C<l1> gives the number of bytes in C<s1>.
b96bd7bf 603Returns true or false.
2d8eeddb 604
bd18bd40
KW
605=for apidoc Am|bool|memNE|char* s1|char* s2|STRLEN len
606Test two buffers (which may contain embedded C<NUL> characters, to see if they
607are not equal. The C<len> parameter indicates the number of bytes to compare.
b96bd7bf
KW
608Returns true or false. It is undefined behavior if either of the buffers
609doesn't contain at least C<len> bytes.
bd18bd40 610
3bb9fd01 611=for apidoc Am|bool|memNEs|char* s1|STRLEN l1|"s2"
2d8eeddb
KW
612Like L</memNE>, but the second string is a literal enclosed in double quotes,
613C<l1> gives the number of bytes in C<s1>.
b96bd7bf 614Returns true or false.
2d8eeddb 615
4aada8b9
KW
616=for apidoc Am|bool|memCHRs|"list"|char c
617Returns the position of the first occurence of the byte C<c> in the literal
618string C<"list">, or NULL if C<c> doesn't appear in C<"list">. All bytes are
619treated as unsigned char. Thus this macro can be used to determine if C<c> is
620in a set of particular characters. Unlike L<strchr(3)>, it works even if C<c>
621is C<NUL> (and the set doesn't include C<NUL>).
622
954c1994 623=cut
fc169e00
KW
624
625New macros should use the following conventions for their names (which are
626based on the underlying C library functions):
627
628 (mem | str n? ) (EQ | NE | LT | GT | GE | (( BEGIN | END ) P? )) l? s?
629
630 Each has two main parameters, string-like operands that are compared
631 against each other, as specified by the macro name. Some macros may
632 additionally have one or potentially even two length parameters. If a length
633 parameter applies to both string parameters, it will be positioned third;
634 otherwise any length parameter immediately follows the string parameter it
635 applies to.
636
637 If the prefix to the name is 'str', the string parameter is a pointer to a C
638 language string. Such a string does not contain embedded NUL bytes; its
639 length may be unknown, but can be calculated by C<strlen()>, since it is
640 terminated by a NUL, which isn't included in its length.
641
a3815e44 642 The optional 'n' following 'str' means that there is a third parameter,
fc169e00
KW
643 giving the maximum number of bytes to look at in each string. Even if both
644 strings are longer than the length parameter, those extra bytes will be
645 unexamined.
646
647 The 's' suffix means that the 2nd byte string parameter is a literal C
648 double-quoted string. Its length will automatically be calculated by the
649 macro, so no length parameter will ever be needed for it.
650
651 If the prefix is 'mem', the string parameters don't have to be C strings;
652 they may contain embedded NUL bytes, do not necessarily have a terminating
653 NUL, and their lengths can be known only through other means, which in
654 practice are additional parameter(s) passed to the function. All 'mem'
655 functions have at least one length parameter. Barring any 'l' or 's' suffix,
656 there is a single length parameter, in position 3, which applies to both
657 string parameters. The 's' suffix means, as described above, that the 2nd
658 string is a literal double-quoted C string (hence its length is calculated by
659 the macro, and the length parameter to the function applies just to the first
660 string parameter, and hence is positioned just after it). An 'l' suffix
661 means that the 2nd string parameter has its own length parameter, and the
662 signature will look like memFOOl(s1, l1, s2, l2).
663
664 BEGIN (and END) are for testing if the 2nd string is an initial (or final)
665 substring of the 1st string. 'P' if present indicates that the substring
666 must be a "proper" one in tha mathematical sense that the first one must be
667 strictly larger than the 2nd.
668
954c1994
GS
669*/
670
62946e08 671
75400963
KW
672#define strNE(s1,s2) (strcmp(s1,s2) != 0)
673#define strEQ(s1,s2) (strcmp(s1,s2) == 0)
8d063cd8
LW
674#define strLT(s1,s2) (strcmp(s1,s2) < 0)
675#define strLE(s1,s2) (strcmp(s1,s2) <= 0)
676#define strGT(s1,s2) (strcmp(s1,s2) > 0)
677#define strGE(s1,s2) (strcmp(s1,s2) >= 0)
62946e08 678
75400963
KW
679#define strnNE(s1,s2,l) (strncmp(s1,s2,l) != 0)
680#define strnEQ(s1,s2,l) (strncmp(s1,s2,l) == 0)
378cc40b 681
9d3980bc
KW
682#define memEQ(s1,s2,l) (memcmp(((const void *) (s1)), ((const void *) (s2)), l) == 0)
683#define memNE(s1,s2,l) (! memEQ(s1,s2,l))
36477c24 684
085b7534 685/* memEQ and memNE where second comparand is a string constant */
568a785a 686#define memEQs(s1, l, s2) \
ca0572d7 687 (((sizeof(s2)-1) == (l)) && memEQ((s1), ASSERT_IS_LITERAL(s2), (sizeof(s2)-1)))
5f50c6c9 688#define memNEs(s1, l, s2) (! memEQs(s1, l, s2))
568a785a 689
fdbb9a7c
KW
690/* Keep these private until we decide it was a good idea */
691#if defined(PERL_CORE) || defined(PERL_EXT) || defined(PERL_EXT_POSIX)
692
ca0572d7 693#define strBEGINs(s1,s2) (strncmp(s1,ASSERT_IS_LITERAL(s2), sizeof(s2)-1) == 0)
fdbb9a7c 694
bdb7e3f0 695#define memBEGINs(s1, l, s2) \
30a6480c 696 ( (Ptrdiff_t) (l) >= (Ptrdiff_t) sizeof(s2) - 1 \
ca0572d7 697 && memEQ(s1, ASSERT_IS_LITERAL(s2), sizeof(s2)-1))
de627158 698#define memBEGINPs(s1, l, s2) \
30a6480c 699 ( (Ptrdiff_t) (l) > (Ptrdiff_t) sizeof(s2) - 1 \
ca0572d7 700 && memEQ(s1, ASSERT_IS_LITERAL(s2), sizeof(s2)-1))
bdb7e3f0 701#define memENDs(s1, l, s2) \
30a6480c 702 ( (Ptrdiff_t) (l) >= (Ptrdiff_t) sizeof(s2) - 1 \
ca0572d7 703 && memEQ(s1 + (l) - (sizeof(s2) - 1), ASSERT_IS_LITERAL(s2), sizeof(s2)-1))
b80f8424 704#define memENDPs(s1, l, s2) \
30a6480c 705 ( (Ptrdiff_t) (l) > (Ptrdiff_t) sizeof(s2) \
ca0572d7 706 && memEQ(s1 + (l) - (sizeof(s2) - 1), ASSERT_IS_LITERAL(s2), sizeof(s2)-1))
fdbb9a7c 707#endif /* End of making macros private */
bdb7e3f0 708
062b6850
KW
709#define memLT(s1,s2,l) (memcmp(s1,s2,l) < 0)
710#define memLE(s1,s2,l) (memcmp(s1,s2,l) <= 0)
711#define memGT(s1,s2,l) (memcmp(s1,s2,l) > 0)
712#define memGE(s1,s2,l) (memcmp(s1,s2,l) >= 0)
713
ca0572d7 714#define memCHRs(s1,c) ((const char *) memchr(ASSERT_IS_LITERAL(s1) , c, sizeof(s1)-1))
4aada8b9 715
bbce6d69 716/*
717 * Character classes.
718 *
719 * Unfortunately, the introduction of locales means that we
720 * can't trust isupper(), etc. to tell the truth. And when
721 * it comes to /\w+/ with tainting enabled, we *must* be able
722 * to trust our character classes.
723 *
81d43abf
KW
724 * Therefore, the default tests in the text of Perl will be independent of
725 * locale. Any code that wants to depend on the current locale will use the
726 * macros that contain _LC in their names
bbce6d69 727 */
728
5bf5e40b 729#ifdef USE_LOCALE_CTYPE
2304df62
AD
730# ifndef CTYPE256
731# define CTYPE256
732# endif
733#endif
734
954c1994 735/*
ccfc67b7 736
dcccc8ff 737=head1 Character classification
243effed
KW
738This section is about functions (really macros) that classify characters
739into types, such as punctuation versus alphabetic, etc. Most of these are
740analogous to regular expression character classes. (See
741L<perlrecharclass/POSIX Character Classes>.) There are several variants for
742each class. (Not all macros have all variants; each item below lists the
743ones valid for it.) None are affected by C<use bytes>, and only the ones
744with C<LC> in the name are affected by the current locale.
745
d713f9d9
KW
746The base function, e.g., C<isALPHA()>, takes any signed or unsigned value,
747treating it as a code point, and returns a boolean as to whether or not the
748character represented by it is (or on non-ASCII platforms, corresponds to) an
6aff1f14
KW
749ASCII character in the named class based on platform, Unicode, and Perl rules.
750If the input is a number that doesn't fit in an octet, FALSE is returned.
243effed 751
c98722a4 752Variant C<isI<FOO>_A> (e.g., C<isALPHA_A()>) is identical to the base function
550da823
KW
753with no suffix C<"_A">. This variant is used to emphasize by its name that
754only ASCII-range characters can return TRUE.
4b9734bf 755
d60679e1 756Variant C<isI<FOO>_L1> imposes the Latin-1 (or EBCDIC equivalent) character set
4b9734bf
KW
757onto the platform. That is, the code points that are ASCII are unaffected,
758since ASCII is a subset of Latin-1. But the non-ASCII code points are treated
759as if they are Latin-1 characters. For example, C<isWORDCHAR_L1()> will return
760true when called with the code point 0xDF, which is a word character in both
4650c663 761ASCII and EBCDIC (though it represents different characters in each).
d713f9d9
KW
762If the input is a number that doesn't fit in an octet, FALSE is returned.
763(Perl's documentation uses a colloquial definition of Latin-1, to include all
764code points below 256.)
243effed 765
d713f9d9
KW
766Variant C<isI<FOO>_uvchr> is exactly like the C<isI<FOO>_L1> variant, for
767inputs below 256, but if the code point is larger than 255, Unicode rules are
768used to determine if it is in the character class. For example,
d0da05db 769C<isWORDCHAR_uvchr(0x100)> returns TRUE, since 0x100 is LATIN CAPITAL LETTER A
6aff1f14 770WITH MACRON in Unicode, and is a word character.
243effed 771
059703b0
KW
772Variants C<isI<FOO>_utf8> and C<isI<FOO>_utf8_safe> are like C<isI<FOO>_uvchr>,
773but are used for UTF-8 encoded strings. The two forms are different names for
774the same thing. Each call to one of these classifies the first character of
775the string starting at C<p>. The second parameter, C<e>, points to anywhere in
776the string beyond the first character, up to one byte past the end of the
777entire string. Although both variants are identical, the suffix C<_safe> in
778one name emphasizes that it will not attempt to read beyond S<C<e - 1>>,
779provided that the constraint S<C<s E<lt> e>> is true (this is asserted for in
780C<-DDEBUGGING> builds). If the UTF-8 for the input character is malformed in
781some way, the program may croak, or the function may return FALSE, at the
782discretion of the implementation, and subject to change in future releases.
243effed 783
d713f9d9
KW
784Variant C<isI<FOO>_LC> is like the C<isI<FOO>_A> and C<isI<FOO>_L1> variants,
785but the result is based on the current locale, which is what C<LC> in the name
786stands for. If Perl can determine that the current locale is a UTF-8 locale,
787it uses the published Unicode rules; otherwise, it uses the C library function
788that gives the named classification. For example, C<isDIGIT_LC()> when not in
789a UTF-8 locale returns the result of calling C<isdigit()>. FALSE is always
1a83413c
KW
790returned if the input won't fit into an octet. On some platforms where the C
791library function is known to be defective, Perl changes its result to follow
792the POSIX standard's rules.
243effed 793
d713f9d9
KW
794Variant C<isI<FOO>_LC_uvchr> acts exactly like C<isI<FOO>_LC> for inputs less
795than 256, but for larger ones it returns the Unicode classification of the code
796point.
243effed 797
059703b0
KW
798Variants C<isI<FOO>_LC_utf8> and C<isI<FOO>_LC_utf8_safe> are like
799C<isI<FOO>_LC_uvchr>, but are used for UTF-8 encoded strings. The two forms
800are different names for the same thing. Each call to one of these classifies
801the first character of the string starting at C<p>. The second parameter,
802C<e>, points to anywhere in the string beyond the first character, up to one
803byte past the end of the entire string. Although both variants are identical,
804the suffix C<_safe> in one name emphasizes that it will not attempt to read
805beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is true (this
806is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the input
807character is malformed in some way, the program may croak, or the function may
808return FALSE, at the discretion of the implementation, and subject to change in
809future releases.
ccfc67b7 810
6fdd32c3
KW
811=for apidoc Am|bool|isALPHA|UV ch
812=for apidoc_item ||isALPHA_A|UV ch
6fdd32c3 813=for apidoc_item ||isALPHA_LC|UV ch
fa470d81 814=for apidoc_item ||isALPHA_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
815=for apidoc_item ||isALPHA_LC_uvchr|UV ch
816=for apidoc_item ||isALPHA_L1|UV ch
817=for apidoc_item ||isALPHA_utf8|U8 * s|U8 * end
818=for apidoc_item ||isALPHA_utf8_safe|U8 * s|U8 * end
819=for apidoc_item ||isALPHA_uvchr|UV ch
d713f9d9
KW
820Returns a boolean indicating whether the specified input is one of C<[A-Za-z]>,
821analogous to C<m/[[:alpha:]]/>.
dcccc8ff 822See the L<top of this section|/Character classification> for an explanation of
fa470d81 823the variants.
8a58bdcf 824
f16858ed
KW
825=cut
826
f1460a66 827Here and below, we add the prototypes of these macros for downstream programs
f16858ed
KW
828that would be interested in them, such as Devel::PPPort
829
6fdd32c3
KW
830=for apidoc Am|bool|isALPHANUMERIC|UV ch
831=for apidoc_item ||isALPHANUMERIC_A|UV ch
6fdd32c3 832=for apidoc_item ||isALPHANUMERIC_LC|UV ch
fa470d81 833=for apidoc_item ||isALPHANUMERIC_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
834=for apidoc_item ||isALPHANUMERIC_LC_uvchr|UV ch
835=for apidoc_item ||isALPHANUMERIC_L1|UV ch
836=for apidoc_item ||isALPHANUMERIC_utf8|U8 * s|U8 * end
837=for apidoc_item ||isALPHANUMERIC_utf8_safe|U8 * s|U8 * end
838=for apidoc_item ||isALPHANUMERIC_uvchr|UV ch
d713f9d9
KW
839Returns a boolean indicating whether the specified character is one of
840C<[A-Za-z0-9]>, analogous to C<m/[[:alnum:]]/>.
dcccc8ff 841See the L<top of this section|/Character classification> for an explanation of
fa470d81 842the variants.
15861f94 843
c1ef4981
KW
844=for apidoc Am|bool|isALNUMC|UV ch
845=for apidoc_item ||isALNUMC_A|UV ch
846=for apidoc_item ||isALNUMC_LC|UV ch
847=for apidoc_item ||isALNUMC_LC_uvchr|UV ch
848=for apidoc_item ||isALNUMC_L1|UV ch
849These are discouraged, backward compatibility macros for L</C<isALPHANUMERIC>>.
850That is, each returns a boolean indicating whether the specified character is
851one of C<[A-Za-z0-9]>, analogous to C<m/[[:alnum:]]/>.
852
853The C<C> suffix in the names was meant to indicate that they correspond to the
854C language L<C<isalnum(3)>>.
255b632a 855
6fdd32c3
KW
856=for apidoc Am|bool|isASCII|UV ch
857=for apidoc_item ||isASCII_A|UV ch
6fdd32c3 858=for apidoc_item ||isASCII_LC|UV ch
fa470d81 859=for apidoc_item ||isASCII_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
860=for apidoc_item ||isASCII_LC_uvchr|UV ch
861=for apidoc_item ||isASCII_L1|UV ch
862=for apidoc_item ||isASCII_utf8|U8 * s|U8 * end
863=for apidoc_item ||isASCII_utf8_safe|U8 * s|U8 * end
864=for apidoc_item ||isASCII_uvchr|UV ch
8a58bdcf 865Returns a boolean indicating whether the specified character is one of the 128
243effed 866characters in the ASCII character set, analogous to C<m/[[:ascii:]]/>.
e5ad6aba 867On non-ASCII platforms, it returns TRUE iff this
8a58bdcf
KW
868character corresponds to an ASCII character. Variants C<isASCII_A()> and
869C<isASCII_L1()> are identical to C<isASCII()>.
dcccc8ff 870See the L<top of this section|/Character classification> for an explanation of
fa470d81 871the variants.
059703b0
KW
872Note, however, that some platforms do not have the C library routine
873C<isascii()>. In these cases, the variants whose names contain C<LC> are the
874same as the corresponding ones without.
243effed 875
d98532ea
KW
876Also note, that because all ASCII characters are UTF-8 invariant (meaning they
877have the exact same representation (always a single byte) whether encoded in
878UTF-8 or not), C<isASCII> will give the correct results when called with any
059703b0
KW
879byte in any string encoded or not in UTF-8. And similarly C<isASCII_utf8> and
880C<isASCII_utf8_safe> will work properly on any string encoded or not in UTF-8.
d98532ea 881
6fdd32c3
KW
882=for apidoc Am|bool|isBLANK|UV ch
883=for apidoc_item ||isBLANK_A|UV ch
6fdd32c3 884=for apidoc_item ||isBLANK_LC|UV ch
fa470d81 885=for apidoc_item ||isBLANK_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
886=for apidoc_item ||isBLANK_LC_uvchr|UV ch
887=for apidoc_item ||isBLANK_L1|UV ch
888=for apidoc_item ||isBLANK_utf8|U8 * s|U8 * end
889=for apidoc_item ||isBLANK_utf8_safe|U8 * s|U8 * end
890=for apidoc_item ||isBLANK_uvchr|UV ch
243effed 891Returns a boolean indicating whether the specified character is a
6aff1f14 892character considered to be a blank, analogous to C<m/[[:blank:]]/>.
dcccc8ff 893See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
894the variants.
895Note,
da8c1a98
KW
896however, that some platforms do not have the C library routine
897C<isblank()>. In these cases, the variants whose names contain C<LC> are
898the same as the corresponding ones without.
243effed 899
6fdd32c3
KW
900=for apidoc Am|bool|isCNTRL|UV ch
901=for apidoc_item ||isCNTRL_A|UV ch
6fdd32c3 902=for apidoc_item ||isCNTRL_LC|UV ch
fa470d81 903=for apidoc_item ||isCNTRL_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
904=for apidoc_item ||isCNTRL_LC_uvchr|UV ch
905=for apidoc_item ||isCNTRL_L1|UV ch
906=for apidoc_item ||isCNTRL_utf8|U8 * s|U8 * end
907=for apidoc_item ||isCNTRL_utf8_safe|U8 * s|U8 * end
908=for apidoc_item ||isCNTRL_uvchr|UV ch
f16858ed 909
243effed 910Returns a boolean indicating whether the specified character is a
6aff1f14 911control character, analogous to C<m/[[:cntrl:]]/>.
dcccc8ff 912See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
913the variants.
914On EBCDIC platforms, you almost always want to use the C<isCNTRL_L1> variant.
915
6fdd32c3
KW
916=for apidoc Am|bool|isDIGIT|UV ch
917=for apidoc_item ||isDIGIT_A|UV ch
6fdd32c3 918=for apidoc_item ||isDIGIT_LC|UV ch
fa470d81 919=for apidoc_item ||isDIGIT_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
920=for apidoc_item ||isDIGIT_LC_uvchr|UV ch
921=for apidoc_item ||isDIGIT_L1|UV ch
922=for apidoc_item ||isDIGIT_utf8|U8 * s|U8 * end
923=for apidoc_item ||isDIGIT_utf8_safe|U8 * s|U8 * end
924=for apidoc_item ||isDIGIT_uvchr|UV ch
fa470d81 925
2787a470 926Returns a boolean indicating whether the specified character is a
6aff1f14 927digit, analogous to C<m/[[:digit:]]/>.
8a58bdcf 928Variants C<isDIGIT_A> and C<isDIGIT_L1> are identical to C<isDIGIT>.
dcccc8ff 929See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
930the variants.
931
6fdd32c3
KW
932=for apidoc Am|bool|isGRAPH|UV ch
933=for apidoc_item ||isGRAPH_A|UV ch
6fdd32c3 934=for apidoc_item ||isGRAPH_LC|UV ch
fa470d81 935=for apidoc_item ||isGRAPH_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
936=for apidoc_item ||isGRAPH_LC_uvchr|UV ch
937=for apidoc_item ||isGRAPH_L1|UV ch
938=for apidoc_item ||isGRAPH_utf8|U8 * s|U8 * end
939=for apidoc_item ||isGRAPH_utf8_safe|U8 * s|U8 * end
940=for apidoc_item ||isGRAPH_uvchr|UV ch
243effed 941Returns a boolean indicating whether the specified character is a
6aff1f14 942graphic character, analogous to C<m/[[:graph:]]/>.
dcccc8ff 943See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
944the variants.
945
6fdd32c3
KW
946=for apidoc Am|bool|isLOWER|UV ch
947=for apidoc_item ||isLOWER_A|UV ch
6fdd32c3 948=for apidoc_item ||isLOWER_LC|UV ch
fa470d81 949=for apidoc_item ||isLOWER_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
950=for apidoc_item ||isLOWER_LC_uvchr|UV ch
951=for apidoc_item ||isLOWER_L1|UV ch
952=for apidoc_item ||isLOWER_utf8|U8 * s|U8 * end
953=for apidoc_item ||isLOWER_utf8_safe|U8 * s|U8 * end
954=for apidoc_item ||isLOWER_uvchr|UV ch
2787a470 955Returns a boolean indicating whether the specified character is a
6aff1f14 956lowercase character, analogous to C<m/[[:lower:]]/>.
dcccc8ff 957See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
958the variants
959
6fdd32c3
KW
960=for apidoc Am|bool|isOCTAL|UV ch
961=for apidoc_item ||isOCTAL_A|UV ch
962=for apidoc_item ||isOCTAL_L1|UV ch
2787a470 963Returns a boolean indicating whether the specified character is an
6aff1f14 964octal digit, [0-7].
243effed
KW
965The only two variants are C<isOCTAL_A> and C<isOCTAL_L1>; each is identical to
966C<isOCTAL>.
967
6fdd32c3
KW
968=for apidoc Am|bool|isPUNCT|UV ch
969=for apidoc_item ||isPUNCT_A|UV ch
6fdd32c3 970=for apidoc_item ||isPUNCT_LC|UV ch
fa470d81 971=for apidoc_item ||isPUNCT_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
972=for apidoc_item ||isPUNCT_LC_uvchr|UV ch
973=for apidoc_item ||isPUNCT_L1|UV ch
974=for apidoc_item ||isPUNCT_utf8|U8 * s|U8 * end
975=for apidoc_item ||isPUNCT_utf8_safe|U8 * s|U8 * end
976=for apidoc_item ||isPUNCT_uvchr|UV ch
243effed 977Returns a boolean indicating whether the specified character is a
6aff1f14
KW
978punctuation character, analogous to C<m/[[:punct:]]/>.
979Note that the definition of what is punctuation isn't as
243effed
KW
980straightforward as one might desire. See L<perlrecharclass/POSIX Character
981Classes> for details.
dcccc8ff 982See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
983the variants.
984
6fdd32c3
KW
985=for apidoc Am|bool|isSPACE|UV ch
986=for apidoc_item ||isSPACE_A|UV ch
6fdd32c3 987=for apidoc_item ||isSPACE_LC|UV ch
fa470d81 988=for apidoc_item ||isSPACE_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
989=for apidoc_item ||isSPACE_LC_uvchr|UV ch
990=for apidoc_item ||isSPACE_L1|UV ch
991=for apidoc_item ||isSPACE_utf8|U8 * s|U8 * end
992=for apidoc_item ||isSPACE_utf8_safe|U8 * s|U8 * end
993=for apidoc_item ||isSPACE_uvchr|UV ch
2787a470 994Returns a boolean indicating whether the specified character is a
6aff1f14 995whitespace character. This is analogous
398d098a 996to what C<m/\s/> matches in a regular expression. Starting in Perl 5.18
779cf272 997this also matches what C<m/[[:space:]]/> does. Prior to 5.18, only the
398d098a
KW
998locale forms of this macro (the ones with C<LC> in their names) matched
999precisely what C<m/[[:space:]]/> does. In those releases, the only difference,
1000in the non-locale variants, was that C<isSPACE()> did not match a vertical tab.
1001(See L</isPSXSPC> for a macro that matches a vertical tab in all releases.)
dcccc8ff 1002See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1003the variants.
1004
6fdd32c3
KW
1005=for apidoc Am|bool|isPSXSPC|UV ch
1006=for apidoc_item ||isPSXSPC_A|UV ch
6fdd32c3 1007=for apidoc_item ||isPSXSPC_LC|UV ch
fa470d81 1008=for apidoc_item ||isPSXSPC_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1009=for apidoc_item ||isPSXSPC_LC_uvchr|UV ch
1010=for apidoc_item ||isPSXSPC_L1|UV ch
1011=for apidoc_item ||isPSXSPC_utf8|U8 * s|U8 * end
1012=for apidoc_item ||isPSXSPC_utf8_safe|U8 * s|U8 * end
1013=for apidoc_item ||isPSXSPC_uvchr|UV ch
398d098a 1014(short for Posix Space)
779cf272
KW
1015Starting in 5.18, this is identical in all its forms to the
1016corresponding C<isSPACE()> macros.
398d098a
KW
1017The locale forms of this macro are identical to their corresponding
1018C<isSPACE()> forms in all Perl releases. In releases prior to 5.18, the
1019non-locale forms differ from their C<isSPACE()> forms only in that the
1020C<isSPACE()> forms don't match a Vertical Tab, and the C<isPSXSPC()> forms do.
1021Otherwise they are identical. Thus this macro is analogous to what
1022C<m/[[:space:]]/> matches in a regular expression.
dcccc8ff 1023See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1024the variants.
1025
6fdd32c3
KW
1026=for apidoc Am|bool|isUPPER|UV ch
1027=for apidoc_item ||isUPPER_A|UV ch
6fdd32c3 1028=for apidoc_item ||isUPPER_LC|UV ch
fa470d81 1029=for apidoc_item ||isUPPER_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1030=for apidoc_item ||isUPPER_LC_uvchr|UV ch
1031=for apidoc_item ||isUPPER_L1|UV ch
1032=for apidoc_item ||isUPPER_utf8|U8 * s|U8 * end
1033=for apidoc_item ||isUPPER_utf8_safe|U8 * s|U8 * end
1034=for apidoc_item ||isUPPER_uvchr|UV ch
2787a470 1035Returns a boolean indicating whether the specified character is an
6aff1f14 1036uppercase character, analogous to C<m/[[:upper:]]/>.
dcccc8ff 1037See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1038the variants.
1039
6fdd32c3
KW
1040=for apidoc Am|bool|isPRINT|UV ch
1041=for apidoc_item ||isPRINT_A|UV ch
6fdd32c3 1042=for apidoc_item ||isPRINT_LC|UV ch
fa470d81 1043=for apidoc_item ||isPRINT_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1044=for apidoc_item ||isPRINT_LC_uvchr|UV ch
1045=for apidoc_item ||isPRINT_L1|UV ch
1046=for apidoc_item ||isPRINT_utf8|U8 * s|U8 * end
1047=for apidoc_item ||isPRINT_utf8_safe|U8 * s|U8 * end
1048=for apidoc_item ||isPRINT_uvchr|UV ch
8eea39dd 1049Returns a boolean indicating whether the specified character is a
6aff1f14 1050printable character, analogous to C<m/[[:print:]]/>.
dcccc8ff 1051See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1052the variants.
1053
6fdd32c3
KW
1054=for apidoc Am|bool|isWORDCHAR|UV ch
1055=for apidoc_item ||isWORDCHAR_A|UV ch
6fdd32c3 1056=for apidoc_item ||isWORDCHAR_LC|UV ch
fa470d81 1057=for apidoc_item ||isWORDCHAR_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1058=for apidoc_item ||isWORDCHAR_LC_uvchr|UV ch
1059=for apidoc_item ||isWORDCHAR_L1|UV ch
1060=for apidoc_item ||isWORDCHAR_utf8|U8 * s|U8 * end
1061=for apidoc_item ||isWORDCHAR_utf8_safe|U8 * s|U8 * end
1062=for apidoc_item ||isWORDCHAR_uvchr|UV ch
243effed
KW
1063Returns a boolean indicating whether the specified character is a character
1064that is a word character, analogous to what C<m/\w/> and C<m/[[:word:]]/> match
1065in a regular expression. A word character is an alphabetic character, a
1066decimal digit, a connecting punctuation character (such as an underscore), or
1067a "mark" character that attaches to one of those (like some sort of accent).
c1ef4981 1068
dcccc8ff 1069See the L<top of this section|/Character classification> for an explanation of
fa470d81 1070the variants.
1607e393 1071
fa470d81
KW
1072C<isWORDCHAR_A>, C<isWORDCHAR_L1>, C<isWORDCHAR_uvchr>,
1073C<isWORDCHAR_LC>, C<isWORDCHAR_LC_uvchr>, C<isWORDCHAR_LC_utf8>, and
1074C<isWORDCHAR_LC_utf8_safe> are also as described there, but additionally
1075include the platform's native underscore.
1076
c1ef4981
KW
1077=for apidoc Am|bool|isALNUM |UV ch
1078=for apidoc_item ||isALNUM_A |UV ch
1079=for apidoc_item ||isALNUM_LC |UV ch
1080=for apidoc_item ||isALNUM_LC_uvchr|UV ch
1081These are each a synonym for their respectively named L</C<isWORDCHAR>>
1082variant.
1083
1084They are provided for backward compatibility, even though a word character
1085includes more than the standard C language meaning of alphanumeric.
1086To get the C language definition, use the corresponding L</C<isALPHANUMERIC>>
1087variant.
1088
6fdd32c3
KW
1089=for apidoc Am|bool|isXDIGIT|UV ch
1090=for apidoc_item ||isXDIGIT_A|UV ch
6fdd32c3 1091=for apidoc_item ||isXDIGIT_LC|UV ch
fa470d81 1092=for apidoc_item ||isXDIGIT_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1093=for apidoc_item ||isXDIGIT_LC_uvchr|UV ch
1094=for apidoc_item ||isXDIGIT_L1|UV ch
1095=for apidoc_item ||isXDIGIT_utf8|U8 * s|U8 * end
1096=for apidoc_item ||isXDIGIT_utf8_safe|U8 * s|U8 * end
1097=for apidoc_item ||isXDIGIT_uvchr|UV ch
8a58bdcf 1098Returns a boolean indicating whether the specified character is a hexadecimal
243effed
KW
1099digit. In the ASCII range these are C<[0-9A-Fa-f]>. Variants C<isXDIGIT_A()>
1100and C<isXDIGIT_L1()> are identical to C<isXDIGIT()>.
dcccc8ff 1101See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1102the variants.
1103
6fdd32c3
KW
1104=for apidoc Am|bool|isIDFIRST|UV ch
1105=for apidoc_item ||isIDFIRST_A|UV ch
6fdd32c3 1106=for apidoc_item ||isIDFIRST_LC|UV ch
fa470d81 1107=for apidoc_item ||isIDFIRST_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1108=for apidoc_item ||isIDFIRST_LC_uvchr|UV ch
1109=for apidoc_item ||isIDFIRST_L1|UV ch
1110=for apidoc_item ||isIDFIRST_utf8|U8 * s|U8 * end
1111=for apidoc_item ||isIDFIRST_utf8_safe|U8 * s|U8 * end
1112=for apidoc_item ||isIDFIRST_uvchr|UV ch
3c3ecf18
KW
1113Returns a boolean indicating whether the specified character can be the first
1114character of an identifier. This is very close to, but not quite the same as
1115the official Unicode property C<XID_Start>. The difference is that this
1116returns true only if the input character also matches L</isWORDCHAR>.
dcccc8ff 1117See the L<top of this section|/Character classification> for an explanation of
fa470d81
KW
1118the variants.
1119
6fdd32c3
KW
1120=for apidoc Am|bool|isIDCONT|UV ch
1121=for apidoc_item ||isIDCONT_A|UV ch
6fdd32c3 1122=for apidoc_item ||isIDCONT_LC|UV ch
fa470d81 1123=for apidoc_item ||isIDCONT_LC_utf8_safe|U8 * s| U8 *end
1607e393
KW
1124=for apidoc_item ||isIDCONT_LC_uvchr|UV ch
1125=for apidoc_item ||isIDCONT_L1|UV ch
1126=for apidoc_item ||isIDCONT_utf8|U8 * s|U8 * end
1127=for apidoc_item ||isIDCONT_utf8_safe|U8 * s|U8 * end
1128=for apidoc_item ||isIDCONT_uvchr|UV ch
3c3ecf18
KW
1129Returns a boolean indicating whether the specified character can be the
1130second or succeeding character of an identifier. This is very close to, but
1131not quite the same as the official Unicode property C<XID_Continue>. The
1132difference is that this returns true only if the input character also matches
dcccc8ff 1133L</isWORDCHAR>. See the L<top of this section|/Character classification> for
fa470d81 1134an explanation of the variants.
f16858ed 1135
3f620621 1136=for apidoc_section $numeric
8eea39dd 1137
95a59cab 1138=for apidoc Am|U8|READ_XDIGIT|char str*
243effed 1139Returns the value of an ASCII-range hex digit and advances the string pointer.
95a59cab
YO
1140Behaviour is only well defined when isXDIGIT(*str) is true.
1141
e7c1e6c1 1142=head1 Character case changing
21da7284
KW
1143Perl uses "full" Unicode case mappings. This means that converting a single
1144character to another case may result in a sequence of more than one character.
1145For example, the uppercase of C<E<223>> (LATIN SMALL LETTER SHARP S) is the two
1146character sequence C<SS>. This presents some complications The lowercase of
1147all characters in the range 0..255 is a single character, and thus
1148C<L</toLOWER_L1>> is furnished. But, C<toUPPER_L1> can't exist, as it couldn't
1149return a valid result for all legal inputs. Instead C<L</toUPPER_uvchr>> has
1150an API that does allow every possible legal result to be returned.) Likewise
1151no other function that is crippled by not being able to give the correct
1152results for the full range of possible inputs has been implemented here.
e7c1e6c1 1153
45d6cb5e
KW
1154=for apidoc Am|UV|toUPPER|UV cp
1155=for apidoc_item |UV|toUPPER_A|UV cp
45d6cb5e
KW
1156=for apidoc_item |UV|toUPPER_utf8|U8* p|U8* e|U8* s|STRLEN* lenp
1157=for apidoc_item |UV|toUPPER_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
1607e393 1158=for apidoc_item |UV|toUPPER_uvchr|UV cp|U8* s|STRLEN* lenp
45d6cb5e
KW
1159
1160These all return the uppercase of a character. The differences are what domain
1161they operate on, and whether the input is specified as a code point (those
1162forms with a C<cp> parameter) or as a UTF-8 string (the others). In the latter
1163case, the code point to use is the first one in the buffer of UTF-8 encoded
1164code points, delineated by the arguments S<C<p .. e - 1>>.
1165
1166C<toUPPER> and C<toUPPER_A> are synonyms of each other. They return the
1167uppercase of any lowercase ASCII-range code point. All other inputs are
1168returned unchanged. Since these are macros, the input type may be any integral
1169one, and the output will occupy the same number of bits as the input.
1170
1171There is no C<toUPPER_L1> nor C<toUPPER_LATIN1> as the uppercase of some code
1172points in the 0..255 range is above that range or consists of multiple
1173characters. Instead use C<toUPPER_uvchr>.
1174
1175C<toUPPER_uvchr> returns the uppercase of any Unicode code point. The return
1176value is identical to that of C<toUPPER_A> for input code points in the ASCII
1177range. The uppercase of the vast majority of Unicode code points is the same
1178as the code point itself. For these, and for code points above the legal
1179Unicode maximum, this returns the input code point unchanged. It additionally
1180stores the UTF-8 of the result into the buffer beginning at C<s>, and its
1181length in bytes into C<*lenp>. The caller must have made C<s> large enough to
1182contain at least C<UTF8_MAXBYTES_CASE+1> bytes to avoid possible overflow.
1183
1184NOTE: the uppercase of a code point may be more than one code point. The
1185return value of this function is only the first of these. The entire uppercase
1186is returned in C<s>. To determine if the result is more than a single code
1187point, you can do something like this:
1188
1189 uc = toUPPER_uvchr(cp, s, &len);
1190 if (len > UTF8SKIP(s)) { is multiple code points }
1191 else { is a single code point }
1192
1193C<toUPPER_utf8> and C<toUPPER_utf8_safe> are synonyms of each other. The only
1194difference between these and C<toUPPER_uvchr> is that the source for these is
1195encoded in UTF-8, instead of being a code point. It is passed as a buffer
1196starting at C<p>, with C<e> pointing to one byte beyond its end. The C<p>
1197buffer may certainly contain more than one code point; but only the first one
1198(up through S<C<e - 1>>) is examined. If the UTF-8 for the input character is
1199malformed in some way, the program may croak, or the function may return the
1200REPLACEMENT CHARACTER, at the discretion of the implementation, and subject to
1201change in future releases.
1202
1203=for apidoc Am|UV|toFOLD|UV cp
1204=for apidoc_item |UV|toFOLD_A|UV cp
45d6cb5e
KW
1205=for apidoc_item |UV|toFOLD_utf8|U8* p|U8* e|U8* s|STRLEN* lenp
1206=for apidoc_item |UV|toFOLD_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
1607e393 1207=for apidoc_item |UV|toFOLD_uvchr|UV cp|U8* s|STRLEN* lenp
45d6cb5e
KW
1208
1209These all return the foldcase of a character. "foldcase" is an internal case
1210for C</i> pattern matching. If the foldcase of character A and the foldcase of
1211character B are the same, they match caselessly; otherwise they don't.
1212
1213The differences in the forms are what domain they operate on, and whether the
1214input is specified as a code point (those forms with a C<cp> parameter) or as a
1215UTF-8 string (the others). In the latter case, the code point to use is the
1216first one in the buffer of UTF-8 encoded code points, delineated by the
1217arguments S<C<p .. e - 1>>.
1218
1219C<toFOLD> and C<toFOLD_A> are synonyms of each other. They return the
1220foldcase of any ASCII-range code point. In this range, the foldcase is
1221identical to the lowercase. All other inputs are returned unchanged. Since
1222these are macros, the input type may be any integral one, and the output will
1223occupy the same number of bits as the input.
1224
1225There is no C<toFOLD_L1> nor C<toFOLD_LATIN1> as the foldcase of some code
1226points in the 0..255 range is above that range or consists of multiple
1227characters. Instead use C<toFOLD_uvchr>.
1228
1229C<toFOLD_uvchr> returns the foldcase of any Unicode code point. The return
1230value is identical to that of C<toFOLD_A> for input code points in the ASCII
1231range. The foldcase of the vast majority of Unicode code points is the same
1232as the code point itself. For these, and for code points above the legal
1233Unicode maximum, this returns the input code point unchanged. It additionally
1234stores the UTF-8 of the result into the buffer beginning at C<s>, and its
1235length in bytes into C<*lenp>. The caller must have made C<s> large enough to
1236contain at least C<UTF8_MAXBYTES_CASE+1> bytes to avoid possible overflow.
1237
1238NOTE: the foldcase of a code point may be more than one code point. The
1239return value of this function is only the first of these. The entire foldcase
1240is returned in C<s>. To determine if the result is more than a single code
1241point, you can do something like this:
1242
1243 uc = toFOLD_uvchr(cp, s, &len);
1244 if (len > UTF8SKIP(s)) { is multiple code points }
1245 else { is a single code point }
1246
1247C<toFOLD_utf8> and C<toFOLD_utf8_safe> are synonyms of each other. The only
1248difference between these and C<toFOLD_uvchr> is that the source for these is
1249encoded in UTF-8, instead of being a code point. It is passed as a buffer
1250starting at C<p>, with C<e> pointing to one byte beyond its end. The C<p>
1251buffer may certainly contain more than one code point; but only the first one
1252(up through S<C<e - 1>>) is examined. If the UTF-8 for the input character is
1253malformed in some way, the program may croak, or the function may return the
1254REPLACEMENT CHARACTER, at the discretion of the implementation, and subject to
1255change in future releases.
1f607577 1256
3cb048e5
KW
1257=for apidoc Am|UV|toLOWER|UV cp
1258=for apidoc_item |UV|toLOWER_A|UV cp
3cb048e5
KW
1259=for apidoc_item |UV|toLOWER_LATIN1|UV cp
1260=for apidoc_item |UV|toLOWER_LC|UV cp
1607e393 1261=for apidoc_item |UV|toLOWER_L1|UV cp
3cb048e5
KW
1262=for apidoc_item |UV|toLOWER_utf8|U8* p|U8* e|U8* s|STRLEN* lenp
1263=for apidoc_item |UV|toLOWER_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
1607e393 1264=for apidoc_item |UV|toLOWER_uvchr|UV cp|U8* s|STRLEN* lenp
3cb048e5
KW
1265
1266These all return the lowercase of a character. The differences are what domain
1267they operate on, and whether the input is specified as a code point (those
1268forms with a C<cp> parameter) or as a UTF-8 string (the others). In the latter
1269case, the code point to use is the first one in the buffer of UTF-8 encoded
1270code points, delineated by the arguments S<C<p .. e - 1>>.
1271
1272C<toLOWER> and C<toLOWER_A> are synonyms of each other. They return the
1273lowercase of any uppercase ASCII-range code point. All other inputs are
1274returned unchanged. Since these are macros, the input type may be any integral
1275one, and the output will occupy the same number of bits as the input.
1276
1277C<toLOWER_L1> and C<toLOWER_LATIN1> are synonyms of each other. They behave
1278identically as C<toLOWER> for ASCII-range input. But additionally will return
1279the lowercase of any uppercase code point in the entire 0..255 range, assuming
1280a Latin-1 encoding (or the EBCDIC equivalent on such platforms).
1281
1282C<toLOWER_LC> returns the lowercase of the input code point according to the
1283rules of the current POSIX locale. Input code points outside the range 0..255
1284are returned unchanged.
1285
1286C<toLOWER_uvchr> returns the lowercase of any Unicode code point. The return
1287value is identical to that of C<toLOWER_L1> for input code points in the 0..255
1288range. The lowercase of the vast majority of Unicode code points is the same
1289as the code point itself. For these, and for code points above the legal
1290Unicode maximum, this returns the input code point unchanged. It additionally
1291stores the UTF-8 of the result into the buffer beginning at C<s>, and its
1292length in bytes into C<*lenp>. The caller must have made C<s> large enough to
1293contain at least C<UTF8_MAXBYTES_CASE+1> bytes to avoid possible overflow.
1294
1295NOTE: the lowercase of a code point may be more than one code point. The
1296return value of this function is only the first of these. The entire lowercase
1297is returned in C<s>. To determine if the result is more than a single code
1298point, you can do something like this:
1299
1300 uc = toLOWER_uvchr(cp, s, &len);
1301 if (len > UTF8SKIP(s)) { is multiple code points }
1302 else { is a single code point }
1303
1304C<toLOWER_utf8> and C<toLOWER_utf8_safe> are synonyms of each other. The only
1305difference between these and C<toLOWER_uvchr> is that the source for these is
1306encoded in UTF-8, instead of being a code point. It is passed as a buffer
1307starting at C<p>, with C<e> pointing to one byte beyond its end. The C<p>
1308buffer may certainly contain more than one code point; but only the first one
1309(up through S<C<e - 1>>) is examined. If the UTF-8 for the input character is
1310malformed in some way, the program may croak, or the function may return the
1311REPLACEMENT CHARACTER, at the discretion of the implementation, and subject to
1312change in future releases.
1f607577 1313
45d6cb5e
KW
1314=for apidoc Am|UV|toTITLE|UV cp
1315=for apidoc_item |UV|toTITLE_A|UV cp
45d6cb5e
KW
1316=for apidoc_item |UV|toTITLE_utf8|U8* p|U8* e|U8* s|STRLEN* lenp
1317=for apidoc_item |UV|toTITLE_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
1607e393 1318=for apidoc_item |UV|toTITLE_uvchr|UV cp|U8* s|STRLEN* lenp
45d6cb5e
KW
1319
1320These all return the titlecase of a character. The differences are what domain
1321they operate on, and whether the input is specified as a code point (those
1322forms with a C<cp> parameter) or as a UTF-8 string (the others). In the latter
1323case, the code point to use is the first one in the buffer of UTF-8 encoded
1324code points, delineated by the arguments S<C<p .. e - 1>>.
1325
1326C<toTITLE> and C<toTITLE_A> are synonyms of each other. They return the
1327titlecase of any lowercase ASCII-range code point. In this range, the
1328titlecase is identical to the uppercase. All other inputs are returned
1329unchanged. Since these are macros, the input type may be any integral one, and
1330the output will occupy the same number of bits as the input.
1331
1332There is no C<toTITLE_L1> nor C<toTITLE_LATIN1> as the titlecase of some code
1333points in the 0..255 range is above that range or consists of multiple
1334characters. Instead use C<toTITLE_uvchr>.
1335
1336C<toTITLE_uvchr> returns the titlecase of any Unicode code point. The return
1337value is identical to that of C<toTITLE_A> for input code points in the ASCII
1338range. The titlecase of the vast majority of Unicode code points is the same
1339as the code point itself. For these, and for code points above the legal
1340Unicode maximum, this returns the input code point unchanged. It additionally
1341stores the UTF-8 of the result into the buffer beginning at C<s>, and its
1342length in bytes into C<*lenp>. The caller must have made C<s> large enough to
1343contain at least C<UTF8_MAXBYTES_CASE+1> bytes to avoid possible overflow.
1344
1345NOTE: the titlecase of a code point may be more than one code point. The
1346return value of this function is only the first of these. The entire titlecase
1347is returned in C<s>. To determine if the result is more than a single code
1348point, you can do something like this:
1349
1350 uc = toTITLE_uvchr(cp, s, &len);
1351 if (len > UTF8SKIP(s)) { is multiple code points }
1352 else { is a single code point }
1353
1354C<toTITLE_utf8> and C<toTITLE_utf8_safe> are synonyms of each other. The only
1355difference between these and C<toTITLE_uvchr> is that the source for these is
1356encoded in UTF-8, instead of being a code point. It is passed as a buffer
1357starting at C<p>, with C<e> pointing to one byte beyond its end. The C<p>
1358buffer may certainly contain more than one code point; but only the first one
1359(up through S<C<e - 1>>) is examined. If the UTF-8 for the input character is
1360malformed in some way, the program may croak, or the function may return the
1361REPLACEMENT CHARACTER, at the discretion of the implementation, and subject to
1362change in future releases.
1f607577 1363
954c1994 1364=cut
353c9b6f 1365
d0da05db 1366XXX Still undocumented isVERTWS_uvchr and _utf8; it's unclear what their names
1e222e4f
KW
1367really should be. Also toUPPER_LC and toFOLD_LC, which are subject to change,
1368and aren't general purpose as they don't work on U+DF, and assert against that.
8fd8ea43 1369and isCASED_LC, as it really is more of an internal thing.
243effed 1370
8a58bdcf 1371Note that these macros are repeated in Devel::PPPort, so should also be
62fa66b6
KW
1372patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
1373
954c1994
GS
1374*/
1375
8f5283f4
KW
1376/*
1377 void below because that's the best fit, and works for Devel::PPPort
3f620621 1378=for apidoc_section $integer
545bca17 1379=for apidoc AyT||WIDEST_UTYPE
8f5283f4
KW
1380
1381Yields the widest unsigned integer type on the platform, currently either
326c768d 1382C<U32> or C<U64>. This can be used in declarations such as
8f5283f4
KW
1383
1384 WIDEST_UTYPE my_uv;
1385
1386or casts
1387
1388 my_uv = (WIDEST_UTYPE) val;
1389
1390=cut
1391
1392*/
bbe73871 1393#define WIDEST_UTYPE PERL_UINTMAX_T
7c062697 1394
de40ad3f
KW
1395/* Where there could be some confusion, use this as a static assert in macros
1396 * to make sure that a parameter isn't a pointer. But some compilers can't
1397 * handle this. The only one known so far that doesn't is gcc 3.3.6; the check
1398 * below isn't thorough for such an old compiler, so may have to be revised if
1399 * experience so dictates. */
1400#if ! PERL_IS_GCC || PERL_GCC_VERSION_GT(3,3,6)
1401# define ASSERT_NOT_PTR(x) ((x) | 0)
1402#else
1403# define ASSERT_NOT_PTR(x) (x)
1404#endif
296969d3 1405
08e4e7bf 1406/* Likewise, this is effectively a static assert to be used to guarantee the
43131e10
KW
1407 * parameter is a pointer
1408 *
1409 * NOT suitable for void*
1410 */
08e4e7bf
KW
1411#define ASSERT_IS_PTR(x) (__ASSERT_(sizeof(*(x))) (x))
1412
3912bc88
KW
1413/* FITS_IN_8_BITS(c) returns true if c doesn't have a bit set other than in
1414 * the lower 8. It is designed to be hopefully bomb-proof, making sure that no
1415 * bits of information are lost even on a 64-bit machine, but to get the
1416 * compiler to optimize it out if possible. This is because Configure makes
1417 * sure that the machine has an 8-bit byte, so if c is stored in a byte, the
1418 * sizeof() guarantees that this evaluates to a constant true at compile time.
7e75d1a1
JH
1419 *
1420 * For Coverity, be always true, because otherwise Coverity thinks
1421 * it finds several expressions that are always true, independent
1422 * of operands. Well, they are, but that is kind of the point.
220c71bf 1423 */
7e75d1a1 1424#ifndef __COVERITY__
231a6d16
KW
1425 /* The '| 0' part in ASSERT_NOT_PTR ensures a compiler error if c is not
1426 * integer (like e.g., a pointer) */
1427# define FITS_IN_8_BITS(c) ( (sizeof(c) == 1) \
1428 || (((WIDEST_UTYPE) ASSERT_NOT_PTR(c)) >> 8) == 0)
7e75d1a1 1429#else
9555181b 1430# define FITS_IN_8_BITS(c) (1)
7e75d1a1 1431#endif
cf301eb7 1432
45f4bb73 1433/* Returns true if l <= c <= (l + n), where 'l' and 'n' are non-negative
833b0f46 1434 * Written this way so that after optimization, only one conditional test is
76d3ad4c
KW
1435 * needed. (The NV casts stop any warnings about comparison always being true
1436 * if called with an unsigned. The cast preserves the sign, which is all we
1437 * care about.) */
92a0bb24
KW
1438#define withinCOUNT(c, l, n) (__ASSERT_((NV) (l) >= 0) \
1439 __ASSERT_((NV) (n) >= 0) \
1440 withinCOUNT_KNOWN_VALID_((c), (l), (n)))
1441
1442/* For internal use only, this can be used in places where it is known that the
1443 * parameters to withinCOUNT() are valid, to avoid the asserts. For example,
1444 * inRANGE() below, calls this several times, but does all the necessary
1445 * asserts itself, once. The reason that this is necessary is that the
1446 * duplicate asserts were exceeding the internal limits of some compilers */
1447#define withinCOUNT_KNOWN_VALID_(c, l, n) \
296969d3
KW
1448 ((((WIDEST_UTYPE) (c)) - ASSERT_NOT_PTR(l)) \
1449 <= ((WIDEST_UTYPE) ASSERT_NOT_PTR(n)))
833b0f46 1450
94250c4f
KW
1451/* Returns true if c is in the range l..u, where 'l' is non-negative
1452 * Written this way so that after optimization, only one conditional test is
4758c20d 1453 * needed. */
92a0bb24
KW
1454#define inRANGE(c, l, u) (__ASSERT_((NV) (l) >= 0) __ASSERT_((u) >= (l)) \
1455 ( (sizeof(c) == sizeof(U8)) ? inRANGE_helper_(U8, (c), (l), ((u))) \
1442da54 1456 : (sizeof(c) == sizeof(U16)) ? inRANGE_helper_(U16,(c), (l), ((u))) \
92a0bb24
KW
1457 : (sizeof(c) == sizeof(U32)) ? inRANGE_helper_(U32,(c), (l), ((u))) \
1458 : (__ASSERT_(sizeof(c) == sizeof(WIDEST_UTYPE)) \
1459 inRANGE_helper_(WIDEST_UTYPE,(c), (l), ((u))))))
1460
1461/* For internal use, this is used by machine-generated code which generates
1462 * known valid calls, with a known sizeof(). This avoids the extra code and
1463 * asserts that were exceeding internal limits of some compilers. */
1464#define inRANGE_helper_(cast, c, l, u) \
1465 withinCOUNT_KNOWN_VALID_(((cast) (c)), (l), ((u) - (l)))
305fe86e 1466
41f43cc2 1467#ifdef EBCDIC
b6340bd0 1468# ifndef _ALL_SOURCE
0852beac
KW
1469 /* The native libc isascii() et.al. functions return the wrong results
1470 * on at least z/OS unless this is defined. */
b6340bd0
KW
1471# error _ALL_SOURCE should probably be defined
1472# endif
41f43cc2 1473#else
0852beac
KW
1474 /* There is a simple definition of ASCII for ASCII platforms. But the
1475 * EBCDIC one isn't so simple, so is defined using table look-up like the
9c903d59 1476 * other macros below.
3f3c579d
KW
1477 *
1478 * The cast here is used instead of '(c) >= 0', because some compilers emit
1479 * a warning that that test is always true when the parameter is an
1480 * unsigned type. khw supposes that it could be written as
1481 * && ((c) == '\0' || (c) > 0)
1482 * to avoid the message, but the cast will likely avoid extra branches even
296969d3
KW
1483 * with stupid compilers. */
1484# define isASCII(c) (((WIDEST_UTYPE) ASSERT_NOT_PTR(c)) < 128)
41f43cc2
KW
1485#endif
1486
38694112
KW
1487/* Take the eight possible bit patterns of the lower 3 bits and you get the
1488 * lower 3 bits of the 8 octal digits, in both ASCII and EBCDIC, so those bits
1489 * can be ignored. If the rest match '0', we have an octal */
296969d3 1490#define isOCTAL_A(c) ((((WIDEST_UTYPE) ASSERT_NOT_PTR(c)) & ~7) == '0')
c2da0b36 1491
9fb1bf9d 1492#ifdef H_PERL /* If have access to perl.h, lookup in its table */
f4cdb42c 1493
a500dc72
KW
1494/* Character class numbers. For internal core Perl use only. The ones less
1495 * than 32 are used in PL_charclass[] and the ones up through the one that
91456fff 1496 * corresponds to <HIGHEST_REGCOMP_DOT_H_SYNC_> are used by regcomp.h and
a500dc72
KW
1497 * related files. PL_charclass ones use names used in l1_char_class_tab.h but
1498 * their actual definitions are here. If that file has a name not used here,
1499 * it won't compile.
1709d539
KW
1500 *
1501 * The first group of these is ordered in what I (khw) estimate to be the
31c7f561 1502 * frequency of their use. This gives a slight edge to exiting a loop earlier
58a3ba2c
KW
1503 * (in reginclass() in regexec.c). Except \v should be last, as it isn't a
1504 * real Posix character class, and some (small) inefficiencies in regular
1505 * expression handling would be introduced by putting it in the middle of those
1506 * that are. Also, cntrl and ascii come after the others as it may be useful
1507 * to group these which have no members that match above Latin1, (or above
1508 * ASCII in the latter case) */
1509
91456fff
KW
1510# define CC_WORDCHAR_ 0 /* \w and [:word:] */
1511# define CC_DIGIT_ 1 /* \d and [:digit:] */
1512# define CC_ALPHA_ 2 /* [:alpha:] */
1513# define CC_LOWER_ 3 /* [:lower:] */
1514# define CC_UPPER_ 4 /* [:upper:] */
1515# define CC_PUNCT_ 5 /* [:punct:] */
1516# define CC_PRINT_ 6 /* [:print:] */
1517# define CC_ALPHANUMERIC_ 7 /* [:alnum:] */
1518# define CC_GRAPH_ 8 /* [:graph:] */
1519# define CC_CASED_ 9 /* [:lower:] or [:upper:] under /i */
1520# define CC_SPACE_ 10 /* \s, [:space:] */
1521# define CC_BLANK_ 11 /* [:blank:] */
1522# define CC_XDIGIT_ 12 /* [:xdigit:] */
1523# define CC_CNTRL_ 13 /* [:cntrl:] */
1524# define CC_ASCII_ 14 /* [:ascii:] */
1525# define CC_VERTSPACE_ 15 /* \v */
1526
1527# define HIGHEST_REGCOMP_DOT_H_SYNC_ CC_VERTSPACE_
a0947d7b 1528
1709d539 1529/* The members of the third group below do not need to be coordinated with data
3ffc8c70 1530 * structures in regcomp.[ch] and regexec.c. */
91456fff
KW
1531# define CC_IDFIRST_ 16
1532# define CC_CHARNAME_CONT_ 17
1533# define CC_NONLATIN1_FOLD_ 18
1534# define CC_NONLATIN1_SIMPLE_FOLD_ 19
1535# define CC_QUOTEMETA_ 20
1536# define CC_NON_FINAL_FOLD_ 21
1537# define CC_IS_IN_SOME_FOLD_ 22
1538# define CC_BINDIGIT_ 23
1539# define CC_OCTDIGIT_ 24
1540# define CC_MNEMONIC_CNTRL_ 25
073c22b3 1541
51b58dba 1542/* Unused: 26-31
f4cdb42c
KW
1543 * If more bits are needed, one could add a second word for non-64bit
1544 * QUAD_IS_INT systems, using some #ifdefs to distinguish between having a 2nd
37ede926
KW
1545 * word or not. The IS_IN_SOME_FOLD bit is the most easily expendable, as it
1546 * is used only for optimization (as of this writing), and differs in the
1547 * Latin1 range from the ALPHA bit only in two relatively unimportant
a500dc72 1548 * characters: the masculine and feminine ordinal indicators, so removing it
073c22b3
KW
1549 * would just cause /i regexes which match them to run less efficiently.
1550 * Similarly the EBCDIC-only bits are used just for speed, and could be
1551 * replaced by other means */
96ac0975 1552
3a371f2f
KW
1553#if defined(PERL_CORE) || defined(PERL_EXT)
1554/* An enum version of the character class numbers, to help compilers
1555 * optimize */
1556typedef enum {
91456fff
KW
1557 CC_ENUM_ALPHA_ = CC_ALPHA_,
1558 CC_ENUM_ALPHANUMERIC_ = CC_ALPHANUMERIC_,
1559 CC_ENUM_ASCII_ = CC_ASCII_,
1560 CC_ENUM_BLANK_ = CC_BLANK_,
1561 CC_ENUM_CASED_ = CC_CASED_,
1562 CC_ENUM_CNTRL_ = CC_CNTRL_,
1563 CC_ENUM_DIGIT_ = CC_DIGIT_,
1564 CC_ENUM_GRAPH_ = CC_GRAPH_,
1565 CC_ENUM_LOWER_ = CC_LOWER_,
1566 CC_ENUM_PRINT_ = CC_PRINT_,
1567 CC_ENUM_PUNCT_ = CC_PUNCT_,
1568 CC_ENUM_SPACE_ = CC_SPACE_,
1569 CC_ENUM_UPPER_ = CC_UPPER_,
1570 CC_ENUM_VERTSPACE_ = CC_VERTSPACE_,
1571 CC_ENUM_WORDCHAR_ = CC_WORDCHAR_,
1572 CC_ENUM_XDIGIT_ = CC_XDIGIT_
1573} char_class_number_;
3a371f2f
KW
1574#endif
1575
91456fff 1576#define POSIX_CC_COUNT (HIGHEST_REGCOMP_DOT_H_SYNC_ + 1)
63c61c3f 1577
6635f04f 1578START_EXTERN_C
96ac0975
NC
1579# ifdef DOINIT
1580EXTCONST U32 PL_charclass[] = {
1581# include "l1_char_class_tab.h"
1582};
1583
1584# else /* ! DOINIT */
1585EXTCONST U32 PL_charclass[];
1586# endif
6635f04f 1587END_EXTERN_C
96ac0975 1588
265c1f46 1589 /* The 1U keeps Solaris from griping when shifting sets the uppermost bit */
91456fff 1590# define CC_mask_(classnum) (1U << (classnum))
4650c663
KW
1591
1592 /* For internal core Perl use only: the base macro for defining macros like
1593 * isALPHA */
6eb62d23 1594# define generic_isCC_(c, classnum) cBOOL(FITS_IN_8_BITS(c) \
91456fff 1595 && (PL_charclass[(U8) (c)] & CC_mask_(classnum)))
4eeeb416 1596
f4cdb42c
KW
1597 /* The mask for the _A versions of the macros; it just adds in the bit for
1598 * ASCII. */
91456fff 1599# define CC_mask_A_(classnum) (CC_mask_(classnum) | CC_mask_(CC_ASCII_))
f4cdb42c 1600
4650c663
KW
1601 /* For internal core Perl use only: the base macro for defining macros like
1602 * isALPHA_A. The foo_A version makes sure that both the desired bit and
1603 * the ASCII bit are present */
6eb62d23 1604# define generic_isCC_A_(c, classnum) (FITS_IN_8_BITS(c) \
91456fff
KW
1605 && ((PL_charclass[(U8) (c)] & CC_mask_A_(classnum)) \
1606 == CC_mask_A_(classnum)))
f4cdb42c 1607
26c1d9d8
KW
1608/* On ASCII platforms certain classes form a single range. It's faster to
1609 * special case these. isDIGIT is a single range on all platforms */
b877c1ff 1610# ifdef EBCDIC
91456fff
KW
1611# define isALPHA_A(c) generic_isCC_A_(c, CC_ALPHA_)
1612# define isGRAPH_A(c) generic_isCC_A_(c, CC_GRAPH_)
1613# define isLOWER_A(c) generic_isCC_A_(c, CC_LOWER_)
1614# define isPRINT_A(c) generic_isCC_A_(c, CC_PRINT_)
1615# define isUPPER_A(c) generic_isCC_A_(c, CC_UPPER_)
b877c1ff 1616# else
26c1d9d8 1617 /* By folding the upper and lowercase, we can use a single range */
b877c1ff 1618# define isALPHA_A(c) inRANGE((~('A' ^ 'a') & (c)), 'A', 'Z')
26c1d9d8 1619# define isGRAPH_A(c) inRANGE(c, ' ' + 1, 0x7e)
b877c1ff
KW
1620# define isLOWER_A(c) inRANGE(c, 'a', 'z')
1621# define isPRINT_A(c) inRANGE(c, ' ', 0x7e)
1622# define isUPPER_A(c) inRANGE(c, 'A', 'Z')
1623# endif
91456fff
KW
1624# define isALPHANUMERIC_A(c) generic_isCC_A_(c, CC_ALPHANUMERIC_)
1625# define isBLANK_A(c) generic_isCC_A_(c, CC_BLANK_)
1626# define isCNTRL_A(c) generic_isCC_A_(c, CC_CNTRL_)
b877c1ff 1627# define isDIGIT_A(c) inRANGE(c, '0', '9')
91456fff
KW
1628# define isPUNCT_A(c) generic_isCC_A_(c, CC_PUNCT_)
1629# define isSPACE_A(c) generic_isCC_A_(c, CC_SPACE_)
1630# define isWORDCHAR_A(c) generic_isCC_A_(c, CC_WORDCHAR_)
1631# define isXDIGIT_A(c) generic_isCC_(c, CC_XDIGIT_) /* No non-ASCII xdigits
b7d90381 1632 */
91456fff
KW
1633# define isIDFIRST_A(c) generic_isCC_A_(c, CC_IDFIRST_)
1634# define isALPHA_L1(c) generic_isCC_(c, CC_ALPHA_)
1635# define isALPHANUMERIC_L1(c) generic_isCC_(c, CC_ALPHANUMERIC_)
1636# define isBLANK_L1(c) generic_isCC_(c, CC_BLANK_)
3ded5eb0
KW
1637
1638 /* continuation character for legal NAME in \N{NAME} */
91456fff 1639# define isCHARNAME_CONT(c) generic_isCC_(c, CC_CHARNAME_CONT_)
3ded5eb0 1640
91456fff
KW
1641# define isCNTRL_L1(c) generic_isCC_(c, CC_CNTRL_)
1642# define isGRAPH_L1(c) generic_isCC_(c, CC_GRAPH_)
1643# define isLOWER_L1(c) generic_isCC_(c, CC_LOWER_)
1644# define isPRINT_L1(c) generic_isCC_(c, CC_PRINT_)
b7d90381 1645# define isPSXSPC_L1(c) isSPACE_L1(c)
91456fff
KW
1646# define isPUNCT_L1(c) generic_isCC_(c, CC_PUNCT_)
1647# define isSPACE_L1(c) generic_isCC_(c, CC_SPACE_)
1648# define isUPPER_L1(c) generic_isCC_(c, CC_UPPER_)
1649# define isWORDCHAR_L1(c) generic_isCC_(c, CC_WORDCHAR_)
1650# define isIDFIRST_L1(c) generic_isCC_(c, CC_IDFIRST_)
f4cdb42c 1651
0852beac 1652# ifdef EBCDIC
91456fff 1653# define isASCII(c) generic_isCC_(c, CC_ASCII_)
0852beac
KW
1654# endif
1655
f12c0118 1656 /* Participates in a single-character fold with a character above 255 */
c62fdeb7 1657# if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C)
81d43abf 1658# define HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE(c) \
c62fdeb7 1659 (( ! cBOOL(FITS_IN_8_BITS(c))) \
91456fff 1660 || (PL_charclass[(U8) (c)] & CC_mask_(CC_NONLATIN1_SIMPLE_FOLD_)))
c62fdeb7 1661
91456fff
KW
1662# define IS_NON_FINAL_FOLD(c) generic_isCC_(c, CC_NON_FINAL_FOLD_)
1663# define IS_IN_SOME_FOLD_L1(c) generic_isCC_(c, CC_IS_IN_SOME_FOLD_)
c62fdeb7 1664# endif
f12c0118
KW
1665
1666 /* Like the above, but also can be part of a multi-char fold */
c62fdeb7
KW
1667# define HAS_NONLATIN1_FOLD_CLOSURE(c) \
1668 ( (! cBOOL(FITS_IN_8_BITS(c))) \
91456fff 1669 || (PL_charclass[(U8) (c)] & CC_mask_(CC_NONLATIN1_FOLD_)))
430b7c70 1670
91456fff 1671# define _isQUOTEMETA(c) generic_isCC_(c, CC_QUOTEMETA_)
5e6ebb12
KW
1672
1673/* is c a control character for which we have a mnemonic? */
1674# if defined(PERL_CORE) || defined(PERL_EXT)
91456fff 1675# define isMNEMONIC_CNTRL(c) generic_isCC_(c, CC_MNEMONIC_CNTRL_)
5e6ebb12 1676# endif
687c8d01 1677#else /* else we don't have perl.h H_PERL */
3ded5eb0
KW
1678
1679 /* If we don't have perl.h, we are compiling a utility program. Below we
1680 * hard-code various macro definitions that wouldn't otherwise be available
fc273927 1681 * to it. Most are coded based on first principles. These are written to
74665a89 1682 * avoid EBCDIC vs. ASCII #ifdef's as much as possible. */
182c4ace 1683# define isDIGIT_A(c) inRANGE(c, '0', '9')
0852beac 1684# define isBLANK_A(c) ((c) == ' ' || (c) == '\t')
74665a89
KW
1685# define isSPACE_A(c) (isBLANK_A(c) \
1686 || (c) == '\n' \
1687 || (c) == '\r' \
1688 || (c) == '\v' \
0852beac 1689 || (c) == '\f')
74665a89
KW
1690 /* On EBCDIC, there are gaps between 'i' and 'j'; 'r' and 's'. Same for
1691 * uppercase. The tests for those aren't necessary on ASCII, but hurt only
1692 * performance (if optimization isn't on), and allow the same code to be
1693 * used for both platform types */
182c4ace
KW
1694# define isLOWER_A(c) inRANGE((c), 'a', 'i') \
1695 || inRANGE((c), 'j', 'r') \
1696 || inRANGE((c), 's', 'z')
1697# define isUPPER_A(c) inRANGE((c), 'A', 'I') \
1698 || inRANGE((c), 'J', 'R') \
1699 || inRANGE((c), 'S', 'Z')
a4d7a999
KW
1700# define isALPHA_A(c) (isUPPER_A(c) || isLOWER_A(c))
1701# define isALPHANUMERIC_A(c) (isALPHA_A(c) || isDIGIT_A(c))
3ded5eb0 1702# define isWORDCHAR_A(c) (isALPHANUMERIC_A(c) || (c) == '_')
0852beac 1703# define isIDFIRST_A(c) (isALPHA_A(c) || (c) == '_')
182c4ace
KW
1704# define isXDIGIT_A(c) ( isDIGIT_A(c) \
1705 || inRANGE((c), 'a', 'f') \
1706 || inRANGE((c), 'A', 'F')
74665a89
KW
1707# define isPUNCT_A(c) ((c) == '-' || (c) == '!' || (c) == '"' \
1708 || (c) == '#' || (c) == '$' || (c) == '%' \
1709 || (c) == '&' || (c) == '\'' || (c) == '(' \
1710 || (c) == ')' || (c) == '*' || (c) == '+' \
1711 || (c) == ',' || (c) == '.' || (c) == '/' \
1712 || (c) == ':' || (c) == ';' || (c) == '<' \
1713 || (c) == '=' || (c) == '>' || (c) == '?' \
1714 || (c) == '@' || (c) == '[' || (c) == '\\' \
1715 || (c) == ']' || (c) == '^' || (c) == '_' \
1716 || (c) == '`' || (c) == '{' || (c) == '|' \
1717 || (c) == '}' || (c) == '~')
1718# define isGRAPH_A(c) (isALPHANUMERIC_A(c) || isPUNCT_A(c))
1719# define isPRINT_A(c) (isGRAPH_A(c) || (c) == ' ')
3ded5eb0 1720
0852beac 1721# ifdef EBCDIC
74665a89
KW
1722 /* The below is accurate for the 3 EBCDIC code pages traditionally
1723 * supported by perl. The only difference between them in the controls
1724 * is the position of \n, and that is represented symbolically below */
1725# define isCNTRL_A(c) ((c) == '\0' || (c) == '\a' || (c) == '\b' \
1726 || (c) == '\f' || (c) == '\n' || (c) == '\r' \
1727 || (c) == '\t' || (c) == '\v' \
182c4ace 1728 || inRANGE((c), 1, 3) /* SOH, STX, ETX */ \
8ec0a736 1729 || (c) == 7F /* U+7F DEL */ \
182c4ace
KW
1730 || inRANGE((c), 0x0E, 0x13) /* SO SI DLE \
1731 DC[1-3] */ \
74665a89
KW
1732 || (c) == 0x18 /* U+18 CAN */ \
1733 || (c) == 0x19 /* U+19 EOM */ \
182c4ace 1734 || inRANGE((c), 0x1C, 0x1F) /* [FGRU]S */ \
74665a89
KW
1735 || (c) == 0x26 /* U+17 ETB */ \
1736 || (c) == 0x27 /* U+1B ESC */ \
1737 || (c) == 0x2D /* U+05 ENQ */ \
1738 || (c) == 0x2E /* U+06 ACK */ \
1739 || (c) == 0x32 /* U+16 SYN */ \
1740 || (c) == 0x37 /* U+04 EOT */ \
1741 || (c) == 0x3C /* U+14 DC4 */ \
1742 || (c) == 0x3D /* U+15 NAK */ \
1743 || (c) == 0x3F)/* U+1A SUB */
0852beac 1744# define isASCII(c) (isCNTRL_A(c) || isPRINT_A(c))
74665a89
KW
1745# else /* isASCII is already defined for ASCII platforms, so can use that to
1746 define isCNTRL */
1747# define isCNTRL_A(c) (isASCII(c) && ! isPRINT_A(c))
0852beac
KW
1748# endif
1749
3ffc8c70 1750 /* The _L1 macros may be unnecessary for the utilities; I (khw) added them
caa94d35
KW
1751 * during debugging, and it seems best to keep them. We may be called
1752 * without NATIVE_TO_LATIN1 being defined. On ASCII platforms, it doesn't
1753 * do anything anyway, so make it not a problem */
1754# if ! defined(EBCDIC) && ! defined(NATIVE_TO_LATIN1)
1755# define NATIVE_TO_LATIN1(ch) (ch)
1756# endif
3ded5eb0
KW
1757# define isALPHA_L1(c) (isUPPER_L1(c) || isLOWER_L1(c))
1758# define isALPHANUMERIC_L1(c) (isALPHA_L1(c) || isDIGIT_A(c))
1759# define isBLANK_L1(c) (isBLANK_A(c) \
1760 || (FITS_IN_8_BITS(c) \
1761 && NATIVE_TO_LATIN1((U8) c) == 0xA0))
1762# define isCNTRL_L1(c) (FITS_IN_8_BITS(c) && (! isPRINT_L1(c)))
1763# define isGRAPH_L1(c) (isPRINT_L1(c) && (! isBLANK_L1(c)))
1764# define isLOWER_L1(c) (isLOWER_A(c) \
1765 || (FITS_IN_8_BITS(c) \
ae683a5f 1766 && (( NATIVE_TO_LATIN1((U8) c) >= 0xDF \
3ded5eb0
KW
1767 && NATIVE_TO_LATIN1((U8) c) != 0xF7) \
1768 || NATIVE_TO_LATIN1((U8) c) == 0xAA \
1769 || NATIVE_TO_LATIN1((U8) c) == 0xBA \
1770 || NATIVE_TO_LATIN1((U8) c) == 0xB5)))
1771# define isPRINT_L1(c) (isPRINT_A(c) \
1772 || (FITS_IN_8_BITS(c) \
1773 && NATIVE_TO_LATIN1((U8) c) >= 0xA0))
3ded5eb0
KW
1774# define isPUNCT_L1(c) (isPUNCT_A(c) \
1775 || (FITS_IN_8_BITS(c) \
ae683a5f 1776 && ( NATIVE_TO_LATIN1((U8) c) == 0xA1 \
3ded5eb0
KW
1777 || NATIVE_TO_LATIN1((U8) c) == 0xA7 \
1778 || NATIVE_TO_LATIN1((U8) c) == 0xAB \
1779 || NATIVE_TO_LATIN1((U8) c) == 0xB6 \
1780 || NATIVE_TO_LATIN1((U8) c) == 0xB7 \
1781 || NATIVE_TO_LATIN1((U8) c) == 0xBB \
1782 || NATIVE_TO_LATIN1((U8) c) == 0xBF)))
1783# define isSPACE_L1(c) (isSPACE_A(c) \
1784 || (FITS_IN_8_BITS(c) \
ae683a5f 1785 && ( NATIVE_TO_LATIN1((U8) c) == 0x85 \
3ded5eb0
KW
1786 || NATIVE_TO_LATIN1((U8) c) == 0xA0)))
1787# define isUPPER_L1(c) (isUPPER_A(c) \
1788 || (FITS_IN_8_BITS(c) \
182c4ace
KW
1789 && ( IN_RANGE(NATIVE_TO_LATIN1((U8) c), \
1790 0xC0, 0xDE) \
3ded5eb0
KW
1791 && NATIVE_TO_LATIN1((U8) c) != 0xD7)))
1792# define isWORDCHAR_L1(c) (isIDFIRST_L1(c) || isDIGIT_A(c))
1793# define isIDFIRST_L1(c) (isALPHA_L1(c) || NATIVE_TO_LATIN1(c) == '_')
1794# define isCHARNAME_CONT(c) (isWORDCHAR_L1(c) \
1795 || isBLANK_L1(c) \
1796 || (c) == '-' \
1797 || (c) == '(' \
1798 || (c) == ')')
1799 /* The following are not fully accurate in the above-ASCII range. I (khw)
1800 * don't think it's necessary to be so for the purposes where this gets
1801 * compiled */
6eb62d23 1802# define isQUOTEMETA_(c) (FITS_IN_8_BITS(c) && ! isWORDCHAR_L1(c))
3ded5eb0
KW
1803# define _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) isALPHA_L1(c)
1804
1805 /* And these aren't accurate at all. They are useful only for above
1806 * Latin1, which utilities and bootstrapping don't deal with */
1807# define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) 0
6838b41e 1808# define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
3ded5eb0
KW
1809# define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
1810
1811 /* Many of the macros later in this file are defined in terms of these. By
1812 * implementing them with a function, which converts the class number into
1813 * a call to the desired macro, all of the later ones work. However, that
1814 * function won't be actually defined when building a utility program (no
1815 * perl.h), and so a compiler error will be generated if one is attempted
1816 * to be used. And the above-Latin1 code points require Unicode tables to
1817 * be present, something unlikely to be the case when bootstrapping */
6eb62d23 1818# define generic_isCC_(c, classnum) \
3ded5eb0 1819 (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), TRUE))
6eb62d23 1820# define generic_isCC_A_(c, classnum) \
3ded5eb0 1821 (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), FALSE))
687c8d01 1822#endif /* End of no perl.h H_PERL */
8a58bdcf 1823
e66b99e9
KW
1824#define isALPHANUMERIC(c) isALPHANUMERIC_A(c)
1825#define isALPHA(c) isALPHA_A(c)
0852beac
KW
1826#define isASCII_A(c) isASCII(c)
1827#define isASCII_L1(c) isASCII(c)
e66b99e9
KW
1828#define isBLANK(c) isBLANK_A(c)
1829#define isCNTRL(c) isCNTRL_A(c)
1830#define isDIGIT(c) isDIGIT_A(c)
1831#define isGRAPH(c) isGRAPH_A(c)
1832#define isIDFIRST(c) isIDFIRST_A(c)
1833#define isLOWER(c) isLOWER_A(c)
1834#define isPRINT(c) isPRINT_A(c)
779cf272 1835#define isPSXSPC_A(c) isSPACE_A(c)
e66b99e9 1836#define isPSXSPC(c) isPSXSPC_A(c)
779cf272 1837#define isPSXSPC_L1(c) isSPACE_L1(c)
e66b99e9
KW
1838#define isPUNCT(c) isPUNCT_A(c)
1839#define isSPACE(c) isSPACE_A(c)
1840#define isUPPER(c) isUPPER_A(c)
1841#define isWORDCHAR(c) isWORDCHAR_A(c)
1842#define isXDIGIT(c) isXDIGIT_A(c)
1843
1844/* ASCII casing. These could also be written as
1845 #define toLOWER(c) (isASCII(c) ? toLOWER_LATIN1(c) : (c))
1846 #define toUPPER(c) (isASCII(c) ? toUPPER_LATIN1_MOD(c) : (c))
1847 which uses table lookup and mask instead of subtraction. (This would
c5e9991e
KW
1848 work because the _MOD does not apply in the ASCII range).
1849
1850 These actually are UTF-8 invariant casing, not just ASCII, as any non-ASCII
1851 UTF-8 invariants are neither upper nor lower. (Only on EBCDIC platforms are
1852 there non-ASCII invariants, and all of them are controls.) */
68067e4e
DM
1853#define toLOWER(c) (isUPPER(c) ? (U8)((c) + ('a' - 'A')) : (c))
1854#define toUPPER(c) (isLOWER(c) ? (U8)((c) - ('a' - 'A')) : (c))
bbce6d69 1855
25200305
KW
1856/* In the ASCII range, these are equivalent to what they're here defined to be.
1857 * But by creating these definitions, other code doesn't have to be aware of
c5e9991e
KW
1858 * this detail. Actually this works for all UTF-8 invariants, not just the
1859 * ASCII range. (EBCDIC platforms can have non-ASCII invariants.) */
25200305 1860#define toFOLD(c) toLOWER(c)
25200305
KW
1861#define toTITLE(c) toUPPER(c)
1862
c753c8d3
KW
1863#define toLOWER_A(c) toLOWER(c)
1864#define toUPPER_A(c) toUPPER(c)
25200305
KW
1865#define toFOLD_A(c) toFOLD(c)
1866#define toTITLE_A(c) toTITLE(c)
1a0901db 1867
4650c663 1868/* Use table lookup for speed; returns the input itself if is out-of-range */
b2bf251f 1869#define toLOWER_LATIN1(c) ((! FITS_IN_8_BITS(c)) \
8e7c6e7d 1870 ? (c) \
f4cd282c 1871 : PL_latin1_lc[ (U8) (c) ])
c753c8d3
KW
1872#define toLOWER_L1(c) toLOWER_LATIN1(c) /* Synonym for consistency */
1873
1a0901db 1874/* Modified uc. Is correct uc except for three non-ascii chars which are
4650c663
KW
1875 * all mapped to one of them, and these need special handling; returns the
1876 * input itself if is out-of-range */
b2bf251f 1877#define toUPPER_LATIN1_MOD(c) ((! FITS_IN_8_BITS(c)) \
8e7c6e7d 1878 ? (c) \
f4cd282c 1879 : PL_mod_latin1_uc[ (U8) (c) ])
31f05a37 1880#define IN_UTF8_CTYPE_LOCALE PL_in_utf8_CTYPE_locale
84061b6a 1881
beab9ebe
KW
1882/* Use foo_LC_uvchr() instead of these for beyond the Latin1 range */
1883
1884/* For internal core Perl use only: the base macro for defining macros like
1885 * isALPHA_LC, which uses the current LC_CTYPE locale. 'c' is the code point
31f05a37 1886 * (0-255) to check. In a UTF-8 locale, the result is the same as calling
53049083
KW
1887 * isFOO_L1(); 'classnum' is something like CC_UPPER_, which gives the class
1888 * number for doing this. For non-UTF-8 locales, the code to actually do the
1889 * test this is passed in 'non_utf8'. If 'c' is above 255, 0 is returned. For
1890 * accessing the full range of possible code points under locale rules, use the
1891 * macros based on generic_LC_uvchr_ instead of this. */
1892#define generic_LC_base_(c, classnum, non_utf8_func) \
81d43abf
KW
1893 (! FITS_IN_8_BITS(c) \
1894 ? 0 \
1895 : IN_UTF8_CTYPE_LOCALE \
53049083
KW
1896 ? cBOOL(PL_charclass[(U8) (c)] & CC_mask_(classnum)) \
1897 : cBOOL(non_utf8_func(c)))
beab9ebe 1898
ef620431
KW
1899/* A helper macro for defining macros like isALPHA_LC. On systems without
1900 * proper locales, these reduce to, e.g., isALPHA_A */
1901#ifdef CTYPE256
1902# define generic_LC_(c, classnum, non_utf8_func) \
1903 generic_LC_base_(c, classnum, non_utf8_func)
1904#else
1905# define generic_LC_(c, classnum, non_utf8_func) \
1906 generic_isCC_A_(c, classnum)
1907#endif
beab9ebe 1908
33bdb9d3
KW
1909/* Below are the definitions for the locale-sensitive character classification
1910 * macros whose input domain is a byte, and the locale isn't UTF-8. These are
1911 * as close as possible to the bare versions on the platform and still yield
1912 * POSIX Standard-compliant results.
1913 *
1914 * There is currently only one place these definitions should be used, in
1915 * certain function calls like Perl_iswordchar_() in inline.h.
1916 *
1917 * Most likely you want to use the macros a ways below with names like
1918 * isALPHA_LC(). Rarely, you may want isU8_ALPHA_LC(), somewhat below.
1919 *
1920 * The first two aren't in C89, so the fallback is to use the non-locale
1921 * sensitive versions; these are the same for all platforms */
f05550c0 1922#if defined(HAS_ISASCII)
cbc5b6f1 1923# define is_base_ASCII(c) isascii((U8) (c))
84061b6a 1924#else
cbc5b6f1 1925# define is_base_ASCII(c) isASCII(c)
84061b6a
KW
1926#endif
1927
f05550c0 1928#if defined(HAS_ISBLANK)
cbc5b6f1 1929# define is_base_BLANK(c) isblank((U8) (c))
6d432bcf 1930#else
cbc5b6f1 1931# define is_base_BLANK(c) isBLANK(c)
84061b6a
KW
1932#endif
1933
6d432bcf 1934/* The next few are the same in all platforms. */
cbc5b6f1
KW
1935#define is_base_CNTRL(c) iscntrl((U8) (c))
1936#define is_base_IDFIRST(c) (UNLIKELY((c) == '_') || is_base_ALPHA(c))
1937#define is_base_SPACE(c) isspace((U8) (c))
1938#define is_base_WORDCHAR(c) (UNLIKELY((c) == '_') || is_base_ALPHANUMERIC(c))
3f0486a3 1939
33bdb9d3 1940/* The base-level case changing macros are also the same in all platforms */
cbc5b6f1
KW
1941#define to_base_LOWER(c) tolower((U8) (c))
1942#define to_base_UPPER(c) toupper((U8) (c))
1943#define to_base_FOLD(c) to_base_LOWER(c)
33bdb9d3
KW
1944
1945#ifdef WIN32
81d43abf
KW
1946
1947/* The Windows functions don't bother to follow the POSIX standard, which for
1948 * example says that something can't both be a printable and a control. But
6d432bcf
KW
1949 * Windows treats \t as both a control and a printable, and does such things as
1950 * making superscripts into both digits and punctuation. These #defines tame
1951 * these flaws by assuming that the definitions of controls (and the other few
1952 * ones defined above) are correct, and then making sure that other definitions
1953 * don't have weirdnesses, by adding a check that \w and its subsets aren't
1954 * ispunct(), and things that are \W, like ispunct(), arent't controls. Not
1955 * all possible weirdnesses are checked for, just ones that were detected on
1956 * actual Microsoft code pages */
cbc5b6f1
KW
1957# define is_base_ALPHA(c) \
1958 (isalpha((U8) (c)) && ! is_base_PUNCT(c))
1959# define is_base_ALPHANUMERIC(c) \
1960 (isalnum((U8) (c)) && ! is_base_PUNCT(c))
1961# define is_base_CASED(c) \
1962 ((isupper((U8) (c)) || islower((U8) (c))) && ! is_base_PUNCT(c))
1963# define is_base_DIGIT(c) \
1964 (isdigit((U8) (c)) && ! is_base_PUNCT(c))
1965# define is_base_GRAPH(c) \
1966 (isgraph((U8) (c)) && ! is_base_CNTRL(c))
1967# define is_base_LOWER(c) \
1968 (islower((U8) (c)) && ! is_base_PUNCT(c))
1969# define is_base_PRINT(c) \
1970 (isprint((U8) (c)) && ! is_base_CNTRL(c))
1971# define is_base_PUNCT(c) \
1972 (ispunct((U8) (c)) && ! is_base_CNTRL(c))
1973# define is_base_UPPER(c) \
1974 (isupper((U8) (c)) && ! is_base_PUNCT(c))
1975# define is_base_XDIGIT(c) \
1976 (isxdigit((U8) (c)) && ! is_base_PUNCT(c))
6d432bcf
KW
1977#else
1978
33bdb9d3
KW
1979/* For all other platforms, as far as we know, isdigit(), etc. work sanely
1980 * enough */
cbc5b6f1
KW
1981# define is_base_ALPHA(c) isalpha((U8) (c))
1982# define is_base_ALPHANUMERIC(c) isalnum((U8) (c))
1983# define is_base_CASED(c) (islower((U8) (c)) || isupper((U8) (c)))
1984# define is_base_DIGIT(c) isdigit((U8) (c))
6d432bcf
KW
1985
1986 /* ... But it seems that IBM products treat NBSP as both a space and a
1987 * graphic; these are the two platforms that we have active test beds for.
1988 */
1989# if defined(OS390) || defined(_AIX)
cbc5b6f1 1990# define is_base_GRAPH(c) (isgraph((U8) (c)) && ! isspace((U8) (c)))
6d432bcf 1991# else
cbc5b6f1 1992# define is_base_GRAPH(c) isgraph((U8) (c))
3f0486a3 1993# endif
cbc5b6f1
KW
1994# define is_base_LOWER(c) islower((U8) (c))
1995# define is_base_PRINT(c) isprint((U8) (c))
1996# define is_base_PUNCT(c) ispunct((U8) (c))
1997# define is_base_UPPER(c) isupper((U8) (c))
1998# define is_base_XDIGIT(c) isxdigit((U8) (c))
6d432bcf
KW
1999#endif
2000
33bdb9d3
KW
2001/* Below is the next level up, which currently expands to nothing more
2002 * than the previous layer. These are the macros to use if you really need
2003 * something whose input domain is a byte, and the locale isn't UTF-8; that is,
2004 * where you normally would have to use things like bare isalnum().
2005 *
2006 * But most likely you should instead use the layer defined further below which
2007 * has names like isALPHA_LC. They deal with larger-than-byte inputs, and
2008 * UTF-8 locales.
2009 *
2010 * (Note, proper general operation of the bare libc functons requires you to
2011 * cast to U8. These do that for you automatically.) */
2012
cbc5b6f1 2013# define WRAP_U8_LC_(c, classnum, base) base(c)
33bdb9d3
KW
2014
2015#define isU8_ALPHANUMERIC_LC(c) \
cbc5b6f1
KW
2016 WRAP_U8_LC_((c), CC_ALPHANUMERIC_, is_base_ALPHANUMERIC)
2017#define isU8_ALPHA_LC(c) WRAP_U8_LC_((c), CC_ALPHA_, is_base_ALPHA)
2018#define isU8_ASCII_LC(c) WRAP_U8_LC_((c), CC_ASCII_, is_base_ASCII)
2019#define isU8_BLANK_LC(c) WRAP_U8_LC_((c), CC_BLANK_, is_base_BLANK)
2020#define isU8_CASED_LC(c) WRAP_U8_LC_((c), CC_CASED_, is_base_CASED)
2021#define isU8_CNTRL_LC(c) WRAP_U8_LC_((c), CC_CNTRL_, is_base_CNTRL)
2022#define isU8_DIGIT_LC(c) WRAP_U8_LC_((c), CC_DIGIT_, is_base_DIGIT)
2023#define isU8_GRAPH_LC(c) WRAP_U8_LC_((c), CC_GRAPH_, is_base_GRAPH)
2024#define isU8_IDFIRST_LC(c) WRAP_U8_LC_((c), CC_IDFIRST_, is_base_IDFIRST)
2025#define isU8_LOWER_LC(c) WRAP_U8_LC_((c), CC_LOWER_, is_base_LOWER)
2026#define isU8_PRINT_LC(c) WRAP_U8_LC_((c), CC_PRINT_, is_base_PRINT)
2027#define isU8_PUNCT_LC(c) WRAP_U8_LC_((c), CC_PUNCT_, is_base_PUNCT)
2028#define isU8_SPACE_LC(c) WRAP_U8_LC_((c), CC_SPACE_, is_base_SPACE)
2029#define isU8_UPPER_LC(c) WRAP_U8_LC_((c), CC_UPPER_, is_base_UPPER)
2030#define isU8_WORDCHAR_LC(c) WRAP_U8_LC_((c), CC_WORDCHAR_, is_base_WORDCHAR)
2031#define isU8_XDIGIT_LC(c) WRAP_U8_LC_((c), CC_XDIGIT_, is_base_XDIGIT)
2032
2033#define toU8_LOWER_LC(c) WRAP_U8_LC_((c), CC_TOLOWER_, to_base_LOWER)
2034#define toU8_UPPER_LC(c) WRAP_U8_LC_((c), CC_TOUPPER_, to_base_UPPER)
33bdb9d3
KW
2035#define toU8_FOLD_LC(c) toU8_LOWER_LC(c)
2036
6d432bcf
KW
2037/* The definitions below use the ones above to create versions in which the
2038 * input domain isn't restricted to bytes (though always returning false if the
2039 * input doesn't fit in a byte), and to behave properly should the locale be
33bdb9d3
KW
2040 * UTF-8. These are the documented ones, suitable for general use (though
2041 * toUPPER_LC and toFOLD_LC aren't documented because they need special
2042 * handling to deal with SHARP S expanding to two characters). */
2043
6d432bcf
KW
2044#define isASCII_LC(c) (FITS_IN_8_BITS(c) && isU8_ASCII_LC(c))
2045#define isALPHA_LC(c) generic_LC_(c, CC_ALPHA_, isU8_ALPHA_LC)
2046#define isALPHANUMERIC_LC(c) \
2047 generic_LC_(c, CC_ALPHANUMERIC_, isU8_ALPHANUMERIC_LC)
2048#define isBLANK_LC(c) generic_LC_(c, CC_BLANK_, isU8_BLANK_LC)
8fd8ea43 2049#define isCASED_LC(c) generic_LC_(c, CC_CASED_, isU8_CASED_LC)
6d432bcf
KW
2050#define isCNTRL_LC(c) generic_LC_(c, CC_CNTRL_, isU8_CNTRL_LC)
2051#define isDIGIT_LC(c) generic_LC_(c, CC_DIGIT_, isU8_DIGIT_LC)
2052#define isGRAPH_LC(c) generic_LC_(c, CC_GRAPH_, isU8_GRAPH_LC)
2053#define isIDFIRST_LC(c) generic_LC_(c, CC_IDFIRST_, isU8_IDFIRST_LC)
2054#define isLOWER_LC(c) generic_LC_(c, CC_LOWER_, isU8_LOWER_LC)
2055#define isPRINT_LC(c) generic_LC_(c, CC_PRINT_, isU8_PRINT_LC)
2056#define isPUNCT_LC(c) generic_LC_(c, CC_PUNCT_, isU8_PUNCT_LC)
2057#define isSPACE_LC(c) generic_LC_(c, CC_SPACE_, isU8_SPACE_LC)
2058#define isUPPER_LC(c) generic_LC_(c, CC_UPPER_, isU8_UPPER_LC)
2059#define isWORDCHAR_LC(c) generic_LC_(c, CC_WORDCHAR_, isU8_WORDCHAR_LC)
2060#define isXDIGIT_LC(c) generic_LC_(c, CC_XDIGIT_, isU8_XDIGIT_LC)
4a283f4f 2061
ef620431 2062#ifndef CTYPE256
d277535a
KW
2063# define toLOWER_LC(c) toLOWER_A(c)
2064# define toUPPER_LC(c) toUPPER_A(c)
2065# define toFOLD_LC(c) toFOLD_A(c)
ef620431
KW
2066#else
2067
4a283f4f
KW
2068/* In the next three macros, the reason for using the PL_latin arrays is in
2069 * case the system function is defective; it ensures uniform results that
2070 * conform to the Unicode standard. */
2071
2072/* This does not handle the anomalies in UTF-8 Turkic locales. */
31e89ad7 2073# define toLOWER_LC(c) ((! FITS_IN_8_BITS(c)) \
4a283f4f
KW
2074 ? (c) \
2075 : ((IN_UTF8_CTYPE_LOCALE) \
2076 ? PL_latin1_lc[ (U8) (c) ] \
6d432bcf 2077 : ((U8) toU8_LOWER_LC(c))))
4a283f4f
KW
2078
2079/* In this macro, note that the result can be larger than a byte in a UTF-8
2080 * locale. It returns a single value, so can't adequately return the upper
2081 * case of LATIN SMALL LETTER SHARP S in a UTF-8 locale (which should be a
2082 * string of two values "SS"); instead it asserts against that under
2083 * DEBUGGING, and otherwise returns its input. It does not handle the
2084 * anomalies in UTF-8 Turkic locales. */
31e89ad7 2085# define toUPPER_LC(c) \
4a283f4f
KW
2086 ((! FITS_IN_8_BITS(c)) \
2087 ? (c) \
2088 : ((! IN_UTF8_CTYPE_LOCALE) \
6d432bcf 2089 ? ((U8) toU8_UPPER_LC(c)) \
4a283f4f
KW
2090 : (UNLIKELY(((U8)(c)) == MICRO_SIGN) \
2091 ? GREEK_CAPITAL_LETTER_MU \
2092 : ((UNLIKELY(((U8) (c)) == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS) \
2093 ? LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS \
2094 : (UNLIKELY(((U8)(c)) == LATIN_SMALL_LETTER_SHARP_S) \
2095 ? (__ASSERT_(0) (c)) /* Fail on Sharp S in DEBUGGING */ \
2096 : PL_mod_latin1_uc[ (U8) (c) ]))))))
2097
2098/* In this macro, note that the result can be larger than a byte in a UTF-8
2099 * locale. It returns a single value, so can't adequately return the fold case
2100 * of LATIN SMALL LETTER SHARP S in a UTF-8 locale (which should be a string of
2101 * two values "ss"); instead it asserts against that under DEBUGGING, and
2102 * otherwise returns its input. It does not handle the anomalies in UTF-8
2103 * Turkic locales */
31e89ad7 2104# define toFOLD_LC(c) \
4a283f4f
KW
2105 ((UNLIKELY((c) == MICRO_SIGN) && IN_UTF8_CTYPE_LOCALE) \
2106 ? GREEK_SMALL_LETTER_MU \
2107 : (__ASSERT_( ! IN_UTF8_CTYPE_LOCALE \
2108 || LIKELY((c) != LATIN_SMALL_LETTER_SHARP_S)) \
31e89ad7 2109 toLOWER_LC(c)))
f05550c0 2110#endif
55204971 2111
eba68aa0
KW
2112#define isIDCONT(c) isWORDCHAR(c)
2113#define isIDCONT_A(c) isWORDCHAR_A(c)
2114#define isIDCONT_L1(c) isWORDCHAR_L1(c)
2115#define isIDCONT_LC(c) isWORDCHAR_LC(c)
13380643 2116#define isPSXSPC_LC(c) isSPACE_LC(c)
aaa51d5e 2117
4650c663 2118/* For internal core Perl use only: the base macros for defining macros like
d0da05db 2119 * isALPHA_uvchr. 'c' is the code point to check. 'classnum' is the POSIX class
6eb62d23 2120 * number defined earlier in this file. generic_uvchr_() is used for POSIX
4650c663
KW
2121 * classes where there is a macro or function 'above_latin1' that takes the
2122 * single argument 'c' and returns the desired value. These exist for those
2366ba44 2123 * classes which have simple definitions, avoiding the overhead of an inversion
6eb62d23 2124 * list binary search. generic_invlist_uvchr_() can be used
4650c663 2125 * for classes where that overhead is faster than a direct lookup.
6eb62d23
KW
2126 * generic_uvchr_() won't compile if 'c' isn't unsigned, as it won't match the
2127 * 'above_latin1' prototype. generic_isCC_() macro does bounds checking, so
4650c663
KW
2128 * have duplicate checks here, so could create versions of the macros that
2129 * don't, but experiments show that gcc optimizes them out anyway. */
66c17564
KW
2130
2131/* Note that all ignore 'use bytes' */
6eb62d23
KW
2132#define generic_uvchr_(classnum, above_latin1, c) ((c) < 256 \
2133 ? generic_isCC_(c, classnum) \
cd500f2f 2134 : above_latin1(c))
81d43abf 2135#define generic_invlist_uvchr_(classnum, c) ((c) < 256 \
6eb62d23 2136 ? generic_isCC_(c, classnum) \
922e8cb4 2137 : _is_uni_FOO(classnum, c))
91456fff
KW
2138#define isALPHA_uvchr(c) generic_invlist_uvchr_(CC_ALPHA_, c)
2139#define isALPHANUMERIC_uvchr(c) generic_invlist_uvchr_(CC_ALPHANUMERIC_, c)
d0da05db 2140#define isASCII_uvchr(c) isASCII(c)
91456fff 2141#define isBLANK_uvchr(c) generic_uvchr_(CC_BLANK_, is_HORIZWS_cp_high, c)
d0da05db 2142#define isCNTRL_uvchr(c) isCNTRL_L1(c) /* All controls are in Latin1 */
91456fff
KW
2143#define isDIGIT_uvchr(c) generic_invlist_uvchr_(CC_DIGIT_, c)
2144#define isGRAPH_uvchr(c) generic_invlist_uvchr_(CC_GRAPH_, c)
1e222e4f 2145#define isIDCONT_uvchr(c) \
91456fff 2146 generic_uvchr_(CC_WORDCHAR_, _is_uni_perl_idcont, c)
1e222e4f 2147#define isIDFIRST_uvchr(c) \
91456fff
KW
2148 generic_uvchr_(CC_IDFIRST_, _is_uni_perl_idstart, c)
2149#define isLOWER_uvchr(c) generic_invlist_uvchr_(CC_LOWER_, c)
2150#define isPRINT_uvchr(c) generic_invlist_uvchr_(CC_PRINT_, c)
d0da05db 2151
91456fff
KW
2152#define isPUNCT_uvchr(c) generic_invlist_uvchr_(CC_PUNCT_, c)
2153#define isSPACE_uvchr(c) generic_uvchr_(CC_SPACE_, is_XPERLSPACE_cp_high, c)
d0da05db
KW
2154#define isPSXSPC_uvchr(c) isSPACE_uvchr(c)
2155
91456fff
KW
2156#define isUPPER_uvchr(c) generic_invlist_uvchr_(CC_UPPER_, c)
2157#define isVERTWS_uvchr(c) generic_uvchr_(CC_VERTSPACE_, is_VERTWS_cp_high, c)
2158#define isWORDCHAR_uvchr(c) generic_invlist_uvchr_(CC_WORDCHAR_, c)
2159#define isXDIGIT_uvchr(c) generic_uvchr_(CC_XDIGIT_, is_XDIGIT_cp_high, c)
d0da05db
KW
2160
2161#define toFOLD_uvchr(c,s,l) to_uni_fold(c,s,l)
2162#define toLOWER_uvchr(c,s,l) to_uni_lower(c,s,l)
2163#define toTITLE_uvchr(c,s,l) to_uni_title(c,s,l)
2164#define toUPPER_uvchr(c,s,l) to_uni_upper(c,s,l)
2165
2166/* For backwards compatibility, even though '_uni' should mean official Unicode
2167 * code points, in Perl it means native for those below 256 */
2168#define isALPHA_uni(c) isALPHA_uvchr(c)
2169#define isALPHANUMERIC_uni(c) isALPHANUMERIC_uvchr(c)
2170#define isASCII_uni(c) isASCII_uvchr(c)
2171#define isBLANK_uni(c) isBLANK_uvchr(c)
2172#define isCNTRL_uni(c) isCNTRL_uvchr(c)
2173#define isDIGIT_uni(c) isDIGIT_uvchr(c)
2174#define isGRAPH_uni(c) isGRAPH_uvchr(c)
2175#define isIDCONT_uni(c) isIDCONT_uvchr(c)
2176#define isIDFIRST_uni(c) isIDFIRST_uvchr(c)
2177#define isLOWER_uni(c) isLOWER_uvchr(c)
2178#define isPRINT_uni(c) isPRINT_uvchr(c)
2179#define isPUNCT_uni(c) isPUNCT_uvchr(c)
2180#define isSPACE_uni(c) isSPACE_uvchr(c)
2181#define isPSXSPC_uni(c) isPSXSPC_uvchr(c)
2182#define isUPPER_uni(c) isUPPER_uvchr(c)
2183#define isVERTWS_uni(c) isVERTWS_uvchr(c)
2184#define isWORDCHAR_uni(c) isWORDCHAR_uvchr(c)
2185#define isXDIGIT_uni(c) isXDIGIT_uvchr(c)
2186#define toFOLD_uni(c,s,l) toFOLD_uvchr(c,s,l)
2187#define toLOWER_uni(c,s,l) toLOWER_uvchr(c,s,l)
2188#define toTITLE_uni(c,s,l) toTITLE_uvchr(c,s,l)
2189#define toUPPER_uni(c,s,l) toUPPER_uvchr(c,s,l)
a0ed51b3 2190
4650c663
KW
2191/* For internal core Perl use only: the base macros for defining macros like
2192 * isALPHA_LC_uvchr. These are like isALPHA_LC, but the input can be any code
6eb62d23 2193 * point, not just 0-255. Like generic_uvchr_, there are two versions, one for
4650c663 2194 * simple class definitions; the other for more complex. These are like
6eb62d23
KW
2195 * generic_uvchr_, so see it for more info. */
2196#define generic_LC_uvchr_(latin1, above_latin1, c) \
cd500f2f 2197 (c < 256 ? latin1(c) : above_latin1(c))
81d43abf 2198#define generic_LC_invlist_uvchr_(latin1, classnum, c) \
cd500f2f
KW
2199 (c < 256 ? latin1(c) : _is_uni_FOO(classnum, c))
2200
91456fff 2201#define isALPHA_LC_uvchr(c) generic_LC_invlist_uvchr_(isALPHA_LC, CC_ALPHA_, c)
6eb62d23 2202#define isALPHANUMERIC_LC_uvchr(c) generic_LC_invlist_uvchr_(isALPHANUMERIC_LC, \
91456fff 2203 CC_ALPHANUMERIC_, c)
b7d90381 2204#define isASCII_LC_uvchr(c) isASCII_LC(c)
6eb62d23 2205#define isBLANK_LC_uvchr(c) generic_LC_uvchr_(isBLANK_LC, \
b7d90381 2206 is_HORIZWS_cp_high, c)
feeab5a9 2207#define isCNTRL_LC_uvchr(c) (c < 256 ? isCNTRL_LC(c) : 0)
91456fff
KW
2208#define isDIGIT_LC_uvchr(c) generic_LC_invlist_uvchr_(isDIGIT_LC, CC_DIGIT_, c)
2209#define isGRAPH_LC_uvchr(c) generic_LC_invlist_uvchr_(isGRAPH_LC, CC_GRAPH_, c)
6eb62d23 2210#define isIDCONT_LC_uvchr(c) generic_LC_uvchr_(isIDCONT_LC, \
eba68aa0 2211 _is_uni_perl_idcont, c)
6eb62d23 2212#define isIDFIRST_LC_uvchr(c) generic_LC_uvchr_(isIDFIRST_LC, \
cd500f2f 2213 _is_uni_perl_idstart, c)
91456fff
KW
2214#define isLOWER_LC_uvchr(c) generic_LC_invlist_uvchr_(isLOWER_LC, CC_LOWER_, c)
2215#define isPRINT_LC_uvchr(c) generic_LC_invlist_uvchr_(isPRINT_LC, CC_PRINT_, c)
b7d90381 2216#define isPSXSPC_LC_uvchr(c) isSPACE_LC_uvchr(c)
91456fff 2217#define isPUNCT_LC_uvchr(c) generic_LC_invlist_uvchr_(isPUNCT_LC, CC_PUNCT_, c)
6eb62d23 2218#define isSPACE_LC_uvchr(c) generic_LC_uvchr_(isSPACE_LC, \
509fb054 2219 is_XPERLSPACE_cp_high, c)
91456fff 2220#define isUPPER_LC_uvchr(c) generic_LC_invlist_uvchr_(isUPPER_LC, CC_UPPER_, c)
81d43abf 2221#define isWORDCHAR_LC_uvchr(c) generic_LC_invlist_uvchr_(isWORDCHAR_LC, \
91456fff 2222 CC_WORDCHAR_, c)
81d43abf 2223#define isXDIGIT_LC_uvchr(c) generic_LC_uvchr_(isXDIGIT_LC, \
b7d90381 2224 is_XDIGIT_cp_high, c)
e712593e 2225
b7d90381 2226#define isBLANK_LC_uni(c) isBLANK_LC_uvchr(UNI_TO_NATIVE(c))
aaa51d5e 2227
da8c1a98
KW
2228/* The "_safe" macros make sure that we don't attempt to read beyond 'e', but
2229 * they don't otherwise go out of their way to look for malformed UTF-8. If
2230 * they can return accurate results without knowing if the input is otherwise
2231 * malformed, they do so. For example isASCII is accurate in spite of any
2232 * non-length malformations because it looks only at a single byte. Likewise
2233 * isDIGIT looks just at the first byte for code points 0-255, as all UTF-8
2234 * variant ones return FALSE. But, if the input has to be well-formed in order
2235 * for the results to be accurate, the macros will test and if malformed will
2236 * call a routine to die
2237 *
2238 * Except for toke.c, the macros do assume that e > p, asserting that on
2239 * DEBUGGING builds. Much code that calls these depends on this being true,
2240 * for other reasons. toke.c is treated specially as using the regular
2241 * assertion breaks it in many ways. All strings that these operate on there
2242 * are supposed to have an extra NUL character at the end, so that *e = \0. A
2243 * bunch of code in toke.c assumes that this is true, so the assertion allows
2244 * for that */
2245#ifdef PERL_IN_TOKE_C
2246# define _utf8_safe_assert(p,e) ((e) > (p) || ((e) == (p) && *(p) == '\0'))
2247#else
2248# define _utf8_safe_assert(p,e) ((e) > (p))
2249#endif
2250
6eb62d23 2251#define generic_utf8_safe_(classnum, p, e, above_latin1) \
c81b3562
KW
2252 ((! _utf8_safe_assert(p, e)) \
2253 ? (_force_out_malformed_utf8_message((U8 *) (p), (U8 *) (e), 0, 1), 0)\
2254 : (UTF8_IS_INVARIANT(*(p))) \
6eb62d23 2255 ? generic_isCC_(*(p), classnum) \
da8c1a98
KW
2256 : (UTF8_IS_DOWNGRADEABLE_START(*(p)) \
2257 ? ((LIKELY((e) - (p) > 1 && UTF8_IS_CONTINUATION(*((p)+1)))) \
6eb62d23 2258 ? generic_isCC_(EIGHT_BIT_UTF8_TO_NATIVE(*(p), *((p)+1 )), \
da8c1a98
KW
2259 classnum) \
2260 : (_force_out_malformed_utf8_message( \
2261 (U8 *) (p), (U8 *) (e), 0, 1), 0)) \
2262 : above_latin1))
b7d90381
KW
2263/* Like the above, but calls 'above_latin1(p)' to get the utf8 value.
2264 * 'above_latin1' can be a macro */
6eb62d23
KW
2265#define generic_func_utf8_safe_(classnum, above_latin1, p, e) \
2266 generic_utf8_safe_(classnum, p, e, above_latin1(p, e))
81d43abf 2267#define generic_non_invlist_utf8_safe_(classnum, above_latin1, p, e) \
6eb62d23 2268 generic_utf8_safe_(classnum, p, e, \
da8c1a98
KW
2269 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
2270 ? (_force_out_malformed_utf8_message( \
2271 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
2272 : above_latin1(p)))
2366ba44
KW
2273/* Like the above, but passes classnum to _isFOO_utf8(), instead of having an
2274 * 'above_latin1' parameter */
81d43abf 2275#define generic_invlist_utf8_safe_(classnum, p, e) \
6eb62d23 2276 generic_utf8_safe_(classnum, p, e, _is_utf8_FOO(classnum, p, e))
922e8cb4 2277
cc8ab7c0 2278/* Like the above, but should be used only when it is known that there are no
ff7ecfc3
KW
2279 * characters in the upper-Latin1 range (128-255 on ASCII platforms) which the
2280 * class is TRUE for. Hence it can skip the tests for this range.
2281 * 'above_latin1' should include its arguments */
6eb62d23 2282#define generic_utf8_safe_no_upper_latin1_(classnum, p, e, above_latin1) \
da8c1a98 2283 (__ASSERT_(_utf8_safe_assert(p, e)) \
2d8dd9eb 2284 (isASCII(*(p))) \
6eb62d23 2285 ? generic_isCC_(*(p), classnum) \
da8c1a98
KW
2286 : (UTF8_IS_DOWNGRADEABLE_START(*(p))) \
2287 ? 0 /* Note that doesn't check validity for latin1 */ \
2288 : above_latin1)
2289
84238efa 2290
059703b0
KW
2291#define isALPHA_utf8(p, e) isALPHA_utf8_safe(p, e)
2292#define isALPHANUMERIC_utf8(p, e) isALPHANUMERIC_utf8_safe(p, e)
2293#define isASCII_utf8(p, e) isASCII_utf8_safe(p, e)
2294#define isBLANK_utf8(p, e) isBLANK_utf8_safe(p, e)
2295#define isCNTRL_utf8(p, e) isCNTRL_utf8_safe(p, e)
2296#define isDIGIT_utf8(p, e) isDIGIT_utf8_safe(p, e)
2297#define isGRAPH_utf8(p, e) isGRAPH_utf8_safe(p, e)
2298#define isIDCONT_utf8(p, e) isIDCONT_utf8_safe(p, e)
2299#define isIDFIRST_utf8(p, e) isIDFIRST_utf8_safe(p, e)
2300#define isLOWER_utf8(p, e) isLOWER_utf8_safe(p, e)
2301#define isPRINT_utf8(p, e) isPRINT_utf8_safe(p, e)
2302#define isPSXSPC_utf8(p, e) isPSXSPC_utf8_safe(p, e)
2303#define isPUNCT_utf8(p, e) isPUNCT_utf8_safe(p, e)
2304#define isSPACE_utf8(p, e) isSPACE_utf8_safe(p, e)
2305#define isUPPER_utf8(p, e) isUPPER_utf8_safe(p, e)
2306#define isVERTWS_utf8(p, e) isVERTWS_utf8_safe(p, e)
2307#define isWORDCHAR_utf8(p, e) isWORDCHAR_utf8_safe(p, e)
2308#define isXDIGIT_utf8(p, e) isXDIGIT_utf8_safe(p, e)
e8fa43e2 2309
91456fff 2310#define isALPHA_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_ALPHA_, p, e)
da8c1a98 2311#define isALPHANUMERIC_utf8_safe(p, e) \
91456fff 2312 generic_invlist_utf8_safe_(CC_ALPHANUMERIC_, p, e)
da8c1a98
KW
2313#define isASCII_utf8_safe(p, e) \
2314 /* Because ASCII is invariant under utf8, the non-utf8 macro \
2315 * works */ \
2316 (__ASSERT_(_utf8_safe_assert(p, e)) isASCII(*(p)))
2317#define isBLANK_utf8_safe(p, e) \
91456fff 2318 generic_non_invlist_utf8_safe_(CC_BLANK_, is_HORIZWS_high, p, e)
da8c1a98 2319
e8fa43e2
KW
2320#ifdef EBCDIC
2321 /* Because all controls are UTF-8 invariants in EBCDIC, we can use this
2322 * more efficient macro instead of the more general one */
da8c1a98 2323# define isCNTRL_utf8_safe(p, e) \
56d02b8c 2324 (__ASSERT_(_utf8_safe_assert(p, e)) isCNTRL_L1(*(p)))
e8fa43e2 2325#else
91456fff 2326# define isCNTRL_utf8_safe(p, e) generic_utf8_safe_(CC_CNTRL_, p, e, 0)
e8fa43e2
KW
2327#endif
2328
da8c1a98 2329#define isDIGIT_utf8_safe(p, e) \
91456fff
KW
2330 generic_utf8_safe_no_upper_latin1_(CC_DIGIT_, p, e, \
2331 _is_utf8_FOO(CC_DIGIT_, p, e))
2332#define isGRAPH_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_GRAPH_, p, e)
2333#define isIDCONT_utf8_safe(p, e) generic_func_utf8_safe_(CC_WORDCHAR_, \
dd1a3ba7 2334 _is_utf8_perl_idcont, p, e)
e5dcd934 2335
c11ff943
KW
2336/* To prevent S_scan_word in toke.c from hanging, we have to make sure that
2337 * IDFIRST is an alnum. See
8034715d 2338 * https://github.com/Perl/perl5/issues/10275 for more detail than you
f91dcd13
KW
2339 * ever wanted to know about. (In the ASCII range, there isn't a difference.)
2340 * This used to be not the XID version, but we decided to go with the more
2341 * modern Unicode definition */
da8c1a98 2342#define isIDFIRST_utf8_safe(p, e) \
91456fff 2343 generic_func_utf8_safe_(CC_IDFIRST_, \
dd1a3ba7 2344 _is_utf8_perl_idstart, (U8 *) (p), (U8 *) (e))
da8c1a98 2345
91456fff
KW
2346#define isLOWER_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_LOWER_, p, e)
2347#define isPRINT_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_PRINT_, p, e)
da8c1a98 2348#define isPSXSPC_utf8_safe(p, e) isSPACE_utf8_safe(p, e)
91456fff 2349#define isPUNCT_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_PUNCT_, p, e)
da8c1a98 2350#define isSPACE_utf8_safe(p, e) \
91456fff
KW
2351 generic_non_invlist_utf8_safe_(CC_SPACE_, is_XPERLSPACE_high, p, e)
2352#define isUPPER_utf8_safe(p, e) generic_invlist_utf8_safe_(CC_UPPER_, p, e)
da8c1a98 2353#define isVERTWS_utf8_safe(p, e) \
91456fff 2354 generic_non_invlist_utf8_safe_(CC_VERTSPACE_, is_VERTWS_high, p, e)
da8c1a98 2355#define isWORDCHAR_utf8_safe(p, e) \
91456fff 2356 generic_invlist_utf8_safe_(CC_WORDCHAR_, p, e)
da8c1a98 2357#define isXDIGIT_utf8_safe(p, e) \
91456fff 2358 generic_utf8_safe_no_upper_latin1_(CC_XDIGIT_, p, e, \
da8c1a98
KW
2359 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
2360 ? (_force_out_malformed_utf8_message( \
2361 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
2362 : is_XDIGIT_high(p)))
a0ed51b3 2363
059703b0
KW
2364#define toFOLD_utf8(p,e,s,l) toFOLD_utf8_safe(p,e,s,l)
2365#define toLOWER_utf8(p,e,s,l) toLOWER_utf8_safe(p,e,s,l)
2366#define toTITLE_utf8(p,e,s,l) toTITLE_utf8_safe(p,e,s,l)
2367#define toUPPER_utf8(p,e,s,l) toUPPER_utf8_safe(p,e,s,l)
2e8adce6 2368
567b353c 2369/* For internal core use only, subject to change */
059703b0
KW
2370#define _toFOLD_utf8_flags(p,e,s,l,f) _to_utf8_fold_flags (p,e,s,l,f)
2371#define _toLOWER_utf8_flags(p,e,s,l,f) _to_utf8_lower_flags(p,e,s,l,f)
2372#define _toTITLE_utf8_flags(p,e,s,l,f) _to_utf8_title_flags(p,e,s,l,f)
2373#define _toUPPER_utf8_flags(p,e,s,l,f) _to_utf8_upper_flags(p,e,s,l,f)
a1a5ec35
KW
2374
2375#define toFOLD_utf8_safe(p,e,s,l) _toFOLD_utf8_flags(p,e,s,l, FOLD_FLAGS_FULL)
2376#define toLOWER_utf8_safe(p,e,s,l) _toLOWER_utf8_flags(p,e,s,l, 0)
2377#define toTITLE_utf8_safe(p,e,s,l) _toTITLE_utf8_flags(p,e,s,l, 0)
2378#define toUPPER_utf8_safe(p,e,s,l) _toUPPER_utf8_flags(p,e,s,l, 0)
567b353c 2379
059703b0
KW
2380#define isALPHA_LC_utf8(p, e) isALPHA_LC_utf8_safe(p, e)
2381#define isALPHANUMERIC_LC_utf8(p, e) isALPHANUMERIC_LC_utf8_safe(p, e)
2382#define isASCII_LC_utf8(p, e) isASCII_LC_utf8_safe(p, e)
2383#define isBLANK_LC_utf8(p, e) isBLANK_LC_utf8_safe(p, e)
2384#define isCNTRL_LC_utf8(p, e) isCNTRL_LC_utf8_safe(p, e)
2385#define isDIGIT_LC_utf8(p, e) isDIGIT_LC_utf8_safe(p, e)
2386#define isGRAPH_LC_utf8(p, e) isGRAPH_LC_utf8_safe(p, e)
2387#define isIDCONT_LC_utf8(p, e) isIDCONT_LC_utf8_safe(p, e)
2388#define isIDFIRST_LC_utf8(p, e) isIDFIRST_LC_utf8_safe(p, e)
2389#define isLOWER_LC_utf8(p, e) isLOWER_LC_utf8_safe(p, e)
2390#define isPRINT_LC_utf8(p, e) isPRINT_LC_utf8_safe(p, e)
2391#define isPSXSPC_LC_utf8(p, e) isPSXSPC_LC_utf8_safe(p, e)
2392#define isPUNCT_LC_utf8(p, e) isPUNCT_LC_utf8_safe(p, e)
2393#define isSPACE_LC_utf8(p, e) isSPACE_LC_utf8_safe(p, e)
2394#define isUPPER_LC_utf8(p, e) isUPPER_LC_utf8_safe(p, e)
2395#define isWORDCHAR_LC_utf8(p, e) isWORDCHAR_LC_utf8_safe(p, e)
2396#define isXDIGIT_LC_utf8(p, e) isXDIGIT_LC_utf8_safe(p, e)
34aeb2e9 2397
da8c1a98 2398/* For internal core Perl use only: the base macros for defining macros like
6eb62d23 2399 * isALPHA_LC_utf8_safe. These are like generic_utf8_, but if the first code
da8c1a98
KW
2400 * point in 'p' is within the 0-255 range, it uses locale rules from the
2401 * passed-in 'macro' parameter */
6eb62d23 2402#define generic_LC_utf8_safe_(macro, p, e, above_latin1) \
da8c1a98
KW
2403 (__ASSERT_(_utf8_safe_assert(p, e)) \
2404 (UTF8_IS_INVARIANT(*(p))) \
2405 ? macro(*(p)) \
2406 : (UTF8_IS_DOWNGRADEABLE_START(*(p)) \
2407 ? ((LIKELY((e) - (p) > 1 && UTF8_IS_CONTINUATION(*((p)+1)))) \
2408 ? macro(EIGHT_BIT_UTF8_TO_NATIVE(*(p), *((p)+1))) \
2409 : (_force_out_malformed_utf8_message( \
2410 (U8 *) (p), (U8 *) (e), 0, 1), 0)) \
2411 : above_latin1))
2412
6eb62d23
KW
2413#define generic_LC_invlist_utf8_safe_(macro, classnum, p, e) \
2414 generic_LC_utf8_safe_(macro, p, e, \
2366ba44 2415 _is_utf8_FOO(classnum, p, e))
da8c1a98 2416
6eb62d23
KW
2417#define generic_LC_func_utf8_safe_(macro, above_latin1, p, e) \
2418 generic_LC_utf8_safe_(macro, p, e, above_latin1(p, e))
da8c1a98 2419
6eb62d23
KW
2420#define generic_LC_non_invlist_utf8_safe_(classnum, above_latin1, p, e) \
2421 generic_LC_utf8_safe_(classnum, p, e, \
da8c1a98
KW
2422 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
2423 ? (_force_out_malformed_utf8_message( \
2424 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
2425 : above_latin1(p)))
2426
2427#define isALPHANUMERIC_LC_utf8_safe(p, e) \
81d43abf 2428 generic_LC_invlist_utf8_safe_(isALPHANUMERIC_LC, \
91456fff 2429 CC_ALPHANUMERIC_, p, e)
da8c1a98 2430#define isALPHA_LC_utf8_safe(p, e) \
91456fff 2431 generic_LC_invlist_utf8_safe_(isALPHA_LC, CC_ALPHA_, p, e)
da8c1a98
KW
2432#define isASCII_LC_utf8_safe(p, e) \
2433 (__ASSERT_(_utf8_safe_assert(p, e)) isASCII_LC(*(p)))
2434#define isBLANK_LC_utf8_safe(p, e) \
6eb62d23 2435 generic_LC_non_invlist_utf8_safe_(isBLANK_LC, is_HORIZWS_high, p, e)
da8c1a98 2436#define isCNTRL_LC_utf8_safe(p, e) \
6eb62d23 2437 generic_LC_utf8_safe_(isCNTRL_LC, p, e, 0)
da8c1a98 2438#define isDIGIT_LC_utf8_safe(p, e) \
91456fff 2439 generic_LC_invlist_utf8_safe_(isDIGIT_LC, CC_DIGIT_, p, e)
da8c1a98 2440#define isGRAPH_LC_utf8_safe(p, e) \
91456fff 2441 generic_LC_invlist_utf8_safe_(isGRAPH_LC, CC_GRAPH_, p, e)
da8c1a98 2442#define isIDCONT_LC_utf8_safe(p, e) \
6eb62d23 2443 generic_LC_func_utf8_safe_(isIDCONT_LC, \
dd1a3ba7 2444 _is_utf8_perl_idcont, p, e)
da8c1a98 2445#define isIDFIRST_LC_utf8_safe(p, e) \
6eb62d23 2446 generic_LC_func_utf8_safe_(isIDFIRST_LC, \
dd1a3ba7 2447 _is_utf8_perl_idstart, p, e)
da8c1a98 2448#define isLOWER_LC_utf8_safe(p, e) \
91456fff 2449 generic_LC_invlist_utf8_safe_(isLOWER_LC, CC_LOWER_, p, e)
da8c1a98 2450#define isPRINT_LC_utf8_safe(p, e) \
91456fff 2451 generic_LC_invlist_utf8_safe_(isPRINT_LC, CC_PRINT_, p, e)
da8c1a98
KW
2452#define isPSXSPC_LC_utf8_safe(p, e) isSPACE_LC_utf8_safe(p, e)
2453#define isPUNCT_LC_utf8_safe(p, e) \
91456fff 2454 generic_LC_invlist_utf8_safe_(isPUNCT_LC, CC_PUNCT_, p, e)
da8c1a98 2455#define isSPACE_LC_utf8_safe(p, e) \
6eb62d23 2456 generic_LC_non_invlist_utf8_safe_(isSPACE_LC, is_XPERLSPACE_high, p, e)
da8c1a98 2457#define isUPPER_LC_utf8_safe(p, e) \
91456fff 2458 generic_LC_invlist_utf8_safe_(isUPPER_LC, CC_UPPER_, p, e)
da8c1a98 2459#define isWORDCHAR_LC_utf8_safe(p, e) \
91456fff 2460 generic_LC_invlist_utf8_safe_(isWORDCHAR_LC, CC_WORDCHAR_, p, e)
da8c1a98 2461#define isXDIGIT_LC_utf8_safe(p, e) \
6eb62d23 2462 generic_LC_non_invlist_utf8_safe_(isXDIGIT_LC, is_XDIGIT_high, p, e)
aaa51d5e 2463
fbc19f27
KW
2464/* Macros for backwards compatibility and for completeness when the ASCII and
2465 * Latin1 values are identical */
b7d90381
KW
2466#define isALPHAU(c) isALPHA_L1(c)
2467#define isDIGIT_L1(c) isDIGIT_A(c)
2468#define isOCTAL(c) isOCTAL_A(c)
2469#define isOCTAL_L1(c) isOCTAL_A(c)
2470#define isXDIGIT_L1(c) isXDIGIT_A(c)
2471#define isALNUM(c) isWORDCHAR(c)
a377c856 2472#define isALNUM_A(c) isALNUM(c)
b7d90381
KW
2473#define isALNUMU(c) isWORDCHAR_L1(c)
2474#define isALNUM_LC(c) isWORDCHAR_LC(c)
2475#define isALNUM_uni(c) isWORDCHAR_uni(c)
2e28f0b9 2476#define isALNUM_LC_uvchr(c) isWORDCHAR_LC_uvchr(c)
059703b0 2477#define isALNUM_utf8(p,e) isWORDCHAR_utf8(p,e)
4c1d9526 2478#define isALNUM_utf8_safe(p,e) isWORDCHAR_utf8_safe(p,e)
059703b0 2479#define isALNUM_LC_utf8(p,e)isWORDCHAR_LC_utf8(p,e)
4c1d9526 2480#define isALNUM_LC_utf8_safe(p,e)isWORDCHAR_LC_utf8_safe(p,e)
b7d90381
KW
2481#define isALNUMC_A(c) isALPHANUMERIC_A(c) /* Mnemonic: "C's alnum" */
2482#define isALNUMC_L1(c) isALPHANUMERIC_L1(c)
2483#define isALNUMC(c) isALPHANUMERIC(c)
2484#define isALNUMC_LC(c) isALPHANUMERIC_LC(c)
2485#define isALNUMC_uni(c) isALPHANUMERIC_uni(c)
15861f94 2486#define isALNUMC_LC_uvchr(c) isALPHANUMERIC_LC_uvchr(c)
059703b0 2487#define isALNUMC_utf8(p,e) isALPHANUMERIC_utf8(p,e)
4c1d9526
KW
2488#define isALNUMC_utf8_safe(p,e) isALPHANUMERIC_utf8_safe(p,e)
2489#define isALNUMC_LC_utf8_safe(p,e) isALPHANUMERIC_LC_utf8_safe(p,e)
fbc19f27 2490
2bd1cbf6
KW
2491/* On EBCDIC platforms, CTRL-@ is 0, CTRL-A is 1, etc, just like on ASCII,
2492 * except that they don't necessarily mean the same characters, e.g. CTRL-D is
2493 * 4 on both systems, but that is EOT on ASCII; ST on EBCDIC.
2494 * '?' is special-cased on EBCDIC to APC, which is the control there that is
2495 * the outlier from the block that contains the other controls, just like
2496 * toCTRL('?') on ASCII yields DEL, the control that is the outlier from the C0
2497 * block. If it weren't special cased, it would yield a non-control.
88794300
KW
2498 * The conversion works both ways, so toCTRL('D') is 4, and toCTRL(4) is D,
2499 * etc. */
2bd1cbf6 2500#ifndef EBCDIC
75763b3a 2501# define toCTRL(c) (__ASSERT_(FITS_IN_8_BITS(c)) toUPPER(((U8)(c))) ^ 64)
2bd1cbf6 2502#else
75763b3a
KW
2503# define toCTRL(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
2504 ((isPRINT_A(c)) \
2505 ? (UNLIKELY((c) == '?') \
2506 ? QUESTION_MARK_CTRL \
2507 : (NATIVE_TO_LATIN1(toUPPER((U8) (c))) ^ 64)) \
2508 : (UNLIKELY((c) == QUESTION_MARK_CTRL) \
2509 ? '?' \
2510 : (LATIN1_TO_NATIVE(((U8) (c)) ^ 64)))))
2bd1cbf6 2511#endif
bbce6d69 2512
837781cc
KW
2513/*
2514=for apidoc Ay||line_t
2515The typedef to use to declare variables that are to hold line numbers.
2516
2517=cut
2518
2519 Line numbers are unsigned, 32 bits.
2520*/
dea28490 2521typedef U32 line_t;
ee178617 2522#define LINE_Tf U32uf
e5dcd934 2523#define NOLINE ((line_t) 4294967295UL) /* = FFFFFFFF */
378cc40b 2524
91152fc1
DG
2525/* Helpful alias for version prescan */
2526#define is_LAX_VERSION(a,b) \
1604cfb0 2527 (a != Perl_prescan_version(aTHX_ a, FALSE, b, NULL, NULL, NULL, NULL))
91152fc1
DG
2528
2529#define is_STRICT_VERSION(a,b) \
1604cfb0 2530 (a != Perl_prescan_version(aTHX_ a, TRUE, b, NULL, NULL, NULL, NULL))
91152fc1
DG
2531
2532#define BADVERSION(a,b,c) \
1604cfb0
MS
2533 if (b) { \
2534 *b = c; \
2535 } \
2536 return a;
8c52afec 2537
1ce77b7d
KW
2538/* Converts a character KNOWN to represent a hexadecimal digit (0-9, A-F, or
2539 * a-f) to its numeric value without using any branches. The input is
2540 * validated only by an assert() in DEBUGGING builds.
2541 *
2542 * It works by right shifting and isolating the bit that is 0 for the digits,
2543 * and 1 for at least the alphas A-F, a-f. The bit is shifted to the ones
2544 * position, and then to the eights position. Both are added together to form
2545 * 0 if the input is '0'-'9' and to form 9 if alpha. This is added to the
2546 * final four bits of the input to form the correct value. */
2547#define XDIGIT_VALUE(c) (__ASSERT_(isXDIGIT(c)) \
2548 ((NATIVE_TO_LATIN1(c) >> 6) & 1) /* 1 if alpha; 0 if not */ \
2549 + ((NATIVE_TO_LATIN1(c) >> 3) & 8) /* 8 if alpha; 0 if not */ \
2550 + ((c) & 0xF)) /* 0-9 if input valid hex digit */
2551
2552/* The argument is a string pointer, which is advanced. */
2553#define READ_XDIGIT(s) ((s)++, XDIGIT_VALUE(*((s) - 1)))
95a59cab 2554
cb27eebd
KW
2555/* Converts a character known to represent an octal digit (0-7) to its numeric
2556 * value. The input is validated only by an assert() in DEBUGGING builds. In
2557 * both ASCII and EBCDIC the last 3 bits of the octal digits range from 0-7. */
2558#define OCTAL_VALUE(c) (__ASSERT_(isOCTAL(c)) (7 & (c)))
2559
305b8651 2560/* Efficiently returns a boolean as to if two native characters are equivalent
f1460a66 2561 * case-insensitively. At least one of the characters must be one of [A-Za-z];
305b8651
KW
2562 * the ALPHA in the name is to remind you of that. This is asserted() in
2563 * DEBUGGING builds. Because [A-Za-z] are invariant under UTF-8, this macro
2564 * works (on valid input) for both non- and UTF-8-encoded bytes.
2565 *
2566 * When one of the inputs is a compile-time constant and gets folded by the
2567 * compiler, this reduces to an AND and a TEST. On both EBCDIC and ASCII
2568 * machines, 'A' and 'a' differ by a single bit; the same with the upper and
2569 * lower case of all other ASCII-range alphabetics. On ASCII platforms, they
96ca48da
KW
2570 * are 32 apart; on EBCDIC, they are 64. At compile time, this uses an
2571 * exclusive 'or' to find that bit and then inverts it to form a mask, with
2572 * just a single 0, in the bit position where the upper- and lowercase differ.
2573 * */
305b8651
KW
2574#define isALPHA_FOLD_EQ(c1, c2) \
2575 (__ASSERT_(isALPHA_A(c1) || isALPHA_A(c2)) \
2576 ((c1) & ~('A' ^ 'a')) == ((c2) & ~('A' ^ 'a')))
2577#define isALPHA_FOLD_NE(c1, c2) (! isALPHA_FOLD_EQ((c1), (c2)))
2578
8e84507e 2579/*
3f620621 2580=for apidoc_section $memory
ccfc67b7 2581
a02a5408 2582=for apidoc Am|void|Newx|void* ptr|int nitems|type
25a3e84c 2583=for apidoc_item |void*|safemalloc|size_t size
c372fad0 2584
954c1994
GS
2585The XSUB-writer's interface to the C C<malloc> function.
2586
596f7718 2587Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2588
c5008215
JC
2589In 5.9.3, Newx() and friends replace the older New() API, and drops
2590the first parameter, I<x>, a debug aid which allowed callers to identify
37b8b4c9 2591themselves. This aid has been superseded by a new build option,
d10b4965 2592PERL_MEM_LOG (see L<perlhacktips/PERL_MEM_LOG>). The older API is still
c5008215
JC
2593there for use in XS modules supporting older perls.
2594
a02a5408 2595=for apidoc Am|void|Newxc|void* ptr|int nitems|type|cast
954c1994 2596The XSUB-writer's interface to the C C<malloc> function, with
fbe13c60 2597cast. See also C<L</Newx>>.
954c1994 2598
596f7718 2599Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2600
a02a5408 2601=for apidoc Am|void|Newxz|void* ptr|int nitems|type
c372fad0
TK
2602=for apidoc_item |void*|safecalloc|size_t nitems|size_t item_size
2603
954c1994 2604The XSUB-writer's interface to the C C<malloc> function. The allocated
fbe13c60 2605memory is zeroed with C<memzero>. See also C<L</Newx>>.
a02a5408 2606
596f7718 2607Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2608
954c1994 2609=for apidoc Am|void|Renew|void* ptr|int nitems|type
c372fad0
TK
2610=for apidoc_item |void*|saferealloc|void *ptr|size_t size
2611
954c1994
GS
2612The XSUB-writer's interface to the C C<realloc> function.
2613
596f7718 2614Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2615
954c1994
GS
2616=for apidoc Am|void|Renewc|void* ptr|int nitems|type|cast
2617The XSUB-writer's interface to the C C<realloc> function, with
2618cast.
2619
596f7718 2620Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2621
49b8b560 2622=for apidoc Am|void|Safefree|void* ptr
954c1994
GS
2623The XSUB-writer's interface to the C C<free> function.
2624
596f7718 2625This should B<ONLY> be used on memory obtained using L</"Newx"> and friends.
0d7b2759 2626
3f620621 2627=for apidoc_section $string
75b94e77
KW
2628=for apidoc Am|void |Move |void* src|void* dest|int nitems|type
2629=for apidoc_item |void *|MoveD|void* src|void* dest|int nitems|type
954c1994 2630The XSUB-writer's interface to the C C<memmove> function. The C<src> is the
926bb54c 2631source, C<dest> is the destination, C<nitems> is the number of items, and
fbe13c60 2632C<type> is the type. Can do overlapping moves. See also C<L</Copy>>.
954c1994 2633
75b94e77 2634C<MoveD> is like C<Move> but returns C<dest>. Useful
72d33970 2635for encouraging compilers to tail-call
e90e2364
NC
2636optimise.
2637
75b94e77
KW
2638=for apidoc Am|void |Copy |void* src|void* dest|int nitems|type
2639=for apidoc_item |void *|CopyD|void* src|void* dest|int nitems|type
954c1994 2640The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the
926bb54c 2641source, C<dest> is the destination, C<nitems> is the number of items, and
fbe13c60 2642C<type> is the type. May fail on overlapping copies. See also C<L</Move>>.
954c1994 2643
75b94e77 2644C<CopyD> is like C<Copy> but returns C<dest>. Useful
72d33970 2645for encouraging compilers to tail-call
e90e2364
NC
2646optimise.
2647
75b94e77
KW
2648=for apidoc Am|void |Zero |void* dest|int nitems|type
2649=for apidoc_item |void *|ZeroD|void* dest|int nitems|type
954c1994
GS
2650
2651The XSUB-writer's interface to the C C<memzero> function. The C<dest> is the
2652destination, C<nitems> is the number of items, and C<type> is the type.
2653
75b94e77 2654C<ZeroD> is like C<Zero> but returns C<dest>. Useful
72d33970 2655for encouraging compilers to tail-call
e90e2364
NC
2656optimise.
2657
3f620621 2658=for apidoc_section $utility
e538104b 2659=for apidoc Amu|void|StructCopy|type *src|type *dest|type
4375e838 2660This is an architecture-independent macro to copy one structure to another.
954c1994 2661
7e337ee0
JH
2662=for apidoc Am|void|PoisonWith|void* dest|int nitems|type|U8 byte
2663
2664Fill up memory with a byte pattern (a byte repeated over and over
2665again) that hopefully catches attempts to access uninitialized memory.
2666
2667=for apidoc Am|void|PoisonNew|void* dest|int nitems|type
2668
2669PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
2670
1c12ffb4 2671=for apidoc Am|void|PoisonFree|void* dest|int nitems|type
7e337ee0
JH
2672
2673PoisonWith(0xEF) for catching access to freed memory.
2674
9965345d
JH
2675=for apidoc Am|void|Poison|void* dest|int nitems|type
2676
7e337ee0 2677PoisonWith(0xEF) for catching access to freed memory.
9965345d
JH
2678
2679=cut */
954c1994 2680
561b68a9
SH
2681/* Maintained for backwards-compatibility only. Use newSV() instead. */
2682#ifndef PERL_CORE
ff06c60c 2683#define NEWSV(x,len) newSV(len)
561b68a9 2684#endif
ff06c60c 2685
b7112dce 2686#define MEM_SIZE_MAX ((MEM_SIZE)-1)
19a94d75 2687
a500027b 2688#define _PERL_STRLEN_ROUNDUP_UNCHECKED(n) (((n) - 1 + PERL_STRLEN_ROUNDUP_QUANTUM) & ~((MEM_SIZE)PERL_STRLEN_ROUNDUP_QUANTUM - 1))
e6bdf523 2689
27d5b266 2690#ifdef PERL_MALLOC_WRAP
e6bdf523
DM
2691
2692/* This expression will be constant-folded at compile time. It checks
2693 * whether or not the type of the count n is so small (e.g. U8 or U16, or
2694 * U32 on 64-bit systems) that there's no way a wrap-around could occur.
2695 * As well as avoiding the need for a run-time check in some cases, it's
2696 * designed to avoid compiler warnings like:
2697 * comparison is always false due to limited range of data type
73e8ff00
DM
2698 * It's mathematically equivalent to
2699 * max(n) * sizeof(t) > MEM_SIZE_MAX
e6bdf523
DM
2700 */
2701
2702# define _MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) \
445198b9
LM
2703 ( sizeof(MEM_SIZE) < sizeof(n) \
2704 || sizeof(t) > ((MEM_SIZE)1 << 8*(sizeof(MEM_SIZE) - sizeof(n))))
e6bdf523 2705
88f9f128 2706/* This is written in a slightly odd way to avoid various spurious
d98e5cde
DM
2707 * compiler warnings. We *want* to write the expression as
2708 * _MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) && (n > C)
2709 * (for some compile-time constant C), but even when the LHS
2710 * constant-folds to false at compile-time, g++ insists on emitting
2711 * warnings about the RHS (e.g. "comparison is always false"), so instead
2712 * we write it as
e6bdf523 2713 *
d98e5cde 2714 * (cond ? n : X) > C
88f9f128 2715 *
d98e5cde
DM
2716 * where X is a constant with X > C always false. Choosing a value for X
2717 * is tricky. If 0, some compilers will complain about 0 > C always being
2718 * false; if 1, Coverity complains when n happens to be the constant value
2719 * '1', that cond ? 1 : 1 has the same value on both branches; so use C
2720 * for X and hope that nothing else whines.
e6bdf523
DM
2721 */
2722
2723# define _MEM_WRAP_WILL_WRAP(n,t) \
88f9f128
DM
2724 ((_MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) ? (MEM_SIZE)(n) : \
2725 MEM_SIZE_MAX/sizeof(t)) > MEM_SIZE_MAX/sizeof(t))
e6bdf523
DM
2726
2727# define MEM_WRAP_CHECK(n,t) \
1604cfb0 2728 (void)(UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
e6bdf523
DM
2729 && (croak_memory_wrap(),0))
2730
2731# define MEM_WRAP_CHECK_1(n,t,a) \
1604cfb0
MS
2732 (void)(UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
2733 && (Perl_croak_nocontext("%s",(a)),0))
e6bdf523 2734
814eedc8
DD
2735/* "a" arg must be a string literal */
2736# define MEM_WRAP_CHECK_s(n,t,a) \
ca0572d7
KW
2737 ( (void) (UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
2738 && (Perl_croak_nocontext(ASSERT_IS_LITERAL(a)), 0)))
814eedc8 2739
0622ec7a 2740# define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
27d5b266 2741
0622ec7a 2742# define PERL_STRLEN_ROUNDUP(n) ((void)(((n) > MEM_SIZE_MAX - 2 * PERL_STRLEN_ROUNDUP_QUANTUM) ? (croak_memory_wrap(),0) : 0), _PERL_STRLEN_ROUNDUP_UNCHECKED(n))
27d5b266
JH
2743#else
2744
0622ec7a
KW
2745# define MEM_WRAP_CHECK(n,t)
2746# define MEM_WRAP_CHECK_1(n,t,a)
2747# define MEM_WRAP_CHECK_s(n,t,a)
2748# define MEM_WRAP_CHECK_(n,t)
8b44ba4c 2749
0622ec7a 2750# define PERL_STRLEN_ROUNDUP(n) _PERL_STRLEN_ROUNDUP_UNCHECKED(n)
27d5b266 2751
1936d2a7 2752#endif
8b44ba4c 2753
fe4f188c 2754#ifdef PERL_MEM_LOG
46c6c7e2 2755/*
9f653bb5 2756 * If PERL_MEM_LOG is defined, all Newx()s, Renew()s, and Safefree()s
46c6c7e2
JH
2757 * go through functions, which are handy for debugging breakpoints, but
2758 * which more importantly get the immediate calling environment (file and
e352bcff
JH
2759 * line number, and C function name if available) passed in. This info can
2760 * then be used for logging the calls, for which one gets a sample
73d1d973 2761 * implementation unless -DPERL_MEM_LOG_NOIMPL is also defined.
3609ea0d 2762 *
46c6c7e2 2763 * Known problems:
94e892a6 2764 * - not all memory allocs get logged, only those
46c6c7e2 2765 * that go through Newx() and derivatives (while all
94e892a6 2766 * Safefrees do get logged)
46c6c7e2
JH
2767 * - __FILE__ and __LINE__ do not work everywhere
2768 * - __func__ or __FUNCTION__ even less so
2769 * - I think more goes on after the perlio frees but
2770 * the thing is that STDERR gets closed (as do all
2771 * the file descriptors)
2772 * - no deeper calling stack than the caller of the Newx()
2773 * or the kind, but do I look like a C reflection/introspection
2774 * utility to you?
2775 * - the function prototypes for the logging functions
2776 * probably should maybe be somewhere else than handy.h
2777 * - one could consider inlining (macrofying) the logging
2778 * for speed, but I am too lazy
2779 * - one could imagine recording the allocations in a hash,
2780 * (keyed by the allocation address?), and maintain that
2781 * through reallocs and frees, but how to do that without
2782 * any News() happening...?
73d1d973 2783 * - lots of -Ddefines to get useful/controllable output
b953482e 2784 * - lots of ENV reads
46c6c7e2
JH
2785 */
2786
0b0ab801 2787# ifdef PERL_CORE
73d1d973 2788# ifndef PERL_MEM_LOG_NOIMPL
0b0ab801
MHM
2789enum mem_log_type {
2790 MLT_ALLOC,
2791 MLT_REALLOC,
d7a2c63c
MHM
2792 MLT_FREE,
2793 MLT_NEW_SV,
2794 MLT_DEL_SV
0b0ab801
MHM
2795};
2796# endif
2797# endif
2798
fe4f188c
JH
2799#endif
2800
2801#ifdef PERL_MEM_LOG
d1401ee9
MHM
2802#define MEM_LOG_ALLOC(n,t,a) Perl_mem_log_alloc(n,sizeof(t),STRINGIFY(t),a,__FILE__,__LINE__,FUNCTION__)
2803#define MEM_LOG_REALLOC(n,t,v,a) Perl_mem_log_realloc(n,sizeof(t),STRINGIFY(t),v,a,__FILE__,__LINE__,FUNCTION__)
46c6c7e2 2804#define MEM_LOG_FREE(a) Perl_mem_log_free(a,__FILE__,__LINE__,FUNCTION__)
fe4f188c
JH
2805#endif
2806
2807#ifndef MEM_LOG_ALLOC
2808#define MEM_LOG_ALLOC(n,t,a) (a)
2809#endif
2810#ifndef MEM_LOG_REALLOC
2811#define MEM_LOG_REALLOC(n,t,v,a) (a)
2812#endif
2813#ifndef MEM_LOG_FREE
2814#define MEM_LOG_FREE(a) (a)
2815#endif
2816
d1401ee9
MHM
2817#define Newx(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
2818#define Newxc(v,n,t,c) (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
2819#define Newxz(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safecalloc((n),sizeof(t)))))
a6f6820f
NC
2820
2821#ifndef PERL_CORE
a02a5408
JC
2822/* pre 5.9.x compatibility */
2823#define New(x,v,n,t) Newx(v,n,t)
2824#define Newc(x,v,n,t,c) Newxc(v,n,t,c)
4541904d 2825#define Newz(x,v,n,t) Newxz(v,n,t)
a6f6820f 2826#endif
a02a5408 2827
ff68c719 2828#define Renew(v,n,t) \
1604cfb0 2829 (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
ff68c719 2830#define Renewc(v,n,t,c) \
1604cfb0 2831 (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
94010e71
NC
2832
2833#ifdef PERL_POISON
2834#define Safefree(d) \
06c0cc96 2835 ((d) ? (void)(safefree(MEM_LOG_FREE((Malloc_t)(d))), Poison(&(d), 1, Malloc_t)) : (void) 0)
94010e71 2836#else
fe4f188c 2837#define Safefree(d) safefree(MEM_LOG_FREE((Malloc_t)(d)))
94010e71 2838#endif
55497cff 2839
dbb57106
YO
2840/* assert that a valid ptr has been supplied - use this instead of assert(ptr) *
2841 * as it handles cases like constant string arguments without throwing warnings *
2842 * the cast is required, as is the inequality check, to avoid warnings */
45908e4d 2843#define perl_assert_ptr(p) assert( ((void*)(p)) != 0 )
55497cff 2844
45908e4d
YO
2845
2846#define Move(s,d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), perl_assert_ptr(s), (void)memmove((char*)(d),(const char*)(s), (n) * sizeof(t)))
2847#define Copy(s,d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), perl_assert_ptr(s), (void)memcpy((char*)(d),(const char*)(s), (n) * sizeof(t)))
2848#define Zero(d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), (void)memzero((char*)(d), (n) * sizeof(t)))
2849
bdd1531d 2850/* Like above, but returns a pointer to 'd' */
45908e4d
YO
2851#define MoveD(s,d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), perl_assert_ptr(s), memmove((char*)(d),(const char*)(s), (n) * sizeof(t)))
2852#define CopyD(s,d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), perl_assert_ptr(s), memcpy((char*)(d),(const char*)(s), (n) * sizeof(t)))
45908e4d 2853#define ZeroD(d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), memzero((char*)(d), (n) * sizeof(t)))
e90e2364 2854
7e337ee0
JH
2855#define PoisonWith(d,n,t,b) (MEM_WRAP_CHECK_(n,t) (void)memset((char*)(d), (U8)(b), (n) * sizeof(t)))
2856#define PoisonNew(d,n,t) PoisonWith(d,n,t,0xAB)
2857#define PoisonFree(d,n,t) PoisonWith(d,n,t,0xEF)
2858#define Poison(d,n,t) PoisonFree(d,n,t)
27d5b266 2859
caa674f3
DD
2860#ifdef PERL_POISON
2861# define PERL_POISON_EXPR(x) x
2862#else
2863# define PERL_POISON_EXPR(x)
2864#endif
2865
be319be3 2866/* Shallow copy */
ff68c719 2867#define StructCopy(s,d,t) (*((t*)(d)) = *((t*)(s)))
2cc61e15 2868
1b7e2294 2869/*
3f620621 2870=for apidoc_section $utility
1b7e2294
KW
2871
2872=for apidoc Am|STRLEN|C_ARRAY_LENGTH|void *a
2873
2874Returns the number of elements in the input C array (so you want your
2875zero-based indices to be less than but not equal to).
2876
2877=for apidoc Am|void *|C_ARRAY_END|void *a
2878
2879Returns a pointer to one element past the final element of the input C array.
2880
2881=cut
2882
2883C_ARRAY_END is one past the last: half-open/half-closed range, not
2884last-inclusive range.
2885*/
622913ab 2886#define C_ARRAY_LENGTH(a) (sizeof(a)/sizeof((a)[0]))
c3caa5c3 2887#define C_ARRAY_END(a) ((a) + C_ARRAY_LENGTH(a))
622913ab 2888
ff00d73b
KW
2889#if defined(PERL_CORE) || defined(PERL_EXT_RE_BUILD)
2890/* strlen() of a literal string constant. Restricting this to core, in part
2891 * because it can generate compiler warnings about comparing unlike signs */
2892# define STRLENs(s) (sizeof("" s "") - 1)
2893#endif
2894
2cc61e15
DD
2895#ifdef NEED_VA_COPY
2896# ifdef va_copy
2897# define Perl_va_copy(s, d) va_copy(d, s)
07798b17
AC
2898# elif defined(__va_copy)
2899# define Perl_va_copy(s, d) __va_copy(d, s)
2cc61e15 2900# else
07798b17 2901# define Perl_va_copy(s, d) Copy(s, d, 1, va_list)
2cc61e15
DD
2902# endif
2903#endif
2904
472d47bc
SB
2905/* convenience debug macros */
2906#ifdef USE_ITHREADS
2907#define pTHX_FORMAT "Perl interpreter: 0x%p"
2908#define pTHX__FORMAT ", Perl interpreter: 0x%p"
f54cb97a
AL
2909#define pTHX_VALUE_ (void *)my_perl,
2910#define pTHX_VALUE (void *)my_perl
2911#define pTHX__VALUE_ ,(void *)my_perl,
2912#define pTHX__VALUE ,(void *)my_perl
472d47bc 2913#else
3609ea0d 2914#define pTHX_FORMAT
472d47bc 2915#define pTHX__FORMAT
3609ea0d 2916#define pTHX_VALUE_
472d47bc 2917#define pTHX_VALUE
3609ea0d 2918#define pTHX__VALUE_
472d47bc
SB
2919#define pTHX__VALUE
2920#endif /* USE_ITHREADS */
3609ea0d 2921
2acdbac1
NC
2922/* Perl_deprecate was not part of the public API, and did not have a deprecate()
2923 shortcut macro defined without -DPERL_CORE. Neither codesearch.google.com nor
2924 CPAN::Unpack show any users outside the core. */
2925#ifdef PERL_CORE
dc6e8de0
A
2926# define deprecate(s) Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
2927 "Use of " s " is deprecated")
c9680906
A
2928# define deprecate_disappears_in(when,message) \
2929 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
81a93f7e 2930 message " is deprecated, and will disappear in Perl " when)
ac641426
A
2931# define deprecate_fatal_in(when,message) \
2932 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
81a93f7e 2933 message " is deprecated, and will become fatal in Perl " when)
2acdbac1
NC
2934#endif
2935
dfff4baf
BF
2936/* Internal macros to deal with gids and uids */
2937#ifdef PERL_CORE
2938
2939# if Uid_t_size > IVSIZE
2940# define sv_setuid(sv, uid) sv_setnv((sv), (NV)(uid))
2941# define SvUID(sv) SvNV(sv)
07798b17
AC
2942# elif Uid_t_sign <= 0
2943# define sv_setuid(sv, uid) sv_setiv((sv), (IV)(uid))
2944# define SvUID(sv) SvIV(sv)
dfff4baf 2945# else
07798b17
AC
2946# define sv_setuid(sv, uid) sv_setuv((sv), (UV)(uid))
2947# define SvUID(sv) SvUV(sv)
dfff4baf
BF
2948# endif /* Uid_t_size */
2949
2950# if Gid_t_size > IVSIZE
2951# define sv_setgid(sv, gid) sv_setnv((sv), (NV)(gid))
2952# define SvGID(sv) SvNV(sv)
07798b17
AC
2953# elif Gid_t_sign <= 0
2954# define sv_setgid(sv, gid) sv_setiv((sv), (IV)(gid))
2955# define SvGID(sv) SvIV(sv)
dfff4baf 2956# else
07798b17
AC
2957# define sv_setgid(sv, gid) sv_setuv((sv), (UV)(gid))
2958# define SvGID(sv) SvUV(sv)
dfff4baf
BF
2959# endif /* Gid_t_size */
2960
2961#endif
2962
08da5deb
YO
2963/* These are simple Marsaglia XOR-SHIFT RNG's for 64 and 32 bits. These
2964 * RNG's are of reasonable quality, very fast, and have the interesting
2965 * property that provided 'x' is non-zero they create a cycle of 2^32-1
2966 * or 2^64-1 "random" like numbers, with the exception of 0. Thus they
2967 * are very useful when you want an integer to "dance" in a random way,
2968 * but you also never want it to become 0 and thus false.
2969 *
bf2a3dae
YO
2970 * Obviously they leave x unchanged if it starts out as 0.
2971 *
2972 * We have two variants just because that can be helpful in certain
2973 * places. There is no advantage to either, they are equally bad as each
2974 * other as far RNG's go. Sufficiently random for many purposes, but
2975 * insufficiently random for serious use as they fail important tests in
2976 * the Test01 BigCrush RNG test suite by L’Ecuyer and Simard. (Note
2977 * that Drand48 also fails BigCrush). The main point is they produce
2978 * different sequences and in places where we want some randomlike
2979 * behavior they are cheap and easy.
2980 *
2981 * Marsaglia was one of the early researchers into RNG testing and wrote
2982 * the Diehard RNG test suite, which after his death become the
2983 * Dieharder RNG suite, and was generally supplanted by the Test01 suite
2984 * by L'Ecruyer and associates.
2985 *
2986 * There are dozens of shift parameters that create a pseudo random ring
2987 * of integers 1..2^N-1, if you need a different sequence just read the
2988 * paper and select a set of parameters. In fact, simply reversing the
2989 * shift order from L/R/L to R/L/R should result in another valid
2990 * example, but read the paper before you do that.
2991 *
2992 * PDF of the original paper:
2993 * https://www.jstatsoft.org/article/download/v008i14/916
2994 * Wikipedia:
2995 * https://en.wikipedia.org/wiki/Xorshift
2996 * Criticism:
2997 * https://www.iro.umontreal.ca/~lecuyer/myftp/papers/xorshift.pdf
2998 * Test01:
2999 * http://simul.iro.umontreal.ca/testu01/tu01.html
3000 * Diehard:
3001 * https://en.wikipedia.org/wiki/Diehard_tests
3002 * Dieharder:
3003 * https://webhome.phy.duke.edu/~rgb/General/rand_rate/rand_rate.abs
3004 *
3005 */
08da5deb 3006
bf2a3dae
YO
3007/* 32 bit version */
3008#define PERL_XORSHIFT32_A(x) \
08da5deb 3009STMT_START { \
bf2a3dae
YO
3010 (x) ^= ((x) << 13); \
3011 (x) ^= ((x) >> 17); \
3012 (x) ^= ((x) << 5); \
3013} STMT_END
3014
3015/* 64 bit version */
3016#define PERL_XORSHIFT64_A(x) \
3017STMT_START { \
3018 (x) ^= ((x) << 13); \
3019 (x) ^= ((x) >> 7); \
3020 (x) ^= ((x) << 17); \
08da5deb
YO
3021} STMT_END
3022
3023/* 32 bit version */
bf2a3dae
YO
3024#define PERL_XORSHIFT32_B(x) \
3025STMT_START { \
3026 (x) ^= ((x) << 5); \
3027 (x) ^= ((x) >> 27); \
3028 (x) ^= ((x) << 8); \
3029} STMT_END
3030
3031/* 64 bit version - currently this is unused,
3032 * it is provided here to complement the 32 bit _B
3033 * variant which IS used. */
3034#define PERL_XORSHIFT64_B(x) \
08da5deb 3035STMT_START { \
bf2a3dae
YO
3036 (x) ^= ((x) << 15); \
3037 (x) ^= ((x) >> 49); \
3038 (x) ^= ((x) << 26); \
08da5deb
YO
3039} STMT_END
3040
3041
6a5bc5ac 3042#endif /* PERL_HANDY_H_ */
9d745869 3043
e9a8c099 3044/*
14d04a33 3045 * ex: set ts=8 sts=4 sw=4 et:
e9a8c099 3046 */