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