This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
VAX: document also formats S/T/X, and hidden bits
[perl5.git] / mathoms.c
CommitLineData
7ee2227d
SP
1/* mathoms.c
2 *
2eee27d7
SS
3 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
4 * 2011, 2012 by Larry Wall and others
7ee2227d
SP
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
11/*
4ac71550
TC
12 * Anything that Hobbits had no immediate use for, but were unwilling to
13 * throw away, they called a mathom. Their dwellings were apt to become
14 * rather crowded with mathoms, and many of the presents that passed from
15 * hand to hand were of that sort.
16 *
17 * [p.5 of _The Lord of the Rings_: "Prologue"]
7ee2227d
SP
18 */
19
359d40ba 20
20fac488 21
7832ad85 22/*
7ee2227d 23 * This file contains mathoms, various binary artifacts from previous
d7244c9a
DM
24 * versions of Perl which we cannot completely remove from the core
25 * code. There are two reasons functions should be here:
26 *
27 * 1) A function has been been replaced by a macro within a minor release,
28 * so XS modules compiled against an older release will expect to
29 * still be able to link against the function
30 * 2) A function Perl_foo(...) with #define foo Perl_foo(aTHX_ ...)
31 * has been replaced by a macro, e.g. #define foo(...) foo_flags(...,0)
32 * but XS code may still explicitly use the long form, i.e.
33 * Perl_foo(aTHX_ ...)
7ee2227d 34 *
8687a6e6
DM
35 * NOTE: ALL FUNCTIONS IN THIS FILE should have an entry with the 'b' flag in
36 * embed.fnc.
37 *
38 * To move a function to this file, simply cut and paste it here, and change
39 * its embed.fnc entry to additionally have the 'b' flag. If, for some reason
40 * a function you'd like to be treated as mathoms can't be moved from its
41 * current place, simply enclose it between
42 *
43 * #ifndef NO_MATHOMS
44 * ...
45 * #endif
46 *
47 * and add the 'b' flag in embed.fnc.
48 *
55cb5ee0
KW
49 * The compilation of this file can be suppressed; see INSTALL
50 *
8687a6e6
DM
51 * Some blurb for perlapi.pod:
52
dcccc8ff 53=head1 Obsolete backwards compatibility functions
8687a6e6 54
dcccc8ff
KW
55Some of these are also deprecated. You can exclude these from
56your compiled Perl by adding this option to Configure:
57C<-Accflags='-DNO_MATHOMS'>
58
59=cut
60
7ee2227d
SP
61 */
62
dcccc8ff 63
7ee2227d
SP
64#include "EXTERN.h"
65#define PERL_IN_MATHOMS_C
66#include "perl.h"
67
359d40ba
NC
68#ifdef NO_MATHOMS
69/* ..." warning: ISO C forbids an empty source file"
70 So make sure we have something in here by processing the headers anyway.
71 */
72#else
73
7ee2227d
SP
74/* ref() is now a macro using Perl_doref;
75 * this version provided for binary compatibility only.
76 */
77OP *
78Perl_ref(pTHX_ OP *o, I32 type)
79{
80 return doref(o, type, TRUE);
81}
82
aae9cea0 83/*
174c73e3
NC
84=for apidoc sv_unref
85
86Unsets the RV status of the SV, and decrements the reference count of
87whatever was being referenced by the RV. This can almost be thought of
88as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
fbe13c60 89being zero. See C<L</SvROK_off>>.
174c73e3
NC
90
91=cut
92*/
93
94void
95Perl_sv_unref(pTHX_ SV *sv)
96{
7918f24d
NC
97 PERL_ARGS_ASSERT_SV_UNREF;
98
174c73e3
NC
99 sv_unref_flags(sv, 0);
100}
101
102/*
aae9cea0
NC
103=for apidoc sv_taint
104
72d33970 105Taint an SV. Use C<SvTAINTED_on> instead.
dff47061 106
aae9cea0
NC
107=cut
108*/
109
110void
111Perl_sv_taint(pTHX_ SV *sv)
112{
7918f24d
NC
113 PERL_ARGS_ASSERT_SV_TAINT;
114
a0714e2c 115 sv_magic((sv), NULL, PERL_MAGIC_taint, NULL, 0);
aae9cea0
NC
116}
117
7ee2227d
SP
118/* sv_2iv() is now a macro using Perl_sv_2iv_flags();
119 * this function provided for binary compatibility only
120 */
121
122IV
5aaab254 123Perl_sv_2iv(pTHX_ SV *sv)
7ee2227d 124{
1061065f
DD
125 PERL_ARGS_ASSERT_SV_2IV;
126
7ee2227d
SP
127 return sv_2iv_flags(sv, SV_GMAGIC);
128}
129
130/* sv_2uv() is now a macro using Perl_sv_2uv_flags();
131 * this function provided for binary compatibility only
132 */
133
134UV
5aaab254 135Perl_sv_2uv(pTHX_ SV *sv)
7ee2227d 136{
1061065f
DD
137 PERL_ARGS_ASSERT_SV_2UV;
138
7ee2227d
SP
139 return sv_2uv_flags(sv, SV_GMAGIC);
140}
141
39d5de13
DM
142/* sv_2nv() is now a macro using Perl_sv_2nv_flags();
143 * this function provided for binary compatibility only
144 */
145
146NV
5aaab254 147Perl_sv_2nv(pTHX_ SV *sv)
39d5de13
DM
148{
149 return sv_2nv_flags(sv, SV_GMAGIC);
150}
151
152
7ee2227d
SP
153/* sv_2pv() is now a macro using Perl_sv_2pv_flags();
154 * this function provided for binary compatibility only
155 */
156
157char *
5aaab254 158Perl_sv_2pv(pTHX_ SV *sv, STRLEN *lp)
7ee2227d 159{
1061065f
DD
160 PERL_ARGS_ASSERT_SV_2PV;
161
7ee2227d
SP
162 return sv_2pv_flags(sv, lp, SV_GMAGIC);
163}
164
5abc721d 165/*
cb2f1b7b
NC
166=for apidoc sv_2pv_nolen
167
72d33970 168Like C<sv_2pv()>, but doesn't return the length too. You should usually
cb2f1b7b 169use the macro wrapper C<SvPV_nolen(sv)> instead.
dff47061 170
cb2f1b7b
NC
171=cut
172*/
173
174char *
5aaab254 175Perl_sv_2pv_nolen(pTHX_ SV *sv)
cb2f1b7b 176{
c85ae797 177 PERL_ARGS_ASSERT_SV_2PV_NOLEN;
b5445a23 178 return sv_2pv(sv, NULL);
cb2f1b7b
NC
179}
180
181/*
182=for apidoc sv_2pvbyte_nolen
183
184Return a pointer to the byte-encoded representation of the SV.
185May cause the SV to be downgraded from UTF-8 as a side-effect.
186
187Usually accessed via the C<SvPVbyte_nolen> macro.
188
189=cut
190*/
191
192char *
5aaab254 193Perl_sv_2pvbyte_nolen(pTHX_ SV *sv)
cb2f1b7b 194{
7918f24d
NC
195 PERL_ARGS_ASSERT_SV_2PVBYTE_NOLEN;
196
b5445a23 197 return sv_2pvbyte(sv, NULL);
cb2f1b7b
NC
198}
199
200/*
201=for apidoc sv_2pvutf8_nolen
202
203Return a pointer to the UTF-8-encoded representation of the SV.
204May cause the SV to be upgraded to UTF-8 as a side-effect.
205
206Usually accessed via the C<SvPVutf8_nolen> macro.
207
208=cut
209*/
210
211char *
5aaab254 212Perl_sv_2pvutf8_nolen(pTHX_ SV *sv)
cb2f1b7b 213{
7918f24d
NC
214 PERL_ARGS_ASSERT_SV_2PVUTF8_NOLEN;
215
b5445a23 216 return sv_2pvutf8(sv, NULL);
cb2f1b7b
NC
217}
218
219/*
5abc721d
NC
220=for apidoc sv_force_normal
221
222Undo various types of fakery on an SV: if the PV is a shared string, make
223a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
796b6530 224an C<xpvmg>. See also C<L</sv_force_normal_flags>>.
5abc721d
NC
225
226=cut
227*/
228
229void
5aaab254 230Perl_sv_force_normal(pTHX_ SV *sv)
5abc721d 231{
7918f24d
NC
232 PERL_ARGS_ASSERT_SV_FORCE_NORMAL;
233
5abc721d
NC
234 sv_force_normal_flags(sv, 0);
235}
7ee2227d
SP
236
237/* sv_setsv() is now a macro using Perl_sv_setsv_flags();
238 * this function provided for binary compatibility only
239 */
240
241void
5aaab254 242Perl_sv_setsv(pTHX_ SV *dstr, SV *sstr)
7ee2227d 243{
7918f24d
NC
244 PERL_ARGS_ASSERT_SV_SETSV;
245
7ee2227d
SP
246 sv_setsv_flags(dstr, sstr, SV_GMAGIC);
247}
248
249/* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
250 * this function provided for binary compatibility only
251 */
252
253void
254Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
255{
7918f24d
NC
256 PERL_ARGS_ASSERT_SV_CATPVN;
257
7ee2227d
SP
258 sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
259}
260
b347df82
NC
261/*
262=for apidoc sv_catpvn_mg
263
264Like C<sv_catpvn>, but also handles 'set' magic.
265
266=cut
267*/
268
269void
5aaab254 270Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len)
b347df82 271{
7918f24d
NC
272 PERL_ARGS_ASSERT_SV_CATPVN_MG;
273
b347df82
NC
274 sv_catpvn_flags(sv,ptr,len,SV_GMAGIC|SV_SMAGIC);
275}
276
7ee2227d
SP
277/* sv_catsv() is now a macro using Perl_sv_catsv_flags();
278 * this function provided for binary compatibility only
279 */
280
281void
5aaab254 282Perl_sv_catsv(pTHX_ SV *dstr, SV *sstr)
7ee2227d 283{
7918f24d
NC
284 PERL_ARGS_ASSERT_SV_CATSV;
285
7ee2227d
SP
286 sv_catsv_flags(dstr, sstr, SV_GMAGIC);
287}
288
0feed65a 289/*
b347df82
NC
290=for apidoc sv_catsv_mg
291
292Like C<sv_catsv>, but also handles 'set' magic.
293
294=cut
295*/
296
297void
5aaab254 298Perl_sv_catsv_mg(pTHX_ SV *dsv, SV *ssv)
b347df82 299{
7918f24d
NC
300 PERL_ARGS_ASSERT_SV_CATSV_MG;
301
b347df82
NC
302 sv_catsv_flags(dsv,ssv,SV_GMAGIC|SV_SMAGIC);
303}
304
305/*
0feed65a
NC
306=for apidoc sv_iv
307
308A private implementation of the C<SvIVx> macro for compilers which can't
72d33970 309cope with complex macro expressions. Always use the macro instead.
0feed65a
NC
310
311=cut
312*/
313
314IV
5aaab254 315Perl_sv_iv(pTHX_ SV *sv)
0feed65a 316{
7918f24d
NC
317 PERL_ARGS_ASSERT_SV_IV;
318
0feed65a
NC
319 if (SvIOK(sv)) {
320 if (SvIsUV(sv))
321 return (IV)SvUVX(sv);
322 return SvIVX(sv);
323 }
324 return sv_2iv(sv);
325}
326
327/*
328=for apidoc sv_uv
329
330A private implementation of the C<SvUVx> macro for compilers which can't
72d33970 331cope with complex macro expressions. Always use the macro instead.
0feed65a
NC
332
333=cut
334*/
335
336UV
5aaab254 337Perl_sv_uv(pTHX_ SV *sv)
0feed65a 338{
7918f24d
NC
339 PERL_ARGS_ASSERT_SV_UV;
340
0feed65a
NC
341 if (SvIOK(sv)) {
342 if (SvIsUV(sv))
343 return SvUVX(sv);
344 return (UV)SvIVX(sv);
345 }
346 return sv_2uv(sv);
347}
348
349/*
350=for apidoc sv_nv
351
352A private implementation of the C<SvNVx> macro for compilers which can't
72d33970 353cope with complex macro expressions. Always use the macro instead.
0feed65a
NC
354
355=cut
356*/
357
358NV
5aaab254 359Perl_sv_nv(pTHX_ SV *sv)
0feed65a 360{
7918f24d
NC
361 PERL_ARGS_ASSERT_SV_NV;
362
0feed65a
NC
363 if (SvNOK(sv))
364 return SvNVX(sv);
365 return sv_2nv(sv);
366}
367
368/*
369=for apidoc sv_pv
370
371Use the C<SvPV_nolen> macro instead
372
373=for apidoc sv_pvn
374
375A private implementation of the C<SvPV> macro for compilers which can't
72d33970 376cope with complex macro expressions. Always use the macro instead.
0feed65a
NC
377
378=cut
379*/
380
381char *
382Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
383{
7918f24d
NC
384 PERL_ARGS_ASSERT_SV_PVN;
385
0feed65a
NC
386 if (SvPOK(sv)) {
387 *lp = SvCUR(sv);
388 return SvPVX(sv);
389 }
390 return sv_2pv(sv, lp);
391}
392
393
394char *
5aaab254 395Perl_sv_pvn_nomg(pTHX_ SV *sv, STRLEN *lp)
0feed65a 396{
7918f24d
NC
397 PERL_ARGS_ASSERT_SV_PVN_NOMG;
398
0feed65a
NC
399 if (SvPOK(sv)) {
400 *lp = SvCUR(sv);
401 return SvPVX(sv);
402 }
403 return sv_2pv_flags(sv, lp, 0);
404}
405
7ee2227d
SP
406/* sv_pv() is now a macro using SvPV_nolen();
407 * this function provided for binary compatibility only
408 */
409
410char *
411Perl_sv_pv(pTHX_ SV *sv)
412{
7918f24d
NC
413 PERL_ARGS_ASSERT_SV_PV;
414
7ee2227d
SP
415 if (SvPOK(sv))
416 return SvPVX(sv);
417
b5445a23 418 return sv_2pv(sv, NULL);
7ee2227d
SP
419}
420
421/* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
422 * this function provided for binary compatibility only
423 */
424
425char *
426Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
427{
7918f24d
NC
428 PERL_ARGS_ASSERT_SV_PVN_FORCE;
429
7ee2227d
SP
430 return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
431}
432
433/* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
434 * this function provided for binary compatibility only
435 */
436
437char *
438Perl_sv_pvbyte(pTHX_ SV *sv)
439{
7918f24d
NC
440 PERL_ARGS_ASSERT_SV_PVBYTE;
441
b5445a23 442 sv_utf8_downgrade(sv, FALSE);
7ee2227d
SP
443 return sv_pv(sv);
444}
445
0feed65a
NC
446/*
447=for apidoc sv_pvbyte
448
449Use C<SvPVbyte_nolen> instead.
450
451=for apidoc sv_pvbyten
452
453A private implementation of the C<SvPVbyte> macro for compilers
72d33970 454which can't cope with complex macro expressions. Always use the macro
0feed65a
NC
455instead.
456
457=cut
458*/
459
460char *
461Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
462{
7918f24d
NC
463 PERL_ARGS_ASSERT_SV_PVBYTEN;
464
b5445a23 465 sv_utf8_downgrade(sv, FALSE);
0feed65a
NC
466 return sv_pvn(sv,lp);
467}
468
7ee2227d
SP
469/* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
470 * this function provided for binary compatibility only
471 */
472
473char *
474Perl_sv_pvutf8(pTHX_ SV *sv)
475{
7918f24d
NC
476 PERL_ARGS_ASSERT_SV_PVUTF8;
477
7ee2227d
SP
478 sv_utf8_upgrade(sv);
479 return sv_pv(sv);
480}
481
0feed65a
NC
482/*
483=for apidoc sv_pvutf8
484
485Use the C<SvPVutf8_nolen> macro instead
486
487=for apidoc sv_pvutf8n
488
489A private implementation of the C<SvPVutf8> macro for compilers
72d33970 490which can't cope with complex macro expressions. Always use the macro
0feed65a
NC
491instead.
492
493=cut
494*/
495
496char *
497Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
498{
7918f24d
NC
499 PERL_ARGS_ASSERT_SV_PVUTF8N;
500
0feed65a
NC
501 sv_utf8_upgrade(sv);
502 return sv_pvn(sv,lp);
503}
504
205c02c2
NC
505/* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
506 * this function provided for binary compatibility only
507 */
508
509STRLEN
5aaab254 510Perl_sv_utf8_upgrade(pTHX_ SV *sv)
205c02c2 511{
7918f24d
NC
512 PERL_ARGS_ASSERT_SV_UTF8_UPGRADE;
513
205c02c2
NC
514 return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
515}
516
7ee2227d
SP
517int
518Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
519{
3ed3a8af 520 int ret = 0;
7ee2227d 521 va_list(arglist);
7918f24d
NC
522
523 /* Easier to special case this here than in embed.pl. (Look at what it
524 generates for proto.h) */
525#ifdef PERL_IMPLICIT_CONTEXT
526 PERL_ARGS_ASSERT_FPRINTF_NOCONTEXT;
527#endif
528
7ee2227d 529 va_start(arglist, format);
3ed3a8af
JH
530 ret = PerlIO_vprintf(stream, format, arglist);
531 va_end(arglist);
532 return ret;
7ee2227d
SP
533}
534
535int
536Perl_printf_nocontext(const char *format, ...)
537{
538 dTHX;
539 va_list(arglist);
3ed3a8af 540 int ret = 0;
7918f24d
NC
541
542#ifdef PERL_IMPLICIT_CONTEXT
543 PERL_ARGS_ASSERT_PRINTF_NOCONTEXT;
544#endif
545
7ee2227d 546 va_start(arglist, format);
3ed3a8af
JH
547 ret = PerlIO_vprintf(PerlIO_stdout(), format, arglist);
548 va_end(arglist);
549 return ret;
7ee2227d
SP
550}
551
552#if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
553/*
554 * This hack is to force load of "huge" support from libm.a
555 * So it is in perl for (say) POSIX to use.
556 * Needed for SunOS with Sun's 'acc' for example.
557 */
558NV
559Perl_huge(void)
560{
c773ee7a 561# if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
7ee2227d 562 return HUGE_VALL;
c773ee7a 563# else
7ee2227d 564 return HUGE_VAL;
c773ee7a 565# endif
7ee2227d
SP
566}
567#endif
568
f2f0f092
NC
569/* compatibility with versions <= 5.003. */
570void
571Perl_gv_fullname(pTHX_ SV *sv, const GV *gv)
572{
7918f24d
NC
573 PERL_ARGS_ASSERT_GV_FULLNAME;
574
666ea192 575 gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
f2f0f092
NC
576}
577
578/* compatibility with versions <= 5.003. */
579void
580Perl_gv_efullname(pTHX_ SV *sv, const GV *gv)
581{
7918f24d
NC
582 PERL_ARGS_ASSERT_GV_EFULLNAME;
583
666ea192 584 gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
f2f0f092
NC
585}
586
2674aeec
NC
587void
588Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
589{
7918f24d
NC
590 PERL_ARGS_ASSERT_GV_FULLNAME3;
591
2674aeec
NC
592 gv_fullname4(sv, gv, prefix, TRUE);
593}
594
595void
596Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
597{
7918f24d
NC
598 PERL_ARGS_ASSERT_GV_EFULLNAME3;
599
2674aeec
NC
600 gv_efullname4(sv, gv, prefix, TRUE);
601}
602
887986eb
NC
603/*
604=for apidoc gv_fetchmethod
605
ca8b95d7 606See L</gv_fetchmethod_autoload>.
887986eb
NC
607
608=cut
609*/
610
611GV *
612Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
613{
7918f24d
NC
614 PERL_ARGS_ASSERT_GV_FETCHMETHOD;
615
887986eb
NC
616 return gv_fetchmethod_autoload(stash, name, TRUE);
617}
618
7a7b9979
NC
619HE *
620Perl_hv_iternext(pTHX_ HV *hv)
621{
7918f24d
NC
622 PERL_ARGS_ASSERT_HV_ITERNEXT;
623
7a7b9979
NC
624 return hv_iternext_flags(hv, 0);
625}
626
bc5cdc23
NC
627void
628Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
629{
7918f24d
NC
630 PERL_ARGS_ASSERT_HV_MAGIC;
631
ad64d0ec 632 sv_magic(MUTABLE_SV(hv), MUTABLE_SV(gv), how, NULL, 0);
bc5cdc23
NC
633}
634
34d367cd 635bool
5aaab254 636Perl_do_open(pTHX_ GV *gv, const char *name, I32 len, int as_raw,
e4dba786
NC
637 int rawmode, int rawperm, PerlIO *supplied_fp)
638{
7918f24d
NC
639 PERL_ARGS_ASSERT_DO_OPEN;
640
e4dba786
NC
641 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
642 supplied_fp, (SV **) NULL, 0);
643}
644
645bool
5aaab254 646Perl_do_open9(pTHX_ GV *gv, const char *name, I32 len, int
34d367cd
SP
647as_raw,
648 int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
649 I32 num_svs)
650{
7918f24d
NC
651 PERL_ARGS_ASSERT_DO_OPEN9;
652
34d367cd
SP
653 PERL_UNUSED_ARG(num_svs);
654 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
655 supplied_fp, &svs, 1);
656}
657
658int
659Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
660{
661 /* The old body of this is now in non-LAYER part of perlio.c
662 * This is a stub for any XS code which might have been calling it.
663 */
664 const char *name = ":raw";
7918f24d
NC
665
666 PERL_ARGS_ASSERT_DO_BINMODE;
667
34d367cd
SP
668#ifdef PERLIO_USING_CRLF
669 if (!(mode & O_BINARY))
670 name = ":crlf";
671#endif
672 return PerlIO_binmode(aTHX_ fp, iotype, mode, name);
673}
674
a9f96b3f
NC
675#ifndef OS2
676bool
5aaab254 677Perl_do_aexec(pTHX_ SV *really, SV **mark, SV **sp)
a9f96b3f 678{
7918f24d
NC
679 PERL_ARGS_ASSERT_DO_AEXEC;
680
a9f96b3f
NC
681 return do_aexec5(really, mark, sp, 0, 0);
682}
683#endif
684
89552e80
NC
685/* Backwards compatibility. */
686int
687Perl_init_i18nl14n(pTHX_ int printwarn)
688{
689 return init_i18nl10n(printwarn);
690}
691
814fafa7 692bool
2d825fd9 693Perl_is_utf8_string_loc(const U8 *s, STRLEN len, const U8 **ep)
814fafa7 694{
7918f24d
NC
695 PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC;
696
814fafa7
NC
697 return is_utf8_string_loclen(s, len, ep, 0);
698}
699
7ee2227d 700/*
d5b2b27b
NC
701=for apidoc sv_nolocking
702
703Dummy routine which "locks" an SV when there is no locking module present.
796b6530 704Exists to avoid test for a C<NULL> function pointer and because it could
d5b2b27b
NC
705potentially warn under some level of strict-ness.
706
796b6530 707"Superseded" by C<sv_nosharing()>.
d5b2b27b
NC
708
709=cut
710*/
711
712void
713Perl_sv_nolocking(pTHX_ SV *sv)
714{
96a5add6 715 PERL_UNUSED_CONTEXT;
d5b2b27b
NC
716 PERL_UNUSED_ARG(sv);
717}
718
719
720/*
721=for apidoc sv_nounlocking
722
723Dummy routine which "unlocks" an SV when there is no locking module present.
796b6530 724Exists to avoid test for a C<NULL> function pointer and because it could
d5b2b27b
NC
725potentially warn under some level of strict-ness.
726
796b6530 727"Superseded" by C<sv_nosharing()>.
d5b2b27b
NC
728
729=cut
730*/
731
732void
733Perl_sv_nounlocking(pTHX_ SV *sv)
734{
96a5add6 735 PERL_UNUSED_CONTEXT;
d5b2b27b
NC
736 PERL_UNUSED_ARG(sv);
737}
738
2053acbf
NC
739void
740Perl_save_long(pTHX_ long int *longp)
741{
7918f24d
NC
742 PERL_ARGS_ASSERT_SAVE_LONG;
743
2053acbf
NC
744 SSCHECK(3);
745 SSPUSHLONG(*longp);
746 SSPUSHPTR(longp);
c6bf6a65 747 SSPUSHUV(SAVEt_LONG);
2053acbf
NC
748}
749
750void
2053acbf
NC
751Perl_save_iv(pTHX_ IV *ivp)
752{
7918f24d
NC
753 PERL_ARGS_ASSERT_SAVE_IV;
754
2053acbf
NC
755 SSCHECK(3);
756 SSPUSHIV(*ivp);
757 SSPUSHPTR(ivp);
c6bf6a65 758 SSPUSHUV(SAVEt_IV);
2053acbf
NC
759}
760
761void
762Perl_save_nogv(pTHX_ GV *gv)
763{
7918f24d
NC
764 PERL_ARGS_ASSERT_SAVE_NOGV;
765
2053acbf
NC
766 SSCHECK(2);
767 SSPUSHPTR(gv);
c6bf6a65 768 SSPUSHUV(SAVEt_NSTAB);
2053acbf
NC
769}
770
771void
5aaab254 772Perl_save_list(pTHX_ SV **sarg, I32 maxsarg)
2053acbf 773{
eb578fdb 774 I32 i;
2053acbf 775
7918f24d
NC
776 PERL_ARGS_ASSERT_SAVE_LIST;
777
2053acbf 778 for (i = 1; i <= maxsarg; i++) {
3ed356df
FC
779 SV *sv;
780 SvGETMAGIC(sarg[i]);
781 sv = newSV(0);
782 sv_setsv_nomg(sv,sarg[i]);
2053acbf
NC
783 SSCHECK(3);
784 SSPUSHPTR(sarg[i]); /* remember the pointer */
785 SSPUSHPTR(sv); /* remember the value */
c6bf6a65 786 SSPUSHUV(SAVEt_ITEM);
2053acbf
NC
787 }
788}
789
47518d95
NC
790/*
791=for apidoc sv_usepvn_mg
792
793Like C<sv_usepvn>, but also handles 'set' magic.
794
795=cut
796*/
797
798void
799Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len)
800{
7918f24d
NC
801 PERL_ARGS_ASSERT_SV_USEPVN_MG;
802
47518d95
NC
803 sv_usepvn_flags(sv,ptr,len, SV_SMAGIC);
804}
805
806/*
807=for apidoc sv_usepvn
808
72d33970 809Tells an SV to use C<ptr> to find its string value. Implemented by
47518d95 810calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
fbe13c60 811magic. See C<L</sv_usepvn_flags>>.
47518d95
NC
812
813=cut
814*/
815
816void
817Perl_sv_usepvn(pTHX_ SV *sv, char *ptr, STRLEN len)
818{
7918f24d
NC
819 PERL_ARGS_ASSERT_SV_USEPVN;
820
47518d95
NC
821 sv_usepvn_flags(sv,ptr,len, 0);
822}
823
c03e83bf
NC
824/*
825=for apidoc unpack_str
826
796b6530
KW
827The engine implementing C<unpack()> Perl function. Note: parameters C<strbeg>,
828C<new_s> and C<ocnt> are not used. This call should not be used, use
829C<unpackstring> instead.
c03e83bf
NC
830
831=cut */
832
833I32
834Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s,
835 const char *strbeg, const char *strend, char **new_s, I32 ocnt,
836 U32 flags)
837{
7918f24d
NC
838 PERL_ARGS_ASSERT_UNPACK_STR;
839
c03e83bf
NC
840 PERL_UNUSED_ARG(strbeg);
841 PERL_UNUSED_ARG(new_s);
842 PERL_UNUSED_ARG(ocnt);
843
844 return unpackstring(pat, patend, s, strend, flags);
845}
b47163a2
NC
846
847/*
848=for apidoc pack_cat
849
796b6530
KW
850The engine implementing C<pack()> Perl function. Note: parameters
851C<next_in_list> and C<flags> are not used. This call should not be used; use
852C<packlist> instead.
b47163a2
NC
853
854=cut
855*/
856
857void
5aaab254 858Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
b47163a2 859{
7918f24d
NC
860 PERL_ARGS_ASSERT_PACK_CAT;
861
b47163a2
NC
862 PERL_UNUSED_ARG(next_in_list);
863 PERL_UNUSED_ARG(flags);
864
865 packlist(cat, pat, patend, beglist, endlist);
866}
4c2df08c
NC
867
868HE *
869Perl_hv_store_ent(pTHX_ HV *hv, SV *keysv, SV *val, U32 hash)
870{
59af68cc 871 return (HE *)hv_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISSTORE, val, hash);
4c2df08c
NC
872}
873
874bool
875Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash)
876{
7918f24d
NC
877 PERL_ARGS_ASSERT_HV_EXISTS_ENT;
878
4c2df08c
NC
879 return hv_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISEXISTS, 0, hash)
880 ? TRUE : FALSE;
881}
882
883HE *
884Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash)
885{
7918f24d
NC
886 PERL_ARGS_ASSERT_HV_FETCH_ENT;
887
59af68cc 888 return (HE *)hv_common(hv, keysv, NULL, 0, 0,
4c2df08c
NC
889 (lval ? HV_FETCH_LVALUE : 0), NULL, hash);
890}
891
892SV *
893Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash)
894{
7918f24d
NC
895 PERL_ARGS_ASSERT_HV_DELETE_ENT;
896
ad64d0ec
NC
897 return MUTABLE_SV(hv_common(hv, keysv, NULL, 0, 0, flags | HV_DELETE, NULL,
898 hash));
4c2df08c
NC
899}
900
a038e571
NC
901SV**
902Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash,
903 int flags)
904{
905 return (SV**) hv_common(hv, NULL, key, klen, flags,
906 (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
907}
908
909SV**
910Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen_i32, SV *val, U32 hash)
911{
912 STRLEN klen;
913 int flags;
914
915 if (klen_i32 < 0) {
916 klen = -klen_i32;
917 flags = HVhek_UTF8;
918 } else {
919 klen = klen_i32;
920 flags = 0;
921 }
922 return (SV **) hv_common(hv, NULL, key, klen, flags,
923 (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
924}
925
926bool
927Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen_i32)
928{
929 STRLEN klen;
930 int flags;
931
7918f24d
NC
932 PERL_ARGS_ASSERT_HV_EXISTS;
933
a038e571
NC
934 if (klen_i32 < 0) {
935 klen = -klen_i32;
936 flags = HVhek_UTF8;
937 } else {
938 klen = klen_i32;
939 flags = 0;
940 }
941 return hv_common(hv, NULL, key, klen, flags, HV_FETCH_ISEXISTS, 0, 0)
942 ? TRUE : FALSE;
943}
944
945SV**
946Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 lval)
947{
948 STRLEN klen;
949 int flags;
950
7918f24d
NC
951 PERL_ARGS_ASSERT_HV_FETCH;
952
a038e571
NC
953 if (klen_i32 < 0) {
954 klen = -klen_i32;
955 flags = HVhek_UTF8;
956 } else {
957 klen = klen_i32;
958 flags = 0;
959 }
960 return (SV **) hv_common(hv, NULL, key, klen, flags,
961 lval ? (HV_FETCH_JUST_SV | HV_FETCH_LVALUE)
962 : HV_FETCH_JUST_SV, NULL, 0);
963}
964
965SV *
966Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 flags)
967{
968 STRLEN klen;
969 int k_flags;
970
7918f24d
NC
971 PERL_ARGS_ASSERT_HV_DELETE;
972
a038e571
NC
973 if (klen_i32 < 0) {
974 klen = -klen_i32;
975 k_flags = HVhek_UTF8;
976 } else {
977 klen = klen_i32;
978 k_flags = 0;
979 }
ad64d0ec
NC
980 return MUTABLE_SV(hv_common(hv, NULL, key, klen, k_flags, flags | HV_DELETE,
981 NULL, 0));
a038e571
NC
982}
983
ac572bf4
NC
984AV *
985Perl_newAV(pTHX)
986{
502c6561 987 return MUTABLE_AV(newSV_type(SVt_PVAV));
ac572bf4
NC
988 /* sv_upgrade does AvREAL_only():
989 AvALLOC(av) = 0;
990 AvARRAY(av) = NULL;
991 AvMAX(av) = AvFILLp(av) = -1; */
992}
993
78ac7dd9
NC
994HV *
995Perl_newHV(pTHX)
996{
85fbaab2 997 HV * const hv = MUTABLE_HV(newSV_type(SVt_PVHV));
78ac7dd9
NC
998 assert(!SvOK(hv));
999
1000 return hv;
1001}
1002
84335ee9
NC
1003void
1004Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len,
1005 const char *const little, const STRLEN littlelen)
1006{
1007 PERL_ARGS_ASSERT_SV_INSERT;
1008 sv_insert_flags(bigstr, offset, len, little, littlelen, SV_GMAGIC);
1009}
1010
2fd8beea
NC
1011void
1012Perl_save_freesv(pTHX_ SV *sv)
1013{
2fd8beea
NC
1014 save_freesv(sv);
1015}
1016
1017void
1018Perl_save_mortalizesv(pTHX_ SV *sv)
1019{
2fd8beea
NC
1020 PERL_ARGS_ASSERT_SAVE_MORTALIZESV;
1021
1022 save_mortalizesv(sv);
1023}
1024
1025void
1026Perl_save_freeop(pTHX_ OP *o)
1027{
2fd8beea
NC
1028 save_freeop(o);
1029}
1030
1031void
1032Perl_save_freepv(pTHX_ char *pv)
1033{
2fd8beea
NC
1034 save_freepv(pv);
1035}
1036
1037void
1038Perl_save_op(pTHX)
1039{
2fd8beea
NC
1040 save_op();
1041}
1042
d5713896
NC
1043#ifdef PERL_DONT_CREATE_GVSV
1044GV *
1045Perl_gv_SVadd(pTHX_ GV *gv)
1046{
d5713896
NC
1047 return gv_SVadd(gv);
1048}
1049#endif
1050
1051GV *
1052Perl_gv_AVadd(pTHX_ GV *gv)
1053{
d5713896
NC
1054 return gv_AVadd(gv);
1055}
1056
1057GV *
5aaab254 1058Perl_gv_HVadd(pTHX_ GV *gv)
d5713896 1059{
d5713896
NC
1060 return gv_HVadd(gv);
1061}
1062
bb85b28a 1063GV *
5aaab254 1064Perl_gv_IOadd(pTHX_ GV *gv)
bb85b28a
NC
1065{
1066 return gv_IOadd(gv);
1067}
1068
85dca89a
NC
1069IO *
1070Perl_newIO(pTHX)
1071{
1072 return MUTABLE_IO(newSV_type(SVt_PVIO));
1073}
1074
0d7d409d
DM
1075I32
1076Perl_my_stat(pTHX)
1077{
1078 return my_stat_flags(SV_GMAGIC);
1079}
1080
1081I32
1082Perl_my_lstat(pTHX)
1083{
1084 return my_lstat_flags(SV_GMAGIC);
1085}
1086
078504b2 1087I32
5aaab254 1088Perl_sv_eq(pTHX_ SV *sv1, SV *sv2)
078504b2
FC
1089{
1090 return sv_eq_flags(sv1, sv2, SV_GMAGIC);
1091}
1092
6129b56c 1093#ifdef USE_LOCALE_COLLATE
078504b2
FC
1094char *
1095Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
1096{
1097 return sv_collxfrm_flags(sv, nxp, SV_GMAGIC);
1098}
78d57975
KW
1099
1100char *
1101Perl_mem_collxfrm(pTHX_ const char *input_string, STRLEN len, STRLEN *xlen)
1102{
1103 /* This function is retained for compatibility in case someone outside core
1104 * is using this (but it is undocumented) */
1105
1106 PERL_ARGS_ASSERT_MEM_COLLXFRM;
1107
1108 return _mem_collxfrm(input_string, len, xlen, FALSE);
1109}
1110
6129b56c 1111#endif
078504b2 1112
06c841cf 1113bool
5aaab254 1114Perl_sv_2bool(pTHX_ SV *const sv)
06c841cf
FC
1115{
1116 return sv_2bool_flags(sv, SV_GMAGIC);
1117}
1118
1830b3d9 1119
9733086d
BM
1120/*
1121=for apidoc custom_op_name
796b6530 1122Return the name for a given custom op. This was once used by the C<OP_NAME>
9733086d
BM
1123macro, but is no longer: it has only been kept for compatibility, and
1124should not be used.
1125
1126=for apidoc custom_op_desc
72d33970 1127Return the description of a given custom op. This was once used by the
796b6530 1128C<OP_DESC> macro, but is no longer: it has only been kept for
9733086d
BM
1129compatibility, and should not be used.
1130
1131=cut
1132*/
1133
1830b3d9
BM
1134const char*
1135Perl_custom_op_name(pTHX_ const OP* o)
1136{
1137 PERL_ARGS_ASSERT_CUSTOM_OP_NAME;
ae103e09 1138 return XopENTRYCUSTOM(o, xop_name);
1830b3d9
BM
1139}
1140
1141const char*
1142Perl_custom_op_desc(pTHX_ const OP* o)
1143{
1144 PERL_ARGS_ASSERT_CUSTOM_OP_DESC;
ae103e09 1145 return XopENTRYCUSTOM(o, xop_desc);
1830b3d9 1146}
7bff8c33
NC
1147
1148CV *
1149Perl_newSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *block)
1150{
e8f91c91 1151 return newATTRSUB(floor, o, proto, NULL, block);
7bff8c33 1152}
0c9b0438
KW
1153
1154UV
1155Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1156{
1157 PERL_ARGS_ASSERT_TO_UTF8_FOLD;
1158
445bf929 1159 return _to_utf8_fold_flags(p, ustrp, lenp, FOLD_FLAGS_FULL);
0c9b0438
KW
1160}
1161
1162UV
1163Perl_to_utf8_lower(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1164{
1165 PERL_ARGS_ASSERT_TO_UTF8_LOWER;
1166
445bf929 1167 return _to_utf8_lower_flags(p, ustrp, lenp, FALSE);
0c9b0438
KW
1168}
1169
1170UV
1171Perl_to_utf8_title(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1172{
1173 PERL_ARGS_ASSERT_TO_UTF8_TITLE;
1174
445bf929 1175 return _to_utf8_title_flags(p, ustrp, lenp, FALSE);
0c9b0438
KW
1176}
1177
1178UV
1179Perl_to_utf8_upper(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp)
1180{
1181 PERL_ARGS_ASSERT_TO_UTF8_UPPER;
1182
445bf929 1183 return _to_utf8_upper_flags(p, ustrp, lenp, FALSE);
0c9b0438
KW
1184}
1185
108cb980
FC
1186SV *
1187Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
1188{
33971c01 1189 return Perl_sv_mortalcopy_flags(aTHX_ oldstr, SV_GMAGIC);
108cb980
FC
1190}
1191
e4524c4c
DD
1192void
1193Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
1194{
1195 PERL_ARGS_ASSERT_SV_COPYPV;
1196
1197 sv_copypv_flags(dsv, ssv, 0);
1198}
1199
3d81eea6
KW
1200UV /* Made into a function, so can be deprecated */
1201NATIVE_TO_NEED(const UV enc, const UV ch)
1202{
1203 PERL_UNUSED_ARG(enc);
1204 return ch;
1205}
1206
1207UV /* Made into a function, so can be deprecated */
1208ASCII_TO_NEED(const UV enc, const UV ch)
1209{
1210 PERL_UNUSED_ARG(enc);
1211 return ch;
1212}
1213
f2645549
KW
1214bool /* Made into a function, so can be deprecated */
1215Perl_isIDFIRST_lazy(pTHX_ const char* p)
1216{
1217 PERL_ARGS_ASSERT_ISIDFIRST_LAZY;
1218
1219 return isIDFIRST_lazy_if(p,1);
1220}
1221
1222bool /* Made into a function, so can be deprecated */
1223Perl_isALNUM_lazy(pTHX_ const char* p)
1224{
1225 PERL_ARGS_ASSERT_ISALNUM_LAZY;
1226
1227 return isALNUM_lazy_if(p,1);
1228}
1229
dc2e544e
KW
1230bool
1231Perl_is_uni_alnum(pTHX_ UV c)
1232{
1233 return isWORDCHAR_uni(c);
1234}
1235
1236bool
1237Perl_is_uni_alnumc(pTHX_ UV c)
1238{
1239 return isALNUM_uni(c);
1240}
1241
1242bool
1243Perl_is_uni_alpha(pTHX_ UV c)
1244{
1245 return isALPHA_uni(c);
1246}
1247
1248bool
1249Perl_is_uni_ascii(pTHX_ UV c)
1250{
81611534 1251 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1252 return isASCII_uni(c);
1253}
1254
1255bool
1256Perl_is_uni_blank(pTHX_ UV c)
1257{
81611534 1258 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1259 return isBLANK_uni(c);
1260}
1261
1262bool
1263Perl_is_uni_space(pTHX_ UV c)
1264{
81611534 1265 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1266 return isSPACE_uni(c);
1267}
1268
1269bool
1270Perl_is_uni_digit(pTHX_ UV c)
1271{
81611534 1272 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1273 return isDIGIT_uni(c);
1274}
1275
1276bool
1277Perl_is_uni_upper(pTHX_ UV c)
1278{
81611534 1279 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1280 return isUPPER_uni(c);
1281}
1282
1283bool
1284Perl_is_uni_lower(pTHX_ UV c)
1285{
81611534 1286 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1287 return isLOWER_uni(c);
1288}
1289
1290bool
1291Perl_is_uni_cntrl(pTHX_ UV c)
1292{
81611534 1293 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1294 return isCNTRL_L1(c);
1295}
1296
1297bool
1298Perl_is_uni_graph(pTHX_ UV c)
1299{
81611534 1300 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1301 return isGRAPH_uni(c);
1302}
1303
1304bool
1305Perl_is_uni_print(pTHX_ UV c)
1306{
81611534 1307 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1308 return isPRINT_uni(c);
1309}
1310
1311bool
1312Perl_is_uni_punct(pTHX_ UV c)
1313{
81611534 1314 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1315 return isPUNCT_uni(c);
1316}
1317
1318bool
1319Perl_is_uni_xdigit(pTHX_ UV c)
1320{
81611534 1321 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1322 return isXDIGIT_uni(c);
1323}
1324
1325bool
1326Perl_is_uni_alnum_lc(pTHX_ UV c)
1327{
81611534 1328 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1329 return isWORDCHAR_LC_uvchr(c);
1330}
1331
1332bool
1333Perl_is_uni_alnumc_lc(pTHX_ UV c)
1334{
81611534 1335 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1336 return isALPHANUMERIC_LC_uvchr(c);
1337}
1338
1339bool
1340Perl_is_uni_idfirst_lc(pTHX_ UV c)
1341{
81611534 1342 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1343 /* XXX Should probably be something that resolves to the old IDFIRST, but
1344 * this function is deprecated, so not bothering */
1345 return isIDFIRST_LC_uvchr(c);
1346}
1347
1348bool
1349Perl_is_uni_alpha_lc(pTHX_ UV c)
1350{
81611534 1351 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1352 return isALPHA_LC_uvchr(c);
1353}
1354
1355bool
1356Perl_is_uni_ascii_lc(pTHX_ UV c)
1357{
81611534 1358 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1359 return isASCII_LC_uvchr(c);
1360}
1361
1362bool
1363Perl_is_uni_blank_lc(pTHX_ UV c)
1364{
81611534 1365 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1366 return isBLANK_LC_uvchr(c);
1367}
1368
1369bool
1370Perl_is_uni_space_lc(pTHX_ UV c)
1371{
81611534 1372 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1373 return isSPACE_LC_uvchr(c);
1374}
1375
1376bool
1377Perl_is_uni_digit_lc(pTHX_ UV c)
1378{
1379 return isDIGIT_LC_uvchr(c);
1380}
1381
1382bool
f2645549
KW
1383Perl_is_uni_idfirst(pTHX_ UV c)
1384{
1385 U8 tmpbuf[UTF8_MAXBYTES+1];
1386 uvchr_to_utf8(tmpbuf, c);
1387 return _is_utf8_idstart(tmpbuf);
1388}
1389
1390bool
1391Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
1392{
f2645549
KW
1393 PERL_ARGS_ASSERT_IS_UTF8_IDFIRST;
1394
1395 return _is_utf8_idstart(p);
1396}
1397
1398bool
1399Perl_is_utf8_xidfirst(pTHX_ const U8 *p) /* The naming is historical. */
1400{
f2645549
KW
1401 PERL_ARGS_ASSERT_IS_UTF8_XIDFIRST;
1402
1403 return _is_utf8_xidstart(p);
1404}
1405
1406bool
1407Perl_is_utf8_idcont(pTHX_ const U8 *p)
1408{
f2645549
KW
1409 PERL_ARGS_ASSERT_IS_UTF8_IDCONT;
1410
1411 return _is_utf8_idcont(p);
1412}
1413
1414bool
1415Perl_is_utf8_xidcont(pTHX_ const U8 *p)
1416{
f2645549
KW
1417 PERL_ARGS_ASSERT_IS_UTF8_XIDCONT;
1418
1419 return _is_utf8_xidcont(p);
1420}
1421
1422bool
dc2e544e
KW
1423Perl_is_uni_upper_lc(pTHX_ UV c)
1424{
1425 return isUPPER_LC_uvchr(c);
1426}
1427
1428bool
1429Perl_is_uni_lower_lc(pTHX_ UV c)
1430{
1431 return isLOWER_LC_uvchr(c);
1432}
1433
1434bool
1435Perl_is_uni_cntrl_lc(pTHX_ UV c)
1436{
1437 return isCNTRL_LC_uvchr(c);
1438}
1439
1440bool
1441Perl_is_uni_graph_lc(pTHX_ UV c)
1442{
1443 return isGRAPH_LC_uvchr(c);
1444}
1445
1446bool
1447Perl_is_uni_print_lc(pTHX_ UV c)
1448{
1449 return isPRINT_LC_uvchr(c);
1450}
1451
1452bool
1453Perl_is_uni_punct_lc(pTHX_ UV c)
1454{
1455 return isPUNCT_LC_uvchr(c);
1456}
1457
1458bool
1459Perl_is_uni_xdigit_lc(pTHX_ UV c)
1460{
1461 return isXDIGIT_LC_uvchr(c);
1462}
1463
1464U32
1465Perl_to_uni_upper_lc(pTHX_ U32 c)
1466{
1467 /* XXX returns only the first character -- do not use XXX */
1468 /* XXX no locale support yet */
1469 STRLEN len;
1470 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1471 return (U32)to_uni_upper(c, tmpbuf, &len);
1472}
1473
1474U32
1475Perl_to_uni_title_lc(pTHX_ U32 c)
1476{
1477 /* XXX returns only the first character XXX -- do not use XXX */
1478 /* XXX no locale support yet */
1479 STRLEN len;
1480 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1481 return (U32)to_uni_title(c, tmpbuf, &len);
1482}
1483
1484U32
1485Perl_to_uni_lower_lc(pTHX_ U32 c)
1486{
1487 /* XXX returns only the first character -- do not use XXX */
1488 /* XXX no locale support yet */
1489 STRLEN len;
1490 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1491 return (U32)to_uni_lower(c, tmpbuf, &len);
1492}
1493
1494bool
1495Perl_is_utf8_alnum(pTHX_ const U8 *p)
1496{
dc2e544e
KW
1497 PERL_ARGS_ASSERT_IS_UTF8_ALNUM;
1498
1499 /* NOTE: "IsWord", not "IsAlnum", since Alnum is a true
1500 * descendant of isalnum(3), in other words, it doesn't
1501 * contain the '_'. --jhi */
1502 return isWORDCHAR_utf8(p);
1503}
1504
1505bool
1506Perl_is_utf8_alnumc(pTHX_ const U8 *p)
1507{
dc2e544e
KW
1508 PERL_ARGS_ASSERT_IS_UTF8_ALNUMC;
1509
1510 return isALPHANUMERIC_utf8(p);
1511}
1512
1513bool
1514Perl_is_utf8_alpha(pTHX_ const U8 *p)
1515{
dc2e544e
KW
1516 PERL_ARGS_ASSERT_IS_UTF8_ALPHA;
1517
1518 return isALPHA_utf8(p);
1519}
1520
1521bool
1522Perl_is_utf8_ascii(pTHX_ const U8 *p)
1523{
dc2e544e 1524 PERL_ARGS_ASSERT_IS_UTF8_ASCII;
81611534 1525 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1526
1527 return isASCII_utf8(p);
1528}
1529
1530bool
1531Perl_is_utf8_blank(pTHX_ const U8 *p)
1532{
dc2e544e 1533 PERL_ARGS_ASSERT_IS_UTF8_BLANK;
81611534 1534 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1535
1536 return isBLANK_utf8(p);
1537}
1538
1539bool
1540Perl_is_utf8_space(pTHX_ const U8 *p)
1541{
dc2e544e 1542 PERL_ARGS_ASSERT_IS_UTF8_SPACE;
81611534 1543 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1544
1545 return isSPACE_utf8(p);
1546}
1547
1548bool
1549Perl_is_utf8_perl_space(pTHX_ const U8 *p)
1550{
dc2e544e 1551 PERL_ARGS_ASSERT_IS_UTF8_PERL_SPACE;
81611534 1552 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1553
1554 /* Only true if is an ASCII space-like character, and ASCII is invariant
1555 * under utf8, so can just use the macro */
1556 return isSPACE_A(*p);
1557}
1558
1559bool
1560Perl_is_utf8_perl_word(pTHX_ const U8 *p)
1561{
dc2e544e 1562 PERL_ARGS_ASSERT_IS_UTF8_PERL_WORD;
81611534 1563 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1564
1565 /* Only true if is an ASCII word character, and ASCII is invariant
1566 * under utf8, so can just use the macro */
1567 return isWORDCHAR_A(*p);
1568}
1569
1570bool
1571Perl_is_utf8_digit(pTHX_ const U8 *p)
1572{
dc2e544e
KW
1573 PERL_ARGS_ASSERT_IS_UTF8_DIGIT;
1574
1575 return isDIGIT_utf8(p);
1576}
1577
1578bool
1579Perl_is_utf8_posix_digit(pTHX_ const U8 *p)
1580{
dc2e544e 1581 PERL_ARGS_ASSERT_IS_UTF8_POSIX_DIGIT;
81611534 1582 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1583
1584 /* Only true if is an ASCII digit character, and ASCII is invariant
1585 * under utf8, so can just use the macro */
1586 return isDIGIT_A(*p);
1587}
1588
1589bool
1590Perl_is_utf8_upper(pTHX_ const U8 *p)
1591{
dc2e544e
KW
1592 PERL_ARGS_ASSERT_IS_UTF8_UPPER;
1593
1594 return isUPPER_utf8(p);
1595}
1596
1597bool
1598Perl_is_utf8_lower(pTHX_ const U8 *p)
1599{
dc2e544e
KW
1600 PERL_ARGS_ASSERT_IS_UTF8_LOWER;
1601
1602 return isLOWER_utf8(p);
1603}
1604
1605bool
1606Perl_is_utf8_cntrl(pTHX_ const U8 *p)
1607{
dc2e544e 1608 PERL_ARGS_ASSERT_IS_UTF8_CNTRL;
81611534 1609 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1610
1611 return isCNTRL_utf8(p);
1612}
1613
1614bool
1615Perl_is_utf8_graph(pTHX_ const U8 *p)
1616{
dc2e544e
KW
1617 PERL_ARGS_ASSERT_IS_UTF8_GRAPH;
1618
1619 return isGRAPH_utf8(p);
1620}
1621
1622bool
1623Perl_is_utf8_print(pTHX_ const U8 *p)
1624{
dc2e544e
KW
1625 PERL_ARGS_ASSERT_IS_UTF8_PRINT;
1626
1627 return isPRINT_utf8(p);
1628}
1629
1630bool
1631Perl_is_utf8_punct(pTHX_ const U8 *p)
1632{
dc2e544e
KW
1633 PERL_ARGS_ASSERT_IS_UTF8_PUNCT;
1634
1635 return isPUNCT_utf8(p);
1636}
1637
1638bool
1639Perl_is_utf8_xdigit(pTHX_ const U8 *p)
1640{
dc2e544e 1641 PERL_ARGS_ASSERT_IS_UTF8_XDIGIT;
81611534 1642 PERL_UNUSED_CONTEXT;
dc2e544e
KW
1643
1644 return isXDIGIT_utf8(p);
1645}
1646
1647bool
1648Perl_is_utf8_mark(pTHX_ const U8 *p)
1649{
dc2e544e
KW
1650 PERL_ARGS_ASSERT_IS_UTF8_MARK;
1651
1652 return _is_utf8_mark(p);
1653}
1654
f2645549
KW
1655/*
1656=for apidoc is_utf8_char
1657
1658Tests if some arbitrary number of bytes begins in a valid UTF-8
1659character. Note that an INVARIANT (i.e. ASCII on non-EBCDIC machines)
1660character is a valid UTF-8 character. The actual number of bytes in the UTF-8
1661character will be returned if it is valid, otherwise 0.
1662
1663This function is deprecated due to the possibility that malformed input could
1664cause reading beyond the end of the input buffer. Use L</isUTF8_CHAR>
1665instead.
1666
1667=cut */
1668
1669STRLEN
1670Perl_is_utf8_char(const U8 *s)
1671{
1672 PERL_ARGS_ASSERT_IS_UTF8_CHAR;
1673
1674 /* Assumes we have enough space, which is why this is deprecated */
1675 return isUTF8_CHAR(s, s + UTF8SKIP(s));
1676}
1677
e4524c4c
DD
1678/*
1679=for apidoc is_utf8_char_buf
1680
1681This is identical to the macro L</isUTF8_CHAR>.
1682
1683=cut */
1684
1685STRLEN
1686Perl_is_utf8_char_buf(const U8 *buf, const U8* buf_end)
1687{
1688
1689 PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF;
1690
1691 return isUTF8_CHAR(buf, buf_end);
1692}
1693
f2645549
KW
1694/* DEPRECATED!
1695 * Like L</utf8_to_uvuni_buf>(), but should only be called when it is known that
1696 * there are no malformations in the input UTF-8 string C<s>. Surrogates,
1697 * non-character code points, and non-Unicode code points are allowed */
1698
1699UV
1700Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
1701{
1702 PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI;
1703
1704 return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
1705}
1706
1707/*
1708=for apidoc utf8_to_uvchr
1709
1710Returns the native code point of the first character in the string C<s>
1711which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
1712length, in bytes, of that character.
1713
1714Some, but not all, UTF-8 malformations are detected, and in fact, some
1715malformed input could cause reading beyond the end of the input buffer, which
1716is why this function is deprecated. Use L</utf8_to_uvchr_buf> instead.
1717
1718If C<s> points to one of the detected malformations, and UTF8 warnings are
1719enabled, zero is returned and C<*retlen> is set (if C<retlen> isn't
796b6530 1720C<NULL>) to -1. If those warnings are off, the computed value if well-defined (or
f2645549
KW
1721the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1722is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1723next possible position in C<s> that could begin a non-malformed character.
1724See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
1725
1726=cut
1727*/
1728
1729UV
1730Perl_utf8_to_uvchr(pTHX_ const U8 *s, STRLEN *retlen)
1731{
1732 PERL_ARGS_ASSERT_UTF8_TO_UVCHR;
1733
1734 return utf8_to_uvchr_buf(s, s + UTF8_MAXBYTES, retlen);
1735}
1736
1737/*
1738=for apidoc utf8_to_uvuni
1739
1740Returns the Unicode code point of the first character in the string C<s>
1741which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
1742length, in bytes, of that character.
1743
1744Some, but not all, UTF-8 malformations are detected, and in fact, some
1745malformed input could cause reading beyond the end of the input buffer, which
1746is one reason why this function is deprecated. The other is that only in
1747extremely limited circumstances should the Unicode versus native code point be
1748of any interest to you. See L</utf8_to_uvuni_buf> for alternatives.
1749
1750If C<s> points to one of the detected malformations, and UTF8 warnings are
1751enabled, zero is returned and C<*retlen> is set (if C<retlen> doesn't point to
1752NULL) to -1. If those warnings are off, the computed value if well-defined (or
1753the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1754is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1755next possible position in C<s> that could begin a non-malformed character.
1756See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
1757
1758=cut
1759*/
1760
1761UV
1762Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
1763{
1764 PERL_ARGS_ASSERT_UTF8_TO_UVUNI;
1765
1766 return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
1767}
1768
09d7a3ba
FC
1769/*
1770=for apidoc Am|HV *|pad_compname_type|PADOFFSET po
1771
2d7f6611 1772Looks up the type of the lexical variable at position C<po> in the
09d7a3ba
FC
1773currently-compiling pad. If the variable is typed, the stash of the
1774class to which it is typed is returned. If not, C<NULL> is returned.
1775
1776=cut
1777*/
1778
1779HV *
1780Perl_pad_compname_type(pTHX_ const PADOFFSET po)
1781{
1782 return PAD_COMPNAME_TYPE(po);
1783}
1784
534dad48 1785/* return ptr to little string in big string, NULL if not found */
fb245905 1786/* The original version of this routine was donated by Corey Satten. */
534dad48
CB
1787
1788char *
1789Perl_instr(const char *big, const char *little)
1790{
534dad48 1791 PERL_ARGS_ASSERT_INSTR;
534dad48 1792
fb245905 1793 return instr((char *) big, (char *) little);
534dad48 1794}
0ddd4a5b 1795
20fac488
GA
1796#endif /* NO_MATHOMS */
1797
d5b2b27b 1798/*
14d04a33 1799 * ex: set ts=8 sts=4 sw=4 et:
7ee2227d 1800 */