3 * Copyright (C) 2005, 2006, by Larry Wall and others
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.
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."
20 * This file contains mathoms, various binary artifacts from previous
21 * versions of Perl. For binary or source compatibility reasons, though,
22 * we cannot completely remove them from the core code.
29 #define PERL_IN_MATHOMS_C
32 PERL_CALLCONV OP * Perl_ref(pTHX_ OP *o, I32 type);
33 PERL_CALLCONV void Perl_sv_unref(pTHX_ SV *sv);
34 PERL_CALLCONV void Perl_sv_taint(pTHX_ SV *sv);
35 PERL_CALLCONV IV Perl_sv_2iv(pTHX_ register SV *sv);
36 PERL_CALLCONV UV Perl_sv_2uv(pTHX_ register SV *sv);
37 PERL_CALLCONV char * Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp);
38 PERL_CALLCONV char * Perl_sv_2pv_nolen(pTHX_ register SV *sv);
39 PERL_CALLCONV char * Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv);
40 PERL_CALLCONV char * Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv);
41 PERL_CALLCONV void Perl_sv_force_normal(pTHX_ register SV *sv);
42 PERL_CALLCONV void Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr);
43 PERL_CALLCONV void Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen);
44 PERL_CALLCONV void Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len);
45 PERL_CALLCONV void Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr);
46 PERL_CALLCONV void Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv);
47 PERL_CALLCONV char * Perl_sv_pv(pTHX_ SV *sv);
48 PERL_CALLCONV char * Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp);
49 PERL_CALLCONV char * Perl_sv_pvbyte(pTHX_ SV *sv);
50 PERL_CALLCONV char * Perl_sv_pvutf8(pTHX_ SV *sv);
51 PERL_CALLCONV STRLEN Perl_sv_utf8_upgrade(pTHX_ register SV *sv);
52 PERL_CALLCONV NV Perl_huge(void);
53 PERL_CALLCONV void Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix);
54 PERL_CALLCONV void Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix);
55 PERL_CALLCONV GV * Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name);
56 PERL_CALLCONV HE * Perl_hv_iternext(pTHX_ HV *hv);
57 PERL_CALLCONV void Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how);
58 PERL_CALLCONV bool Perl_do_open(pTHX_ GV *gv, register const char *name, I32 len, int as_raw, int rawmode, int rawperm, PerlIO *supplied_fp);
59 PERL_CALLCONV bool Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp);
60 PERL_CALLCONV bool Perl_do_exec(pTHX_ const char *cmd);
61 PERL_CALLCONV U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv);
62 PERL_CALLCONV bool Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **ep);
63 PERL_CALLCONV void Perl_sv_nolocking(pTHX_ SV *sv);
64 PERL_CALLCONV void Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len);
65 PERL_CALLCONV void Perl_sv_usepvn(pTHX_ SV *sv, char *ptr, STRLEN len);
66 PERL_CALLCONV int Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...);
67 PERL_CALLCONV int Perl_printf_nocontext(const char *format, ...);
70 /* ref() is now a macro using Perl_doref;
71 * this version provided for binary compatibility only.
74 Perl_ref(pTHX_ OP *o, I32 type)
76 return doref(o, type, TRUE);
82 Unsets the RV status of the SV, and decrements the reference count of
83 whatever was being referenced by the RV. This can almost be thought of
84 as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
85 being zero. See C<SvROK_off>.
91 Perl_sv_unref(pTHX_ SV *sv)
93 sv_unref_flags(sv, 0);
99 Taint an SV. Use C<SvTAINTED_on> instead.
104 Perl_sv_taint(pTHX_ SV *sv)
106 sv_magic((sv), NULL, PERL_MAGIC_taint, NULL, 0);
109 /* sv_2iv() is now a macro using Perl_sv_2iv_flags();
110 * this function provided for binary compatibility only
114 Perl_sv_2iv(pTHX_ register SV *sv)
116 return sv_2iv_flags(sv, SV_GMAGIC);
119 /* sv_2uv() is now a macro using Perl_sv_2uv_flags();
120 * this function provided for binary compatibility only
124 Perl_sv_2uv(pTHX_ register SV *sv)
126 return sv_2uv_flags(sv, SV_GMAGIC);
129 /* sv_2pv() is now a macro using Perl_sv_2pv_flags();
130 * this function provided for binary compatibility only
134 Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
136 return sv_2pv_flags(sv, lp, SV_GMAGIC);
140 =for apidoc sv_2pv_nolen
142 Like C<sv_2pv()>, but doesn't return the length too. You should usually
143 use the macro wrapper C<SvPV_nolen(sv)> instead.
148 Perl_sv_2pv_nolen(pTHX_ register SV *sv)
150 return sv_2pv(sv, NULL);
154 =for apidoc sv_2pvbyte_nolen
156 Return a pointer to the byte-encoded representation of the SV.
157 May cause the SV to be downgraded from UTF-8 as a side-effect.
159 Usually accessed via the C<SvPVbyte_nolen> macro.
165 Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
167 return sv_2pvbyte(sv, NULL);
171 =for apidoc sv_2pvutf8_nolen
173 Return a pointer to the UTF-8-encoded representation of the SV.
174 May cause the SV to be upgraded to UTF-8 as a side-effect.
176 Usually accessed via the C<SvPVutf8_nolen> macro.
182 Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
184 return sv_2pvutf8(sv, NULL);
188 =for apidoc sv_force_normal
190 Undo various types of fakery on an SV: if the PV is a shared string, make
191 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
192 an xpvmg. See also C<sv_force_normal_flags>.
198 Perl_sv_force_normal(pTHX_ register SV *sv)
200 sv_force_normal_flags(sv, 0);
203 /* sv_setsv() is now a macro using Perl_sv_setsv_flags();
204 * this function provided for binary compatibility only
208 Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
210 sv_setsv_flags(dstr, sstr, SV_GMAGIC);
213 /* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
214 * this function provided for binary compatibility only
218 Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
220 sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
224 =for apidoc sv_catpvn_mg
226 Like C<sv_catpvn>, but also handles 'set' magic.
232 Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
234 sv_catpvn_flags(sv,ptr,len,SV_GMAGIC|SV_SMAGIC);
237 /* sv_catsv() is now a macro using Perl_sv_catsv_flags();
238 * this function provided for binary compatibility only
242 Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
244 sv_catsv_flags(dstr, sstr, SV_GMAGIC);
248 =for apidoc sv_catsv_mg
250 Like C<sv_catsv>, but also handles 'set' magic.
256 Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
258 sv_catsv_flags(dsv,ssv,SV_GMAGIC|SV_SMAGIC);
264 A private implementation of the C<SvIVx> macro for compilers which can't
265 cope with complex macro expressions. Always use the macro instead.
271 Perl_sv_iv(pTHX_ register SV *sv)
275 return (IV)SvUVX(sv);
284 A private implementation of the C<SvUVx> macro for compilers which can't
285 cope with complex macro expressions. Always use the macro instead.
291 Perl_sv_uv(pTHX_ register SV *sv)
296 return (UV)SvIVX(sv);
304 A private implementation of the C<SvNVx> macro for compilers which can't
305 cope with complex macro expressions. Always use the macro instead.
311 Perl_sv_nv(pTHX_ register SV *sv)
321 Use the C<SvPV_nolen> macro instead
325 A private implementation of the C<SvPV> macro for compilers which can't
326 cope with complex macro expressions. Always use the macro instead.
332 Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
338 return sv_2pv(sv, lp);
343 Perl_sv_pvn_nomg(pTHX_ register SV *sv, STRLEN *lp)
349 return sv_2pv_flags(sv, lp, 0);
352 /* sv_pv() is now a macro using SvPV_nolen();
353 * this function provided for binary compatibility only
357 Perl_sv_pv(pTHX_ SV *sv)
362 return sv_2pv(sv, NULL);
365 /* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
366 * this function provided for binary compatibility only
370 Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
372 return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
375 /* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
376 * this function provided for binary compatibility only
380 Perl_sv_pvbyte(pTHX_ SV *sv)
382 sv_utf8_downgrade(sv, FALSE);
387 =for apidoc sv_pvbyte
389 Use C<SvPVbyte_nolen> instead.
391 =for apidoc sv_pvbyten
393 A private implementation of the C<SvPVbyte> macro for compilers
394 which can't cope with complex macro expressions. Always use the macro
401 Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
403 sv_utf8_downgrade(sv, FALSE);
404 return sv_pvn(sv,lp);
407 /* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
408 * this function provided for binary compatibility only
412 Perl_sv_pvutf8(pTHX_ SV *sv)
419 =for apidoc sv_pvutf8
421 Use the C<SvPVutf8_nolen> macro instead
423 =for apidoc sv_pvutf8n
425 A private implementation of the C<SvPVutf8> macro for compilers
426 which can't cope with complex macro expressions. Always use the macro
433 Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
436 return sv_pvn(sv,lp);
439 /* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
440 * this function provided for binary compatibility only
444 Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
446 return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
450 Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
454 va_start(arglist, format);
455 return PerlIO_vprintf(stream, format, arglist);
459 Perl_printf_nocontext(const char *format, ...)
463 va_start(arglist, format);
464 return PerlIO_vprintf(PerlIO_stdout(), format, arglist);
467 #if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
469 * This hack is to force load of "huge" support from libm.a
470 * So it is in perl for (say) POSIX to use.
471 * Needed for SunOS with Sun's 'acc' for example.
476 # if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
484 /* compatibility with versions <= 5.003. */
486 Perl_gv_fullname(pTHX_ SV *sv, const GV *gv)
488 gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
491 /* compatibility with versions <= 5.003. */
493 Perl_gv_efullname(pTHX_ SV *sv, const GV *gv)
495 gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
499 Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
501 gv_fullname4(sv, gv, prefix, TRUE);
505 Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
507 gv_efullname4(sv, gv, prefix, TRUE);
511 =for apidoc gv_fetchmethod
513 See L<gv_fetchmethod_autoload>.
519 Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
521 return gv_fetchmethod_autoload(stash, name, TRUE);
525 Perl_hv_iternext(pTHX_ HV *hv)
527 return hv_iternext_flags(hv, 0);
531 Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
533 sv_magic((SV*)hv, (SV*)gv, how, NULL, 0);
537 Perl_av_fake(pTHX_ register I32 size, register SV **strp)
540 register AV * const av = (AV*)newSV_type(SVt_PVAV);
541 Newx(ary,size+1,SV*);
543 Copy(strp,ary,size,SV*);
546 AvFILLp(av) = size - 1;
547 AvMAX(av) = size - 1;
557 Perl_do_open(pTHX_ GV *gv, register const char *name, I32 len, int as_raw,
558 int rawmode, int rawperm, PerlIO *supplied_fp)
560 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
561 supplied_fp, (SV **) NULL, 0);
565 Perl_do_open9(pTHX_ GV *gv, register const char *name, I32 len, int
567 int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
570 PERL_UNUSED_ARG(num_svs);
571 return do_openn(gv, name, len, as_raw, rawmode, rawperm,
572 supplied_fp, &svs, 1);
576 Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
578 /* The old body of this is now in non-LAYER part of perlio.c
579 * This is a stub for any XS code which might have been calling it.
581 const char *name = ":raw";
582 #ifdef PERLIO_USING_CRLF
583 if (!(mode & O_BINARY))
586 return PerlIO_binmode(aTHX_ fp, iotype, mode, name);
591 Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
593 return do_aexec5(really, mark, sp, 0, 0);
597 #ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
599 Perl_do_exec(pTHX_ const char *cmd)
601 return do_exec3(cmd,0,0);
605 /* Backwards compatibility. */
607 Perl_init_i18nl14n(pTHX_ int printwarn)
609 return init_i18nl10n(printwarn);
613 Perl_oopsCV(pTHX_ OP *o)
615 Perl_croak(aTHX_ "NOT IMPL LINE %d",__LINE__);
618 NORETURN_FUNCTION_END;
623 DIE(aTHX_ "NOT IMPL LINE %d",__LINE__);
628 DIE(aTHX_ "panic: mapstart"); /* uses grepstart */
631 /* These ops all have the same body as pp_null. */
656 /* Ops that are calls to do_kv. */
667 /* Ops that are simply calls to other ops. */
706 return pp_ssockopt();
711 return pp_getpeername();
721 return pp_ftrowned();
746 return pp_shmwrite();
761 return pp_ghostent();
766 return pp_ghostent();
781 return pp_gprotoent();
786 return pp_gprotoent();
791 return pp_gservent();
796 return pp_gservent();
841 return pp_ftrowned();
846 return pp_ftrowned();
851 return pp_ftrowned();
856 return pp_ftrowned();
861 return pp_ftrowned();
866 return pp_ftrowned();
871 return pp_ftrowned();
876 return pp_ftrowned();
881 return pp_ftrowned();
886 return pp_ftrowned();
941 return pp_shmwrite();
946 return pp_shmwrite();
956 return pp_shmwrite();
1041 return Perl_pp_rv2av(aTHX);
1045 Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
1047 return Perl_uvuni_to_utf8_flags(aTHX_ d, uv, 0);
1051 Perl_is_utf8_string_loc(pTHX_ const U8 *s, STRLEN len, const U8 **ep)
1053 return is_utf8_string_loclen(s, len, ep, 0);
1057 =for apidoc sv_nolocking
1059 Dummy routine which "locks" an SV when there is no locking module present.
1060 Exists to avoid test for a NULL function pointer and because it could
1061 potentially warn under some level of strict-ness.
1063 "Superseded" by sv_nosharing().
1069 Perl_sv_nolocking(pTHX_ SV *sv)
1071 PERL_UNUSED_CONTEXT;
1072 PERL_UNUSED_ARG(sv);
1077 =for apidoc sv_nounlocking
1079 Dummy routine which "unlocks" an SV when there is no locking module present.
1080 Exists to avoid test for a NULL function pointer and because it could
1081 potentially warn under some level of strict-ness.
1083 "Superseded" by sv_nosharing().
1089 Perl_sv_nounlocking(pTHX_ SV *sv)
1091 PERL_UNUSED_CONTEXT;
1092 PERL_UNUSED_ARG(sv);
1096 Perl_save_long(pTHX_ long int *longp)
1102 SSPUSHINT(SAVEt_LONG);
1106 Perl_save_iv(pTHX_ IV *ivp)
1112 SSPUSHINT(SAVEt_IV);
1116 Perl_save_nogv(pTHX_ GV *gv)
1121 SSPUSHINT(SAVEt_NSTAB);
1125 Perl_save_list(pTHX_ register SV **sarg, I32 maxsarg)
1130 for (i = 1; i <= maxsarg; i++) {
1131 register SV * const sv = newSV(0);
1132 sv_setsv(sv,sarg[i]);
1134 SSPUSHPTR(sarg[i]); /* remember the pointer */
1135 SSPUSHPTR(sv); /* remember the value */
1136 SSPUSHINT(SAVEt_ITEM);
1141 =for apidoc sv_usepvn_mg
1143 Like C<sv_usepvn>, but also handles 'set' magic.
1149 Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len)
1151 sv_usepvn_flags(sv,ptr,len, SV_SMAGIC);
1155 =for apidoc sv_usepvn
1157 Tells an SV to use C<ptr> to find its string value. Implemented by
1158 calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
1159 magic. See C<sv_usepvn_flags>.
1165 Perl_sv_usepvn(pTHX_ SV *sv, char *ptr, STRLEN len)
1167 sv_usepvn_flags(sv,ptr,len, 0);
1171 Perl_cv_ckproto(pTHX_ const CV *cv, const GV *gv, const char *p)
1173 cv_ckproto_len(cv, gv, p, p ? strlen(p) : 0);
1177 =for apidoc unpack_str
1179 The engine implementing unpack() Perl function. Note: parameters strbeg, new_s
1180 and ocnt are not used. This call should not be used, use unpackstring instead.
1185 Perl_unpack_str(pTHX_ const char *pat, const char *patend, const char *s,
1186 const char *strbeg, const char *strend, char **new_s, I32 ocnt,
1189 PERL_UNUSED_ARG(strbeg);
1190 PERL_UNUSED_ARG(new_s);
1191 PERL_UNUSED_ARG(ocnt);
1193 return unpackstring(pat, patend, s, strend, flags);
1197 =for apidoc pack_cat
1199 The engine implementing pack() Perl function. Note: parameters next_in_list and
1200 flags are not used. This call should not be used; use packlist instead.
1206 Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, register SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
1208 PERL_UNUSED_ARG(next_in_list);
1209 PERL_UNUSED_ARG(flags);
1211 packlist(cat, pat, patend, beglist, endlist);
1213 #endif /* NO_MATHOMS */
1217 * c-indentation-style: bsd
1219 * indent-tabs-mode: t
1222 * ex: set ts=8 sts=4 sw=4 noet: