This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Take splint into account for PERL_UNUSED_ARG (patch by Jarkko)
[perl5.git] / mathoms.c
CommitLineData
7ee2227d
SP
1/* mathoms.c
2 *
54ca4ee7 3 * Copyright (C) 2005, 2006, by Larry Wall and others
7ee2227d
SP
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
8 */
9
10/*
11 * "Anything that Hobbits had no immediate use for, but were unwilling to
12 * throw away, they called a mathom. Their dwellings were apt to become
13 * rather crowded with mathoms, and many of the presents that passed from
14 * hand to hand were of that sort."
15 */
16
20fac488
GA
17#ifndef NO_MATHOMS
18
7ee2227d
SP
19/*
20 * This file contains mathoms, various binary artifacts from previous
f2f0f092
NC
21 * versions of Perl. For binary or source compatibility reasons, though,
22 * we cannot completely remove them from the core code.
7ee2227d
SP
23 *
24 * SMP - Oct. 24, 2005
25 *
26 */
27
28#include "EXTERN.h"
29#define PERL_IN_MATHOMS_C
30#include "perl.h"
31
32/* ref() is now a macro using Perl_doref;
33 * this version provided for binary compatibility only.
34 */
35OP *
36Perl_ref(pTHX_ OP *o, I32 type)
37{
38 return doref(o, type, TRUE);
39}
40
aae9cea0 41/*
174c73e3
NC
42=for apidoc sv_unref
43
44Unsets the RV status of the SV, and decrements the reference count of
45whatever was being referenced by the RV. This can almost be thought of
46as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
47being zero. See C<SvROK_off>.
48
49=cut
50*/
51
52void
53Perl_sv_unref(pTHX_ SV *sv)
54{
55 sv_unref_flags(sv, 0);
56}
57
58/*
aae9cea0
NC
59=for apidoc sv_taint
60
61Taint an SV. Use C<SvTAINTED_on> instead.
62=cut
63*/
64
65void
66Perl_sv_taint(pTHX_ SV *sv)
67{
a0714e2c 68 sv_magic((sv), NULL, PERL_MAGIC_taint, NULL, 0);
aae9cea0
NC
69}
70
7ee2227d
SP
71/* sv_2iv() is now a macro using Perl_sv_2iv_flags();
72 * this function provided for binary compatibility only
73 */
74
75IV
76Perl_sv_2iv(pTHX_ register SV *sv)
77{
78 return sv_2iv_flags(sv, SV_GMAGIC);
79}
80
81/* sv_2uv() is now a macro using Perl_sv_2uv_flags();
82 * this function provided for binary compatibility only
83 */
84
85UV
86Perl_sv_2uv(pTHX_ register SV *sv)
87{
88 return sv_2uv_flags(sv, SV_GMAGIC);
89}
90
91/* sv_2pv() is now a macro using Perl_sv_2pv_flags();
92 * this function provided for binary compatibility only
93 */
94
95char *
96Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
97{
98 return sv_2pv_flags(sv, lp, SV_GMAGIC);
99}
100
5abc721d 101/*
cb2f1b7b
NC
102=for apidoc sv_2pv_nolen
103
104Like C<sv_2pv()>, but doesn't return the length too. You should usually
105use the macro wrapper C<SvPV_nolen(sv)> instead.
106=cut
107*/
108
109char *
110Perl_sv_2pv_nolen(pTHX_ register SV *sv)
111{
112 return sv_2pv(sv, 0);
113}
114
115/*
116=for apidoc sv_2pvbyte_nolen
117
118Return a pointer to the byte-encoded representation of the SV.
119May cause the SV to be downgraded from UTF-8 as a side-effect.
120
121Usually accessed via the C<SvPVbyte_nolen> macro.
122
123=cut
124*/
125
126char *
127Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
128{
129 return sv_2pvbyte(sv, 0);
130}
131
132/*
133=for apidoc sv_2pvutf8_nolen
134
135Return a pointer to the UTF-8-encoded representation of the SV.
136May cause the SV to be upgraded to UTF-8 as a side-effect.
137
138Usually accessed via the C<SvPVutf8_nolen> macro.
139
140=cut
141*/
142
143char *
144Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
145{
146 return sv_2pvutf8(sv, 0);
147}
148
149/*
5abc721d
NC
150=for apidoc sv_force_normal
151
152Undo various types of fakery on an SV: if the PV is a shared string, make
153a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
154an xpvmg. See also C<sv_force_normal_flags>.
155
156=cut
157*/
158
159void
160Perl_sv_force_normal(pTHX_ register SV *sv)
161{
162 sv_force_normal_flags(sv, 0);
163}
7ee2227d
SP
164
165/* sv_setsv() is now a macro using Perl_sv_setsv_flags();
166 * this function provided for binary compatibility only
167 */
168
169void
170Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
171{
172 sv_setsv_flags(dstr, sstr, SV_GMAGIC);
173}
174
175/* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
176 * this function provided for binary compatibility only
177 */
178
179void
180Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
181{
182 sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
183}
184
b347df82
NC
185/*
186=for apidoc sv_catpvn_mg
187
188Like C<sv_catpvn>, but also handles 'set' magic.
189
190=cut
191*/
192
193void
194Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
195{
196 sv_catpvn_flags(sv,ptr,len,SV_GMAGIC|SV_SMAGIC);
197}
198
7ee2227d
SP
199/* sv_catsv() is now a macro using Perl_sv_catsv_flags();
200 * this function provided for binary compatibility only
201 */
202
203void
204Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
205{
206 sv_catsv_flags(dstr, sstr, SV_GMAGIC);
207}
208
0feed65a 209/*
b347df82
NC
210=for apidoc sv_catsv_mg
211
212Like C<sv_catsv>, but also handles 'set' magic.
213
214=cut
215*/
216
217void
218Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
219{
220 sv_catsv_flags(dsv,ssv,SV_GMAGIC|SV_SMAGIC);
221}
222
223/*
0feed65a
NC
224=for apidoc sv_iv
225
226A private implementation of the C<SvIVx> macro for compilers which can't
227cope with complex macro expressions. Always use the macro instead.
228
229=cut
230*/
231
232IV
233Perl_sv_iv(pTHX_ register SV *sv)
234{
235 if (SvIOK(sv)) {
236 if (SvIsUV(sv))
237 return (IV)SvUVX(sv);
238 return SvIVX(sv);
239 }
240 return sv_2iv(sv);
241}
242
243/*
244=for apidoc sv_uv
245
246A private implementation of the C<SvUVx> macro for compilers which can't
247cope with complex macro expressions. Always use the macro instead.
248
249=cut
250*/
251
252UV
253Perl_sv_uv(pTHX_ register SV *sv)
254{
255 if (SvIOK(sv)) {
256 if (SvIsUV(sv))
257 return SvUVX(sv);
258 return (UV)SvIVX(sv);
259 }
260 return sv_2uv(sv);
261}
262
263/*
264=for apidoc sv_nv
265
266A private implementation of the C<SvNVx> macro for compilers which can't
267cope with complex macro expressions. Always use the macro instead.
268
269=cut
270*/
271
272NV
273Perl_sv_nv(pTHX_ register SV *sv)
274{
275 if (SvNOK(sv))
276 return SvNVX(sv);
277 return sv_2nv(sv);
278}
279
280/*
281=for apidoc sv_pv
282
283Use the C<SvPV_nolen> macro instead
284
285=for apidoc sv_pvn
286
287A private implementation of the C<SvPV> macro for compilers which can't
288cope with complex macro expressions. Always use the macro instead.
289
290=cut
291*/
292
293char *
294Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
295{
296 if (SvPOK(sv)) {
297 *lp = SvCUR(sv);
298 return SvPVX(sv);
299 }
300 return sv_2pv(sv, lp);
301}
302
303
304char *
305Perl_sv_pvn_nomg(pTHX_ register SV *sv, STRLEN *lp)
306{
307 if (SvPOK(sv)) {
308 *lp = SvCUR(sv);
309 return SvPVX(sv);
310 }
311 return sv_2pv_flags(sv, lp, 0);
312}
313
7ee2227d
SP
314/* sv_pv() is now a macro using SvPV_nolen();
315 * this function provided for binary compatibility only
316 */
317
318char *
319Perl_sv_pv(pTHX_ SV *sv)
320{
321 if (SvPOK(sv))
322 return SvPVX(sv);
323
324 return sv_2pv(sv, 0);
325}
326
327/* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
328 * this function provided for binary compatibility only
329 */
330
331char *
332Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
333{
334 return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
335}
336
337/* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
338 * this function provided for binary compatibility only
339 */
340
341char *
342Perl_sv_pvbyte(pTHX_ SV *sv)
343{
344 sv_utf8_downgrade(sv,0);
345 return sv_pv(sv);
346}
347
0feed65a
NC
348/*
349=for apidoc sv_pvbyte
350
351Use C<SvPVbyte_nolen> instead.
352
353=for apidoc sv_pvbyten
354
355A private implementation of the C<SvPVbyte> macro for compilers
356which can't cope with complex macro expressions. Always use the macro
357instead.
358
359=cut
360*/
361
362char *
363Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
364{
365 sv_utf8_downgrade(sv,0);
366 return sv_pvn(sv,lp);
367}
368
7ee2227d
SP
369/* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
370 * this function provided for binary compatibility only
371 */
372
373char *
374Perl_sv_pvutf8(pTHX_ SV *sv)
375{
376 sv_utf8_upgrade(sv);
377 return sv_pv(sv);
378}
379
0feed65a
NC
380/*
381=for apidoc sv_pvutf8
382
383Use the C<SvPVutf8_nolen> macro instead
384
385=for apidoc sv_pvutf8n
386
387A private implementation of the C<SvPVutf8> macro for compilers
388which can't cope with complex macro expressions. Always use the macro
389instead.
390
391=cut
392*/
393
394char *
395Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
396{
397 sv_utf8_upgrade(sv);
398 return sv_pvn(sv,lp);
399}
400
205c02c2
NC
401/* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
402 * this function provided for binary compatibility only
403 */
404
405STRLEN
406Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
407{
408 return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
409}
410
7ee2227d
SP
411int
412Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
413{
414 dTHXs;
415 va_list(arglist);
416 va_start(arglist, format);
417 return PerlIO_vprintf(stream, format, arglist);
418}
419
420int
421Perl_printf_nocontext(const char *format, ...)
422{
423 dTHX;
424 va_list(arglist);
425 va_start(arglist, format);
426 return PerlIO_vprintf(PerlIO_stdout(), format, arglist);
427}
428
429#if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
430/*
431 * This hack is to force load of "huge" support from libm.a
432 * So it is in perl for (say) POSIX to use.
433 * Needed for SunOS with Sun's 'acc' for example.
434 */
435NV
436Perl_huge(void)
437{
c773ee7a 438# if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
7ee2227d 439 return HUGE_VALL;
c773ee7a 440# else
7ee2227d 441 return HUGE_VAL;
c773ee7a 442# endif
7ee2227d
SP
443}
444#endif
445
f2f0f092
NC
446/* compatibility with versions <= 5.003. */
447void
448Perl_gv_fullname(pTHX_ SV *sv, const GV *gv)
449{
450 gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
451}
452
453/* compatibility with versions <= 5.003. */
454void
455Perl_gv_efullname(pTHX_ SV *sv, const GV *gv)
456{
457 gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
458}
459
2674aeec
NC
460void
461Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
462{
463 gv_fullname4(sv, gv, prefix, TRUE);
464}
465
466void
467Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
468{
469 gv_efullname4(sv, gv, prefix, TRUE);
470}
471
887986eb
NC
472/*
473=for apidoc gv_fetchmethod
474
475See L<gv_fetchmethod_autoload>.
476
477=cut
478*/
479
480GV *
481Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
482{
483 return gv_fetchmethod_autoload(stash, name, TRUE);
484}
485
7a7b9979
NC
486HE *
487Perl_hv_iternext(pTHX_ HV *hv)
488{
489 return hv_iternext_flags(hv, 0);
490}
491
bc5cdc23
NC
492void
493Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
494{
bd61b366 495 sv_magic((SV*)hv, (SV*)gv, how, NULL, 0);
bc5cdc23
NC
496}
497
498#if 0 /* use the macro from hv.h instead */
499
500char*
501Perl_sharepvn(pTHX_ const char *sv, I32 len, U32 hash)
502{
503 return HEK_KEY(share_hek(sv, len, hash));
504}
505
506#endif
507
b966a812
SP
508AV *
509Perl_av_fake(pTHX_ register I32 size, register SV **strp)
510{
511 register SV** ary;
561b68a9 512 register AV * const av = (AV*)newSV(0);
b966a812
SP
513
514 sv_upgrade((SV *)av, SVt_PVAV);
515 Newx(ary,size+1,SV*);
516 AvALLOC(av) = ary;
517 Copy(strp,ary,size,SV*);
518 AvREIFY_only(av);
519 SvPV_set(av, (char*)ary);
520 AvFILLp(av) = size - 1;
521 AvMAX(av) = size - 1;
522 while (size--) {
523 assert (*strp);
524 SvTEMP_off(*strp);
525 strp++;
526 }
527 return av;
528}
529
34d367cd 530bool
e4dba786
NC
531Perl_do_open(pTHX_ GV *gv, register const char *name, I32 len, int as_raw,
532 int rawmode, int rawperm, PerlIO *supplied_fp)
533{
534 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
535 supplied_fp, (SV **) NULL, 0);
536}
537
538bool
34d367cd
SP
539Perl_do_open9(pTHX_ GV *gv, register const char *name, I32 len, int
540as_raw,
541 int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
542 I32 num_svs)
543{
544 PERL_UNUSED_ARG(num_svs);
545 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
546 supplied_fp, &svs, 1);
547}
548
549int
550Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
551{
552 /* The old body of this is now in non-LAYER part of perlio.c
553 * This is a stub for any XS code which might have been calling it.
554 */
555 const char *name = ":raw";
556#ifdef PERLIO_USING_CRLF
557 if (!(mode & O_BINARY))
558 name = ":crlf";
559#endif
560 return PerlIO_binmode(aTHX_ fp, iotype, mode, name);
561}
562
a9f96b3f
NC
563#ifndef OS2
564bool
565Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
566{
567 return do_aexec5(really, mark, sp, 0, 0);
568}
569#endif
570
9555a685
NC
571#ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
572bool
573Perl_do_exec(pTHX_ const char *cmd)
574{
575 return do_exec3(cmd,0,0);
576}
577#endif
578
f95f476d
NC
579#ifdef HAS_PIPE
580void
581Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv)
582{
97aff369 583 dVAR;
f95f476d
NC
584 register IO *rstio;
585 register IO *wstio;
586 int fd[2];
587
588 if (!rgv)
589 goto badexit;
590 if (!wgv)
591 goto badexit;
592
593 rstio = GvIOn(rgv);
594 wstio = GvIOn(wgv);
595
596 if (IoIFP(rstio))
597 do_close(rgv,FALSE);
598 if (IoIFP(wstio))
599 do_close(wgv,FALSE);
600
601 if (PerlProc_pipe(fd) < 0)
602 goto badexit;
603 IoIFP(rstio) = PerlIO_fdopen(fd[0], "r"PIPE_OPEN_MODE);
604 IoOFP(wstio) = PerlIO_fdopen(fd[1], "w"PIPE_OPEN_MODE);
605 IoOFP(rstio) = IoIFP(rstio);
606 IoIFP(wstio) = IoOFP(wstio);
607 IoTYPE(rstio) = IoTYPE_RDONLY;
608 IoTYPE(wstio) = IoTYPE_WRONLY;
609 if (!IoIFP(rstio) || !IoOFP(wstio)) {
610 if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
611 else PerlLIO_close(fd[0]);
612 if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
613 else PerlLIO_close(fd[1]);
614 goto badexit;
615 }
616
617 sv_setsv(sv,&PL_sv_yes);
618 return;
619
620badexit:
621 sv_setsv(sv,&PL_sv_undef);
622 return;
623}
624#endif
625
89552e80
NC
626/* Backwards compatibility. */
627int
628Perl_init_i18nl14n(pTHX_ int printwarn)
629{
630 return init_i18nl10n(printwarn);
631}
632
ad5d783e
NC
633/* XXX kept for BINCOMPAT only */
634void
635Perl_save_hints(pTHX)
636{
637 Perl_croak(aTHX_ "internal error: obsolete function save_hints() called");
638}
639
c78ff979
NC
640#if 0
641OP *
642Perl_ck_retarget(pTHX_ OP *o)
643{
644 Perl_croak(aTHX_ "NOT IMPL LINE %d",__LINE__);
645 /* STUB */
646 return o;
647}
648#endif
649
650OP *
651Perl_oopsCV(pTHX_ OP *o)
652{
653 Perl_croak(aTHX_ "NOT IMPL LINE %d",__LINE__);
654 /* STUB */
655 PERL_UNUSED_ARG(o);
656 NORETURN_FUNCTION_END;
657}
658
659PP(pp_padany)
660{
661 DIE(aTHX_ "NOT IMPL LINE %d",__LINE__);
662}
663
664PP(pp_threadsv)
665{
666 DIE(aTHX_ "tried to access per-thread data in non-threaded perl");
667}
668
669PP(pp_mapstart)
670{
671 DIE(aTHX_ "panic: mapstart"); /* uses grepstart */
672}
673
0b612f93
NC
674/* These ops all have the same body as pp_null. */
675PP(pp_scalar)
676{
97aff369 677 dVAR;
0b612f93
NC
678 return NORMAL;
679}
680
681PP(pp_regcmaybe)
682{
97aff369 683 dVAR;
0b612f93
NC
684 return NORMAL;
685}
686
687PP(pp_lineseq)
688{
97aff369 689 dVAR;
0b612f93
NC
690 return NORMAL;
691}
692
693PP(pp_scope)
694{
97aff369 695 dVAR;
0b612f93
NC
696 return NORMAL;
697}
698
699/* Ops that are calls to do_kv. */
700PP(pp_values)
701{
702 return do_kv();
703}
704
705PP(pp_keys)
706{
707 return do_kv();
708}
709
710/* Ops that are simply calls to other ops. */
711PP(pp_dump)
712{
713 return pp_goto();
714 /*NOTREACHED*/
715}
716
717PP(pp_dofile)
718{
719 return pp_require();
720}
721
722PP(pp_dbmclose)
723{
724 return pp_untie();
725}
726
727PP(pp_read)
728{
729 return pp_sysread();
730}
731
732PP(pp_recv)
733{
734 return pp_sysread();
735}
736
737PP(pp_seek)
738{
739 return pp_sysseek();
740}
741
742PP(pp_fcntl)
743{
744 return pp_ioctl();
745}
746
747PP(pp_gsockopt)
748{
749 return pp_ssockopt();
750}
751
752PP(pp_getsockname)
753{
754 return pp_getpeername();
755}
756
757PP(pp_lstat)
758{
759 return pp_stat();
760}
761
762PP(pp_fteowned)
763{
764 return pp_ftrowned();
765}
766
767PP(pp_ftbinary)
768{
769 return pp_fttext();
770}
771
772PP(pp_localtime)
773{
774 return pp_gmtime();
775}
776
777PP(pp_shmget)
778{
779 return pp_semget();
780}
781
782PP(pp_shmctl)
783{
784 return pp_semctl();
785}
786
787PP(pp_shmread)
788{
789 return pp_shmwrite();
790}
791
792PP(pp_msgget)
793{
794 return pp_semget();
795}
796
797PP(pp_msgctl)
798{
799 return pp_semctl();
800}
801
802PP(pp_ghbyname)
803{
804 return pp_ghostent();
805}
806
807PP(pp_ghbyaddr)
808{
809 return pp_ghostent();
810}
811
812PP(pp_gnbyname)
813{
814 return pp_gnetent();
815}
816
817PP(pp_gnbyaddr)
818{
819 return pp_gnetent();
820}
821
822PP(pp_gpbyname)
823{
824 return pp_gprotoent();
825}
826
827PP(pp_gpbynumber)
828{
829 return pp_gprotoent();
830}
831
832PP(pp_gsbyname)
833{
834 return pp_gservent();
835}
836
837PP(pp_gsbyport)
838{
839 return pp_gservent();
840}
841
842PP(pp_gpwnam)
843{
844 return pp_gpwent();
845}
846
847PP(pp_gpwuid)
848{
849 return pp_gpwent();
850}
851
852PP(pp_ggrnam)
853{
854 return pp_ggrent();
855}
856
857PP(pp_ggrgid)
858{
859 return pp_ggrent();
860}
861
957b0e1d
NC
862PP(pp_ftsize)
863{
4992681b 864 return pp_ftis();
957b0e1d
NC
865}
866
867PP(pp_ftmtime)
868{
4992681b 869 return pp_ftis();
957b0e1d
NC
870}
871
872PP(pp_ftatime)
873{
4992681b 874 return pp_ftis();
957b0e1d
NC
875}
876
877PP(pp_ftctime)
878{
4992681b 879 return pp_ftis();
957b0e1d
NC
880}
881
f1cb2d48
NC
882PP(pp_ftzero)
883{
884 return pp_ftrowned();
885}
886
887PP(pp_ftsock)
888{
889 return pp_ftrowned();
890}
891
892PP(pp_ftchr)
893{
894 return pp_ftrowned();
895}
896
897PP(pp_ftblk)
898{
899 return pp_ftrowned();
900}
901
902PP(pp_ftfile)
903{
904 return pp_ftrowned();
905}
906
907PP(pp_ftdir)
908{
909 return pp_ftrowned();
910}
911
912PP(pp_ftpipe)
913{
914 return pp_ftrowned();
915}
916
17ad201a
NC
917PP(pp_ftsuid)
918{
919 return pp_ftrowned();
920}
921
922PP(pp_ftsgid)
923{
924 return pp_ftrowned();
925}
926
927PP(pp_ftsvtx)
928{
929 return pp_ftrowned();
930}
931
605b9385
NC
932PP(pp_unlink)
933{
934 return pp_chown();
935}
936
937PP(pp_chmod)
938{
939 return pp_chown();
940}
941
942PP(pp_utime)
943{
944 return pp_chown();
945}
946
947PP(pp_kill)
948{
949 return pp_chown();
950}
951
ce6987d0
NC
952PP(pp_symlink)
953{
954 return pp_link();
955}
956
af9e49b4
NC
957PP(pp_ftrwrite)
958{
959 return pp_ftrread();
960}
961
962PP(pp_ftrexec)
963{
964 return pp_ftrread();
965}
966
967PP(pp_fteread)
968{
969 return pp_ftrread();
970}
971
972PP(pp_ftewrite)
973{
974 return pp_ftrread();
975}
976
977PP(pp_fteexec)
978{
979 return pp_ftrread();
980}
981
c9f7ac20
NC
982PP(pp_msgsnd)
983{
984 return pp_shmwrite();
985}
986
987PP(pp_msgrcv)
988{
989 return pp_shmwrite();
990}
991
64a1bc8e
NC
992PP(pp_syswrite)
993{
994 return pp_send();
995}
996
ca563b4e
NC
997PP(pp_semop)
998{
999 return pp_shmwrite();
1000}
1001
25a55bd7
SP
1002PP(pp_dor)
1003{
f6a64177 1004 return pp_defined();
25a55bd7
SP
1005}
1006
c960fc3b
SP
1007PP(pp_andassign)
1008{
1009 return pp_and();
1010}
1011
1012PP(pp_orassign)
1013{
1014 return pp_or();
1015}
1016
1017PP(pp_dorassign)
1018{
1019 return pp_defined();
1020}
1021
12e9c124
NC
1022PP(pp_lcfirst)
1023{
1024 return pp_ucfirst();
1025}
1026
afd9910b
NC
1027PP(pp_slt)
1028{
1029 return pp_sle();
1030}
1031
1032PP(pp_sgt)
1033{
1034 return pp_sle();
1035}
1036
1037PP(pp_sge)
1038{
1039 return pp_sle();
1040}
1041
2723d216
NC
1042PP(pp_rindex)
1043{
1044 return pp_index();
1045}
1046
daa2adfd
NC
1047PP(pp_hex)
1048{
1049 return pp_oct();
1050}
1051
789b4bc9
NC
1052PP(pp_pop)
1053{
1054 return pp_shift();
1055}
1056
71302fe3
NC
1057PP(pp_cos)
1058{
1059 return pp_sin();
1060}
1061
1062PP(pp_exp)
1063{
1064 return pp_sin();
1065}
1066
1067PP(pp_log)
1068{
1069 return pp_sin();
1070}
1071
1072PP(pp_sqrt)
1073{
1074 return pp_sin();
1075}
1076
3658c1f1
NC
1077PP(pp_bit_xor)
1078{
1079 return pp_bit_or();
1080}
1081
038e8d3c
NC
1082U8 *
1083Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
1084{
1085 return Perl_uvuni_to_utf8_flags(aTHX_ d, uv, 0);
1086}
1087
814fafa7
NC
1088bool
1089Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **ep)
1090{
1091 return is_utf8_string_loclen(s, len, ep, 0);
1092}
1093
7ee2227d 1094/*
d5b2b27b
NC
1095=for apidoc sv_nolocking
1096
1097Dummy routine which "locks" an SV when there is no locking module present.
1098Exists to avoid test for a NULL function pointer and because it could
1099potentially warn under some level of strict-ness.
1100
1101"Superseded" by sv_nosharing().
1102
1103=cut
1104*/
1105
1106void
1107Perl_sv_nolocking(pTHX_ SV *sv)
1108{
96a5add6 1109 PERL_UNUSED_CONTEXT;
d5b2b27b
NC
1110 PERL_UNUSED_ARG(sv);
1111}
1112
1113
1114/*
1115=for apidoc sv_nounlocking
1116
1117Dummy routine which "unlocks" an SV when there is no locking module present.
1118Exists to avoid test for a NULL function pointer and because it could
1119potentially warn under some level of strict-ness.
1120
1121"Superseded" by sv_nosharing().
1122
1123=cut
1124*/
1125
1126void
1127Perl_sv_nounlocking(pTHX_ SV *sv)
1128{
96a5add6 1129 PERL_UNUSED_CONTEXT;
d5b2b27b
NC
1130 PERL_UNUSED_ARG(sv);
1131}
1132
2053acbf
NC
1133void
1134Perl_save_long(pTHX_ long int *longp)
1135{
1136 dVAR;
1137 SSCHECK(3);
1138 SSPUSHLONG(*longp);
1139 SSPUSHPTR(longp);
1140 SSPUSHINT(SAVEt_LONG);
1141}
1142
1143void
1144Perl_save_I16(pTHX_ I16 *intp)
1145{
1146 dVAR;
1147 SSCHECK(3);
1148 SSPUSHINT(*intp);
1149 SSPUSHPTR(intp);
1150 SSPUSHINT(SAVEt_I16);
1151}
1152
1153void
1154Perl_save_I8(pTHX_ I8 *bytep)
1155{
1156 dVAR;
1157 SSCHECK(3);
1158 SSPUSHINT(*bytep);
1159 SSPUSHPTR(bytep);
1160 SSPUSHINT(SAVEt_I8);
1161}
1162
1163void
1164Perl_save_iv(pTHX_ IV *ivp)
1165{
1166 dVAR;
1167 SSCHECK(3);
1168 SSPUSHIV(*ivp);
1169 SSPUSHPTR(ivp);
1170 SSPUSHINT(SAVEt_IV);
1171}
1172
1173void
1174Perl_save_nogv(pTHX_ GV *gv)
1175{
1176 dVAR;
1177 SSCHECK(2);
1178 SSPUSHPTR(gv);
1179 SSPUSHINT(SAVEt_NSTAB);
1180}
1181
1182void
1183Perl_save_list(pTHX_ register SV **sarg, I32 maxsarg)
1184{
1185 dVAR;
1186 register I32 i;
1187
1188 for (i = 1; i <= maxsarg; i++) {
1189 register SV * const sv = newSV(0);
1190 sv_setsv(sv,sarg[i]);
1191 SSCHECK(3);
1192 SSPUSHPTR(sarg[i]); /* remember the pointer */
1193 SSPUSHPTR(sv); /* remember the value */
1194 SSPUSHINT(SAVEt_ITEM);
1195 }
1196}
1197
1198void
1199Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p)
1200{
1201 dVAR;
1202 SSCHECK(3);
1203 SSPUSHDPTR(f);
1204 SSPUSHPTR(p);
1205 SSPUSHINT(SAVEt_DESTRUCTOR);
1206}
1207
20fac488
GA
1208#endif /* NO_MATHOMS */
1209
d5b2b27b 1210/*
7ee2227d
SP
1211 * Local variables:
1212 * c-indentation-style: bsd
1213 * c-basic-offset: 4
1214 * indent-tabs-mode: t
1215 * End:
1216 *
1217 * ex: set ts=8 sts=4 sw=4 noet:
1218 */