This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
uni_keywords.h: Fix misspelling typo
[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/*
ccfc67b7 21=head1 Handy Values
954c1994 22
3609ea0d 23=for apidoc AmU||Nullch
72d33970
FC
24Null character pointer. (No longer available when C<PERL_CORE> is
25defined.)
2307c6d0 26
954c1994 27=for apidoc AmU||Nullsv
72d33970 28Null SV pointer. (No longer available when C<PERL_CORE> is defined.)
954c1994
GS
29
30=cut
31*/
32
24792b8d
NC
33# define Nullch Null(char*)
34# define Nullfp Null(PerlIO*)
35# define Nullsv Null(SV*)
36#endif
8d063cd8 37
641d3f0b 38#ifdef TRUE
39#undef TRUE
40#endif
41#ifdef FALSE
42#undef FALSE
43#endif
44#define TRUE (1)
45#define FALSE (0)
46
cf3f0ffb
DM
47/* The MUTABLE_*() macros cast pointers to the types shown, in such a way
48 * (compiler permitting) that casting away const-ness will give a warning;
49 * e.g.:
50 *
51 * const SV *sv = ...;
52 * AV *av1 = (AV*)sv; <== BAD: the const has been silently cast away
53 * AV *av2 = MUTABLE_AV(sv); <== GOOD: it may warn
54 */
55
b1bc3f34 56#if defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
f065df04 57# define MUTABLE_PTR(p) ({ void *_p = (p); _p; })
b1bc3f34
NC
58#else
59# define MUTABLE_PTR(p) ((void *) (p))
60#endif
61
a062e10d 62#define MUTABLE_AV(p) ((AV *)MUTABLE_PTR(p))
ea726b52 63#define MUTABLE_CV(p) ((CV *)MUTABLE_PTR(p))
159b6efe 64#define MUTABLE_GV(p) ((GV *)MUTABLE_PTR(p))
dbebbdb4 65#define MUTABLE_HV(p) ((HV *)MUTABLE_PTR(p))
a45c7426 66#define MUTABLE_IO(p) ((IO *)MUTABLE_PTR(p))
b1bc3f34 67#define MUTABLE_SV(p) ((SV *)MUTABLE_PTR(p))
27d4fb96 68
f789f6a4 69#if defined(I_STDBOOL) && !defined(PERL_BOOL_AS_CHAR)
bd31be4b
NC
70# include <stdbool.h>
71# ifndef HAS_BOOL
72# define HAS_BOOL 1
73# endif
74#endif
75
8e84507e 76/* bool is built-in for g++-2.6.3 and later, which might be used
c1d22f6b
GS
77 for extensions. <_G_config.h> defines _G_HAVE_BOOL, but we can't
78 be sure _G_config.h will be included before this file. _G_config.h
8e84507e 79 also defines _G_HAVE_BOOL for both gcc and g++, but only g++
c1d22f6b
GS
80 actually has bool. Hence, _G_HAVE_BOOL is pretty useless for us.
81 g++ can be identified by __GNUG__.
82 Andy Dougherty February 2000
5d94fbed 83*/
3609ea0d 84#ifdef __GNUG__ /* GNU g++ has bool built-in */
f789f6a4 85# ifndef PERL_BOOL_AS_CHAR
5d94fbed 86# ifndef HAS_BOOL
c1d22f6b 87# define HAS_BOOL 1
5d94fbed 88# endif
f789f6a4 89# endif
5d94fbed
AD
90#endif
91
92#ifndef HAS_BOOL
f789f6a4
FC
93# ifdef bool
94# undef bool
95# endif
70d5cb32 96# define bool char
c1d22f6b 97# define HAS_BOOL 1
a687059c 98#endif
0d3e774c 99
236415e2
KW
100/* cast-to-bool. A simple (bool) cast may not do the right thing: if bool is
101 * defined as char for example, then the cast from int is
102 * implementation-defined (bool)!!(cbool) in a ternary triggers a bug in xlc on
103 * AIX */
18f5643b 104#define cBOOL(cbool) ((cbool) ? (bool)1 : (bool)0)
f2338a2e 105
46c6c7e2 106/* Try to figure out __func__ or __FUNCTION__ equivalent, if any.
e352bcff
JH
107 * XXX Should really be a Configure probe, with HAS__FUNCTION__
108 * and FUNCTION__ as results.
109 * XXX Similarly, a Configure probe for __FILE__ and __LINE__ is needed. */
46c6c7e2
JH
110#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || (defined(__SUNPRO_C)) /* C99 or close enough. */
111# define FUNCTION__ __func__
07798b17
AC
112#elif (defined(USING_MSVC6)) || /* MSVC6 has neither __func__ nor __FUNCTION and no good workarounds, either. */ \
113 (defined(__DECC_VER)) /* Tru64 or VMS, and strict C89 being used, but not modern enough cc (in Tur64, -c99 not known, only -std1). */
114# define FUNCTION__ ""
46c6c7e2 115#else
07798b17 116# define FUNCTION__ __FUNCTION__ /* Common extension. */
46c6c7e2
JH
117#endif
118
27d4fb96 119/* XXX A note on the perl source internal type system. The
120 original intent was that I32 be *exactly* 32 bits.
121
122 Currently, we only guarantee that I32 is *at least* 32 bits.
123 Specifically, if int is 64 bits, then so is I32. (This is the case
124 for the Cray.) This has the advantage of meshing nicely with
125 standard library calls (where we pass an I32 and the library is
126 expecting an int), but the disadvantage that an I32 is not 32 bits.
127 Andy Dougherty August 1996
24fef2a7 128
dc45a647
MB
129 There is no guarantee that there is *any* integral type with
130 exactly 32 bits. It is perfectly legal for a system to have
131 sizeof(short) == sizeof(int) == sizeof(long) == 8.
693762b4 132
dc45a647
MB
133 Similarly, there is no guarantee that I16 and U16 have exactly 16
134 bits.
693762b4 135
8e84507e
NIS
136 For dealing with issues that may arise from various 32/64-bit
137 systems, we will ask Configure to check out
8175356b 138
3609ea0d
JH
139 SHORTSIZE == sizeof(short)
140 INTSIZE == sizeof(int)
141 LONGSIZE == sizeof(long)
dc45a647 142 LONGLONGSIZE == sizeof(long long) (if HAS_LONG_LONG)
3609ea0d 143 PTRSIZE == sizeof(void *)
dc45a647
MB
144 DOUBLESIZE == sizeof(double)
145 LONG_DOUBLESIZE == sizeof(long double) (if HAS_LONG_DOUBLE).
8175356b 146
27d4fb96 147*/
148
69512466
JH
149#ifdef I_INTTYPES /* e.g. Linux has int64_t without <inttypes.h> */
150# include <inttypes.h>
dd0eed91
JH
151# ifdef INT32_MIN_BROKEN
152# undef INT32_MIN
153# define INT32_MIN (-2147483647-1)
154# endif
155# ifdef INT64_MIN_BROKEN
156# undef INT64_MIN
157# define INT64_MIN (-9223372036854775807LL-1)
158# endif
69512466
JH
159#endif
160
8175356b
JH
161typedef I8TYPE I8;
162typedef U8TYPE U8;
163typedef I16TYPE I16;
164typedef U16TYPE U16;
165typedef I32TYPE I32;
166typedef U32TYPE U32;
16d89be8 167
74b807c7 168#ifdef QUADKIND
8175356b
JH
169typedef I64TYPE I64;
170typedef U64TYPE U64;
16d89be8 171#endif
8175356b 172
d8668976 173#if defined(UINT8_MAX) && defined(INT16_MAX) && defined(INT32_MAX)
5ff3f7a4 174
5ff3f7a4
GS
175/* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
176 Please search CHAR_MAX in perl.h for further details. */
177#define U8_MAX UINT8_MAX
178#define U8_MIN UINT8_MIN
179
5ff3f7a4
GS
180#define I16_MAX INT16_MAX
181#define I16_MIN INT16_MIN
182#define U16_MAX UINT16_MAX
183#define U16_MIN UINT16_MIN
184
5ff3f7a4
GS
185#define I32_MAX INT32_MAX
186#define I32_MIN INT32_MIN
0e983133
GS
187#ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
188# define U32_MAX UINT32_MAX
189#else
190# define U32_MAX 4294967295U
191#endif
5ff3f7a4
GS
192#define U32_MIN UINT32_MIN
193
194#else
195
5c9fa16e
KA
196/* I8_MAX and I8_MIN constants are not defined, as I8 is an ambiguous type.
197 Please search CHAR_MAX in perl.h for further details. */
27d4fb96 198#define U8_MAX PERL_UCHAR_MAX
199#define U8_MIN PERL_UCHAR_MIN
79072805 200
27d4fb96 201#define I16_MAX PERL_SHORT_MAX
202#define I16_MIN PERL_SHORT_MIN
203#define U16_MAX PERL_USHORT_MAX
204#define U16_MIN PERL_USHORT_MIN
79072805 205
c4f23d77 206#if LONGSIZE > 4
27d4fb96 207# define I32_MAX PERL_INT_MAX
208# define I32_MIN PERL_INT_MIN
209# define U32_MAX PERL_UINT_MAX
210# define U32_MIN PERL_UINT_MIN
79072805 211#else
27d4fb96 212# define I32_MAX PERL_LONG_MAX
213# define I32_MIN PERL_LONG_MIN
214# define U32_MAX PERL_ULONG_MAX
215# define U32_MIN PERL_ULONG_MIN
79072805
LW
216#endif
217
5ff3f7a4
GS
218#endif
219
247cee9f
KW
220/* These C99 typedefs are useful sometimes for, say, loop variables whose
221 * maximum values are small, but for which speed trumps size. If we have a C99
222 * compiler, use that. Otherwise, a plain 'int' should be good enough.
223 *
224 * Restrict these to core for now until we are more certain this is a good
225 * idea. */
226#if defined(PERL_CORE) || defined(PERL_EXT)
227# ifdef I_STDINT
228 typedef int_fast8_t PERL_INT_FAST8_T;
229 typedef uint_fast8_t PERL_UINT_FAST8_T;
230 typedef int_fast16_t PERL_INT_FAST16_T;
231 typedef uint_fast16_t PERL_UINT_FAST16_T;
232# else
233 typedef int PERL_INT_FAST8_T;
234 typedef unsigned int PERL_UINT_FAST8_T;
235 typedef int PERL_INT_FAST16_T;
236 typedef unsigned int PERL_UINT_FAST16_T;
237# endif
238#endif
239
464decb6
KW
240/* log(2) (i.e., log base 10 of 2) is pretty close to 0.30103, just in case
241 * anyone is grepping for it */
242#define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log10(2) =~ 146/485 */
fc36a67e 243#define TYPE_DIGITS(T) BIT_DIGITS(sizeof(T) * 8)
244#define TYPE_CHARS(T) (TYPE_DIGITS(T) + 2) /* sign, NUL */
245
88794300 246/* Unused by core; should be deprecated */
ff68c719 247#define Ctl(ch) ((ch) & 037)
8d063cd8 248
98fce2a4
KW
249#if defined(PERL_CORE) || defined(PERL_EXT)
250# ifndef MIN
251# define MIN(a,b) ((a) < (b) ? (a) : (b))
252# endif
253# ifndef MAX
254# define MAX(a,b) ((a) > (b) ? (a) : (b))
255# endif
256#endif
257
4650c663
KW
258/* This is a helper macro to avoid preprocessor issues, replaced by nothing
259 * unless under DEBUGGING, where it expands to an assert of its argument,
260 * followed by a comma (hence the comma operator). If we just used a straight
3e94db23
JH
261 * assert(), we would get a comma with nothing before it when not DEBUGGING.
262 *
263 * We also use empty definition under Coverity since the __ASSERT__
264 * checks often check for things that Really Cannot Happen, and Coverity
265 * detects that and gets all excited. */
266
267#if defined(DEBUGGING) && !defined(__COVERITY__)
0f092d08
KW
268# define __ASSERT_(statement) assert(statement),
269#else
270# define __ASSERT_(statement)
271#endif
272
3fe05580
MHM
273/*
274=head1 SV-Body Allocation
275
1568d13a
Z
276=for apidoc Ama|SV*|newSVpvs|"literal string" s
277Like C<newSVpvn>, but takes a literal string instead of a
30a15352 278string/length pair.
3fe05580 279
1568d13a
Z
280=for apidoc Ama|SV*|newSVpvs_flags|"literal string" s|U32 flags
281Like C<newSVpvn_flags>, but takes a literal string instead of
30a15352 282a string/length pair.
84bafc02 283
1568d13a
Z
284=for apidoc Ama|SV*|newSVpvs_share|"literal string" s
285Like C<newSVpvn_share>, but takes a literal string instead of
30a15352 286a string/length pair and omits the hash parameter.
3fe05580 287
1568d13a
Z
288=for apidoc Am|void|sv_catpvs_flags|SV* sv|"literal string" s|I32 flags
289Like C<sv_catpvn_flags>, but takes a literal string instead
30a15352 290of a string/length pair.
9dcc53ea 291
1568d13a
Z
292=for apidoc Am|void|sv_catpvs_nomg|SV* sv|"literal string" s
293Like C<sv_catpvn_nomg>, but takes a literal string instead of
0c395ea5 294a string/length pair.
9dcc53ea 295
1568d13a
Z
296=for apidoc Am|void|sv_catpvs|SV* sv|"literal string" s
297Like C<sv_catpvn>, but takes a literal string instead of a
0c395ea5 298string/length pair.
3fe05580 299
1568d13a
Z
300=for apidoc Am|void|sv_catpvs_mg|SV* sv|"literal string" s
301Like C<sv_catpvn_mg>, but takes a literal string instead of a
9dcc53ea
Z
302string/length pair.
303
1568d13a
Z
304=for apidoc Am|void|sv_setpvs|SV* sv|"literal string" s
305Like C<sv_setpvn>, but takes a literal string instead of a
0c395ea5 306string/length pair.
3fe05580 307
1568d13a
Z
308=for apidoc Am|void|sv_setpvs_mg|SV* sv|"literal string" s
309Like C<sv_setpvn_mg>, but takes a literal string instead of a
9dcc53ea
Z
310string/length pair.
311
1568d13a
Z
312=for apidoc Am|SV *|sv_setref_pvs|"literal string" s
313Like C<sv_setref_pvn>, but takes a literal string instead of
0c395ea5 314a string/length pair.
9dcc53ea 315
3fe05580
MHM
316=head1 Memory Management
317
1568d13a
Z
318=for apidoc Ama|char*|savepvs|"literal string" s
319Like C<savepvn>, but takes a literal string instead of a
30a15352 320string/length pair.
3fe05580 321
1568d13a 322=for apidoc Ama|char*|savesharedpvs|"literal string" s
9dcc53ea
Z
323A version of C<savepvs()> which allocates the duplicate string in memory
324which is shared between threads.
325
3fe05580
MHM
326=head1 GV Functions
327
1568d13a
Z
328=for apidoc Am|HV*|gv_stashpvs|"literal string" name|I32 create
329Like C<gv_stashpvn>, but takes a literal string instead of a
0c395ea5 330string/length pair.
3fe05580
MHM
331
332=head1 Hash Manipulation Functions
333
1568d13a
Z
334=for apidoc Am|SV**|hv_fetchs|HV* tb|"literal string" key|I32 lval
335Like C<hv_fetch>, but takes a literal string instead of a
0c395ea5 336string/length pair.
3fe05580 337
d106cb46 338=for apidoc Am|SV**|hv_stores|HV* tb|"literal string" key|SV* val
1568d13a 339Like C<hv_store>, but takes a literal string instead of a
0c395ea5 340string/length pair
3fe05580
MHM
341and omits the hash parameter.
342
510966aa
Z
343=head1 Lexer interface
344
1568d13a 345=for apidoc Amx|void|lex_stuff_pvs|"literal string" pv|U32 flags
510966aa 346
1568d13a 347Like L</lex_stuff_pvn>, but takes a literal string instead of
0c395ea5 348a string/length pair.
510966aa 349
3fe05580
MHM
350=cut
351*/
352
926bb54c
KW
353/* concatenating with "" ensures that only literal strings are accepted as
354 * argument */
26bfd924 355#define STR_WITH_LEN(s) ("" s ""), (sizeof(s)-1)
2efa8cc7 356
926bb54c
KW
357/* note that STR_WITH_LEN() can't be used as argument to macros or functions
358 * that under some configurations might be macros, which means that it requires
359 * the full Perl_xxx(aTHX_ ...) form for any API calls where it's used.
ba3a79e7
GA
360 */
361
362/* STR_WITH_LEN() shortcuts */
363#define newSVpvs(str) Perl_newSVpvn(aTHX_ STR_WITH_LEN(str))
84bafc02
NC
364#define newSVpvs_flags(str,flags) \
365 Perl_newSVpvn_flags(aTHX_ STR_WITH_LEN(str), flags)
ba3a79e7 366#define newSVpvs_share(str) Perl_newSVpvn_share(aTHX_ STR_WITH_LEN(str), 0)
9dcc53ea
Z
367#define sv_catpvs_flags(sv, str, flags) \
368 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), flags)
369#define sv_catpvs_nomg(sv, str) \
370 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), 0)
371#define sv_catpvs(sv, str) \
372 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC)
373#define sv_catpvs_mg(sv, str) \
374 Perl_sv_catpvn_flags(aTHX_ sv, STR_WITH_LEN(str), SV_GMAGIC|SV_SMAGIC)
3fe05580 375#define sv_setpvs(sv, str) Perl_sv_setpvn(aTHX_ sv, STR_WITH_LEN(str))
9dcc53ea
Z
376#define sv_setpvs_mg(sv, str) Perl_sv_setpvn_mg(aTHX_ sv, STR_WITH_LEN(str))
377#define sv_setref_pvs(rv, classname, str) \
378 Perl_sv_setref_pvn(aTHX_ rv, classname, STR_WITH_LEN(str))
ba3a79e7 379#define savepvs(str) Perl_savepvn(aTHX_ STR_WITH_LEN(str))
9dcc53ea
Z
380#define savesharedpvs(str) Perl_savesharedpvn(aTHX_ STR_WITH_LEN(str))
381#define gv_stashpvs(str, create) \
382 Perl_gv_stashpvn(aTHX_ STR_WITH_LEN(str), create)
383#define gv_fetchpvs(namebeg, add, sv_type) \
384 Perl_gv_fetchpvn_flags(aTHX_ STR_WITH_LEN(namebeg), add, sv_type)
385#define gv_fetchpvn(namebeg, len, add, sv_type) \
386 Perl_gv_fetchpvn_flags(aTHX_ namebeg, len, add, sv_type)
387#define sv_catxmlpvs(dsv, str, utf8) \
388 Perl_sv_catxmlpvn(aTHX_ dsv, STR_WITH_LEN(str), utf8)
4ac46235 389
ba3a79e7 390
510966aa
Z
391#define lex_stuff_pvs(pv,flags) Perl_lex_stuff_pvn(aTHX_ STR_WITH_LEN(pv), flags)
392
b96d8cd9
NC
393#define get_cvs(str, flags) \
394 Perl_get_cvn_flags(aTHX_ STR_WITH_LEN(str), (flags))
5c1737d1 395
954c1994 396/*
ccfc67b7
JH
397=head1 Miscellaneous Functions
398
954c1994 399=for apidoc Am|bool|strNE|char* s1|char* s2
dc6b0978
KW
400Test two C<NUL>-terminated strings to see if they are different. Returns true
401or false.
954c1994
GS
402
403=for apidoc Am|bool|strEQ|char* s1|char* s2
dc6b0978
KW
404Test two C<NUL>-terminated strings to see if they are equal. Returns true or
405false.
954c1994
GS
406
407=for apidoc Am|bool|strLT|char* s1|char* s2
dc6b0978
KW
408Test two C<NUL>-terminated strings to see if the first, C<s1>, is less than the
409second, C<s2>. Returns true or false.
954c1994
GS
410
411=for apidoc Am|bool|strLE|char* s1|char* s2
dc6b0978
KW
412Test two C<NUL>-terminated strings to see if the first, C<s1>, is less than or
413equal to the second, C<s2>. Returns true or false.
954c1994
GS
414
415=for apidoc Am|bool|strGT|char* s1|char* s2
dc6b0978
KW
416Test two C<NUL>-terminated strings to see if the first, C<s1>, is greater than
417the second, C<s2>. Returns true or false.
954c1994
GS
418
419=for apidoc Am|bool|strGE|char* s1|char* s2
dc6b0978
KW
420Test two C<NUL>-terminated strings to see if the first, C<s1>, is greater than
421or equal to the second, C<s2>. Returns true or false.
954c1994
GS
422
423=for apidoc Am|bool|strnNE|char* s1|char* s2|STRLEN len
dc6b0978
KW
424Test two C<NUL>-terminated strings to see if they are different. The C<len>
425parameter indicates the number of bytes to compare. Returns true or false. (A
954c1994
GS
426wrapper for C<strncmp>).
427
428=for apidoc Am|bool|strnEQ|char* s1|char* s2|STRLEN len
dc6b0978
KW
429Test two C<NUL>-terminated strings to see if they are equal. The C<len>
430parameter indicates the number of bytes to compare. Returns true or false. (A
431wrapper for C<strncmp>).
954c1994 432
bd18bd40
KW
433=for apidoc Am|bool|memEQ|char* s1|char* s2|STRLEN len
434Test two buffers (which may contain embedded C<NUL> characters, to see if they
435are equal. The C<len> parameter indicates the number of bytes to compare.
436Returns zero if equal, or non-zero if non-equal.
437
438=for apidoc Am|bool|memNE|char* s1|char* s2|STRLEN len
439Test two buffers (which may contain embedded C<NUL> characters, to see if they
440are not equal. The C<len> parameter indicates the number of bytes to compare.
441Returns zero if non-equal, or non-zero if equal.
442
954c1994 443=cut
fc169e00
KW
444
445New macros should use the following conventions for their names (which are
446based on the underlying C library functions):
447
448 (mem | str n? ) (EQ | NE | LT | GT | GE | (( BEGIN | END ) P? )) l? s?
449
450 Each has two main parameters, string-like operands that are compared
451 against each other, as specified by the macro name. Some macros may
452 additionally have one or potentially even two length parameters. If a length
453 parameter applies to both string parameters, it will be positioned third;
454 otherwise any length parameter immediately follows the string parameter it
455 applies to.
456
457 If the prefix to the name is 'str', the string parameter is a pointer to a C
458 language string. Such a string does not contain embedded NUL bytes; its
459 length may be unknown, but can be calculated by C<strlen()>, since it is
460 terminated by a NUL, which isn't included in its length.
461
462 The optional 'n' following 'str' means that that there is a third parameter,
463 giving the maximum number of bytes to look at in each string. Even if both
464 strings are longer than the length parameter, those extra bytes will be
465 unexamined.
466
467 The 's' suffix means that the 2nd byte string parameter is a literal C
468 double-quoted string. Its length will automatically be calculated by the
469 macro, so no length parameter will ever be needed for it.
470
471 If the prefix is 'mem', the string parameters don't have to be C strings;
472 they may contain embedded NUL bytes, do not necessarily have a terminating
473 NUL, and their lengths can be known only through other means, which in
474 practice are additional parameter(s) passed to the function. All 'mem'
475 functions have at least one length parameter. Barring any 'l' or 's' suffix,
476 there is a single length parameter, in position 3, which applies to both
477 string parameters. The 's' suffix means, as described above, that the 2nd
478 string is a literal double-quoted C string (hence its length is calculated by
479 the macro, and the length parameter to the function applies just to the first
480 string parameter, and hence is positioned just after it). An 'l' suffix
481 means that the 2nd string parameter has its own length parameter, and the
482 signature will look like memFOOl(s1, l1, s2, l2).
483
484 BEGIN (and END) are for testing if the 2nd string is an initial (or final)
485 substring of the 1st string. 'P' if present indicates that the substring
486 must be a "proper" one in tha mathematical sense that the first one must be
487 strictly larger than the 2nd.
488
954c1994
GS
489*/
490
62946e08 491
75400963
KW
492#define strNE(s1,s2) (strcmp(s1,s2) != 0)
493#define strEQ(s1,s2) (strcmp(s1,s2) == 0)
8d063cd8
LW
494#define strLT(s1,s2) (strcmp(s1,s2) < 0)
495#define strLE(s1,s2) (strcmp(s1,s2) <= 0)
496#define strGT(s1,s2) (strcmp(s1,s2) > 0)
497#define strGE(s1,s2) (strcmp(s1,s2) >= 0)
62946e08 498
75400963
KW
499#define strnNE(s1,s2,l) (strncmp(s1,s2,l) != 0)
500#define strnEQ(s1,s2,l) (strncmp(s1,s2,l) == 0)
378cc40b 501
75400963
KW
502#define memNE(s1,s2,l) (memcmp(s1,s2,l) != 0)
503#define memEQ(s1,s2,l) (memcmp(s1,s2,l) == 0)
36477c24 504
085b7534 505/* memEQ and memNE where second comparand is a string constant */
568a785a 506#define memEQs(s1, l, s2) \
777fa2cb 507 (((sizeof(s2)-1) == (l)) && memEQ((s1), ("" s2 ""), (sizeof(s2)-1)))
5f50c6c9 508#define memNEs(s1, l, s2) (! memEQs(s1, l, s2))
568a785a 509
fdbb9a7c
KW
510/* Keep these private until we decide it was a good idea */
511#if defined(PERL_CORE) || defined(PERL_EXT) || defined(PERL_EXT_POSIX)
512
513#define strBEGINs(s1,s2) (strncmp(s1,"" s2 "", sizeof(s2)-1) == 0)
514
bdb7e3f0
KW
515#define memBEGINs(s1, l, s2) \
516 ( (l) >= sizeof(s2) - 1 \
517 && memEQ(s1, "" s2 "", sizeof(s2)-1))
de627158
KW
518#define memBEGINPs(s1, l, s2) \
519 ( (l) > sizeof(s2) - 1 \
520 && memEQ(s1, "" s2 "", sizeof(s2)-1))
bdb7e3f0
KW
521#define memENDs(s1, l, s2) \
522 ( (l) >= sizeof(s2) - 1 \
523 && memEQ(s1 + (l) - (sizeof(s2) - 1), "" s2 "", sizeof(s2)-1))
b80f8424
KW
524#define memENDPs(s1, l, s2) \
525 ( (l) > sizeof(s2) \
526 && memEQ(s1 + (l) - (sizeof(s2) - 1), "" s2 "", sizeof(s2)-1))
fdbb9a7c 527#endif /* End of making macros private */
bdb7e3f0 528
062b6850
KW
529#define memLT(s1,s2,l) (memcmp(s1,s2,l) < 0)
530#define memLE(s1,s2,l) (memcmp(s1,s2,l) <= 0)
531#define memGT(s1,s2,l) (memcmp(s1,s2,l) > 0)
532#define memGE(s1,s2,l) (memcmp(s1,s2,l) >= 0)
533
bbce6d69 534/*
535 * Character classes.
536 *
537 * Unfortunately, the introduction of locales means that we
538 * can't trust isupper(), etc. to tell the truth. And when
539 * it comes to /\w+/ with tainting enabled, we *must* be able
540 * to trust our character classes.
541 *
542 * Therefore, the default tests in the text of Perl will be
543 * independent of locale. Any code that wants to depend on
544 * the current locale will use the tests that begin with "lc".
545 */
546
2304df62
AD
547#ifdef HAS_SETLOCALE /* XXX Is there a better test for this? */
548# ifndef CTYPE256
549# define CTYPE256
550# endif
551#endif
552
954c1994 553/*
ccfc67b7 554
dcccc8ff 555=head1 Character classification
243effed
KW
556This section is about functions (really macros) that classify characters
557into types, such as punctuation versus alphabetic, etc. Most of these are
558analogous to regular expression character classes. (See
559L<perlrecharclass/POSIX Character Classes>.) There are several variants for
560each class. (Not all macros have all variants; each item below lists the
561ones valid for it.) None are affected by C<use bytes>, and only the ones
562with C<LC> in the name are affected by the current locale.
563
564The base function, e.g., C<isALPHA()>, takes an octet (either a C<char> or a
565C<U8>) as input and returns a boolean as to whether or not the character
6aff1f14
KW
566represented by that octet is (or on non-ASCII platforms, corresponds to) an
567ASCII character in the named class based on platform, Unicode, and Perl rules.
568If the input is a number that doesn't fit in an octet, FALSE is returned.
243effed 569
c98722a4 570Variant C<isI<FOO>_A> (e.g., C<isALPHA_A()>) is identical to the base function
550da823
KW
571with no suffix C<"_A">. This variant is used to emphasize by its name that
572only ASCII-range characters can return TRUE.
4b9734bf 573
d60679e1 574Variant C<isI<FOO>_L1> imposes the Latin-1 (or EBCDIC equivalent) character set
4b9734bf
KW
575onto the platform. That is, the code points that are ASCII are unaffected,
576since ASCII is a subset of Latin-1. But the non-ASCII code points are treated
577as if they are Latin-1 characters. For example, C<isWORDCHAR_L1()> will return
578true when called with the code point 0xDF, which is a word character in both
4650c663 579ASCII and EBCDIC (though it represents different characters in each).
243effed 580
c98722a4 581Variant C<isI<FOO>_uvchr> is like the C<isI<FOO>_L1> variant, but accepts any UV code
243effed
KW
582point as input. If the code point is larger than 255, Unicode rules are used
583to determine if it is in the character class. For example,
d0da05db 584C<isWORDCHAR_uvchr(0x100)> returns TRUE, since 0x100 is LATIN CAPITAL LETTER A
6aff1f14 585WITH MACRON in Unicode, and is a word character.
243effed 586
c98722a4 587Variant C<isI<FOO>_utf8_safe> is like C<isI<FOO>_uvchr>, but is used for UTF-8
da8c1a98
KW
588encoded strings. Each call classifies one character, even if the string
589contains many. This variant takes two parameters. The first, C<p>, is a
590pointer to the first byte of the character to be classified. (Recall that it
591may take more than one byte to represent a character in UTF-8 strings.) The
592second parameter, C<e>, points to anywhere in the string beyond the first
593character, up to one byte past the end of the entire string. The suffix
594C<_safe> in the function's name indicates that it will not attempt to read
595beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is true (this
596is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the input
597character is malformed in some way, the program may croak, or the function may
598return FALSE, at the discretion of the implementation, and subject to change in
599future releases.
600
c98722a4 601Variant C<isI<FOO>_utf8> is like C<isI<FOO>_utf8_safe>, but takes just a single
da8c1a98 602parameter, C<p>, which has the same meaning as the corresponding parameter does
c98722a4 603in C<isI<FOO>_utf8_safe>. The function therefore can't check if it is reading
34aeb2e9 604beyond the end of the string. Starting in Perl v5.30, it will take a second
c98722a4 605parameter, becoming a synonym for C<isI<FOO>_utf8_safe>. At that time every
34aeb2e9 606program that uses it will have to be changed to successfully compile. In the
c98722a4 607meantime, the first runtime call to C<isI<FOO>_utf8> from each call point in the
34aeb2e9 608program will raise a deprecation warning, enabled by default. You can convert
c98722a4 609your program now to use C<isI<FOO>_utf8_safe>, and avoid the warnings, and get an
34aeb2e9
KW
610extra measure of protection, or you can wait until v5.30, when you'll be forced
611to add the C<e> parameter.
243effed 612
c98722a4 613Variant C<isI<FOO>_LC> is like the C<isI<FOO>_A> and C<isI<FOO>_L1> variants, but the
31f05a37
KW
614result is based on the current locale, which is what C<LC> in the name stands
615for. If Perl can determine that the current locale is a UTF-8 locale, it uses
616the published Unicode rules; otherwise, it uses the C library function that
617gives the named classification. For example, C<isDIGIT_LC()> when not in a
618UTF-8 locale returns the result of calling C<isdigit()>. FALSE is always
1a83413c
KW
619returned if the input won't fit into an octet. On some platforms where the C
620library function is known to be defective, Perl changes its result to follow
621the POSIX standard's rules.
243effed 622
c98722a4
KW
623Variant C<isI<FOO>_LC_uvchr> is like C<isI<FOO>_LC>, but is defined on any UV. It
624returns the same as C<isI<FOO>_LC> for input code points less than 256, and
243effed
KW
625returns the hard-coded, not-affected-by-locale, Unicode results for larger ones.
626
c98722a4 627Variant C<isI<FOO>_LC_utf8_safe> is like C<isI<FOO>_LC_uvchr>, but is used for UTF-8
da8c1a98
KW
628encoded strings. Each call classifies one character, even if the string
629contains many. This variant takes two parameters. The first, C<p>, is a
630pointer to the first byte of the character to be classified. (Recall that it
631may take more than one byte to represent a character in UTF-8 strings.) The
632second parameter, C<e>, points to anywhere in the string beyond the first
633character, up to one byte past the end of the entire string. The suffix
634C<_safe> in the function's name indicates that it will not attempt to read
635beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is true (this
636is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the input
637character is malformed in some way, the program may croak, or the function may
638return FALSE, at the discretion of the implementation, and subject to change in
639future releases.
640
c98722a4 641Variant C<isI<FOO>_LC_utf8> is like C<isI<FOO>_LC_utf8_safe>, but takes just a single
da8c1a98 642parameter, C<p>, which has the same meaning as the corresponding parameter does
c98722a4 643in C<isI<FOO>_LC_utf8_safe>. The function therefore can't check if it is reading
34aeb2e9 644beyond the end of the string. Starting in Perl v5.30, it will take a second
c98722a4 645parameter, becoming a synonym for C<isI<FOO>_LC_utf8_safe>. At that time every
34aeb2e9 646program that uses it will have to be changed to successfully compile. In the
c98722a4 647meantime, the first runtime call to C<isI<FOO>_LC_utf8> from each call point in
34aeb2e9 648the program will raise a deprecation warning, enabled by default. You can
c98722a4 649convert your program now to use C<isI<FOO>_LC_utf8_safe>, and avoid the warnings,
34aeb2e9
KW
650and get an extra measure of protection, or you can wait until v5.30, when
651you'll be forced to add the C<e> parameter.
ccfc67b7 652
954c1994 653=for apidoc Am|bool|isALPHA|char ch
2787a470 654Returns a boolean indicating whether the specified character is an
6aff1f14 655alphabetic character, analogous to C<m/[[:alpha:]]/>.
dcccc8ff
KW
656See the L<top of this section|/Character classification> for an explanation of
657variants
da8c1a98
KW
658C<isALPHA_A>, C<isALPHA_L1>, C<isALPHA_uvchr>, C<isALPHA_utf8_safe>,
659C<isALPHA_LC>, C<isALPHA_LC_uvchr>, and C<isALPHA_LC_utf8_safe>.
8a58bdcf 660
15861f94
KW
661=for apidoc Am|bool|isALPHANUMERIC|char ch
662Returns a boolean indicating whether the specified character is a either an
6aff1f14 663alphabetic character or decimal digit, analogous to C<m/[[:alnum:]]/>.
dcccc8ff
KW
664See the L<top of this section|/Character classification> for an explanation of
665variants
d0da05db 666C<isALPHANUMERIC_A>, C<isALPHANUMERIC_L1>, C<isALPHANUMERIC_uvchr>,
da8c1a98
KW
667C<isALPHANUMERIC_utf8_safe>, C<isALPHANUMERIC_LC>, C<isALPHANUMERIC_LC_uvchr>,
668and C<isALPHANUMERIC_LC_utf8_safe>.
15861f94 669
8a58bdcf
KW
670=for apidoc Am|bool|isASCII|char ch
671Returns a boolean indicating whether the specified character is one of the 128
243effed 672characters in the ASCII character set, analogous to C<m/[[:ascii:]]/>.
e5ad6aba 673On non-ASCII platforms, it returns TRUE iff this
8a58bdcf
KW
674character corresponds to an ASCII character. Variants C<isASCII_A()> and
675C<isASCII_L1()> are identical to C<isASCII()>.
dcccc8ff
KW
676See the L<top of this section|/Character classification> for an explanation of
677variants
da8c1a98
KW
678C<isASCII_uvchr>, C<isASCII_utf8_safe>, C<isASCII_LC>, C<isASCII_LC_uvchr>, and
679C<isASCII_LC_utf8_safe>. Note, however, that some platforms do not have the C
243effed
KW
680library routine C<isascii()>. In these cases, the variants whose names contain
681C<LC> are the same as the corresponding ones without.
682
d98532ea
KW
683Also note, that because all ASCII characters are UTF-8 invariant (meaning they
684have the exact same representation (always a single byte) whether encoded in
685UTF-8 or not), C<isASCII> will give the correct results when called with any
da8c1a98
KW
686byte in any string encoded or not in UTF-8. And similarly C<isASCII_utf8_safe>
687will work properly on any string encoded or not in UTF-8.
d98532ea 688
243effed
KW
689=for apidoc Am|bool|isBLANK|char ch
690Returns a boolean indicating whether the specified character is a
6aff1f14 691character considered to be a blank, analogous to C<m/[[:blank:]]/>.
dcccc8ff
KW
692See the L<top of this section|/Character classification> for an explanation of
693variants
da8c1a98
KW
694C<isBLANK_A>, C<isBLANK_L1>, C<isBLANK_uvchr>, C<isBLANK_utf8_safe>,
695C<isBLANK_LC>, C<isBLANK_LC_uvchr>, and C<isBLANK_LC_utf8_safe>. Note,
696however, that some platforms do not have the C library routine
697C<isblank()>. In these cases, the variants whose names contain C<LC> are
698the same as the corresponding ones without.
243effed
KW
699
700=for apidoc Am|bool|isCNTRL|char ch
701Returns a boolean indicating whether the specified character is a
6aff1f14 702control character, analogous to C<m/[[:cntrl:]]/>.
dcccc8ff
KW
703See the L<top of this section|/Character classification> for an explanation of
704variants
da8c1a98
KW
705C<isCNTRL_A>, C<isCNTRL_L1>, C<isCNTRL_uvchr>, C<isCNTRL_utf8_safe>,
706C<isCNTRL_LC>, C<isCNTRL_LC_uvchr>, and C<isCNTRL_LC_utf8_safe> On EBCDIC
707platforms, you almost always want to use the C<isCNTRL_L1> variant.
954c1994 708
954c1994 709=for apidoc Am|bool|isDIGIT|char ch
2787a470 710Returns a boolean indicating whether the specified character is a
6aff1f14 711digit, analogous to C<m/[[:digit:]]/>.
8a58bdcf 712Variants C<isDIGIT_A> and C<isDIGIT_L1> are identical to C<isDIGIT>.
dcccc8ff
KW
713See the L<top of this section|/Character classification> for an explanation of
714variants
da8c1a98
KW
715C<isDIGIT_uvchr>, C<isDIGIT_utf8_safe>, C<isDIGIT_LC>, C<isDIGIT_LC_uvchr>, and
716C<isDIGIT_LC_utf8_safe>.
243effed
KW
717
718=for apidoc Am|bool|isGRAPH|char ch
719Returns a boolean indicating whether the specified character is a
6aff1f14 720graphic character, analogous to C<m/[[:graph:]]/>.
dcccc8ff 721See the L<top of this section|/Character classification> for an explanation of
da8c1a98
KW
722variants C<isGRAPH_A>, C<isGRAPH_L1>, C<isGRAPH_uvchr>, C<isGRAPH_utf8_safe>,
723C<isGRAPH_LC>, C<isGRAPH_LC_uvchr>, and C<isGRAPH_LC_utf8_safe>.
954c1994 724
0c82b6df 725=for apidoc Am|bool|isLOWER|char ch
2787a470 726Returns a boolean indicating whether the specified character is a
6aff1f14 727lowercase character, analogous to C<m/[[:lower:]]/>.
dcccc8ff
KW
728See the L<top of this section|/Character classification> for an explanation of
729variants
da8c1a98
KW
730C<isLOWER_A>, C<isLOWER_L1>, C<isLOWER_uvchr>, C<isLOWER_utf8_safe>,
731C<isLOWER_LC>, C<isLOWER_LC_uvchr>, and C<isLOWER_LC_utf8_safe>.
0c82b6df 732
c99e91e9 733=for apidoc Am|bool|isOCTAL|char ch
2787a470 734Returns a boolean indicating whether the specified character is an
6aff1f14 735octal digit, [0-7].
243effed
KW
736The only two variants are C<isOCTAL_A> and C<isOCTAL_L1>; each is identical to
737C<isOCTAL>.
738
739=for apidoc Am|bool|isPUNCT|char ch
740Returns a boolean indicating whether the specified character is a
6aff1f14
KW
741punctuation character, analogous to C<m/[[:punct:]]/>.
742Note that the definition of what is punctuation isn't as
243effed
KW
743straightforward as one might desire. See L<perlrecharclass/POSIX Character
744Classes> for details.
dcccc8ff 745See the L<top of this section|/Character classification> for an explanation of
da8c1a98
KW
746variants C<isPUNCT_A>, C<isPUNCT_L1>, C<isPUNCT_uvchr>, C<isPUNCT_utf8_safe>,
747C<isPUNCT_LC>, C<isPUNCT_LC_uvchr>, and C<isPUNCT_LC_utf8_safe>.
c99e91e9 748
0c82b6df 749=for apidoc Am|bool|isSPACE|char ch
2787a470 750Returns a boolean indicating whether the specified character is a
6aff1f14 751whitespace character. This is analogous
398d098a 752to what C<m/\s/> matches in a regular expression. Starting in Perl 5.18
779cf272 753this also matches what C<m/[[:space:]]/> does. Prior to 5.18, only the
398d098a
KW
754locale forms of this macro (the ones with C<LC> in their names) matched
755precisely what C<m/[[:space:]]/> does. In those releases, the only difference,
756in the non-locale variants, was that C<isSPACE()> did not match a vertical tab.
757(See L</isPSXSPC> for a macro that matches a vertical tab in all releases.)
dcccc8ff
KW
758See the L<top of this section|/Character classification> for an explanation of
759variants
da8c1a98
KW
760C<isSPACE_A>, C<isSPACE_L1>, C<isSPACE_uvchr>, C<isSPACE_utf8_safe>,
761C<isSPACE_LC>, C<isSPACE_LC_uvchr>, and C<isSPACE_LC_utf8_safe>.
0c82b6df 762
398d098a
KW
763=for apidoc Am|bool|isPSXSPC|char ch
764(short for Posix Space)
779cf272
KW
765Starting in 5.18, this is identical in all its forms to the
766corresponding C<isSPACE()> macros.
398d098a
KW
767The locale forms of this macro are identical to their corresponding
768C<isSPACE()> forms in all Perl releases. In releases prior to 5.18, the
769non-locale forms differ from their C<isSPACE()> forms only in that the
770C<isSPACE()> forms don't match a Vertical Tab, and the C<isPSXSPC()> forms do.
771Otherwise they are identical. Thus this macro is analogous to what
772C<m/[[:space:]]/> matches in a regular expression.
dcccc8ff 773See the L<top of this section|/Character classification> for an explanation of
da8c1a98
KW
774variants C<isPSXSPC_A>, C<isPSXSPC_L1>, C<isPSXSPC_uvchr>, C<isPSXSPC_utf8_safe>,
775C<isPSXSPC_LC>, C<isPSXSPC_LC_uvchr>, and C<isPSXSPC_LC_utf8_safe>.
398d098a 776
954c1994 777=for apidoc Am|bool|isUPPER|char ch
2787a470 778Returns a boolean indicating whether the specified character is an
6aff1f14 779uppercase character, analogous to C<m/[[:upper:]]/>.
dcccc8ff 780See the L<top of this section|/Character classification> for an explanation of
da8c1a98
KW
781variants C<isUPPER_A>, C<isUPPER_L1>, C<isUPPER_uvchr>, C<isUPPER_utf8_safe>,
782C<isUPPER_LC>, C<isUPPER_LC_uvchr>, and C<isUPPER_LC_utf8_safe>.
954c1994 783
243effed 784=for apidoc Am|bool|isPRINT|char ch
8eea39dd 785Returns a boolean indicating whether the specified character is a
6aff1f14 786printable character, analogous to C<m/[[:print:]]/>.
dcccc8ff
KW
787See the L<top of this section|/Character classification> for an explanation of
788variants
da8c1a98
KW
789C<isPRINT_A>, C<isPRINT_L1>, C<isPRINT_uvchr>, C<isPRINT_utf8_safe>,
790C<isPRINT_LC>, C<isPRINT_LC_uvchr>, and C<isPRINT_LC_utf8_safe>.
243effed
KW
791
792=for apidoc Am|bool|isWORDCHAR|char ch
793Returns a boolean indicating whether the specified character is a character
794that is a word character, analogous to what C<m/\w/> and C<m/[[:word:]]/> match
795in a regular expression. A word character is an alphabetic character, a
796decimal digit, a connecting punctuation character (such as an underscore), or
797a "mark" character that attaches to one of those (like some sort of accent).
798C<isALNUM()> is a synonym provided for backward compatibility, even though a
799word character includes more than the standard C language meaning of
800alphanumeric.
dcccc8ff 801See the L<top of this section|/Character classification> for an explanation of
da8c1a98
KW
802variants C<isWORDCHAR_A>, C<isWORDCHAR_L1>, C<isWORDCHAR_uvchr>, and
803C<isWORDCHAR_utf8_safe>. C<isWORDCHAR_LC>, C<isWORDCHAR_LC_uvchr>, and
804C<isWORDCHAR_LC_utf8_safe> are also as described there, but additionally
805include the platform's native underscore.
8a58bdcf
KW
806
807=for apidoc Am|bool|isXDIGIT|char ch
808Returns a boolean indicating whether the specified character is a hexadecimal
243effed
KW
809digit. In the ASCII range these are C<[0-9A-Fa-f]>. Variants C<isXDIGIT_A()>
810and C<isXDIGIT_L1()> are identical to C<isXDIGIT()>.
dcccc8ff
KW
811See the L<top of this section|/Character classification> for an explanation of
812variants
da8c1a98
KW
813C<isXDIGIT_uvchr>, C<isXDIGIT_utf8_safe>, C<isXDIGIT_LC>, C<isXDIGIT_LC_uvchr>,
814and C<isXDIGIT_LC_utf8_safe>.
243effed 815
3c3ecf18
KW
816=for apidoc Am|bool|isIDFIRST|char ch
817Returns a boolean indicating whether the specified character can be the first
818character of an identifier. This is very close to, but not quite the same as
819the official Unicode property C<XID_Start>. The difference is that this
820returns true only if the input character also matches L</isWORDCHAR>.
dcccc8ff
KW
821See the L<top of this section|/Character classification> for an explanation of
822variants
da8c1a98
KW
823C<isIDFIRST_A>, C<isIDFIRST_L1>, C<isIDFIRST_uvchr>, C<isIDFIRST_utf8_safe>,
824C<isIDFIRST_LC>, C<isIDFIRST_LC_uvchr>, and C<isIDFIRST_LC_utf8_safe>.
3c3ecf18
KW
825
826=for apidoc Am|bool|isIDCONT|char ch
827Returns a boolean indicating whether the specified character can be the
828second or succeeding character of an identifier. This is very close to, but
829not quite the same as the official Unicode property C<XID_Continue>. The
830difference is that this returns true only if the input character also matches
dcccc8ff
KW
831L</isWORDCHAR>. See the L<top of this section|/Character classification> for
832an
d0da05db 833explanation of variants C<isIDCONT_A>, C<isIDCONT_L1>, C<isIDCONT_uvchr>,
da8c1a98
KW
834C<isIDCONT_utf8_safe>, C<isIDCONT_LC>, C<isIDCONT_LC_uvchr>, and
835C<isIDCONT_LC_utf8_safe>.
3c3ecf18 836
243effed 837=head1 Miscellaneous Functions
8eea39dd 838
95a59cab 839=for apidoc Am|U8|READ_XDIGIT|char str*
243effed 840Returns the value of an ASCII-range hex digit and advances the string pointer.
95a59cab
YO
841Behaviour is only well defined when isXDIGIT(*str) is true.
842
e7c1e6c1 843=head1 Character case changing
21da7284
KW
844Perl uses "full" Unicode case mappings. This means that converting a single
845character to another case may result in a sequence of more than one character.
846For example, the uppercase of C<E<223>> (LATIN SMALL LETTER SHARP S) is the two
847character sequence C<SS>. This presents some complications The lowercase of
848all characters in the range 0..255 is a single character, and thus
849C<L</toLOWER_L1>> is furnished. But, C<toUPPER_L1> can't exist, as it couldn't
850return a valid result for all legal inputs. Instead C<L</toUPPER_uvchr>> has
851an API that does allow every possible legal result to be returned.) Likewise
852no other function that is crippled by not being able to give the correct
853results for the full range of possible inputs has been implemented here.
e7c1e6c1 854
1f607577
KW
855=for apidoc Am|U8|toUPPER|U8 ch
856Converts the specified character to uppercase. If the input is anything but an
857ASCII lowercase character, that input character itself is returned. Variant
c753c8d3 858C<toUPPER_A> is equivalent.
954c1994 859
d0da05db
KW
860=for apidoc Am|UV|toUPPER_uvchr|UV cp|U8* s|STRLEN* lenp
861Converts the code point C<cp> to its uppercase version, and
862stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. The code
863point is interpreted as native if less than 256; otherwise as Unicode. Note
1f607577
KW
864that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
865bytes since the uppercase version may be longer than the original character.
866
867The first code point of the uppercased version is returned
21da7284
KW
868(but note, as explained at L<the top of this section|/Character case
869changing>, that there may be more.)
1f607577 870
a239b1e2
KW
871=for apidoc Am|UV|toUPPER_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
872Converts the first UTF-8 encoded character in the sequence starting at C<p> and
873extending no further than S<C<e - 1>> to its uppercase version, and
1f607577
KW
874stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. Note
875that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
876bytes since the uppercase version may be longer than the original character.
877
878The first code point of the uppercased version is returned
21da7284
KW
879(but note, as explained at L<the top of this section|/Character case
880changing>, that there may be more).
1f607577 881
a239b1e2
KW
882The suffix C<_safe> in the function's name indicates that it will not attempt
883to read beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is
884true (this is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the
885input character is malformed in some way, the program may croak, or the
886function may return the REPLACEMENT CHARACTER, at the discretion of the
887implementation, and subject to change in future releases.
888
889=for apidoc Am|UV|toUPPER_utf8|U8* p|U8* s|STRLEN* lenp
890This is like C<L</toUPPER_utf8_safe>>, but doesn't have the C<e>
891parameter The function therefore can't check if it is reading
607313a1
KW
892beyond the end of the string. Starting in Perl v5.30, it will take the C<e>
893parameter, becoming a synonym for C<toUPPER_utf8_safe>. At that time every
894program that uses it will have to be changed to successfully compile. In the
895meantime, the first runtime call to C<toUPPER_utf8> from each call point in the
896program will raise a deprecation warning, enabled by default. You can convert
897your program now to use C<toUPPER_utf8_safe>, and avoid the warnings, and get an
898extra measure of protection, or you can wait until v5.30, when you'll be forced
899to add the C<e> parameter.
1f607577 900
25200305
KW
901=for apidoc Am|U8|toFOLD|U8 ch
902Converts the specified character to foldcase. If the input is anything but an
903ASCII uppercase character, that input character itself is returned. Variant
904C<toFOLD_A> is equivalent. (There is no equivalent C<to_FOLD_L1> for the full
d0da05db 905Latin1 range, as the full generality of L</toFOLD_uvchr> is needed there.)
25200305 906
d0da05db
KW
907=for apidoc Am|UV|toFOLD_uvchr|UV cp|U8* s|STRLEN* lenp
908Converts the code point C<cp> to its foldcase version, and
909stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. The code
910point is interpreted as native if less than 256; otherwise as Unicode. Note
1f607577
KW
911that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
912bytes since the foldcase version may be longer than the original character.
913
914The first code point of the foldcased version is returned
21da7284
KW
915(but note, as explained at L<the top of this section|/Character case
916changing>, that there may be more).
1f607577 917
a239b1e2
KW
918=for apidoc Am|UV|toFOLD_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
919Converts the first UTF-8 encoded character in the sequence starting at C<p> and
920extending no further than S<C<e - 1>> to its foldcase version, and
1f607577
KW
921stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. Note
922that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
923bytes since the foldcase version may be longer than the original character.
924
925The first code point of the foldcased version is returned
21da7284
KW
926(but note, as explained at L<the top of this section|/Character case
927changing>, that there may be more).
1f607577 928
a239b1e2
KW
929The suffix C<_safe> in the function's name indicates that it will not attempt
930to read beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is
931true (this is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the
932input character is malformed in some way, the program may croak, or the
933function may return the REPLACEMENT CHARACTER, at the discretion of the
934implementation, and subject to change in future releases.
935
936=for apidoc Am|UV|toFOLD_utf8|U8* p|U8* s|STRLEN* lenp
937This is like C<L</toFOLD_utf8_safe>>, but doesn't have the C<e>
938parameter The function therefore can't check if it is reading
607313a1
KW
939beyond the end of the string. Starting in Perl v5.30, it will take the C<e>
940parameter, becoming a synonym for C<toFOLD_utf8_safe>. At that time every
941program that uses it will have to be changed to successfully compile. In the
942meantime, the first runtime call to C<toFOLD_utf8> from each call point in the
943program will raise a deprecation warning, enabled by default. You can convert
944your program now to use C<toFOLD_utf8_safe>, and avoid the warnings, and get an
945extra measure of protection, or you can wait until v5.30, when you'll be forced
946to add the C<e> parameter.
1f607577
KW
947
948=for apidoc Am|U8|toLOWER|U8 ch
949Converts the specified character to lowercase. If the input is anything but an
950ASCII uppercase character, that input character itself is returned. Variant
c753c8d3 951C<toLOWER_A> is equivalent.
954c1994 952
1f607577 953=for apidoc Am|U8|toLOWER_L1|U8 ch
b7d90381
KW
954Converts the specified Latin1 character to lowercase. The results are
955undefined if the input doesn't fit in a byte.
1f607577
KW
956
957=for apidoc Am|U8|toLOWER_LC|U8 ch
958Converts the specified character to lowercase using the current locale's rules,
959if possible; otherwise returns the input character itself.
960
d0da05db
KW
961=for apidoc Am|UV|toLOWER_uvchr|UV cp|U8* s|STRLEN* lenp
962Converts the code point C<cp> to its lowercase version, and
963stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. The code
964point is interpreted as native if less than 256; otherwise as Unicode. Note
1f607577
KW
965that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
966bytes since the lowercase version may be longer than the original character.
967
968The first code point of the lowercased version is returned
21da7284
KW
969(but note, as explained at L<the top of this section|/Character case
970changing>, that there may be more).
1f607577 971
a239b1e2
KW
972
973=for apidoc Am|UV|toLOWER_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
974Converts the first UTF-8 encoded character in the sequence starting at C<p> and
975extending no further than S<C<e - 1>> to its lowercase version, and
1f607577
KW
976stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. Note
977that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
978bytes since the lowercase version may be longer than the original character.
979
980The first code point of the lowercased version is returned
21da7284
KW
981(but note, as explained at L<the top of this section|/Character case
982changing>, that there may be more).
1f607577 983
a239b1e2
KW
984The suffix C<_safe> in the function's name indicates that it will not attempt
985to read beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is
986true (this is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the
987input character is malformed in some way, the program may croak, or the
988function may return the REPLACEMENT CHARACTER, at the discretion of the
989implementation, and subject to change in future releases.
990
991=for apidoc Am|UV|toLOWER_utf8|U8* p|U8* s|STRLEN* lenp
992This is like C<L</toLOWER_utf8_safe>>, but doesn't have the C<e>
993parameter The function therefore can't check if it is reading
607313a1
KW
994beyond the end of the string. Starting in Perl v5.30, it will take the C<e>
995parameter, becoming a synonym for C<toLOWER_utf8_safe>. At that time every
996program that uses it will have to be changed to successfully compile. In the
997meantime, the first runtime call to C<toLOWER_utf8> from each call point in the
998program will raise a deprecation warning, enabled by default. You can convert
999your program now to use C<toLOWER_utf8_safe>, and avoid the warnings, and get an
1000extra measure of protection, or you can wait until v5.30, when you'll be forced
1001to add the C<e> parameter.
1f607577 1002
25200305
KW
1003=for apidoc Am|U8|toTITLE|U8 ch
1004Converts the specified character to titlecase. If the input is anything but an
1005ASCII lowercase character, that input character itself is returned. Variant
b7d90381 1006C<toTITLE_A> is equivalent. (There is no C<toTITLE_L1> for the full Latin1
d0da05db 1007range, as the full generality of L</toTITLE_uvchr> is needed there. Titlecase is
b7d90381 1008not a concept used in locale handling, so there is no functionality for that.)
25200305 1009
d0da05db
KW
1010=for apidoc Am|UV|toTITLE_uvchr|UV cp|U8* s|STRLEN* lenp
1011Converts the code point C<cp> to its titlecase version, and
1012stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. The code
1013point is interpreted as native if less than 256; otherwise as Unicode. Note
1f607577
KW
1014that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
1015bytes since the titlecase version may be longer than the original character.
1016
1017The first code point of the titlecased version is returned
21da7284
KW
1018(but note, as explained at L<the top of this section|/Character case
1019changing>, that there may be more).
1f607577 1020
a239b1e2
KW
1021=for apidoc Am|UV|toTITLE_utf8_safe|U8* p|U8* e|U8* s|STRLEN* lenp
1022Converts the first UTF-8 encoded character in the sequence starting at C<p> and
1023extending no further than S<C<e - 1>> to its titlecase version, and
1f607577
KW
1024stores that in UTF-8 in C<s>, and its length in bytes in C<lenp>. Note
1025that the buffer pointed to by C<s> needs to be at least C<UTF8_MAXBYTES_CASE+1>
1026bytes since the titlecase version may be longer than the original character.
1027
1028The first code point of the titlecased version is returned
21da7284
KW
1029(but note, as explained at L<the top of this section|/Character case
1030changing>, that there may be more).
1f607577 1031
a239b1e2
KW
1032The suffix C<_safe> in the function's name indicates that it will not attempt
1033to read beyond S<C<e - 1>>, provided that the constraint S<C<s E<lt> e>> is
1034true (this is asserted for in C<-DDEBUGGING> builds). If the UTF-8 for the
1035input character is malformed in some way, the program may croak, or the
1036function may return the REPLACEMENT CHARACTER, at the discretion of the
1037implementation, and subject to change in future releases.
1038
1039=for apidoc Am|UV|toTITLE_utf8|U8* p|U8* s|STRLEN* lenp
1040This is like C<L</toLOWER_utf8_safe>>, but doesn't have the C<e>
1041parameter The function therefore can't check if it is reading
607313a1
KW
1042beyond the end of the string. Starting in Perl v5.30, it will take the C<e>
1043parameter, becoming a synonym for C<toTITLE_utf8_safe>. At that time every
1044program that uses it will have to be changed to successfully compile. In the
1045meantime, the first runtime call to C<toTITLE_utf8> from each call point in the
1046program will raise a deprecation warning, enabled by default. You can convert
1047your program now to use C<toTITLE_utf8_safe>, and avoid the warnings, and get an
1048extra measure of protection, or you can wait until v5.30, when you'll be forced
1049to add the C<e> parameter.
1f607577 1050
954c1994 1051=cut
353c9b6f 1052
d0da05db 1053XXX Still undocumented isVERTWS_uvchr and _utf8; it's unclear what their names
1e222e4f
KW
1054really should be. Also toUPPER_LC and toFOLD_LC, which are subject to change,
1055and aren't general purpose as they don't work on U+DF, and assert against that.
243effed 1056
8a58bdcf 1057Note that these macros are repeated in Devel::PPPort, so should also be
62fa66b6
KW
1058patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
1059
954c1994
GS
1060*/
1061
de9e2639
KW
1062/* Specify the widest unsigned type on the platform. */
1063#ifdef QUADKIND
1064# define WIDEST_UTYPE U64
7c062697
KW
1065#else
1066# define WIDEST_UTYPE U32
1067#endif
1068
3912bc88
KW
1069/* FITS_IN_8_BITS(c) returns true if c doesn't have a bit set other than in
1070 * the lower 8. It is designed to be hopefully bomb-proof, making sure that no
1071 * bits of information are lost even on a 64-bit machine, but to get the
1072 * compiler to optimize it out if possible. This is because Configure makes
1073 * sure that the machine has an 8-bit byte, so if c is stored in a byte, the
1074 * sizeof() guarantees that this evaluates to a constant true at compile time.
7e75d1a1
JH
1075 *
1076 * For Coverity, be always true, because otherwise Coverity thinks
1077 * it finds several expressions that are always true, independent
1078 * of operands. Well, they are, but that is kind of the point.
220c71bf 1079 */
7e75d1a1 1080#ifndef __COVERITY__
6c5b02ac
KW
1081 /* The '| 0' part ensures a compiler error if c is not integer (like e.g., a
1082 * pointer) */
1083#define FITS_IN_8_BITS(c) ( (sizeof(c) == 1) \
ace3ad0f 1084 || !(((WIDEST_UTYPE)((c) | 0)) & ~0xFF))
7e75d1a1
JH
1085#else
1086#define FITS_IN_8_BITS(c) (1)
1087#endif
cf301eb7 1088
41f43cc2 1089#ifdef EBCDIC
b6340bd0 1090# ifndef _ALL_SOURCE
0852beac
KW
1091 /* The native libc isascii() et.al. functions return the wrong results
1092 * on at least z/OS unless this is defined. */
b6340bd0
KW
1093# error _ALL_SOURCE should probably be defined
1094# endif
41f43cc2 1095#else
0852beac
KW
1096 /* There is a simple definition of ASCII for ASCII platforms. But the
1097 * EBCDIC one isn't so simple, so is defined using table look-up like the
9c903d59 1098 * other macros below.
3f3c579d
KW
1099 *
1100 * The cast here is used instead of '(c) >= 0', because some compilers emit
1101 * a warning that that test is always true when the parameter is an
1102 * unsigned type. khw supposes that it could be written as
1103 * && ((c) == '\0' || (c) > 0)
1104 * to avoid the message, but the cast will likely avoid extra branches even
1105 * with stupid compilers.
1106 *
1107 * The '| 0' part ensures a compiler error if c is not integer (like e.g.,
1108 * a pointer) */
9c903d59 1109# define isASCII(c) ((WIDEST_UTYPE)((c) | 0) < 128)
41f43cc2
KW
1110#endif
1111
38694112
KW
1112/* Take the eight possible bit patterns of the lower 3 bits and you get the
1113 * lower 3 bits of the 8 octal digits, in both ASCII and EBCDIC, so those bits
1114 * can be ignored. If the rest match '0', we have an octal */
1115#define isOCTAL_A(c) (((WIDEST_UTYPE)((c) | 0) & ~7) == '0')
c2da0b36 1116
9fb1bf9d 1117#ifdef H_PERL /* If have access to perl.h, lookup in its table */
f4cdb42c 1118
a500dc72
KW
1119/* Character class numbers. For internal core Perl use only. The ones less
1120 * than 32 are used in PL_charclass[] and the ones up through the one that
1121 * corresponds to <_HIGHEST_REGCOMP_DOT_H_SYNC> are used by regcomp.h and
1122 * related files. PL_charclass ones use names used in l1_char_class_tab.h but
1123 * their actual definitions are here. If that file has a name not used here,
1124 * it won't compile.
1709d539
KW
1125 *
1126 * The first group of these is ordered in what I (khw) estimate to be the
31c7f561 1127 * frequency of their use. This gives a slight edge to exiting a loop earlier
58a3ba2c
KW
1128 * (in reginclass() in regexec.c). Except \v should be last, as it isn't a
1129 * real Posix character class, and some (small) inefficiencies in regular
1130 * expression handling would be introduced by putting it in the middle of those
1131 * that are. Also, cntrl and ascii come after the others as it may be useful
1132 * to group these which have no members that match above Latin1, (or above
1133 * ASCII in the latter case) */
1134
1709d539
KW
1135# define _CC_WORDCHAR 0 /* \w and [:word:] */
1136# define _CC_DIGIT 1 /* \d and [:digit:] */
1137# define _CC_ALPHA 2 /* [:alpha:] */
1138# define _CC_LOWER 3 /* [:lower:] */
1139# define _CC_UPPER 4 /* [:upper:] */
1140# define _CC_PUNCT 5 /* [:punct:] */
1141# define _CC_PRINT 6 /* [:print:] */
15861f94 1142# define _CC_ALPHANUMERIC 7 /* [:alnum:] */
1709d539 1143# define _CC_GRAPH 8 /* [:graph:] */
359b005e 1144# define _CC_CASED 9 /* [:lower:] or [:upper:] under /i */
779cf272 1145# define _CC_SPACE 10 /* \s, [:space:] */
34aeb2e9
KW
1146# define _CC_PSXSPC _CC_SPACE /* XXX Temporary, can be removed
1147 when the deprecated isFOO_utf8()
1148 functions are removed */
b0d691b2
KW
1149# define _CC_BLANK 11 /* [:blank:] */
1150# define _CC_XDIGIT 12 /* [:xdigit:] */
779cf272
KW
1151# define _CC_CNTRL 13 /* [:cntrl:] */
1152# define _CC_ASCII 14 /* [:ascii:] */
1153# define _CC_VERTSPACE 15 /* \v */
1709d539 1154
a0947d7b
KW
1155# define _HIGHEST_REGCOMP_DOT_H_SYNC _CC_VERTSPACE
1156
1709d539 1157/* The members of the third group below do not need to be coordinated with data
3ffc8c70 1158 * structures in regcomp.[ch] and regexec.c. */
779cf272
KW
1159# define _CC_IDFIRST 16
1160# define _CC_CHARNAME_CONT 17
1161# define _CC_NONLATIN1_FOLD 18
1162# define _CC_NONLATIN1_SIMPLE_FOLD 19
1163# define _CC_QUOTEMETA 20
1164# define _CC_NON_FINAL_FOLD 21
1165# define _CC_IS_IN_SOME_FOLD 22
1166# define _CC_MNEMONIC_CNTRL 23
073c22b3 1167
34aeb2e9
KW
1168# define _CC_IDCONT 24 /* XXX Temporary, can be removed when the deprecated
1169 isFOO_utf8() functions are removed */
1170
073c22b3
KW
1171/* This next group is only used on EBCDIC platforms, so theoretically could be
1172 * shared with something entirely different that's only on ASCII platforms */
5d5376e2
KW
1173# define _CC_UTF8_START_BYTE_IS_FOR_AT_LEAST_SURROGATE 28
1174# define _CC_UTF8_IS_START 29
1175# define _CC_UTF8_IS_DOWNGRADEABLE_START 30
1176# define _CC_UTF8_IS_CONTINUATION 31
1177/* Unused: 24-27
f4cdb42c
KW
1178 * If more bits are needed, one could add a second word for non-64bit
1179 * QUAD_IS_INT systems, using some #ifdefs to distinguish between having a 2nd
37ede926
KW
1180 * word or not. The IS_IN_SOME_FOLD bit is the most easily expendable, as it
1181 * is used only for optimization (as of this writing), and differs in the
1182 * Latin1 range from the ALPHA bit only in two relatively unimportant
a500dc72 1183 * characters: the masculine and feminine ordinal indicators, so removing it
073c22b3
KW
1184 * would just cause /i regexes which match them to run less efficiently.
1185 * Similarly the EBCDIC-only bits are used just for speed, and could be
1186 * replaced by other means */
96ac0975 1187
3a371f2f
KW
1188#if defined(PERL_CORE) || defined(PERL_EXT)
1189/* An enum version of the character class numbers, to help compilers
1190 * optimize */
1191typedef enum {
3a371f2f 1192 _CC_ENUM_ALPHA = _CC_ALPHA,
e8d596e0
KW
1193 _CC_ENUM_ALPHANUMERIC = _CC_ALPHANUMERIC,
1194 _CC_ENUM_ASCII = _CC_ASCII,
1195 _CC_ENUM_BLANK = _CC_BLANK,
b0d691b2 1196 _CC_ENUM_CASED = _CC_CASED,
e8d596e0 1197 _CC_ENUM_CNTRL = _CC_CNTRL,
3a371f2f
KW
1198 _CC_ENUM_DIGIT = _CC_DIGIT,
1199 _CC_ENUM_GRAPH = _CC_GRAPH,
1200 _CC_ENUM_LOWER = _CC_LOWER,
1201 _CC_ENUM_PRINT = _CC_PRINT,
1202 _CC_ENUM_PUNCT = _CC_PUNCT,
e8d596e0 1203 _CC_ENUM_SPACE = _CC_SPACE,
3a371f2f 1204 _CC_ENUM_UPPER = _CC_UPPER,
e8d596e0 1205 _CC_ENUM_VERTSPACE = _CC_VERTSPACE,
3a371f2f 1206 _CC_ENUM_WORDCHAR = _CC_WORDCHAR,
e8d596e0 1207 _CC_ENUM_XDIGIT = _CC_XDIGIT
3a371f2f
KW
1208} _char_class_number;
1209#endif
1210
86f72d56 1211#define POSIX_CC_COUNT (_HIGHEST_REGCOMP_DOT_H_SYNC + 1)
63c61c3f 1212
6635f04f 1213START_EXTERN_C
96ac0975
NC
1214# ifdef DOINIT
1215EXTCONST U32 PL_charclass[] = {
1216# include "l1_char_class_tab.h"
1217};
1218
1219# else /* ! DOINIT */
1220EXTCONST U32 PL_charclass[];
1221# endif
6635f04f 1222END_EXTERN_C
96ac0975 1223
265c1f46 1224 /* The 1U keeps Solaris from griping when shifting sets the uppermost bit */
430b7c70 1225# define _CC_mask(classnum) (1U << (classnum))
4650c663
KW
1226
1227 /* For internal core Perl use only: the base macro for defining macros like
1228 * isALPHA */
ff7ecfc3 1229# define _generic_isCC(c, classnum) cBOOL(FITS_IN_8_BITS(c) \
f4cd282c 1230 && (PL_charclass[(U8) (c)] & _CC_mask(classnum)))
4eeeb416 1231
f4cdb42c
KW
1232 /* The mask for the _A versions of the macros; it just adds in the bit for
1233 * ASCII. */
1234# define _CC_mask_A(classnum) (_CC_mask(classnum) | _CC_mask(_CC_ASCII))
1235
4650c663
KW
1236 /* For internal core Perl use only: the base macro for defining macros like
1237 * isALPHA_A. The foo_A version makes sure that both the desired bit and
1238 * the ASCII bit are present */
b7d90381
KW
1239# define _generic_isCC_A(c, classnum) (FITS_IN_8_BITS(c) \
1240 && ((PL_charclass[(U8) (c)] & _CC_mask_A(classnum)) \
1241 == _CC_mask_A(classnum)))
f4cdb42c 1242
f4cdb42c 1243# define isALPHA_A(c) _generic_isCC_A(c, _CC_ALPHA)
15861f94 1244# define isALPHANUMERIC_A(c) _generic_isCC_A(c, _CC_ALPHANUMERIC)
f4cdb42c
KW
1245# define isBLANK_A(c) _generic_isCC_A(c, _CC_BLANK)
1246# define isCNTRL_A(c) _generic_isCC_A(c, _CC_CNTRL)
96ca48da 1247# define isDIGIT_A(c) _generic_isCC(c, _CC_DIGIT) /* No non-ASCII digits */
f4cdb42c
KW
1248# define isGRAPH_A(c) _generic_isCC_A(c, _CC_GRAPH)
1249# define isLOWER_A(c) _generic_isCC_A(c, _CC_LOWER)
1250# define isPRINT_A(c) _generic_isCC_A(c, _CC_PRINT)
f4cdb42c
KW
1251# define isPUNCT_A(c) _generic_isCC_A(c, _CC_PUNCT)
1252# define isSPACE_A(c) _generic_isCC_A(c, _CC_SPACE)
1253# define isUPPER_A(c) _generic_isCC_A(c, _CC_UPPER)
1254# define isWORDCHAR_A(c) _generic_isCC_A(c, _CC_WORDCHAR)
b7d90381
KW
1255# define isXDIGIT_A(c) _generic_isCC(c, _CC_XDIGIT) /* No non-ASCII xdigits
1256 */
d95f8b6a 1257# define isIDFIRST_A(c) _generic_isCC_A(c, _CC_IDFIRST)
3ded5eb0
KW
1258# define isALPHA_L1(c) _generic_isCC(c, _CC_ALPHA)
1259# define isALPHANUMERIC_L1(c) _generic_isCC(c, _CC_ALPHANUMERIC)
1260# define isBLANK_L1(c) _generic_isCC(c, _CC_BLANK)
1261
1262 /* continuation character for legal NAME in \N{NAME} */
1263# define isCHARNAME_CONT(c) _generic_isCC(c, _CC_CHARNAME_CONT)
1264
1265# define isCNTRL_L1(c) _generic_isCC(c, _CC_CNTRL)
1266# define isGRAPH_L1(c) _generic_isCC(c, _CC_GRAPH)
1267# define isLOWER_L1(c) _generic_isCC(c, _CC_LOWER)
1268# define isPRINT_L1(c) _generic_isCC(c, _CC_PRINT)
b7d90381 1269# define isPSXSPC_L1(c) isSPACE_L1(c)
3ded5eb0
KW
1270# define isPUNCT_L1(c) _generic_isCC(c, _CC_PUNCT)
1271# define isSPACE_L1(c) _generic_isCC(c, _CC_SPACE)
1272# define isUPPER_L1(c) _generic_isCC(c, _CC_UPPER)
1273# define isWORDCHAR_L1(c) _generic_isCC(c, _CC_WORDCHAR)
1274# define isIDFIRST_L1(c) _generic_isCC(c, _CC_IDFIRST)
f4cdb42c 1275
0852beac
KW
1276# ifdef EBCDIC
1277# define isASCII(c) _generic_isCC(c, _CC_ASCII)
1278# endif
1279
f12c0118
KW
1280 /* Participates in a single-character fold with a character above 255 */
1281# define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) ((! cBOOL(FITS_IN_8_BITS(c))) || (PL_charclass[(U8) (c)] & _CC_mask(_CC_NONLATIN1_SIMPLE_FOLD)))
1282
1283 /* Like the above, but also can be part of a multi-char fold */
f4cd282c 1284# define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) ((! cBOOL(FITS_IN_8_BITS(c))) || (PL_charclass[(U8) (c)] & _CC_mask(_CC_NONLATIN1_FOLD)))
430b7c70 1285
4eeeb416 1286# define _isQUOTEMETA(c) _generic_isCC(c, _CC_QUOTEMETA)
26faadbd 1287# define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
b7d90381 1288 _generic_isCC(c, _CC_NON_FINAL_FOLD)
37ede926 1289# define _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
b7d90381 1290 _generic_isCC(c, _CC_IS_IN_SOME_FOLD)
8e35b056
KW
1291# define _IS_MNEMONIC_CNTRL_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
1292 _generic_isCC(c, _CC_MNEMONIC_CNTRL)
687c8d01 1293#else /* else we don't have perl.h H_PERL */
3ded5eb0
KW
1294
1295 /* If we don't have perl.h, we are compiling a utility program. Below we
1296 * hard-code various macro definitions that wouldn't otherwise be available
fc273927 1297 * to it. Most are coded based on first principles. These are written to
74665a89 1298 * avoid EBCDIC vs. ASCII #ifdef's as much as possible. */
0852beac
KW
1299# define isDIGIT_A(c) ((c) <= '9' && (c) >= '0')
1300# define isBLANK_A(c) ((c) == ' ' || (c) == '\t')
74665a89
KW
1301# define isSPACE_A(c) (isBLANK_A(c) \
1302 || (c) == '\n' \
1303 || (c) == '\r' \
1304 || (c) == '\v' \
0852beac 1305 || (c) == '\f')
74665a89
KW
1306 /* On EBCDIC, there are gaps between 'i' and 'j'; 'r' and 's'. Same for
1307 * uppercase. The tests for those aren't necessary on ASCII, but hurt only
1308 * performance (if optimization isn't on), and allow the same code to be
1309 * used for both platform types */
1310# define isLOWER_A(c) ((c) >= 'a' && (c) <= 'z' \
1311 && ( (c) <= 'i' \
1312 || ((c) >= 'j' && (c) <= 'r') \
1313 || (c) >= 's'))
1314# define isUPPER_A(c) ((c) >= 'A' && (c) <= 'Z' \
1315 && ( (c) <= 'I' \
1316 || ((c) >= 'J' && (c) <= 'R') \
1317 || (c) >= 'S'))
a4d7a999
KW
1318# define isALPHA_A(c) (isUPPER_A(c) || isLOWER_A(c))
1319# define isALPHANUMERIC_A(c) (isALPHA_A(c) || isDIGIT_A(c))
3ded5eb0 1320# define isWORDCHAR_A(c) (isALPHANUMERIC_A(c) || (c) == '_')
0852beac 1321# define isIDFIRST_A(c) (isALPHA_A(c) || (c) == '_')
74665a89
KW
1322# define isXDIGIT_A(c) (isDIGIT_A(c) \
1323 || ((c) >= 'a' && (c) <= 'f') \
a4d7a999 1324 || ((c) <= 'F' && (c) >= 'A'))
74665a89
KW
1325# define isPUNCT_A(c) ((c) == '-' || (c) == '!' || (c) == '"' \
1326 || (c) == '#' || (c) == '$' || (c) == '%' \
1327 || (c) == '&' || (c) == '\'' || (c) == '(' \
1328 || (c) == ')' || (c) == '*' || (c) == '+' \
1329 || (c) == ',' || (c) == '.' || (c) == '/' \
1330 || (c) == ':' || (c) == ';' || (c) == '<' \
1331 || (c) == '=' || (c) == '>' || (c) == '?' \
1332 || (c) == '@' || (c) == '[' || (c) == '\\' \
1333 || (c) == ']' || (c) == '^' || (c) == '_' \
1334 || (c) == '`' || (c) == '{' || (c) == '|' \
1335 || (c) == '}' || (c) == '~')
1336# define isGRAPH_A(c) (isALPHANUMERIC_A(c) || isPUNCT_A(c))
1337# define isPRINT_A(c) (isGRAPH_A(c) || (c) == ' ')
3ded5eb0 1338
0852beac 1339# ifdef EBCDIC
74665a89
KW
1340 /* The below is accurate for the 3 EBCDIC code pages traditionally
1341 * supported by perl. The only difference between them in the controls
1342 * is the position of \n, and that is represented symbolically below */
1343# define isCNTRL_A(c) ((c) == '\0' || (c) == '\a' || (c) == '\b' \
1344 || (c) == '\f' || (c) == '\n' || (c) == '\r' \
1345 || (c) == '\t' || (c) == '\v' \
1346 || ((c) <= 3 && (c) >= 1) /* SOH, STX, ETX */ \
1347 || (c) == 7 /* U+7F DEL */ \
1348 || ((c) <= 0x13 && (c) >= 0x0E) /* SO, SI */ \
1349 /* DLE, DC[1-3] */ \
1350 || (c) == 0x18 /* U+18 CAN */ \
1351 || (c) == 0x19 /* U+19 EOM */ \
1352 || ((c) <= 0x1F && (c) >= 0x1C) /* [FGRU]S */ \
1353 || (c) == 0x26 /* U+17 ETB */ \
1354 || (c) == 0x27 /* U+1B ESC */ \
1355 || (c) == 0x2D /* U+05 ENQ */ \
1356 || (c) == 0x2E /* U+06 ACK */ \
1357 || (c) == 0x32 /* U+16 SYN */ \
1358 || (c) == 0x37 /* U+04 EOT */ \
1359 || (c) == 0x3C /* U+14 DC4 */ \
1360 || (c) == 0x3D /* U+15 NAK */ \
1361 || (c) == 0x3F)/* U+1A SUB */
0852beac 1362# define isASCII(c) (isCNTRL_A(c) || isPRINT_A(c))
74665a89
KW
1363# else /* isASCII is already defined for ASCII platforms, so can use that to
1364 define isCNTRL */
1365# define isCNTRL_A(c) (isASCII(c) && ! isPRINT_A(c))
0852beac
KW
1366# endif
1367
3ffc8c70 1368 /* The _L1 macros may be unnecessary for the utilities; I (khw) added them
caa94d35
KW
1369 * during debugging, and it seems best to keep them. We may be called
1370 * without NATIVE_TO_LATIN1 being defined. On ASCII platforms, it doesn't
1371 * do anything anyway, so make it not a problem */
1372# if ! defined(EBCDIC) && ! defined(NATIVE_TO_LATIN1)
1373# define NATIVE_TO_LATIN1(ch) (ch)
1374# endif
3ded5eb0
KW
1375# define isALPHA_L1(c) (isUPPER_L1(c) || isLOWER_L1(c))
1376# define isALPHANUMERIC_L1(c) (isALPHA_L1(c) || isDIGIT_A(c))
1377# define isBLANK_L1(c) (isBLANK_A(c) \
1378 || (FITS_IN_8_BITS(c) \
1379 && NATIVE_TO_LATIN1((U8) c) == 0xA0))
1380# define isCNTRL_L1(c) (FITS_IN_8_BITS(c) && (! isPRINT_L1(c)))
1381# define isGRAPH_L1(c) (isPRINT_L1(c) && (! isBLANK_L1(c)))
1382# define isLOWER_L1(c) (isLOWER_A(c) \
1383 || (FITS_IN_8_BITS(c) \
ae683a5f 1384 && (( NATIVE_TO_LATIN1((U8) c) >= 0xDF \
3ded5eb0
KW
1385 && NATIVE_TO_LATIN1((U8) c) != 0xF7) \
1386 || NATIVE_TO_LATIN1((U8) c) == 0xAA \
1387 || NATIVE_TO_LATIN1((U8) c) == 0xBA \
1388 || NATIVE_TO_LATIN1((U8) c) == 0xB5)))
1389# define isPRINT_L1(c) (isPRINT_A(c) \
1390 || (FITS_IN_8_BITS(c) \
1391 && NATIVE_TO_LATIN1((U8) c) >= 0xA0))
3ded5eb0
KW
1392# define isPUNCT_L1(c) (isPUNCT_A(c) \
1393 || (FITS_IN_8_BITS(c) \
ae683a5f 1394 && ( NATIVE_TO_LATIN1((U8) c) == 0xA1 \
3ded5eb0
KW
1395 || NATIVE_TO_LATIN1((U8) c) == 0xA7 \
1396 || NATIVE_TO_LATIN1((U8) c) == 0xAB \
1397 || NATIVE_TO_LATIN1((U8) c) == 0xB6 \
1398 || NATIVE_TO_LATIN1((U8) c) == 0xB7 \
1399 || NATIVE_TO_LATIN1((U8) c) == 0xBB \
1400 || NATIVE_TO_LATIN1((U8) c) == 0xBF)))
1401# define isSPACE_L1(c) (isSPACE_A(c) \
1402 || (FITS_IN_8_BITS(c) \
ae683a5f 1403 && ( NATIVE_TO_LATIN1((U8) c) == 0x85 \
3ded5eb0
KW
1404 || NATIVE_TO_LATIN1((U8) c) == 0xA0)))
1405# define isUPPER_L1(c) (isUPPER_A(c) \
1406 || (FITS_IN_8_BITS(c) \
ae683a5f 1407 && ( NATIVE_TO_LATIN1((U8) c) >= 0xC0 \
3ded5eb0
KW
1408 && NATIVE_TO_LATIN1((U8) c) <= 0xDE \
1409 && NATIVE_TO_LATIN1((U8) c) != 0xD7)))
1410# define isWORDCHAR_L1(c) (isIDFIRST_L1(c) || isDIGIT_A(c))
1411# define isIDFIRST_L1(c) (isALPHA_L1(c) || NATIVE_TO_LATIN1(c) == '_')
1412# define isCHARNAME_CONT(c) (isWORDCHAR_L1(c) \
1413 || isBLANK_L1(c) \
1414 || (c) == '-' \
1415 || (c) == '(' \
1416 || (c) == ')')
1417 /* The following are not fully accurate in the above-ASCII range. I (khw)
1418 * don't think it's necessary to be so for the purposes where this gets
1419 * compiled */
1420# define _isQUOTEMETA(c) (FITS_IN_8_BITS(c) && ! isWORDCHAR_L1(c))
1421# define _IS_IN_SOME_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) isALPHA_L1(c)
1422
1423 /* And these aren't accurate at all. They are useful only for above
1424 * Latin1, which utilities and bootstrapping don't deal with */
1425# define _IS_NON_FINAL_FOLD_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) 0
6838b41e 1426# define _HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
3ded5eb0
KW
1427# define _HAS_NONLATIN1_FOLD_CLOSURE_ONLY_FOR_USE_BY_REGCOMP_DOT_C_AND_REGEXEC_DOT_C(c) 0
1428
1429 /* Many of the macros later in this file are defined in terms of these. By
1430 * implementing them with a function, which converts the class number into
1431 * a call to the desired macro, all of the later ones work. However, that
1432 * function won't be actually defined when building a utility program (no
1433 * perl.h), and so a compiler error will be generated if one is attempted
1434 * to be used. And the above-Latin1 code points require Unicode tables to
1435 * be present, something unlikely to be the case when bootstrapping */
1436# define _generic_isCC(c, classnum) \
1437 (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), TRUE))
1438# define _generic_isCC_A(c, classnum) \
1439 (FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), FALSE))
687c8d01 1440#endif /* End of no perl.h H_PERL */
8a58bdcf 1441
e66b99e9
KW
1442#define isALPHANUMERIC(c) isALPHANUMERIC_A(c)
1443#define isALPHA(c) isALPHA_A(c)
0852beac
KW
1444#define isASCII_A(c) isASCII(c)
1445#define isASCII_L1(c) isASCII(c)
e66b99e9
KW
1446#define isBLANK(c) isBLANK_A(c)
1447#define isCNTRL(c) isCNTRL_A(c)
1448#define isDIGIT(c) isDIGIT_A(c)
1449#define isGRAPH(c) isGRAPH_A(c)
1450#define isIDFIRST(c) isIDFIRST_A(c)
1451#define isLOWER(c) isLOWER_A(c)
1452#define isPRINT(c) isPRINT_A(c)
779cf272 1453#define isPSXSPC_A(c) isSPACE_A(c)
e66b99e9 1454#define isPSXSPC(c) isPSXSPC_A(c)
779cf272 1455#define isPSXSPC_L1(c) isSPACE_L1(c)
e66b99e9
KW
1456#define isPUNCT(c) isPUNCT_A(c)
1457#define isSPACE(c) isSPACE_A(c)
1458#define isUPPER(c) isUPPER_A(c)
1459#define isWORDCHAR(c) isWORDCHAR_A(c)
1460#define isXDIGIT(c) isXDIGIT_A(c)
1461
1462/* ASCII casing. These could also be written as
1463 #define toLOWER(c) (isASCII(c) ? toLOWER_LATIN1(c) : (c))
1464 #define toUPPER(c) (isASCII(c) ? toUPPER_LATIN1_MOD(c) : (c))
1465 which uses table lookup and mask instead of subtraction. (This would
1466 work because the _MOD does not apply in the ASCII range) */
68067e4e
DM
1467#define toLOWER(c) (isUPPER(c) ? (U8)((c) + ('a' - 'A')) : (c))
1468#define toUPPER(c) (isLOWER(c) ? (U8)((c) - ('a' - 'A')) : (c))
bbce6d69 1469
25200305
KW
1470/* In the ASCII range, these are equivalent to what they're here defined to be.
1471 * But by creating these definitions, other code doesn't have to be aware of
1472 * this detail */
1473#define toFOLD(c) toLOWER(c)
25200305
KW
1474#define toTITLE(c) toUPPER(c)
1475
c753c8d3
KW
1476#define toLOWER_A(c) toLOWER(c)
1477#define toUPPER_A(c) toUPPER(c)
25200305
KW
1478#define toFOLD_A(c) toFOLD(c)
1479#define toTITLE_A(c) toTITLE(c)
1a0901db 1480
4650c663 1481/* Use table lookup for speed; returns the input itself if is out-of-range */
b2bf251f 1482#define toLOWER_LATIN1(c) ((! FITS_IN_8_BITS(c)) \
8e7c6e7d 1483 ? (c) \
f4cd282c 1484 : PL_latin1_lc[ (U8) (c) ])
c753c8d3
KW
1485#define toLOWER_L1(c) toLOWER_LATIN1(c) /* Synonym for consistency */
1486
1a0901db 1487/* Modified uc. Is correct uc except for three non-ascii chars which are
4650c663
KW
1488 * all mapped to one of them, and these need special handling; returns the
1489 * input itself if is out-of-range */
b2bf251f 1490#define toUPPER_LATIN1_MOD(c) ((! FITS_IN_8_BITS(c)) \
8e7c6e7d 1491 ? (c) \
f4cd282c 1492 : PL_mod_latin1_uc[ (U8) (c) ])
31f05a37 1493#define IN_UTF8_CTYPE_LOCALE PL_in_utf8_CTYPE_locale
84061b6a 1494
beab9ebe
KW
1495/* Use foo_LC_uvchr() instead of these for beyond the Latin1 range */
1496
1497/* For internal core Perl use only: the base macro for defining macros like
1498 * isALPHA_LC, which uses the current LC_CTYPE locale. 'c' is the code point
31f05a37
KW
1499 * (0-255) to check. In a UTF-8 locale, the result is the same as calling
1500 * isFOO_L1(); the 'utf8_locale_classnum' parameter is something like
1501 * _CC_UPPER, which gives the class number for doing this. For non-UTF-8
1502 * locales, the code to actually do the test this is passed in 'non_utf8'. If
1503 * 'c' is above 255, 0 is returned. For accessing the full range of possible
1504 * code points under locale rules, use the macros based on _generic_LC_uvchr
1505 * instead of this. */
beab9ebe
KW
1506#define _generic_LC_base(c, utf8_locale_classnum, non_utf8) \
1507 (! FITS_IN_8_BITS(c) \
1508 ? 0 \
31f05a37
KW
1509 : IN_UTF8_CTYPE_LOCALE \
1510 ? cBOOL(PL_charclass[(U8) (c)] & _CC_mask(utf8_locale_classnum)) \
beab9ebe
KW
1511 : cBOOL(non_utf8))
1512
1513/* For internal core Perl use only: a helper macro for defining macros like
1514 * isALPHA_LC. 'c' is the code point (0-255) to check. The function name to
1515 * actually do this test is passed in 'non_utf8_func', which is called on 'c',
1516 * casting 'c' to the macro _LC_CAST, which should not be parenthesized. See
1517 * _generic_LC_base for more info */
1518#define _generic_LC(c, utf8_locale_classnum, non_utf8_func) \
1519 _generic_LC_base(c,utf8_locale_classnum, \
1520 non_utf8_func( (_LC_CAST) (c)))
1521
1522/* For internal core Perl use only: like _generic_LC, but also returns TRUE if
1523 * 'c' is the platform's native underscore character */
1524#define _generic_LC_underscore(c,utf8_locale_classnum,non_utf8_func) \
1525 _generic_LC_base(c, utf8_locale_classnum, \
1526 (non_utf8_func( (_LC_CAST) (c)) \
1527 || (char)(c) == '_'))
1528
1529/* These next three are also for internal core Perl use only: case-change
1530 * helper macros */
1531#define _generic_toLOWER_LC(c, function, cast) (! FITS_IN_8_BITS(c) \
1532 ? (c) \
31f05a37
KW
1533 : (IN_UTF8_CTYPE_LOCALE) \
1534 ? PL_latin1_lc[ (U8) (c) ] \
d2a8cf7f 1535 : (cast)function((cast)(c)))
beab9ebe 1536
31f05a37
KW
1537/* Note that the result can be larger than a byte in a UTF-8 locale. It
1538 * returns a single value, so can't adequately return the upper case of LATIN
1539 * SMALL LETTER SHARP S in a UTF-8 locale (which should be a string of two
1540 * values "SS"); instead it asserts against that under DEBUGGING, and
1541 * otherwise returns its input */
beab9ebe
KW
1542#define _generic_toUPPER_LC(c, function, cast) \
1543 (! FITS_IN_8_BITS(c) \
1544 ? (c) \
31f05a37 1545 : ((! IN_UTF8_CTYPE_LOCALE) \
b7d90381 1546 ? (cast)function((cast)(c)) \
31f05a37
KW
1547 : ((((U8)(c)) == MICRO_SIGN) \
1548 ? GREEK_CAPITAL_LETTER_MU \
1549 : ((((U8)(c)) == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS) \
1550 ? LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS \
1551 : ((((U8)(c)) == LATIN_SMALL_LETTER_SHARP_S) \
1552 ? (__ASSERT_(0) (c)) \
1553 : PL_mod_latin1_uc[ (U8) (c) ])))))
1554
1555/* Note that the result can be larger than a byte in a UTF-8 locale. It
1556 * returns a single value, so can't adequately return the fold case of LATIN
1557 * SMALL LETTER SHARP S in a UTF-8 locale (which should be a string of two
1558 * values "ss"); instead it asserts against that under DEBUGGING, and
1559 * otherwise returns its input */
beab9ebe 1560#define _generic_toFOLD_LC(c, function, cast) \
4d7db1b9 1561 ((UNLIKELY((c) == MICRO_SIGN) && IN_UTF8_CTYPE_LOCALE) \
31f05a37 1562 ? GREEK_SMALL_LETTER_MU \
4d7db1b9
KW
1563 : (__ASSERT_(! IN_UTF8_CTYPE_LOCALE \
1564 || (c) != LATIN_SMALL_LETTER_SHARP_S) \
1565 _generic_toLOWER_LC(c, function, cast)))
beab9ebe 1566
84061b6a 1567/* Use the libc versions for these if available. */
f05550c0 1568#if defined(HAS_ISASCII)
84061b6a
KW
1569# define isASCII_LC(c) (FITS_IN_8_BITS(c) && isascii( (U8) (c)))
1570#else
1571# define isASCII_LC(c) isASCII(c)
1572#endif
1573
f05550c0 1574#if defined(HAS_ISBLANK)
84061b6a 1575# define isBLANK_LC(c) _generic_LC(c, _CC_BLANK, isblank)
95f34b6f 1576#else /* Unlike isASCII, varies if in a UTF-8 locale */
278b2b56 1577# define isBLANK_LC(c) ((IN_UTF8_CTYPE_LOCALE) ? isBLANK_L1(c) : isBLANK(c))
84061b6a
KW
1578#endif
1579
f05550c0 1580#define _LC_CAST U8
bbce6d69 1581
f05550c0 1582#ifdef WIN32
375f5f06
KW
1583 /* The Windows functions don't bother to follow the POSIX standard, which
1584 * for example says that something can't both be a printable and a control.
1585 * But Windows treats the \t control as a printable, and does such things
1586 * as making superscripts into both digits and punctuation. This tames
1587 * these flaws by assuming that the definitions of both controls and space
1588 * are correct, and then making sure that other definitions don't have
1589 * weirdnesses, by making sure that isalnum() isn't also ispunct(), etc.
1590 * Not all possible weirdnesses are checked for, just the ones that were
1591 * detected on actual Microsoft code pages */
1592
b7d90381
KW
1593# define isCNTRL_LC(c) _generic_LC(c, _CC_CNTRL, iscntrl)
1594# define isSPACE_LC(c) _generic_LC(c, _CC_SPACE, isspace)
1595
1596# define isALPHA_LC(c) (_generic_LC(c, _CC_ALPHA, isalpha) \
1597 && isALPHANUMERIC_LC(c))
1598# define isALPHANUMERIC_LC(c) (_generic_LC(c, _CC_ALPHANUMERIC, isalnum) && \
1599 ! isPUNCT_LC(c))
1600# define isDIGIT_LC(c) (_generic_LC(c, _CC_DIGIT, isdigit) && \
1601 isALPHANUMERIC_LC(c))
1602# define isGRAPH_LC(c) (_generic_LC(c, _CC_GRAPH, isgraph) && isPRINT_LC(c))
1603# define isIDFIRST_LC(c) (((c) == '_') \
1604 || (_generic_LC(c, _CC_IDFIRST, isalpha) && ! isPUNCT_LC(c)))
1605# define isLOWER_LC(c) (_generic_LC(c, _CC_LOWER, islower) && isALPHA_LC(c))
1606# define isPRINT_LC(c) (_generic_LC(c, _CC_PRINT, isprint) && ! isCNTRL_LC(c))
1607# define isPUNCT_LC(c) (_generic_LC(c, _CC_PUNCT, ispunct) && ! isCNTRL_LC(c))
1608# define isUPPER_LC(c) (_generic_LC(c, _CC_UPPER, isupper) && isALPHA_LC(c))
f05550c0 1609# define isWORDCHAR_LC(c) (((c) == '_') || isALPHANUMERIC_LC(c))
b7d90381
KW
1610# define isXDIGIT_LC(c) (_generic_LC(c, _CC_XDIGIT, isxdigit) \
1611 && isALPHANUMERIC_LC(c))
f05550c0
BF
1612
1613# define toLOWER_LC(c) _generic_toLOWER_LC((c), tolower, U8)
1614# define toUPPER_LC(c) _generic_toUPPER_LC((c), toupper, U8)
1615# define toFOLD_LC(c) _generic_toFOLD_LC((c), tolower, U8)
1616
1617#elif defined(CTYPE256) || (!defined(isascii) && !defined(HAS_ISASCII))
4650c663 1618 /* For most other platforms */
beab9ebe 1619
f05550c0
BF
1620# define isALPHA_LC(c) _generic_LC(c, _CC_ALPHA, isalpha)
1621# define isALPHANUMERIC_LC(c) _generic_LC(c, _CC_ALPHANUMERIC, isalnum)
1622# define isCNTRL_LC(c) _generic_LC(c, _CC_CNTRL, iscntrl)
1623# define isDIGIT_LC(c) _generic_LC(c, _CC_DIGIT, isdigit)
1624# define isGRAPH_LC(c) _generic_LC(c, _CC_GRAPH, isgraph)
1625# define isIDFIRST_LC(c) _generic_LC_underscore(c, _CC_IDFIRST, isalpha)
1626# define isLOWER_LC(c) _generic_LC(c, _CC_LOWER, islower)
1627# define isPRINT_LC(c) _generic_LC(c, _CC_PRINT, isprint)
1628# define isPUNCT_LC(c) _generic_LC(c, _CC_PUNCT, ispunct)
1629# define isSPACE_LC(c) _generic_LC(c, _CC_SPACE, isspace)
1630# define isUPPER_LC(c) _generic_LC(c, _CC_UPPER, isupper)
1631# define isWORDCHAR_LC(c) _generic_LC_underscore(c, _CC_WORDCHAR, isalnum)
1632# define isXDIGIT_LC(c) _generic_LC(c, _CC_XDIGIT, isxdigit)
1633
1634
1635# define toLOWER_LC(c) _generic_toLOWER_LC((c), tolower, U8)
1636# define toUPPER_LC(c) _generic_toUPPER_LC((c), toupper, U8)
1637# define toFOLD_LC(c) _generic_toFOLD_LC((c), tolower, U8)
1638
1639#else /* The final fallback position */
1640
b7d90381
KW
1641# define isALPHA_LC(c) (isascii(c) && isalpha(c))
1642# define isALPHANUMERIC_LC(c) (isascii(c) && isalnum(c))
1643# define isCNTRL_LC(c) (isascii(c) && iscntrl(c))
1644# define isDIGIT_LC(c) (isascii(c) && isdigit(c))
1645# define isGRAPH_LC(c) (isascii(c) && isgraph(c))
f05550c0 1646# define isIDFIRST_LC(c) (isascii(c) && (isalpha(c) || (c) == '_'))
b7d90381
KW
1647# define isLOWER_LC(c) (isascii(c) && islower(c))
1648# define isPRINT_LC(c) (isascii(c) && isprint(c))
1649# define isPUNCT_LC(c) (isascii(c) && ispunct(c))
1650# define isSPACE_LC(c) (isascii(c) && isspace(c))
1651# define isUPPER_LC(c) (isascii(c) && isupper(c))
f05550c0 1652# define isWORDCHAR_LC(c) (isascii(c) && (isalnum(c) || (c) == '_'))
b7d90381 1653# define isXDIGIT_LC(c) (isascii(c) && isxdigit(c))
f05550c0
BF
1654
1655# define toLOWER_LC(c) (isascii(c) ? tolower(c) : (c))
1656# define toUPPER_LC(c) (isascii(c) ? toupper(c) : (c))
1657# define toFOLD_LC(c) (isascii(c) ? tolower(c) : (c))
bbce6d69 1658
f05550c0 1659#endif
55204971 1660
eba68aa0
KW
1661#define isIDCONT(c) isWORDCHAR(c)
1662#define isIDCONT_A(c) isWORDCHAR_A(c)
1663#define isIDCONT_L1(c) isWORDCHAR_L1(c)
1664#define isIDCONT_LC(c) isWORDCHAR_LC(c)
13380643 1665#define isPSXSPC_LC(c) isSPACE_LC(c)
aaa51d5e 1666
4650c663 1667/* For internal core Perl use only: the base macros for defining macros like
d0da05db
KW
1668 * isALPHA_uvchr. 'c' is the code point to check. 'classnum' is the POSIX class
1669 * number defined earlier in this file. _generic_uvchr() is used for POSIX
4650c663
KW
1670 * classes where there is a macro or function 'above_latin1' that takes the
1671 * single argument 'c' and returns the desired value. These exist for those
1672 * classes which have simple definitions, avoiding the overhead of a hash
d0da05db 1673 * lookup or inversion list binary search. _generic_swash_uvchr() can be used
4650c663 1674 * for classes where that overhead is faster than a direct lookup.
d0da05db 1675 * _generic_uvchr() won't compile if 'c' isn't unsigned, as it won't match the
4650c663
KW
1676 * 'above_latin1' prototype. _generic_isCC() macro does bounds checking, so
1677 * have duplicate checks here, so could create versions of the macros that
1678 * don't, but experiments show that gcc optimizes them out anyway. */
66c17564
KW
1679
1680/* Note that all ignore 'use bytes' */
1e222e4f
KW
1681#define _generic_uvchr(classnum, above_latin1, c) ((c) < 256 \
1682 ? _generic_isCC(c, classnum) \
cd500f2f 1683 : above_latin1(c))
1e222e4f
KW
1684#define _generic_swash_uvchr(classnum, c) ((c) < 256 \
1685 ? _generic_isCC(c, classnum) \
922e8cb4 1686 : _is_uni_FOO(classnum, c))
d0da05db
KW
1687#define isALPHA_uvchr(c) _generic_swash_uvchr(_CC_ALPHA, c)
1688#define isALPHANUMERIC_uvchr(c) _generic_swash_uvchr(_CC_ALPHANUMERIC, c)
1689#define isASCII_uvchr(c) isASCII(c)
1690#define isBLANK_uvchr(c) _generic_uvchr(_CC_BLANK, is_HORIZWS_cp_high, c)
1691#define isCNTRL_uvchr(c) isCNTRL_L1(c) /* All controls are in Latin1 */
1692#define isDIGIT_uvchr(c) _generic_swash_uvchr(_CC_DIGIT, c)
1693#define isGRAPH_uvchr(c) _generic_swash_uvchr(_CC_GRAPH, c)
1e222e4f
KW
1694#define isIDCONT_uvchr(c) \
1695 _generic_uvchr(_CC_WORDCHAR, _is_uni_perl_idcont, c)
1696#define isIDFIRST_uvchr(c) \
1697 _generic_uvchr(_CC_IDFIRST, _is_uni_perl_idstart, c)
d0da05db
KW
1698#define isLOWER_uvchr(c) _generic_swash_uvchr(_CC_LOWER, c)
1699#define isPRINT_uvchr(c) _generic_swash_uvchr(_CC_PRINT, c)
1700
1701#define isPUNCT_uvchr(c) _generic_swash_uvchr(_CC_PUNCT, c)
1702#define isSPACE_uvchr(c) _generic_uvchr(_CC_SPACE, is_XPERLSPACE_cp_high, c)
1703#define isPSXSPC_uvchr(c) isSPACE_uvchr(c)
1704
1705#define isUPPER_uvchr(c) _generic_swash_uvchr(_CC_UPPER, c)
1706#define isVERTWS_uvchr(c) _generic_uvchr(_CC_VERTSPACE, is_VERTWS_cp_high, c)
1707#define isWORDCHAR_uvchr(c) _generic_swash_uvchr(_CC_WORDCHAR, c)
1708#define isXDIGIT_uvchr(c) _generic_uvchr(_CC_XDIGIT, is_XDIGIT_cp_high, c)
1709
1710#define toFOLD_uvchr(c,s,l) to_uni_fold(c,s,l)
1711#define toLOWER_uvchr(c,s,l) to_uni_lower(c,s,l)
1712#define toTITLE_uvchr(c,s,l) to_uni_title(c,s,l)
1713#define toUPPER_uvchr(c,s,l) to_uni_upper(c,s,l)
1714
1715/* For backwards compatibility, even though '_uni' should mean official Unicode
1716 * code points, in Perl it means native for those below 256 */
1717#define isALPHA_uni(c) isALPHA_uvchr(c)
1718#define isALPHANUMERIC_uni(c) isALPHANUMERIC_uvchr(c)
1719#define isASCII_uni(c) isASCII_uvchr(c)
1720#define isBLANK_uni(c) isBLANK_uvchr(c)
1721#define isCNTRL_uni(c) isCNTRL_uvchr(c)
1722#define isDIGIT_uni(c) isDIGIT_uvchr(c)
1723#define isGRAPH_uni(c) isGRAPH_uvchr(c)
1724#define isIDCONT_uni(c) isIDCONT_uvchr(c)
1725#define isIDFIRST_uni(c) isIDFIRST_uvchr(c)
1726#define isLOWER_uni(c) isLOWER_uvchr(c)
1727#define isPRINT_uni(c) isPRINT_uvchr(c)
1728#define isPUNCT_uni(c) isPUNCT_uvchr(c)
1729#define isSPACE_uni(c) isSPACE_uvchr(c)
1730#define isPSXSPC_uni(c) isPSXSPC_uvchr(c)
1731#define isUPPER_uni(c) isUPPER_uvchr(c)
1732#define isVERTWS_uni(c) isVERTWS_uvchr(c)
1733#define isWORDCHAR_uni(c) isWORDCHAR_uvchr(c)
1734#define isXDIGIT_uni(c) isXDIGIT_uvchr(c)
1735#define toFOLD_uni(c,s,l) toFOLD_uvchr(c,s,l)
1736#define toLOWER_uni(c,s,l) toLOWER_uvchr(c,s,l)
1737#define toTITLE_uni(c,s,l) toTITLE_uvchr(c,s,l)
1738#define toUPPER_uni(c,s,l) toUPPER_uvchr(c,s,l)
a0ed51b3 1739
4650c663
KW
1740/* For internal core Perl use only: the base macros for defining macros like
1741 * isALPHA_LC_uvchr. These are like isALPHA_LC, but the input can be any code
d0da05db 1742 * point, not just 0-255. Like _generic_uvchr, there are two versions, one for
4650c663 1743 * simple class definitions; the other for more complex. These are like
d0da05db 1744 * _generic_uvchr, so see it for more info. */
cd500f2f
KW
1745#define _generic_LC_uvchr(latin1, above_latin1, c) \
1746 (c < 256 ? latin1(c) : above_latin1(c))
1747#define _generic_LC_swash_uvchr(latin1, classnum, c) \
1748 (c < 256 ? latin1(c) : _is_uni_FOO(classnum, c))
1749
1750#define isALPHA_LC_uvchr(c) _generic_LC_swash_uvchr(isALPHA_LC, _CC_ALPHA, c)
1751#define isALPHANUMERIC_LC_uvchr(c) _generic_LC_swash_uvchr(isALPHANUMERIC_LC, \
1752 _CC_ALPHANUMERIC, c)
b7d90381
KW
1753#define isASCII_LC_uvchr(c) isASCII_LC(c)
1754#define isBLANK_LC_uvchr(c) _generic_LC_uvchr(isBLANK_LC, \
1755 is_HORIZWS_cp_high, c)
feeab5a9 1756#define isCNTRL_LC_uvchr(c) (c < 256 ? isCNTRL_LC(c) : 0)
cd500f2f
KW
1757#define isDIGIT_LC_uvchr(c) _generic_LC_swash_uvchr(isDIGIT_LC, _CC_DIGIT, c)
1758#define isGRAPH_LC_uvchr(c) _generic_LC_swash_uvchr(isGRAPH_LC, _CC_GRAPH, c)
b7d90381 1759#define isIDCONT_LC_uvchr(c) _generic_LC_uvchr(isIDCONT_LC, \
eba68aa0 1760 _is_uni_perl_idcont, c)
b7d90381 1761#define isIDFIRST_LC_uvchr(c) _generic_LC_uvchr(isIDFIRST_LC, \
cd500f2f
KW
1762 _is_uni_perl_idstart, c)
1763#define isLOWER_LC_uvchr(c) _generic_LC_swash_uvchr(isLOWER_LC, _CC_LOWER, c)
1764#define isPRINT_LC_uvchr(c) _generic_LC_swash_uvchr(isPRINT_LC, _CC_PRINT, c)
b7d90381 1765#define isPSXSPC_LC_uvchr(c) isSPACE_LC_uvchr(c)
cd500f2f 1766#define isPUNCT_LC_uvchr(c) _generic_LC_swash_uvchr(isPUNCT_LC, _CC_PUNCT, c)
b7d90381 1767#define isSPACE_LC_uvchr(c) _generic_LC_uvchr(isSPACE_LC, \
509fb054 1768 is_XPERLSPACE_cp_high, c)
cd500f2f 1769#define isUPPER_LC_uvchr(c) _generic_LC_swash_uvchr(isUPPER_LC, _CC_UPPER, c)
b7d90381 1770#define isWORDCHAR_LC_uvchr(c) _generic_LC_swash_uvchr(isWORDCHAR_LC, \
cd500f2f 1771 _CC_WORDCHAR, c)
b7d90381
KW
1772#define isXDIGIT_LC_uvchr(c) _generic_LC_uvchr(isXDIGIT_LC, \
1773 is_XDIGIT_cp_high, c)
e712593e 1774
b7d90381 1775#define isBLANK_LC_uni(c) isBLANK_LC_uvchr(UNI_TO_NATIVE(c))
aaa51d5e 1776
4650c663
KW
1777/* For internal core Perl use only: the base macros for defining macros like
1778 * isALPHA_utf8. These are like the earlier defined macros, but take an input
1779 * UTF-8 encoded string 'p'. If the input is in the Latin1 range, use
1780 * the Latin1 macro 'classnum' on 'p'. Otherwise use the value given by the
1781 * 'utf8' parameter. This relies on the fact that ASCII characters have the
1782 * same representation whether utf8 or not. Note that it assumes that the utf8
1783 * has been validated, and ignores 'use bytes' */
34aeb2e9
KW
1784#define _base_generic_utf8(enum_name, name, p, use_locale ) \
1785 _is_utf8_FOO(CAT2(_CC_, enum_name), \
1786 (const U8 *) p, \
1787 "is" STRINGIFY(name) "_utf8", \
1788 "is" STRINGIFY(name) "_utf8_safe", \
1789 1, use_locale, __FILE__,__LINE__)
1790
1791#define _generic_utf8(name, p) _base_generic_utf8(name, name, p, 0)
da8c1a98
KW
1792
1793/* The "_safe" macros make sure that we don't attempt to read beyond 'e', but
1794 * they don't otherwise go out of their way to look for malformed UTF-8. If
1795 * they can return accurate results without knowing if the input is otherwise
1796 * malformed, they do so. For example isASCII is accurate in spite of any
1797 * non-length malformations because it looks only at a single byte. Likewise
1798 * isDIGIT looks just at the first byte for code points 0-255, as all UTF-8
1799 * variant ones return FALSE. But, if the input has to be well-formed in order
1800 * for the results to be accurate, the macros will test and if malformed will
1801 * call a routine to die
1802 *
1803 * Except for toke.c, the macros do assume that e > p, asserting that on
1804 * DEBUGGING builds. Much code that calls these depends on this being true,
1805 * for other reasons. toke.c is treated specially as using the regular
1806 * assertion breaks it in many ways. All strings that these operate on there
1807 * are supposed to have an extra NUL character at the end, so that *e = \0. A
1808 * bunch of code in toke.c assumes that this is true, so the assertion allows
1809 * for that */
1810#ifdef PERL_IN_TOKE_C
1811# define _utf8_safe_assert(p,e) ((e) > (p) || ((e) == (p) && *(p) == '\0'))
1812#else
1813# define _utf8_safe_assert(p,e) ((e) > (p))
1814#endif
1815
1816#define _generic_utf8_safe(classnum, p, e, above_latin1) \
1817 (__ASSERT_(_utf8_safe_assert(p, e)) \
1818 (UTF8_IS_INVARIANT(*(p))) \
1819 ? _generic_isCC(*(p), classnum) \
1820 : (UTF8_IS_DOWNGRADEABLE_START(*(p)) \
1821 ? ((LIKELY((e) - (p) > 1 && UTF8_IS_CONTINUATION(*((p)+1)))) \
1822 ? _generic_isCC(EIGHT_BIT_UTF8_TO_NATIVE(*(p), *((p)+1 )), \
1823 classnum) \
1824 : (_force_out_malformed_utf8_message( \
1825 (U8 *) (p), (U8 *) (e), 0, 1), 0)) \
1826 : above_latin1))
b7d90381
KW
1827/* Like the above, but calls 'above_latin1(p)' to get the utf8 value.
1828 * 'above_latin1' can be a macro */
da8c1a98
KW
1829#define _generic_func_utf8_safe(classnum, above_latin1, p, e) \
1830 _generic_utf8_safe(classnum, p, e, above_latin1(p, e))
1831#define _generic_non_swash_utf8_safe(classnum, above_latin1, p, e) \
1832 _generic_utf8_safe(classnum, p, e, \
1833 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
1834 ? (_force_out_malformed_utf8_message( \
1835 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
1836 : above_latin1(p)))
4650c663 1837/* Like the above, but passes classnum to _isFOO_utf8(), instead of having an
cd500f2f 1838 * 'above_latin1' parameter */
da8c1a98
KW
1839#define _generic_swash_utf8_safe(classnum, p, e) \
1840_generic_utf8_safe(classnum, p, e, _is_utf8_FOO_with_len(classnum, p, e))
922e8cb4 1841
cc8ab7c0 1842/* Like the above, but should be used only when it is known that there are no
ff7ecfc3
KW
1843 * characters in the upper-Latin1 range (128-255 on ASCII platforms) which the
1844 * class is TRUE for. Hence it can skip the tests for this range.
1845 * 'above_latin1' should include its arguments */
da8c1a98
KW
1846#define _generic_utf8_safe_no_upper_latin1(classnum, p, e, above_latin1) \
1847 (__ASSERT_(_utf8_safe_assert(p, e)) \
1848 (UTF8_IS_INVARIANT(*(p))) \
1849 ? _generic_isCC(*(p), classnum) \
1850 : (UTF8_IS_DOWNGRADEABLE_START(*(p))) \
1851 ? 0 /* Note that doesn't check validity for latin1 */ \
1852 : above_latin1)
1853
84238efa 1854
34aeb2e9
KW
1855#define isALPHA_utf8(p) _generic_utf8(ALPHA, p)
1856#define isALPHANUMERIC_utf8(p) _generic_utf8(ALPHANUMERIC, p)
1857#define isASCII_utf8(p) _generic_utf8(ASCII, p)
1858#define isBLANK_utf8(p) _generic_utf8(BLANK, p)
1859#define isCNTRL_utf8(p) _generic_utf8(CNTRL, p)
1860#define isDIGIT_utf8(p) _generic_utf8(DIGIT, p)
1861#define isGRAPH_utf8(p) _generic_utf8(GRAPH, p)
1862#define isIDCONT_utf8(p) _generic_utf8(IDCONT, p)
1863#define isIDFIRST_utf8(p) _generic_utf8(IDFIRST, p)
1864#define isLOWER_utf8(p) _generic_utf8(LOWER, p)
1865#define isPRINT_utf8(p) _generic_utf8(PRINT, p)
1866#define isPSXSPC_utf8(p) _generic_utf8(PSXSPC, p)
1867#define isPUNCT_utf8(p) _generic_utf8(PUNCT, p)
1868#define isSPACE_utf8(p) _generic_utf8(SPACE, p)
1869#define isUPPER_utf8(p) _generic_utf8(UPPER, p)
1870#define isVERTWS_utf8(p) _generic_utf8(VERTSPACE, p)
1871#define isWORDCHAR_utf8(p) _generic_utf8(WORDCHAR, p)
1872#define isXDIGIT_utf8(p) _generic_utf8(XDIGIT, p)
e8fa43e2 1873
da8c1a98
KW
1874#define isALPHA_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_ALPHA, p, e)
1875#define isALPHANUMERIC_utf8_safe(p, e) \
1876 _generic_swash_utf8_safe(_CC_ALPHANUMERIC, p, e)
1877#define isASCII_utf8_safe(p, e) \
1878 /* Because ASCII is invariant under utf8, the non-utf8 macro \
1879 * works */ \
1880 (__ASSERT_(_utf8_safe_assert(p, e)) isASCII(*(p)))
1881#define isBLANK_utf8_safe(p, e) \
1882 _generic_non_swash_utf8_safe(_CC_BLANK, is_HORIZWS_high, p, e)
1883
e8fa43e2
KW
1884#ifdef EBCDIC
1885 /* Because all controls are UTF-8 invariants in EBCDIC, we can use this
1886 * more efficient macro instead of the more general one */
da8c1a98 1887# define isCNTRL_utf8_safe(p, e) \
56d02b8c 1888 (__ASSERT_(_utf8_safe_assert(p, e)) isCNTRL_L1(*(p)))
e8fa43e2 1889#else
da8c1a98 1890# define isCNTRL_utf8_safe(p, e) _generic_utf8_safe(_CC_CNTRL, p, e, 0)
e8fa43e2
KW
1891#endif
1892
da8c1a98
KW
1893#define isDIGIT_utf8_safe(p, e) \
1894 _generic_utf8_safe_no_upper_latin1(_CC_DIGIT, p, e, \
1895 _is_utf8_FOO_with_len(_CC_DIGIT, p, e))
1896#define isGRAPH_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_GRAPH, p, e)
1897#define isIDCONT_utf8_safe(p, e) _generic_func_utf8_safe(_CC_WORDCHAR, \
1898 _is_utf8_perl_idcont_with_len, p, e)
e5dcd934 1899
c11ff943
KW
1900/* To prevent S_scan_word in toke.c from hanging, we have to make sure that
1901 * IDFIRST is an alnum. See
c8362b00 1902 * http://rt.perl.org/rt3/Ticket/Display.html?id=74022 for more detail than you
f91dcd13
KW
1903 * ever wanted to know about. (In the ASCII range, there isn't a difference.)
1904 * This used to be not the XID version, but we decided to go with the more
1905 * modern Unicode definition */
da8c1a98
KW
1906#define isIDFIRST_utf8_safe(p, e) \
1907 _generic_func_utf8_safe(_CC_IDFIRST, \
1908 _is_utf8_perl_idstart_with_len, (U8 *) (p), (U8 *) (e))
1909
1910#define isLOWER_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_LOWER, p, e)
1911#define isPRINT_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_PRINT, p, e)
1912#define isPSXSPC_utf8_safe(p, e) isSPACE_utf8_safe(p, e)
1913#define isPUNCT_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_PUNCT, p, e)
1914#define isSPACE_utf8_safe(p, e) \
1915 _generic_non_swash_utf8_safe(_CC_SPACE, is_XPERLSPACE_high, p, e)
1916#define isUPPER_utf8_safe(p, e) _generic_swash_utf8_safe(_CC_UPPER, p, e)
1917#define isVERTWS_utf8_safe(p, e) \
1918 _generic_non_swash_utf8_safe(_CC_VERTSPACE, is_VERTWS_high, p, e)
1919#define isWORDCHAR_utf8_safe(p, e) \
1920 _generic_swash_utf8_safe(_CC_WORDCHAR, p, e)
1921#define isXDIGIT_utf8_safe(p, e) \
1922 _generic_utf8_safe_no_upper_latin1(_CC_XDIGIT, p, e, \
1923 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
1924 ? (_force_out_malformed_utf8_message( \
1925 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
1926 : is_XDIGIT_high(p)))
a0ed51b3 1927
7d2b61dd 1928#define toFOLD_utf8(p,s,l) to_utf8_fold(p,s,l)
509fb054
KW
1929#define toLOWER_utf8(p,s,l) to_utf8_lower(p,s,l)
1930#define toTITLE_utf8(p,s,l) to_utf8_title(p,s,l)
1931#define toUPPER_utf8(p,s,l) to_utf8_upper(p,s,l)
2e8adce6 1932
567b353c 1933/* For internal core use only, subject to change */
607313a1
KW
1934#define _toFOLD_utf8_flags(p,e,s,l,f) _to_utf8_fold_flags (p,e,s,l,f, "", 0)
1935#define _toLOWER_utf8_flags(p,e,s,l,f) _to_utf8_lower_flags(p,e,s,l,f, "", 0)
1936#define _toTITLE_utf8_flags(p,e,s,l,f) _to_utf8_title_flags(p,e,s,l,f, "", 0)
1937#define _toUPPER_utf8_flags(p,e,s,l,f) _to_utf8_upper_flags(p,e,s,l,f, "", 0)
a1a5ec35
KW
1938
1939#define toFOLD_utf8_safe(p,e,s,l) _toFOLD_utf8_flags(p,e,s,l, FOLD_FLAGS_FULL)
1940#define toLOWER_utf8_safe(p,e,s,l) _toLOWER_utf8_flags(p,e,s,l, 0)
1941#define toTITLE_utf8_safe(p,e,s,l) _toTITLE_utf8_flags(p,e,s,l, 0)
1942#define toUPPER_utf8_safe(p,e,s,l) _toUPPER_utf8_flags(p,e,s,l, 0)
567b353c 1943
4650c663
KW
1944/* For internal core Perl use only: the base macros for defining macros like
1945 * isALPHA_LC_utf8. These are like _generic_utf8, but if the first code point
1946 * in 'p' is within the 0-255 range, it uses locale rules from the passed-in
1947 * 'macro' parameter */
34aeb2e9
KW
1948#define _generic_LC_utf8(name, p) _base_generic_utf8(name, name, p, 1)
1949
1950#define isALPHA_LC_utf8(p) _generic_LC_utf8(ALPHA, p)
1951#define isALPHANUMERIC_LC_utf8(p) _generic_LC_utf8(ALPHANUMERIC, p)
1952#define isASCII_LC_utf8(p) _generic_LC_utf8(ASCII, p)
1953#define isBLANK_LC_utf8(p) _generic_LC_utf8(BLANK, p)
1954#define isCNTRL_LC_utf8(p) _generic_LC_utf8(CNTRL, p)
1955#define isDIGIT_LC_utf8(p) _generic_LC_utf8(DIGIT, p)
1956#define isGRAPH_LC_utf8(p) _generic_LC_utf8(GRAPH, p)
1957#define isIDCONT_LC_utf8(p) _generic_LC_utf8(IDCONT, p)
1958#define isIDFIRST_LC_utf8(p) _generic_LC_utf8(IDFIRST, p)
1959#define isLOWER_LC_utf8(p) _generic_LC_utf8(LOWER, p)
1960#define isPRINT_LC_utf8(p) _generic_LC_utf8(PRINT, p)
1961#define isPSXSPC_LC_utf8(p) _generic_LC_utf8(PSXSPC, p)
1962#define isPUNCT_LC_utf8(p) _generic_LC_utf8(PUNCT, p)
1963#define isSPACE_LC_utf8(p) _generic_LC_utf8(SPACE, p)
1964#define isUPPER_LC_utf8(p) _generic_LC_utf8(UPPER, p)
1965#define isWORDCHAR_LC_utf8(p) _generic_LC_utf8(WORDCHAR, p)
1966#define isXDIGIT_LC_utf8(p) _generic_LC_utf8(XDIGIT, p)
1967
da8c1a98
KW
1968/* For internal core Perl use only: the base macros for defining macros like
1969 * isALPHA_LC_utf8_safe. These are like _generic_utf8, but if the first code
1970 * point in 'p' is within the 0-255 range, it uses locale rules from the
1971 * passed-in 'macro' parameter */
1972#define _generic_LC_utf8_safe(macro, p, e, above_latin1) \
1973 (__ASSERT_(_utf8_safe_assert(p, e)) \
1974 (UTF8_IS_INVARIANT(*(p))) \
1975 ? macro(*(p)) \
1976 : (UTF8_IS_DOWNGRADEABLE_START(*(p)) \
1977 ? ((LIKELY((e) - (p) > 1 && UTF8_IS_CONTINUATION(*((p)+1)))) \
1978 ? macro(EIGHT_BIT_UTF8_TO_NATIVE(*(p), *((p)+1))) \
1979 : (_force_out_malformed_utf8_message( \
1980 (U8 *) (p), (U8 *) (e), 0, 1), 0)) \
1981 : above_latin1))
1982
1983#define _generic_LC_swash_utf8_safe(macro, classnum, p, e) \
1984 _generic_LC_utf8_safe(macro, p, e, \
1985 _is_utf8_FOO_with_len(classnum, p, e))
1986
1987#define _generic_LC_func_utf8_safe(macro, above_latin1, p, e) \
1988 _generic_LC_utf8_safe(macro, p, e, above_latin1(p, e))
1989
1990#define _generic_LC_non_swash_utf8_safe(classnum, above_latin1, p, e) \
1991 _generic_LC_utf8_safe(classnum, p, e, \
1992 (UNLIKELY((e) - (p) < UTF8SKIP(p)) \
1993 ? (_force_out_malformed_utf8_message( \
1994 (U8 *) (p), (U8 *) (e), 0, 1), 0) \
1995 : above_latin1(p)))
1996
1997#define isALPHANUMERIC_LC_utf8_safe(p, e) \
1998 _generic_LC_swash_utf8_safe(isALPHANUMERIC_LC, \
1999 _CC_ALPHANUMERIC, p, e)
2000#define isALPHA_LC_utf8_safe(p, e) \
2001 _generic_LC_swash_utf8_safe(isALPHA_LC, _CC_ALPHA, p, e)
2002#define isASCII_LC_utf8_safe(p, e) \
2003 (__ASSERT_(_utf8_safe_assert(p, e)) isASCII_LC(*(p)))
2004#define isBLANK_LC_utf8_safe(p, e) \
2005 _generic_LC_non_swash_utf8_safe(isBLANK_LC, is_HORIZWS_high, p, e)
2006#define isCNTRL_LC_utf8_safe(p, e) \
2007 _generic_LC_utf8_safe(isCNTRL_LC, p, e, 0)
2008#define isDIGIT_LC_utf8_safe(p, e) \
2009 _generic_LC_swash_utf8_safe(isDIGIT_LC, _CC_DIGIT, p, e)
2010#define isGRAPH_LC_utf8_safe(p, e) \
2011 _generic_LC_swash_utf8_safe(isGRAPH_LC, _CC_GRAPH, p, e)
2012#define isIDCONT_LC_utf8_safe(p, e) \
2013 _generic_LC_func_utf8_safe(isIDCONT_LC, \
2014 _is_utf8_perl_idcont_with_len, p, e)
2015#define isIDFIRST_LC_utf8_safe(p, e) \
2016 _generic_LC_func_utf8_safe(isIDFIRST_LC, \
2017 _is_utf8_perl_idstart_with_len, p, e)
2018#define isLOWER_LC_utf8_safe(p, e) \
2019 _generic_LC_swash_utf8_safe(isLOWER_LC, _CC_LOWER, p, e)
2020#define isPRINT_LC_utf8_safe(p, e) \
2021 _generic_LC_swash_utf8_safe(isPRINT_LC, _CC_PRINT, p, e)
2022#define isPSXSPC_LC_utf8_safe(p, e) isSPACE_LC_utf8_safe(p, e)
2023#define isPUNCT_LC_utf8_safe(p, e) \
2024 _generic_LC_swash_utf8_safe(isPUNCT_LC, _CC_PUNCT, p, e)
2025#define isSPACE_LC_utf8_safe(p, e) \
2026 _generic_LC_non_swash_utf8_safe(isSPACE_LC, is_XPERLSPACE_high, p, e)
2027#define isUPPER_LC_utf8_safe(p, e) \
2028 _generic_LC_swash_utf8_safe(isUPPER_LC, _CC_UPPER, p, e)
2029#define isWORDCHAR_LC_utf8_safe(p, e) \
2030 _generic_LC_swash_utf8_safe(isWORDCHAR_LC, _CC_WORDCHAR, p, e)
2031#define isXDIGIT_LC_utf8_safe(p, e) \
2032 _generic_LC_non_swash_utf8_safe(isXDIGIT_LC, is_XDIGIT_high, p, e)
aaa51d5e 2033
fbc19f27
KW
2034/* Macros for backwards compatibility and for completeness when the ASCII and
2035 * Latin1 values are identical */
b7d90381
KW
2036#define isALPHAU(c) isALPHA_L1(c)
2037#define isDIGIT_L1(c) isDIGIT_A(c)
2038#define isOCTAL(c) isOCTAL_A(c)
2039#define isOCTAL_L1(c) isOCTAL_A(c)
2040#define isXDIGIT_L1(c) isXDIGIT_A(c)
2041#define isALNUM(c) isWORDCHAR(c)
2042#define isALNUMU(c) isWORDCHAR_L1(c)
2043#define isALNUM_LC(c) isWORDCHAR_LC(c)
2044#define isALNUM_uni(c) isWORDCHAR_uni(c)
2e28f0b9 2045#define isALNUM_LC_uvchr(c) isWORDCHAR_LC_uvchr(c)
b7d90381
KW
2046#define isALNUM_utf8(p) isWORDCHAR_utf8(p)
2047#define isALNUM_LC_utf8(p) isWORDCHAR_LC_utf8(p)
2048#define isALNUMC_A(c) isALPHANUMERIC_A(c) /* Mnemonic: "C's alnum" */
2049#define isALNUMC_L1(c) isALPHANUMERIC_L1(c)
2050#define isALNUMC(c) isALPHANUMERIC(c)
2051#define isALNUMC_LC(c) isALPHANUMERIC_LC(c)
2052#define isALNUMC_uni(c) isALPHANUMERIC_uni(c)
15861f94 2053#define isALNUMC_LC_uvchr(c) isALPHANUMERIC_LC_uvchr(c)
b7d90381 2054#define isALNUMC_utf8(p) isALPHANUMERIC_utf8(p)
15861f94 2055#define isALNUMC_LC_utf8(p) isALPHANUMERIC_LC_utf8(p)
fbc19f27 2056
2bd1cbf6
KW
2057/* On EBCDIC platforms, CTRL-@ is 0, CTRL-A is 1, etc, just like on ASCII,
2058 * except that they don't necessarily mean the same characters, e.g. CTRL-D is
2059 * 4 on both systems, but that is EOT on ASCII; ST on EBCDIC.
2060 * '?' is special-cased on EBCDIC to APC, which is the control there that is
2061 * the outlier from the block that contains the other controls, just like
2062 * toCTRL('?') on ASCII yields DEL, the control that is the outlier from the C0
2063 * block. If it weren't special cased, it would yield a non-control.
88794300
KW
2064 * The conversion works both ways, so toCTRL('D') is 4, and toCTRL(4) is D,
2065 * etc. */
2bd1cbf6 2066#ifndef EBCDIC
75763b3a 2067# define toCTRL(c) (__ASSERT_(FITS_IN_8_BITS(c)) toUPPER(((U8)(c))) ^ 64)
2bd1cbf6 2068#else
75763b3a
KW
2069# define toCTRL(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
2070 ((isPRINT_A(c)) \
2071 ? (UNLIKELY((c) == '?') \
2072 ? QUESTION_MARK_CTRL \
2073 : (NATIVE_TO_LATIN1(toUPPER((U8) (c))) ^ 64)) \
2074 : (UNLIKELY((c) == QUESTION_MARK_CTRL) \
2075 ? '?' \
2076 : (LATIN1_TO_NATIVE(((U8) (c)) ^ 64)))))
2bd1cbf6 2077#endif
bbce6d69 2078
dea28490
JJ
2079/* Line numbers are unsigned, 32 bits. */
2080typedef U32 line_t;
e5dcd934 2081#define NOLINE ((line_t) 4294967295UL) /* = FFFFFFFF */
378cc40b 2082
91152fc1
DG
2083/* Helpful alias for version prescan */
2084#define is_LAX_VERSION(a,b) \
2085 (a != Perl_prescan_version(aTHX_ a, FALSE, b, NULL, NULL, NULL, NULL))
2086
2087#define is_STRICT_VERSION(a,b) \
2088 (a != Perl_prescan_version(aTHX_ a, TRUE, b, NULL, NULL, NULL, NULL))
2089
2090#define BADVERSION(a,b,c) \
2091 if (b) { \
2092 *b = c; \
2093 } \
2094 return a;
8c52afec 2095
cb27eebd
KW
2096/* Converts a character known to represent a hexadecimal digit (0-9, A-F, or
2097 * a-f) to its numeric value. READ_XDIGIT's argument is a string pointer,
2098 * which is advanced. The input is validated only by an assert() in DEBUGGING
2099 * builds. In both ASCII and EBCDIC the last 4 bits of the digits are 0-9; and
2100 * the last 4 bits of A-F and a-f are 1-6, so adding 9 yields 10-15 */
2101#define XDIGIT_VALUE(c) (__ASSERT_(isXDIGIT(c)) (0xf & (isDIGIT(c) \
2102 ? (c) \
2103 : ((c) + 9))))
902008b8
KW
2104#define READ_XDIGIT(s) (__ASSERT_(isXDIGIT(*s)) (0xf & (isDIGIT(*(s)) \
2105 ? (*(s)++) \
2106 : (*(s)++ + 9))))
95a59cab 2107
cb27eebd
KW
2108/* Converts a character known to represent an octal digit (0-7) to its numeric
2109 * value. The input is validated only by an assert() in DEBUGGING builds. In
2110 * both ASCII and EBCDIC the last 3 bits of the octal digits range from 0-7. */
2111#define OCTAL_VALUE(c) (__ASSERT_(isOCTAL(c)) (7 & (c)))
2112
305b8651
KW
2113/* Efficiently returns a boolean as to if two native characters are equivalent
2114 * case-insenstively. At least one of the characters must be one of [A-Za-z];
2115 * the ALPHA in the name is to remind you of that. This is asserted() in
2116 * DEBUGGING builds. Because [A-Za-z] are invariant under UTF-8, this macro
2117 * works (on valid input) for both non- and UTF-8-encoded bytes.
2118 *
2119 * When one of the inputs is a compile-time constant and gets folded by the
2120 * compiler, this reduces to an AND and a TEST. On both EBCDIC and ASCII
2121 * machines, 'A' and 'a' differ by a single bit; the same with the upper and
2122 * lower case of all other ASCII-range alphabetics. On ASCII platforms, they
96ca48da
KW
2123 * are 32 apart; on EBCDIC, they are 64. At compile time, this uses an
2124 * exclusive 'or' to find that bit and then inverts it to form a mask, with
2125 * just a single 0, in the bit position where the upper- and lowercase differ.
2126 * */
305b8651
KW
2127#define isALPHA_FOLD_EQ(c1, c2) \
2128 (__ASSERT_(isALPHA_A(c1) || isALPHA_A(c2)) \
2129 ((c1) & ~('A' ^ 'a')) == ((c2) & ~('A' ^ 'a')))
2130#define isALPHA_FOLD_NE(c1, c2) (! isALPHA_FOLD_EQ((c1), (c2)))
2131
8e84507e 2132/*
ccfc67b7
JH
2133=head1 Memory Management
2134
a02a5408 2135=for apidoc Am|void|Newx|void* ptr|int nitems|type
954c1994
GS
2136The XSUB-writer's interface to the C C<malloc> function.
2137
596f7718 2138Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2139
c5008215
JC
2140In 5.9.3, Newx() and friends replace the older New() API, and drops
2141the first parameter, I<x>, a debug aid which allowed callers to identify
37b8b4c9 2142themselves. This aid has been superseded by a new build option,
d10b4965 2143PERL_MEM_LOG (see L<perlhacktips/PERL_MEM_LOG>). The older API is still
c5008215
JC
2144there for use in XS modules supporting older perls.
2145
a02a5408 2146=for apidoc Am|void|Newxc|void* ptr|int nitems|type|cast
954c1994 2147The XSUB-writer's interface to the C C<malloc> function, with
fbe13c60 2148cast. See also C<L</Newx>>.
954c1994 2149
596f7718 2150Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2151
a02a5408 2152=for apidoc Am|void|Newxz|void* ptr|int nitems|type
954c1994 2153The XSUB-writer's interface to the C C<malloc> function. The allocated
fbe13c60 2154memory is zeroed with C<memzero>. See also C<L</Newx>>.
a02a5408 2155
596f7718 2156Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2157
954c1994
GS
2158=for apidoc Am|void|Renew|void* ptr|int nitems|type
2159The XSUB-writer's interface to the C C<realloc> function.
2160
596f7718 2161Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2162
954c1994
GS
2163=for apidoc Am|void|Renewc|void* ptr|int nitems|type|cast
2164The XSUB-writer's interface to the C C<realloc> function, with
2165cast.
2166
596f7718 2167Memory obtained by this should B<ONLY> be freed with L</"Safefree">.
0d7b2759 2168
49b8b560 2169=for apidoc Am|void|Safefree|void* ptr
954c1994
GS
2170The XSUB-writer's interface to the C C<free> function.
2171
596f7718 2172This should B<ONLY> be used on memory obtained using L</"Newx"> and friends.
0d7b2759 2173
954c1994
GS
2174=for apidoc Am|void|Move|void* src|void* dest|int nitems|type
2175The XSUB-writer's interface to the C C<memmove> function. The C<src> is the
926bb54c 2176source, C<dest> is the destination, C<nitems> is the number of items, and
fbe13c60 2177C<type> is the type. Can do overlapping moves. See also C<L</Copy>>.
954c1994 2178
e90e2364 2179=for apidoc Am|void *|MoveD|void* src|void* dest|int nitems|type
796b6530 2180Like C<Move> but returns C<dest>. Useful
72d33970 2181for encouraging compilers to tail-call
e90e2364
NC
2182optimise.
2183
954c1994
GS
2184=for apidoc Am|void|Copy|void* src|void* dest|int nitems|type
2185The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the
926bb54c 2186source, C<dest> is the destination, C<nitems> is the number of items, and
fbe13c60 2187C<type> is the type. May fail on overlapping copies. See also C<L</Move>>.
954c1994 2188
e90e2364
NC
2189=for apidoc Am|void *|CopyD|void* src|void* dest|int nitems|type
2190
796b6530 2191Like C<Copy> but returns C<dest>. Useful
72d33970 2192for encouraging compilers to tail-call
e90e2364
NC
2193optimise.
2194
954c1994
GS
2195=for apidoc Am|void|Zero|void* dest|int nitems|type
2196
2197The XSUB-writer's interface to the C C<memzero> function. The C<dest> is the
2198destination, C<nitems> is the number of items, and C<type> is the type.
2199
e90e2364
NC
2200=for apidoc Am|void *|ZeroD|void* dest|int nitems|type
2201
72d33970
FC
2202Like C<Zero> but returns dest. Useful
2203for encouraging compilers to tail-call
e90e2364
NC
2204optimise.
2205
da5d8dbb 2206=for apidoc Am|void|StructCopy|type *src|type *dest|type
4375e838 2207This is an architecture-independent macro to copy one structure to another.
954c1994 2208
7e337ee0
JH
2209=for apidoc Am|void|PoisonWith|void* dest|int nitems|type|U8 byte
2210
2211Fill up memory with a byte pattern (a byte repeated over and over
2212again) that hopefully catches attempts to access uninitialized memory.
2213
2214=for apidoc Am|void|PoisonNew|void* dest|int nitems|type
2215
2216PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
2217
1c12ffb4 2218=for apidoc Am|void|PoisonFree|void* dest|int nitems|type
7e337ee0
JH
2219
2220PoisonWith(0xEF) for catching access to freed memory.
2221
9965345d
JH
2222=for apidoc Am|void|Poison|void* dest|int nitems|type
2223
7e337ee0 2224PoisonWith(0xEF) for catching access to freed memory.
9965345d
JH
2225
2226=cut */
954c1994 2227
561b68a9
SH
2228/* Maintained for backwards-compatibility only. Use newSV() instead. */
2229#ifndef PERL_CORE
ff06c60c 2230#define NEWSV(x,len) newSV(len)
561b68a9 2231#endif
ff06c60c 2232
b7112dce 2233#define MEM_SIZE_MAX ((MEM_SIZE)-1)
19a94d75 2234
a500027b 2235#define _PERL_STRLEN_ROUNDUP_UNCHECKED(n) (((n) - 1 + PERL_STRLEN_ROUNDUP_QUANTUM) & ~((MEM_SIZE)PERL_STRLEN_ROUNDUP_QUANTUM - 1))
e6bdf523 2236
27d5b266 2237#ifdef PERL_MALLOC_WRAP
e6bdf523
DM
2238
2239/* This expression will be constant-folded at compile time. It checks
2240 * whether or not the type of the count n is so small (e.g. U8 or U16, or
2241 * U32 on 64-bit systems) that there's no way a wrap-around could occur.
2242 * As well as avoiding the need for a run-time check in some cases, it's
2243 * designed to avoid compiler warnings like:
2244 * comparison is always false due to limited range of data type
73e8ff00
DM
2245 * It's mathematically equivalent to
2246 * max(n) * sizeof(t) > MEM_SIZE_MAX
e6bdf523
DM
2247 */
2248
2249# define _MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) \
445198b9
LM
2250 ( sizeof(MEM_SIZE) < sizeof(n) \
2251 || sizeof(t) > ((MEM_SIZE)1 << 8*(sizeof(MEM_SIZE) - sizeof(n))))
e6bdf523 2252
88f9f128 2253/* This is written in a slightly odd way to avoid various spurious
d98e5cde
DM
2254 * compiler warnings. We *want* to write the expression as
2255 * _MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) && (n > C)
2256 * (for some compile-time constant C), but even when the LHS
2257 * constant-folds to false at compile-time, g++ insists on emitting
2258 * warnings about the RHS (e.g. "comparison is always false"), so instead
2259 * we write it as
e6bdf523 2260 *
d98e5cde 2261 * (cond ? n : X) > C
88f9f128 2262 *
d98e5cde
DM
2263 * where X is a constant with X > C always false. Choosing a value for X
2264 * is tricky. If 0, some compilers will complain about 0 > C always being
2265 * false; if 1, Coverity complains when n happens to be the constant value
2266 * '1', that cond ? 1 : 1 has the same value on both branches; so use C
2267 * for X and hope that nothing else whines.
e6bdf523
DM
2268 */
2269
2270# define _MEM_WRAP_WILL_WRAP(n,t) \
88f9f128
DM
2271 ((_MEM_WRAP_NEEDS_RUNTIME_CHECK(n,t) ? (MEM_SIZE)(n) : \
2272 MEM_SIZE_MAX/sizeof(t)) > MEM_SIZE_MAX/sizeof(t))
e6bdf523
DM
2273
2274# define MEM_WRAP_CHECK(n,t) \
2275 (void)(UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
2276 && (croak_memory_wrap(),0))
2277
2278# define MEM_WRAP_CHECK_1(n,t,a) \
2279 (void)(UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
2280 && (Perl_croak_nocontext("%s",(a)),0))
2281
814eedc8
DD
2282/* "a" arg must be a string literal */
2283# define MEM_WRAP_CHECK_s(n,t,a) \
2284 (void)(UNLIKELY(_MEM_WRAP_WILL_WRAP(n,t)) \
2285 && (Perl_croak_nocontext("" a ""),0))
2286
8b44ba4c 2287#define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
27d5b266 2288
a500027b 2289#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
2290#else
2291
410319be
NC
2292#define MEM_WRAP_CHECK(n,t)
2293#define MEM_WRAP_CHECK_1(n,t,a)
814eedc8 2294#define MEM_WRAP_CHECK_s(n,t,a)
8b44ba4c
NC
2295#define MEM_WRAP_CHECK_(n,t)
2296
a500027b 2297#define PERL_STRLEN_ROUNDUP(n) _PERL_STRLEN_ROUNDUP_UNCHECKED(n)
27d5b266 2298
1936d2a7 2299#endif
8b44ba4c 2300
fe4f188c 2301#ifdef PERL_MEM_LOG
46c6c7e2 2302/*
9f653bb5 2303 * If PERL_MEM_LOG is defined, all Newx()s, Renew()s, and Safefree()s
46c6c7e2
JH
2304 * go through functions, which are handy for debugging breakpoints, but
2305 * which more importantly get the immediate calling environment (file and
e352bcff
JH
2306 * line number, and C function name if available) passed in. This info can
2307 * then be used for logging the calls, for which one gets a sample
73d1d973 2308 * implementation unless -DPERL_MEM_LOG_NOIMPL is also defined.
3609ea0d 2309 *
46c6c7e2 2310 * Known problems:
94e892a6 2311 * - not all memory allocs get logged, only those
46c6c7e2 2312 * that go through Newx() and derivatives (while all
94e892a6 2313 * Safefrees do get logged)
46c6c7e2
JH
2314 * - __FILE__ and __LINE__ do not work everywhere
2315 * - __func__ or __FUNCTION__ even less so
2316 * - I think more goes on after the perlio frees but
2317 * the thing is that STDERR gets closed (as do all
2318 * the file descriptors)
2319 * - no deeper calling stack than the caller of the Newx()
2320 * or the kind, but do I look like a C reflection/introspection
2321 * utility to you?
2322 * - the function prototypes for the logging functions
2323 * probably should maybe be somewhere else than handy.h
2324 * - one could consider inlining (macrofying) the logging
2325 * for speed, but I am too lazy
2326 * - one could imagine recording the allocations in a hash,
2327 * (keyed by the allocation address?), and maintain that
2328 * through reallocs and frees, but how to do that without
2329 * any News() happening...?
73d1d973 2330 * - lots of -Ddefines to get useful/controllable output
b953482e 2331 * - lots of ENV reads
46c6c7e2
JH
2332 */
2333
0b0ab801 2334# ifdef PERL_CORE
73d1d973 2335# ifndef PERL_MEM_LOG_NOIMPL
0b0ab801
MHM
2336enum mem_log_type {
2337 MLT_ALLOC,
2338 MLT_REALLOC,
d7a2c63c
MHM
2339 MLT_FREE,
2340 MLT_NEW_SV,
2341 MLT_DEL_SV
0b0ab801
MHM
2342};
2343# endif
12754f92 2344# if defined(PERL_IN_SV_C) /* those are only used in sv.c */
d7a2c63c
MHM
2345void Perl_mem_log_new_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname);
2346void Perl_mem_log_del_sv(const SV *sv, const char *filename, const int linenumber, const char *funcname);
12754f92 2347# endif
0b0ab801
MHM
2348# endif
2349
fe4f188c
JH
2350#endif
2351
2352#ifdef PERL_MEM_LOG
d1401ee9
MHM
2353#define MEM_LOG_ALLOC(n,t,a) Perl_mem_log_alloc(n,sizeof(t),STRINGIFY(t),a,__FILE__,__LINE__,FUNCTION__)
2354#define MEM_LOG_REALLOC(n,t,v,a) Perl_mem_log_realloc(n,sizeof(t),STRINGIFY(t),v,a,__FILE__,__LINE__,FUNCTION__)
46c6c7e2 2355#define MEM_LOG_FREE(a) Perl_mem_log_free(a,__FILE__,__LINE__,FUNCTION__)
fe4f188c
JH
2356#endif
2357
2358#ifndef MEM_LOG_ALLOC
2359#define MEM_LOG_ALLOC(n,t,a) (a)
2360#endif
2361#ifndef MEM_LOG_REALLOC
2362#define MEM_LOG_REALLOC(n,t,v,a) (a)
2363#endif
2364#ifndef MEM_LOG_FREE
2365#define MEM_LOG_FREE(a) (a)
2366#endif
2367
d1401ee9
MHM
2368#define Newx(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
2369#define Newxc(v,n,t,c) (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_ALLOC(n,t,safemalloc((MEM_SIZE)((n)*sizeof(t))))))
2370#define Newxz(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_ALLOC(n,t,safecalloc((n),sizeof(t)))))
a6f6820f
NC
2371
2372#ifndef PERL_CORE
a02a5408
JC
2373/* pre 5.9.x compatibility */
2374#define New(x,v,n,t) Newx(v,n,t)
2375#define Newc(x,v,n,t,c) Newxc(v,n,t,c)
4541904d 2376#define Newz(x,v,n,t) Newxz(v,n,t)
a6f6820f 2377#endif
a02a5408 2378
ff68c719 2379#define Renew(v,n,t) \
d1401ee9 2380 (v = (MEM_WRAP_CHECK_(n,t) (t*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
ff68c719 2381#define Renewc(v,n,t,c) \
d1401ee9 2382 (v = (MEM_WRAP_CHECK_(n,t) (c*)MEM_LOG_REALLOC(n,t,v,saferealloc((Malloc_t)(v),(MEM_SIZE)((n)*sizeof(t))))))
94010e71
NC
2383
2384#ifdef PERL_POISON
2385#define Safefree(d) \
06c0cc96 2386 ((d) ? (void)(safefree(MEM_LOG_FREE((Malloc_t)(d))), Poison(&(d), 1, Malloc_t)) : (void) 0)
94010e71 2387#else
fe4f188c 2388#define Safefree(d) safefree(MEM_LOG_FREE((Malloc_t)(d)))
94010e71 2389#endif
55497cff 2390
dbb57106
YO
2391/* assert that a valid ptr has been supplied - use this instead of assert(ptr) *
2392 * as it handles cases like constant string arguments without throwing warnings *
2393 * the cast is required, as is the inequality check, to avoid warnings */
45908e4d 2394#define perl_assert_ptr(p) assert( ((void*)(p)) != 0 )
55497cff 2395
45908e4d
YO
2396
2397#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)))
2398#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)))
2399#define Zero(d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), (void)memzero((char*)(d), (n) * sizeof(t)))
2400
bdd1531d 2401/* Like above, but returns a pointer to 'd' */
45908e4d
YO
2402#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)))
2403#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 2404#define ZeroD(d,n,t) (MEM_WRAP_CHECK_(n,t) perl_assert_ptr(d), memzero((char*)(d), (n) * sizeof(t)))
e90e2364 2405
7e337ee0
JH
2406#define PoisonWith(d,n,t,b) (MEM_WRAP_CHECK_(n,t) (void)memset((char*)(d), (U8)(b), (n) * sizeof(t)))
2407#define PoisonNew(d,n,t) PoisonWith(d,n,t,0xAB)
2408#define PoisonFree(d,n,t) PoisonWith(d,n,t,0xEF)
2409#define Poison(d,n,t) PoisonFree(d,n,t)
27d5b266 2410
caa674f3
DD
2411#ifdef PERL_POISON
2412# define PERL_POISON_EXPR(x) x
2413#else
2414# define PERL_POISON_EXPR(x)
2415#endif
2416
ff68c719 2417#define StructCopy(s,d,t) (*((t*)(d)) = *((t*)(s)))
2cc61e15 2418
c3caa5c3
JH
2419/* C_ARRAY_LENGTH is the number of elements in the C array (so you
2420 * want your zero-based indices to be less than but not equal to).
2421 *
2422 * C_ARRAY_END is one past the last: half-open/half-closed range,
2423 * not last-inclusive range. */
622913ab 2424#define C_ARRAY_LENGTH(a) (sizeof(a)/sizeof((a)[0]))
c3caa5c3 2425#define C_ARRAY_END(a) ((a) + C_ARRAY_LENGTH(a))
622913ab 2426
2cc61e15
DD
2427#ifdef NEED_VA_COPY
2428# ifdef va_copy
2429# define Perl_va_copy(s, d) va_copy(d, s)
07798b17
AC
2430# elif defined(__va_copy)
2431# define Perl_va_copy(s, d) __va_copy(d, s)
2cc61e15 2432# else
07798b17 2433# define Perl_va_copy(s, d) Copy(s, d, 1, va_list)
2cc61e15
DD
2434# endif
2435#endif
2436
472d47bc
SB
2437/* convenience debug macros */
2438#ifdef USE_ITHREADS
2439#define pTHX_FORMAT "Perl interpreter: 0x%p"
2440#define pTHX__FORMAT ", Perl interpreter: 0x%p"
f54cb97a
AL
2441#define pTHX_VALUE_ (void *)my_perl,
2442#define pTHX_VALUE (void *)my_perl
2443#define pTHX__VALUE_ ,(void *)my_perl,
2444#define pTHX__VALUE ,(void *)my_perl
472d47bc 2445#else
3609ea0d 2446#define pTHX_FORMAT
472d47bc 2447#define pTHX__FORMAT
3609ea0d 2448#define pTHX_VALUE_
472d47bc 2449#define pTHX_VALUE
3609ea0d 2450#define pTHX__VALUE_
472d47bc
SB
2451#define pTHX__VALUE
2452#endif /* USE_ITHREADS */
3609ea0d 2453
2acdbac1
NC
2454/* Perl_deprecate was not part of the public API, and did not have a deprecate()
2455 shortcut macro defined without -DPERL_CORE. Neither codesearch.google.com nor
2456 CPAN::Unpack show any users outside the core. */
2457#ifdef PERL_CORE
dc6e8de0
A
2458# define deprecate(s) Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
2459 "Use of " s " is deprecated")
c9680906
A
2460# define deprecate_disappears_in(when,message) \
2461 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
2462 message ", and will disappear in Perl " when)
ac641426
A
2463# define deprecate_fatal_in(when,message) \
2464 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEPRECATED), \
2465 message ". Its use will be fatal in Perl " when)
2acdbac1
NC
2466#endif
2467
dfff4baf
BF
2468/* Internal macros to deal with gids and uids */
2469#ifdef PERL_CORE
2470
2471# if Uid_t_size > IVSIZE
2472# define sv_setuid(sv, uid) sv_setnv((sv), (NV)(uid))
2473# define SvUID(sv) SvNV(sv)
07798b17
AC
2474# elif Uid_t_sign <= 0
2475# define sv_setuid(sv, uid) sv_setiv((sv), (IV)(uid))
2476# define SvUID(sv) SvIV(sv)
dfff4baf 2477# else
07798b17
AC
2478# define sv_setuid(sv, uid) sv_setuv((sv), (UV)(uid))
2479# define SvUID(sv) SvUV(sv)
dfff4baf
BF
2480# endif /* Uid_t_size */
2481
2482# if Gid_t_size > IVSIZE
2483# define sv_setgid(sv, gid) sv_setnv((sv), (NV)(gid))
2484# define SvGID(sv) SvNV(sv)
07798b17
AC
2485# elif Gid_t_sign <= 0
2486# define sv_setgid(sv, gid) sv_setiv((sv), (IV)(gid))
2487# define SvGID(sv) SvIV(sv)
dfff4baf 2488# else
07798b17
AC
2489# define sv_setgid(sv, gid) sv_setuv((sv), (UV)(gid))
2490# define SvGID(sv) SvUV(sv)
dfff4baf
BF
2491# endif /* Gid_t_size */
2492
2493#endif
2494
6a5bc5ac 2495#endif /* PERL_HANDY_H_ */
9d745869 2496
e9a8c099 2497/*
14d04a33 2498 * ex: set ts=8 sts=4 sw=4 et:
e9a8c099 2499 */