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