This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix Porting/perldelta_template.pod
[perl5.git] / mathoms.c
1 /*    mathoms.c
2  *
3  *    Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
4  *    2011, 2012 by Larry Wall and others
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 /*
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"]
18  */
19
20
21
22 /*
23  * This file contains mathoms, various binary artifacts from previous
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_ ...)
34  *
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  *
49  * The compilation of this file can be suppressed; see INSTALL
50  *
51  * Some blurb for perlapi.pod:
52
53 =head1 Obsolete backwards compatibility functions
54
55 Some of these are also deprecated.  You can exclude these from
56 your compiled Perl by adding this option to Configure:
57 C<-Accflags='-DNO_MATHOMS'>
58
59 =cut
60
61  */
62
63
64 #include "EXTERN.h"
65 #define PERL_IN_MATHOMS_C
66 #include "perl.h"
67
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
74 /* ref() is now a macro using Perl_doref;
75  * this version provided for binary compatibility only.
76  */
77 OP *
78 Perl_ref(pTHX_ OP *o, I32 type)
79 {
80     return doref(o, type, TRUE);
81 }
82
83 /*
84 =for apidoc sv_unref
85
86 Unsets the RV status of the SV, and decrements the reference count of
87 whatever was being referenced by the RV.  This can almost be thought of
88 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
89 being zero.  See C<L</SvROK_off>>.
90
91 =cut
92 */
93
94 void
95 Perl_sv_unref(pTHX_ SV *sv)
96 {
97     PERL_ARGS_ASSERT_SV_UNREF;
98
99     sv_unref_flags(sv, 0);
100 }
101
102 /*
103 =for apidoc sv_taint
104
105 Taint an SV.  Use C<SvTAINTED_on> instead.
106
107 =cut
108 */
109
110 void
111 Perl_sv_taint(pTHX_ SV *sv)
112 {
113     PERL_ARGS_ASSERT_SV_TAINT;
114
115     sv_magic((sv), NULL, PERL_MAGIC_taint, NULL, 0);
116 }
117
118 /* sv_2iv() is now a macro using Perl_sv_2iv_flags();
119  * this function provided for binary compatibility only
120  */
121
122 IV
123 Perl_sv_2iv(pTHX_ SV *sv)
124 {
125     PERL_ARGS_ASSERT_SV_2IV;
126
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
134 UV
135 Perl_sv_2uv(pTHX_ SV *sv)
136 {
137     PERL_ARGS_ASSERT_SV_2UV;
138
139     return sv_2uv_flags(sv, SV_GMAGIC);
140 }
141
142 /* sv_2nv() is now a macro using Perl_sv_2nv_flags();
143  * this function provided for binary compatibility only
144  */
145
146 NV
147 Perl_sv_2nv(pTHX_ SV *sv)
148 {
149     return sv_2nv_flags(sv, SV_GMAGIC);
150 }
151
152
153 /* sv_2pv() is now a macro using Perl_sv_2pv_flags();
154  * this function provided for binary compatibility only
155  */
156
157 char *
158 Perl_sv_2pv(pTHX_ SV *sv, STRLEN *lp)
159 {
160     PERL_ARGS_ASSERT_SV_2PV;
161
162     return sv_2pv_flags(sv, lp, SV_GMAGIC);
163 }
164
165 /*
166 =for apidoc sv_2pv_nolen
167
168 Like C<sv_2pv()>, but doesn't return the length too.  You should usually
169 use the macro wrapper C<SvPV_nolen(sv)> instead.
170
171 =cut
172 */
173
174 char *
175 Perl_sv_2pv_nolen(pTHX_ SV *sv)
176 {
177     PERL_ARGS_ASSERT_SV_2PV_NOLEN;
178     return sv_2pv(sv, NULL);
179 }
180
181 /*
182 =for apidoc sv_2pvbyte_nolen
183
184 Return a pointer to the byte-encoded representation of the SV.
185 May cause the SV to be downgraded from UTF-8 as a side-effect.
186
187 Usually accessed via the C<SvPVbyte_nolen> macro.
188
189 =cut
190 */
191
192 char *
193 Perl_sv_2pvbyte_nolen(pTHX_ SV *sv)
194 {
195     PERL_ARGS_ASSERT_SV_2PVBYTE_NOLEN;
196
197     return sv_2pvbyte(sv, NULL);
198 }
199
200 /*
201 =for apidoc sv_2pvutf8_nolen
202
203 Return a pointer to the UTF-8-encoded representation of the SV.
204 May cause the SV to be upgraded to UTF-8 as a side-effect.
205
206 Usually accessed via the C<SvPVutf8_nolen> macro.
207
208 =cut
209 */
210
211 char *
212 Perl_sv_2pvutf8_nolen(pTHX_ SV *sv)
213 {
214     PERL_ARGS_ASSERT_SV_2PVUTF8_NOLEN;
215
216     return sv_2pvutf8(sv, NULL);
217 }
218
219 /*
220 =for apidoc sv_force_normal
221
222 Undo various types of fakery on an SV: if the PV is a shared string, make
223 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
224 an C<xpvmg>.  See also C<L</sv_force_normal_flags>>.
225
226 =cut
227 */
228
229 void
230 Perl_sv_force_normal(pTHX_ SV *sv)
231 {
232     PERL_ARGS_ASSERT_SV_FORCE_NORMAL;
233
234     sv_force_normal_flags(sv, 0);
235 }
236
237 /* sv_setsv() is now a macro using Perl_sv_setsv_flags();
238  * this function provided for binary compatibility only
239  */
240
241 void
242 Perl_sv_setsv(pTHX_ SV *dstr, SV *sstr)
243 {
244     PERL_ARGS_ASSERT_SV_SETSV;
245
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
253 void
254 Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
255 {
256     PERL_ARGS_ASSERT_SV_CATPVN;
257
258     sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
259 }
260
261 /*
262 =for apidoc sv_catpvn_mg
263
264 Like C<sv_catpvn>, but also handles 'set' magic.
265
266 =cut
267 */
268
269 void
270 Perl_sv_catpvn_mg(pTHX_ SV *sv, const char *ptr, STRLEN len)
271 {
272     PERL_ARGS_ASSERT_SV_CATPVN_MG;
273
274     sv_catpvn_flags(sv,ptr,len,SV_GMAGIC|SV_SMAGIC);
275 }
276
277 /* sv_catsv() is now a macro using Perl_sv_catsv_flags();
278  * this function provided for binary compatibility only
279  */
280
281 void
282 Perl_sv_catsv(pTHX_ SV *dstr, SV *sstr)
283 {
284     PERL_ARGS_ASSERT_SV_CATSV;
285
286     sv_catsv_flags(dstr, sstr, SV_GMAGIC);
287 }
288
289 /*
290 =for apidoc sv_catsv_mg
291
292 Like C<sv_catsv>, but also handles 'set' magic.
293
294 =cut
295 */
296
297 void
298 Perl_sv_catsv_mg(pTHX_ SV *dsv, SV *ssv)
299 {
300     PERL_ARGS_ASSERT_SV_CATSV_MG;
301
302     sv_catsv_flags(dsv,ssv,SV_GMAGIC|SV_SMAGIC);
303 }
304
305 /*
306 =for apidoc sv_iv
307
308 A private implementation of the C<SvIVx> macro for compilers which can't
309 cope with complex macro expressions.  Always use the macro instead.
310
311 =cut
312 */
313
314 IV
315 Perl_sv_iv(pTHX_ SV *sv)
316 {
317     PERL_ARGS_ASSERT_SV_IV;
318
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
330 A private implementation of the C<SvUVx> macro for compilers which can't
331 cope with complex macro expressions.  Always use the macro instead.
332
333 =cut
334 */
335
336 UV
337 Perl_sv_uv(pTHX_ SV *sv)
338 {
339     PERL_ARGS_ASSERT_SV_UV;
340
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
352 A private implementation of the C<SvNVx> macro for compilers which can't
353 cope with complex macro expressions.  Always use the macro instead.
354
355 =cut
356 */
357
358 NV
359 Perl_sv_nv(pTHX_ SV *sv)
360 {
361     PERL_ARGS_ASSERT_SV_NV;
362
363     if (SvNOK(sv))
364         return SvNVX(sv);
365     return sv_2nv(sv);
366 }
367
368 /*
369 =for apidoc sv_pv
370
371 Use the C<SvPV_nolen> macro instead
372
373 =for apidoc sv_pvn
374
375 A private implementation of the C<SvPV> macro for compilers which can't
376 cope with complex macro expressions.  Always use the macro instead.
377
378 =cut
379 */
380
381 char *
382 Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
383 {
384     PERL_ARGS_ASSERT_SV_PVN;
385
386     if (SvPOK(sv)) {
387         *lp = SvCUR(sv);
388         return SvPVX(sv);
389     }
390     return sv_2pv(sv, lp);
391 }
392
393
394 char *
395 Perl_sv_pvn_nomg(pTHX_ SV *sv, STRLEN *lp)
396 {
397     PERL_ARGS_ASSERT_SV_PVN_NOMG;
398
399     if (SvPOK(sv)) {
400         *lp = SvCUR(sv);
401         return SvPVX(sv);
402     }
403     return sv_2pv_flags(sv, lp, 0);
404 }
405
406 /* sv_pv() is now a macro using SvPV_nolen();
407  * this function provided for binary compatibility only
408  */
409
410 char *
411 Perl_sv_pv(pTHX_ SV *sv)
412 {
413     PERL_ARGS_ASSERT_SV_PV;
414
415     if (SvPOK(sv))
416         return SvPVX(sv);
417
418     return sv_2pv(sv, NULL);
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
425 char *
426 Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
427 {
428     PERL_ARGS_ASSERT_SV_PVN_FORCE;
429
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
437 char *
438 Perl_sv_pvbyte(pTHX_ SV *sv)
439 {
440     PERL_ARGS_ASSERT_SV_PVBYTE;
441
442     sv_utf8_downgrade(sv, FALSE);
443     return sv_pv(sv);
444 }
445
446 /*
447 =for apidoc sv_pvbyte
448
449 Use C<SvPVbyte_nolen> instead.
450
451 =for apidoc sv_pvbyten
452
453 A private implementation of the C<SvPVbyte> macro for compilers
454 which can't cope with complex macro expressions.  Always use the macro
455 instead.
456
457 =cut
458 */
459
460 char *
461 Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
462 {
463     PERL_ARGS_ASSERT_SV_PVBYTEN;
464
465     sv_utf8_downgrade(sv, FALSE);
466     return sv_pvn(sv,lp);
467 }
468
469 /* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
470  * this function provided for binary compatibility only
471  */
472
473 char *
474 Perl_sv_pvutf8(pTHX_ SV *sv)
475 {
476     PERL_ARGS_ASSERT_SV_PVUTF8;
477
478     sv_utf8_upgrade(sv);
479     return sv_pv(sv);
480 }
481
482 /*
483 =for apidoc sv_pvutf8
484
485 Use the C<SvPVutf8_nolen> macro instead
486
487 =for apidoc sv_pvutf8n
488
489 A private implementation of the C<SvPVutf8> macro for compilers
490 which can't cope with complex macro expressions.  Always use the macro
491 instead.
492
493 =cut
494 */
495
496 char *
497 Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
498 {
499     PERL_ARGS_ASSERT_SV_PVUTF8N;
500
501     sv_utf8_upgrade(sv);
502     return sv_pvn(sv,lp);
503 }
504
505 /* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
506  * this function provided for binary compatibility only
507  */
508
509 STRLEN
510 Perl_sv_utf8_upgrade(pTHX_ SV *sv)
511 {
512     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE;
513
514     return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
515 }
516
517 int
518 Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
519 {
520     int ret = 0;
521     va_list(arglist);
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
529     va_start(arglist, format);
530     ret = PerlIO_vprintf(stream, format, arglist);
531     va_end(arglist);
532     return ret;
533 }
534
535 int
536 Perl_printf_nocontext(const char *format, ...)
537 {
538     dTHX;
539     va_list(arglist);
540     int ret = 0;
541
542 #ifdef PERL_IMPLICIT_CONTEXT
543     PERL_ARGS_ASSERT_PRINTF_NOCONTEXT;
544 #endif
545
546     va_start(arglist, format);
547     ret = PerlIO_vprintf(PerlIO_stdout(), format, arglist);
548     va_end(arglist);
549     return ret;
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  */
558 NV
559 Perl_huge(void)
560 {
561 #  if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
562     return HUGE_VALL;
563 #  else
564     return HUGE_VAL;
565 #  endif
566 }
567 #endif
568
569 /* compatibility with versions <= 5.003. */
570 void
571 Perl_gv_fullname(pTHX_ SV *sv, const GV *gv)
572 {
573     PERL_ARGS_ASSERT_GV_FULLNAME;
574
575     gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
576 }
577
578 /* compatibility with versions <= 5.003. */
579 void
580 Perl_gv_efullname(pTHX_ SV *sv, const GV *gv)
581 {
582     PERL_ARGS_ASSERT_GV_EFULLNAME;
583
584     gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
585 }
586
587 void
588 Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
589 {
590     PERL_ARGS_ASSERT_GV_FULLNAME3;
591
592     gv_fullname4(sv, gv, prefix, TRUE);
593 }
594
595 void
596 Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
597 {
598     PERL_ARGS_ASSERT_GV_EFULLNAME3;
599
600     gv_efullname4(sv, gv, prefix, TRUE);
601 }
602
603 /*
604 =for apidoc gv_fetchmethod
605
606 See L</gv_fetchmethod_autoload>.
607
608 =cut
609 */
610
611 GV *
612 Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
613 {
614     PERL_ARGS_ASSERT_GV_FETCHMETHOD;
615
616     return gv_fetchmethod_autoload(stash, name, TRUE);
617 }
618
619 HE *
620 Perl_hv_iternext(pTHX_ HV *hv)
621 {
622     PERL_ARGS_ASSERT_HV_ITERNEXT;
623
624     return hv_iternext_flags(hv, 0);
625 }
626
627 void
628 Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
629 {
630     PERL_ARGS_ASSERT_HV_MAGIC;
631
632     sv_magic(MUTABLE_SV(hv), MUTABLE_SV(gv), how, NULL, 0);
633 }
634
635 bool
636 Perl_do_open(pTHX_ GV *gv, const char *name, I32 len, int as_raw,
637              int rawmode, int rawperm, PerlIO *supplied_fp)
638 {
639     PERL_ARGS_ASSERT_DO_OPEN;
640
641     return do_openn(gv, name, len, as_raw, rawmode, rawperm,
642                     supplied_fp, (SV **) NULL, 0);
643 }
644
645 bool
646 Perl_do_open9(pTHX_ GV *gv, const char *name, I32 len, int
647 as_raw,
648               int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
649               I32 num_svs)
650 {
651     PERL_ARGS_ASSERT_DO_OPEN9;
652
653     PERL_UNUSED_ARG(num_svs);
654     return do_openn(gv, name, len, as_raw, rawmode, rawperm,
655                     supplied_fp, &svs, 1);
656 }
657
658 int
659 Perl_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";
665
666  PERL_ARGS_ASSERT_DO_BINMODE;
667
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
675 #ifndef OS2
676 bool
677 Perl_do_aexec(pTHX_ SV *really, SV **mark, SV **sp)
678 {
679     PERL_ARGS_ASSERT_DO_AEXEC;
680
681     return do_aexec5(really, mark, sp, 0, 0);
682 }
683 #endif
684
685 /* Backwards compatibility. */
686 int
687 Perl_init_i18nl14n(pTHX_ int printwarn)
688 {
689     return init_i18nl10n(printwarn);
690 }
691
692 bool
693 Perl_is_utf8_string_loc(const U8 *s, const STRLEN len, const U8 **ep)
694 {
695     PERL_ARGS_ASSERT_IS_UTF8_STRING_LOC;
696
697     return is_utf8_string_loclen(s, len, ep, 0);
698 }
699
700 /*
701 =for apidoc sv_nolocking
702
703 Dummy routine which "locks" an SV when there is no locking module present.
704 Exists to avoid test for a C<NULL> function pointer and because it could
705 potentially warn under some level of strict-ness.
706
707 "Superseded" by C<sv_nosharing()>.
708
709 =cut
710 */
711
712 void
713 Perl_sv_nolocking(pTHX_ SV *sv)
714 {
715     PERL_UNUSED_CONTEXT;
716     PERL_UNUSED_ARG(sv);
717 }
718
719
720 /*
721 =for apidoc sv_nounlocking
722
723 Dummy routine which "unlocks" an SV when there is no locking module present.
724 Exists to avoid test for a C<NULL> function pointer and because it could
725 potentially warn under some level of strict-ness.
726
727 "Superseded" by C<sv_nosharing()>.
728
729 =cut
730 */
731
732 void
733 Perl_sv_nounlocking(pTHX_ SV *sv)
734 {
735     PERL_UNUSED_CONTEXT;
736     PERL_UNUSED_ARG(sv);
737 }
738
739 void
740 Perl_save_long(pTHX_ long int *longp)
741 {
742     PERL_ARGS_ASSERT_SAVE_LONG;
743
744     SSCHECK(3);
745     SSPUSHLONG(*longp);
746     SSPUSHPTR(longp);
747     SSPUSHUV(SAVEt_LONG);
748 }
749
750 void
751 Perl_save_nogv(pTHX_ GV *gv)
752 {
753     PERL_ARGS_ASSERT_SAVE_NOGV;
754
755     SSCHECK(2);
756     SSPUSHPTR(gv);
757     SSPUSHUV(SAVEt_NSTAB);
758 }
759
760 void
761 Perl_save_list(pTHX_ SV **sarg, I32 maxsarg)
762 {
763     I32 i;
764
765     PERL_ARGS_ASSERT_SAVE_LIST;
766
767     for (i = 1; i <= maxsarg; i++) {
768         SV *sv;
769         SvGETMAGIC(sarg[i]);
770         sv = newSV(0);
771         sv_setsv_nomg(sv,sarg[i]);
772         SSCHECK(3);
773         SSPUSHPTR(sarg[i]);             /* remember the pointer */
774         SSPUSHPTR(sv);                  /* remember the value */
775         SSPUSHUV(SAVEt_ITEM);
776     }
777 }
778
779 /*
780 =for apidoc sv_usepvn_mg
781
782 Like C<sv_usepvn>, but also handles 'set' magic.
783
784 =cut
785 */
786
787 void
788 Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len)
789 {
790     PERL_ARGS_ASSERT_SV_USEPVN_MG;
791
792     sv_usepvn_flags(sv,ptr,len, SV_SMAGIC);
793 }
794
795 /*
796 =for apidoc sv_usepvn
797
798 Tells an SV to use C<ptr> to find its string value.  Implemented by
799 calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
800 magic.  See C<L</sv_usepvn_flags>>.
801
802 =cut
803 */
804
805 void
806 Perl_sv_usepvn(pTHX_ SV *sv, char *ptr, STRLEN len)
807 {
808     PERL_ARGS_ASSERT_SV_USEPVN;
809
810     sv_usepvn_flags(sv,ptr,len, 0);
811 }
812
813 /*
814 =for apidoc unpack_str
815
816 The engine implementing C<unpack()> Perl function.  Note: parameters C<strbeg>,
817 C<new_s> and C<ocnt> are not used.  This call should not be used, use
818 C<unpackstring> instead.
819
820 =cut */
821
822 SSize_t
823 Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s,
824                 const char *strbeg, const char *strend, char **new_s, I32 ocnt,
825                 U32 flags)
826 {
827     PERL_ARGS_ASSERT_UNPACK_STR;
828
829     PERL_UNUSED_ARG(strbeg);
830     PERL_UNUSED_ARG(new_s);
831     PERL_UNUSED_ARG(ocnt);
832
833     return unpackstring(pat, patend, s, strend, flags);
834 }
835
836 /*
837 =for apidoc pack_cat
838
839 The engine implementing C<pack()> Perl function.  Note: parameters
840 C<next_in_list> and C<flags> are not used.  This call should not be used; use
841 C<packlist> instead.
842
843 =cut
844 */
845
846 void
847 Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
848 {
849     PERL_ARGS_ASSERT_PACK_CAT;
850
851     PERL_UNUSED_ARG(next_in_list);
852     PERL_UNUSED_ARG(flags);
853
854     packlist(cat, pat, patend, beglist, endlist);
855 }
856
857 HE *
858 Perl_hv_store_ent(pTHX_ HV *hv, SV *keysv, SV *val, U32 hash)
859 {
860   return (HE *)hv_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISSTORE, val, hash);
861 }
862
863 bool
864 Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash)
865 {
866     PERL_ARGS_ASSERT_HV_EXISTS_ENT;
867
868     return cBOOL(hv_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISEXISTS, 0, hash));
869 }
870
871 HE *
872 Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, U32 hash)
873 {
874     PERL_ARGS_ASSERT_HV_FETCH_ENT;
875
876     return (HE *)hv_common(hv, keysv, NULL, 0, 0, 
877                      (lval ? HV_FETCH_LVALUE : 0), NULL, hash);
878 }
879
880 SV *
881 Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash)
882 {
883     PERL_ARGS_ASSERT_HV_DELETE_ENT;
884
885     return MUTABLE_SV(hv_common(hv, keysv, NULL, 0, 0, flags | HV_DELETE, NULL,
886                                 hash));
887 }
888
889 SV**
890 Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val, U32 hash,
891                     int flags)
892 {
893     return (SV**) hv_common(hv, NULL, key, klen, flags,
894                             (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
895 }
896
897 SV**
898 Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen_i32, SV *val, U32 hash)
899 {
900     STRLEN klen;
901     int flags;
902
903     if (klen_i32 < 0) {
904         klen = -klen_i32;
905         flags = HVhek_UTF8;
906     } else {
907         klen = klen_i32;
908         flags = 0;
909     }
910     return (SV **) hv_common(hv, NULL, key, klen, flags,
911                              (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
912 }
913
914 bool
915 Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen_i32)
916 {
917     STRLEN klen;
918     int flags;
919
920     PERL_ARGS_ASSERT_HV_EXISTS;
921
922     if (klen_i32 < 0) {
923         klen = -klen_i32;
924         flags = HVhek_UTF8;
925     } else {
926         klen = klen_i32;
927         flags = 0;
928     }
929     return cBOOL(hv_common(hv, NULL, key, klen, flags, HV_FETCH_ISEXISTS, 0, 0));
930 }
931
932 SV**
933 Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 lval)
934 {
935     STRLEN klen;
936     int flags;
937
938     PERL_ARGS_ASSERT_HV_FETCH;
939
940     if (klen_i32 < 0) {
941         klen = -klen_i32;
942         flags = HVhek_UTF8;
943     } else {
944         klen = klen_i32;
945         flags = 0;
946     }
947     return (SV **) hv_common(hv, NULL, key, klen, flags,
948                              lval ? (HV_FETCH_JUST_SV | HV_FETCH_LVALUE)
949                              : HV_FETCH_JUST_SV, NULL, 0);
950 }
951
952 SV *
953 Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 flags)
954 {
955     STRLEN klen;
956     int k_flags;
957
958     PERL_ARGS_ASSERT_HV_DELETE;
959
960     if (klen_i32 < 0) {
961         klen = -klen_i32;
962         k_flags = HVhek_UTF8;
963     } else {
964         klen = klen_i32;
965         k_flags = 0;
966     }
967     return MUTABLE_SV(hv_common(hv, NULL, key, klen, k_flags, flags | HV_DELETE,
968                                 NULL, 0));
969 }
970
971 AV *
972 Perl_newAV(pTHX)
973 {
974     return MUTABLE_AV(newSV_type(SVt_PVAV));
975     /* sv_upgrade does AvREAL_only():
976     AvALLOC(av) = 0;
977     AvARRAY(av) = NULL;
978     AvMAX(av) = AvFILLp(av) = -1; */
979 }
980
981 HV *
982 Perl_newHV(pTHX)
983 {
984     HV * const hv = MUTABLE_HV(newSV_type(SVt_PVHV));
985     assert(!SvOK(hv));
986
987     return hv;
988 }
989
990 void
991 Perl_sv_insert(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, 
992               const char *const little, const STRLEN littlelen)
993 {
994     PERL_ARGS_ASSERT_SV_INSERT;
995     sv_insert_flags(bigstr, offset, len, little, littlelen, SV_GMAGIC);
996 }
997
998 void
999 Perl_save_freesv(pTHX_ SV *sv)
1000 {
1001     save_freesv(sv);
1002 }
1003
1004 void
1005 Perl_save_mortalizesv(pTHX_ SV *sv)
1006 {
1007     PERL_ARGS_ASSERT_SAVE_MORTALIZESV;
1008
1009     save_mortalizesv(sv);
1010 }
1011
1012 void
1013 Perl_save_freeop(pTHX_ OP *o)
1014 {
1015     save_freeop(o);
1016 }
1017
1018 void
1019 Perl_save_freepv(pTHX_ char *pv)
1020 {
1021     save_freepv(pv);
1022 }
1023
1024 void
1025 Perl_save_op(pTHX)
1026 {
1027     save_op();
1028 }
1029
1030 #ifdef PERL_DONT_CREATE_GVSV
1031 GV *
1032 Perl_gv_SVadd(pTHX_ GV *gv)
1033 {
1034     return gv_SVadd(gv);
1035 }
1036 #endif
1037
1038 GV *
1039 Perl_gv_AVadd(pTHX_ GV *gv)
1040 {
1041     return gv_AVadd(gv);
1042 }
1043
1044 GV *
1045 Perl_gv_HVadd(pTHX_ GV *gv)
1046 {
1047     return gv_HVadd(gv);
1048 }
1049
1050 GV *
1051 Perl_gv_IOadd(pTHX_ GV *gv)
1052 {
1053     return gv_IOadd(gv);
1054 }
1055
1056 IO *
1057 Perl_newIO(pTHX)
1058 {
1059     return MUTABLE_IO(newSV_type(SVt_PVIO));
1060 }
1061
1062 I32
1063 Perl_my_stat(pTHX)
1064 {
1065     return my_stat_flags(SV_GMAGIC);
1066 }
1067
1068 I32
1069 Perl_my_lstat(pTHX)
1070 {
1071     return my_lstat_flags(SV_GMAGIC);
1072 }
1073
1074 I32
1075 Perl_sv_eq(pTHX_ SV *sv1, SV *sv2)
1076 {
1077     return sv_eq_flags(sv1, sv2, SV_GMAGIC);
1078 }
1079
1080 #ifdef USE_LOCALE_COLLATE
1081 char *
1082 Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
1083 {
1084     PERL_ARGS_ASSERT_SV_COLLXFRM;
1085     return sv_collxfrm_flags(sv, nxp, SV_GMAGIC);
1086 }
1087
1088 char *
1089 Perl_mem_collxfrm(pTHX_ const char *input_string, STRLEN len, STRLEN *xlen)
1090 {
1091     /* This function is retained for compatibility in case someone outside core
1092      * is using this (but it is undocumented) */
1093
1094     PERL_ARGS_ASSERT_MEM_COLLXFRM;
1095
1096     return _mem_collxfrm(input_string, len, xlen, FALSE);
1097 }
1098
1099 #endif
1100
1101 bool
1102 Perl_sv_2bool(pTHX_ SV *const sv)
1103 {
1104     PERL_ARGS_ASSERT_SV_2BOOL;
1105     return sv_2bool_flags(sv, SV_GMAGIC);
1106 }
1107
1108
1109 /*
1110 =for apidoc custom_op_name
1111 Return the name for a given custom op.  This was once used by the C<OP_NAME>
1112 macro, but is no longer: it has only been kept for compatibility, and
1113 should not be used.
1114
1115 =for apidoc custom_op_desc
1116 Return the description of a given custom op.  This was once used by the
1117 C<OP_DESC> macro, but is no longer: it has only been kept for
1118 compatibility, and should not be used.
1119
1120 =cut
1121 */
1122
1123 const char*
1124 Perl_custom_op_name(pTHX_ const OP* o)
1125 {
1126     PERL_ARGS_ASSERT_CUSTOM_OP_NAME;
1127     return XopENTRYCUSTOM(o, xop_name);
1128 }
1129
1130 const char*
1131 Perl_custom_op_desc(pTHX_ const OP* o)
1132 {
1133     PERL_ARGS_ASSERT_CUSTOM_OP_DESC;
1134     return XopENTRYCUSTOM(o, xop_desc);
1135 }
1136
1137 CV *
1138 Perl_newSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *block)
1139 {
1140     return newATTRSUB(floor, o, proto, NULL, block);
1141 }
1142
1143 SV *
1144 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
1145 {
1146     return Perl_sv_mortalcopy_flags(aTHX_ oldstr, SV_GMAGIC);
1147 }
1148
1149 void
1150 Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
1151 {
1152     PERL_ARGS_ASSERT_SV_COPYPV;
1153
1154     sv_copypv_flags(dsv, ssv, SV_GMAGIC);
1155 }
1156
1157 UV      /* Made into a function, so can be deprecated */
1158 NATIVE_TO_NEED(const UV enc, const UV ch)
1159 {
1160     PERL_UNUSED_ARG(enc);
1161     return ch;
1162 }
1163
1164 UV      /* Made into a function, so can be deprecated */
1165 ASCII_TO_NEED(const UV enc, const UV ch)
1166 {
1167     PERL_UNUSED_ARG(enc);
1168     return ch;
1169 }
1170
1171 bool
1172 Perl_is_uni_alnum(pTHX_ UV c)
1173 {
1174     return isWORDCHAR_uni(c);
1175 }
1176
1177 bool
1178 Perl_is_uni_alnumc(pTHX_ UV c)
1179 {
1180     return isALNUM_uni(c);
1181 }
1182
1183 bool
1184 Perl_is_uni_alpha(pTHX_ UV c)
1185 {
1186     return isALPHA_uni(c);
1187 }
1188
1189 bool
1190 Perl_is_uni_ascii(pTHX_ UV c)
1191 {
1192     PERL_UNUSED_CONTEXT;
1193     return isASCII_uni(c);
1194 }
1195
1196 bool
1197 Perl_is_uni_blank(pTHX_ UV c)
1198 {
1199     PERL_UNUSED_CONTEXT;
1200     return isBLANK_uni(c);
1201 }
1202
1203 bool
1204 Perl_is_uni_space(pTHX_ UV c)
1205 {
1206     PERL_UNUSED_CONTEXT;
1207     return isSPACE_uni(c);
1208 }
1209
1210 bool
1211 Perl_is_uni_digit(pTHX_ UV c)
1212 {
1213     PERL_UNUSED_CONTEXT;
1214     return isDIGIT_uni(c);
1215 }
1216
1217 bool
1218 Perl_is_uni_upper(pTHX_ UV c)
1219 {
1220     PERL_UNUSED_CONTEXT;
1221     return isUPPER_uni(c);
1222 }
1223
1224 bool
1225 Perl_is_uni_lower(pTHX_ UV c)
1226 {
1227     PERL_UNUSED_CONTEXT;
1228     return isLOWER_uni(c);
1229 }
1230
1231 bool
1232 Perl_is_uni_cntrl(pTHX_ UV c)
1233 {
1234     PERL_UNUSED_CONTEXT;
1235     return isCNTRL_L1(c);
1236 }
1237
1238 bool
1239 Perl_is_uni_graph(pTHX_ UV c)
1240 {
1241     PERL_UNUSED_CONTEXT;
1242     return isGRAPH_uni(c);
1243 }
1244
1245 bool
1246 Perl_is_uni_print(pTHX_ UV c)
1247 {
1248     PERL_UNUSED_CONTEXT;
1249     return isPRINT_uni(c);
1250 }
1251
1252 bool
1253 Perl_is_uni_punct(pTHX_ UV c)
1254 {
1255     PERL_UNUSED_CONTEXT;
1256     return isPUNCT_uni(c);
1257 }
1258
1259 bool
1260 Perl_is_uni_xdigit(pTHX_ UV c)
1261 {
1262     PERL_UNUSED_CONTEXT;
1263     return isXDIGIT_uni(c);
1264 }
1265
1266 bool
1267 Perl_is_uni_alnum_lc(pTHX_ UV c)
1268 {
1269     PERL_UNUSED_CONTEXT;
1270     return isWORDCHAR_LC_uvchr(c);
1271 }
1272
1273 bool
1274 Perl_is_uni_alnumc_lc(pTHX_ UV c)
1275 {
1276     PERL_UNUSED_CONTEXT;
1277     return isALPHANUMERIC_LC_uvchr(c);
1278 }
1279
1280 bool
1281 Perl_is_uni_idfirst_lc(pTHX_ UV c)
1282 {
1283     PERL_UNUSED_CONTEXT;
1284     /* XXX Should probably be something that resolves to the old IDFIRST, but
1285      * this function is deprecated, so not bothering */
1286     return isIDFIRST_LC_uvchr(c);
1287 }
1288
1289 bool
1290 Perl_is_uni_alpha_lc(pTHX_ UV c)
1291 {
1292     PERL_UNUSED_CONTEXT;
1293     return isALPHA_LC_uvchr(c);
1294 }
1295
1296 bool
1297 Perl_is_uni_ascii_lc(pTHX_ UV c)
1298 {
1299     PERL_UNUSED_CONTEXT;
1300     return isASCII_LC_uvchr(c);
1301 }
1302
1303 bool
1304 Perl_is_uni_blank_lc(pTHX_ UV c)
1305 {
1306     PERL_UNUSED_CONTEXT;
1307     return isBLANK_LC_uvchr(c);
1308 }
1309
1310 bool
1311 Perl_is_uni_space_lc(pTHX_ UV c)
1312 {
1313     PERL_UNUSED_CONTEXT;
1314     return isSPACE_LC_uvchr(c);
1315 }
1316
1317 bool
1318 Perl_is_uni_digit_lc(pTHX_ UV c)
1319 {
1320     return isDIGIT_LC_uvchr(c);
1321 }
1322
1323 bool
1324 Perl_is_uni_idfirst(pTHX_ UV c)
1325 {
1326     U8 tmpbuf[UTF8_MAXBYTES+1];
1327     uvchr_to_utf8(tmpbuf, c);
1328     return _is_utf8_idstart(tmpbuf);
1329 }
1330
1331 bool
1332 Perl_is_uni_upper_lc(pTHX_ UV c)
1333 {
1334     return isUPPER_LC_uvchr(c);
1335 }
1336
1337 bool
1338 Perl_is_uni_lower_lc(pTHX_ UV c)
1339 {
1340     return isLOWER_LC_uvchr(c);
1341 }
1342
1343 bool
1344 Perl_is_uni_cntrl_lc(pTHX_ UV c)
1345 {
1346     return isCNTRL_LC_uvchr(c);
1347 }
1348
1349 bool
1350 Perl_is_uni_graph_lc(pTHX_ UV c)
1351 {
1352     return isGRAPH_LC_uvchr(c);
1353 }
1354
1355 bool
1356 Perl_is_uni_print_lc(pTHX_ UV c)
1357 {
1358     return isPRINT_LC_uvchr(c);
1359 }
1360
1361 bool
1362 Perl_is_uni_punct_lc(pTHX_ UV c)
1363 {
1364     return isPUNCT_LC_uvchr(c);
1365 }
1366
1367 bool
1368 Perl_is_uni_xdigit_lc(pTHX_ UV c)
1369 {
1370     return isXDIGIT_LC_uvchr(c);
1371 }
1372
1373 U32
1374 Perl_to_uni_upper_lc(pTHX_ U32 c)
1375 {
1376     /* XXX returns only the first character -- do not use XXX */
1377     /* XXX no locale support yet */
1378     STRLEN len;
1379     U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1380     return (U32)to_uni_upper(c, tmpbuf, &len);
1381 }
1382
1383 U32
1384 Perl_to_uni_title_lc(pTHX_ U32 c)
1385 {
1386     /* XXX returns only the first character XXX -- do not use XXX */
1387     /* XXX no locale support yet */
1388     STRLEN len;
1389     U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1390     return (U32)to_uni_title(c, tmpbuf, &len);
1391 }
1392
1393 U32
1394 Perl_to_uni_lower_lc(pTHX_ U32 c)
1395 {
1396     /* XXX returns only the first character -- do not use XXX */
1397     /* XXX no locale support yet */
1398     STRLEN len;
1399     U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
1400     return (U32)to_uni_lower(c, tmpbuf, &len);
1401 }
1402
1403 /*
1404 =for apidoc is_utf8_char
1405
1406 Tests if some arbitrary number of bytes begins in a valid UTF-8
1407 character.  Note that an INVARIANT (i.e. ASCII on non-EBCDIC machines)
1408 character is a valid UTF-8 character.  The actual number of bytes in the UTF-8
1409 character will be returned if it is valid, otherwise 0.
1410
1411 This function is deprecated due to the possibility that malformed input could
1412 cause reading beyond the end of the input buffer.  Use L</isUTF8_CHAR>
1413 instead.
1414
1415 =cut */
1416
1417 STRLEN
1418 Perl_is_utf8_char(const U8 *s)
1419 {
1420     PERL_ARGS_ASSERT_IS_UTF8_CHAR;
1421
1422     /* Assumes we have enough space, which is why this is deprecated */
1423     return isUTF8_CHAR(s, s + UTF8SKIP(s));
1424 }
1425
1426 /*
1427 =for apidoc is_utf8_char_buf
1428
1429 This is identical to the macro L</isUTF8_CHAR>.
1430
1431 =cut */
1432
1433 STRLEN
1434 Perl_is_utf8_char_buf(const U8 *buf, const U8* buf_end)
1435 {
1436
1437     PERL_ARGS_ASSERT_IS_UTF8_CHAR_BUF;
1438
1439     return isUTF8_CHAR(buf, buf_end);
1440 }
1441
1442 /* DEPRECATED!
1443  * Like L</utf8_to_uvuni_buf>(), but should only be called when it is known that
1444  * there are no malformations in the input UTF-8 string C<s>.  Surrogates,
1445  * non-character code points, and non-Unicode code points are allowed */
1446
1447 UV
1448 Perl_valid_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
1449 {
1450     PERL_UNUSED_CONTEXT;
1451     PERL_ARGS_ASSERT_VALID_UTF8_TO_UVUNI;
1452
1453     return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
1454 }
1455
1456 /*
1457 =for apidoc utf8_to_uvuni
1458
1459 Returns the Unicode code point of the first character in the string C<s>
1460 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
1461 length, in bytes, of that character.
1462
1463 Some, but not all, UTF-8 malformations are detected, and in fact, some
1464 malformed input could cause reading beyond the end of the input buffer, which
1465 is one reason why this function is deprecated.  The other is that only in
1466 extremely limited circumstances should the Unicode versus native code point be
1467 of any interest to you.  See L</utf8_to_uvuni_buf> for alternatives.
1468
1469 If C<s> points to one of the detected malformations, and UTF8 warnings are
1470 enabled, zero is returned and C<*retlen> is set (if C<retlen> doesn't point to
1471 NULL) to -1.  If those warnings are off, the computed value if well-defined (or
1472 the Unicode REPLACEMENT CHARACTER, if not) is silently returned, and C<*retlen>
1473 is set (if C<retlen> isn't NULL) so that (S<C<s> + C<*retlen>>) is the
1474 next possible position in C<s> that could begin a non-malformed character.
1475 See L</utf8n_to_uvchr> for details on when the REPLACEMENT CHARACTER is returned.
1476
1477 =cut
1478 */
1479
1480 UV
1481 Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
1482 {
1483     PERL_UNUSED_CONTEXT;
1484     PERL_ARGS_ASSERT_UTF8_TO_UVUNI;
1485
1486     return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
1487 }
1488
1489 /*
1490 =for apidoc Am|HV *|pad_compname_type|PADOFFSET po
1491
1492 Looks up the type of the lexical variable at position C<po> in the
1493 currently-compiling pad.  If the variable is typed, the stash of the
1494 class to which it is typed is returned.  If not, C<NULL> is returned.
1495
1496 =cut
1497 */
1498
1499 HV *
1500 Perl_pad_compname_type(pTHX_ const PADOFFSET po)
1501 {
1502     return PAD_COMPNAME_TYPE(po);
1503 }
1504
1505 /* return ptr to little string in big string, NULL if not found */
1506 /* The original version of this routine was donated by Corey Satten. */
1507
1508 char *
1509 Perl_instr(const char *big, const char *little)
1510 {
1511     PERL_ARGS_ASSERT_INSTR;
1512
1513     return instr((char *) big, (char *) little);
1514 }
1515
1516 #endif /* NO_MATHOMS */
1517
1518 /*
1519  * ex: set ts=8 sts=4 sw=4 et:
1520  */