3 * Copyright (c) 1996 Malcolm Beattie
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.
10 #define PERL_NO_GET_CONTEXT
16 typedef PerlIO * InputStream;
18 typedef FILE * InputStream;
22 static char *svclassnames[] = {
57 static char *opclassnames[] = {
73 #define MY_CXT_KEY "B::_guts" XS_VERSION
76 int x_walkoptree_debug; /* Flag for walkoptree debug hook */
77 SV * x_specialsv_list[6];
82 #define walkoptree_debug (MY_CXT.x_walkoptree_debug)
83 #define specialsv_list (MY_CXT.x_specialsv_list)
86 cc_opclass(pTHX_ OP *o)
92 return (o->op_flags & OPf_KIDS) ? OPc_UNOP : OPc_BASEOP;
94 if (o->op_type == OP_SASSIGN)
95 return ((o->op_private & OPpASSIGN_BACKWARDS) ? OPc_UNOP : OPc_BINOP);
98 if (o->op_type == OP_GV || o->op_type == OP_GVSV || o->op_type == OP_AELEMFAST)
102 switch (PL_opargs[o->op_type] & OA_CLASS_MASK) {
127 case OA_PVOP_OR_SVOP:
129 * Character translations (tr///) are usually a PVOP, keeping a
130 * pointer to a table of shorts used to look up translations.
131 * Under utf8, however, a simple table isn't practical; instead,
132 * the OP is an SVOP, and the SV is a reference to a swash
133 * (i.e., an RV pointing to an HV).
135 return (o->op_private & (OPpTRANS_TO_UTF|OPpTRANS_FROM_UTF))
136 ? OPc_SVOP : OPc_PVOP;
144 case OA_BASEOP_OR_UNOP:
146 * UNI(OP_foo) in toke.c returns token UNI or FUNC1 depending on
147 * whether parens were seen. perly.y uses OPf_SPECIAL to
148 * signal whether a BASEOP had empty parens or none.
149 * Some other UNOPs are created later, though, so the best
150 * test is OPf_KIDS, which is set in newUNOP.
152 return (o->op_flags & OPf_KIDS) ? OPc_UNOP : OPc_BASEOP;
156 * The file stat OPs are created via UNI(OP_foo) in toke.c but use
157 * the OPf_REF flag to distinguish between OP types instead of the
158 * usual OPf_SPECIAL flag. As usual, if OPf_KIDS is set, then we
159 * return OPc_UNOP so that walkoptree can find our children. If
160 * OPf_KIDS is not set then we check OPf_REF. Without OPf_REF set
161 * (no argument to the operator) it's an OP; with OPf_REF set it's
162 * an SVOP (and op_sv is the GV for the filehandle argument).
164 return ((o->op_flags & OPf_KIDS) ? OPc_UNOP :
166 (o->op_flags & OPf_REF) ? OPc_PADOP : OPc_BASEOP);
168 (o->op_flags & OPf_REF) ? OPc_SVOP : OPc_BASEOP);
172 * next, last, redo, dump and goto use OPf_SPECIAL to indicate that a
173 * label was omitted (in which case it's a BASEOP) or else a term was
174 * seen. In this last case, all except goto are definitely PVOP but
175 * goto is either a PVOP (with an ordinary constant label), an UNOP
176 * with OPf_STACKED (with a non-constant non-sub) or an UNOP for
177 * OP_REFGEN (with goto &sub) in which case OPf_STACKED also seems to
180 if (o->op_flags & OPf_STACKED)
182 else if (o->op_flags & OPf_SPECIAL)
187 warn("can't determine class of operator %s, assuming BASEOP\n",
188 PL_op_name[o->op_type]);
193 cc_opclassname(pTHX_ OP *o)
195 return opclassnames[cc_opclass(aTHX_ o)];
199 make_sv_object(pTHX_ SV *arg, SV *sv)
205 for (iv = 0; iv < sizeof(specialsv_list)/sizeof(SV*); iv++) {
206 if (sv == specialsv_list[iv]) {
212 type = svclassnames[SvTYPE(sv)];
215 sv_setiv(newSVrv(arg, type), iv);
220 make_mg_object(pTHX_ SV *arg, MAGIC *mg)
222 sv_setiv(newSVrv(arg, "B::MAGIC"), PTR2IV(mg));
227 cstring(pTHX_ SV *sv)
229 SV *sstr = newSVpvn("", 0);
234 sv_setpvn(sstr, "0", 1);
239 sv_catpv(sstr, "\"");
240 for (; len; len--, s++)
242 /* At least try a little for readability */
244 sv_catpv(sstr, "\\\"");
246 sv_catpv(sstr, "\\\\");
247 else if (*s >= ' ' && *s < 127) /* XXX not portable */
248 sv_catpvn(sstr, s, 1);
250 sv_catpv(sstr, "\\n");
252 sv_catpv(sstr, "\\r");
254 sv_catpv(sstr, "\\t");
256 sv_catpv(sstr, "\\a");
258 sv_catpv(sstr, "\\b");
260 sv_catpv(sstr, "\\f");
262 sv_catpv(sstr, "\\v");
265 /* no trigraph support */
266 char escbuff[5]; /* to fit backslash, 3 octals + trailing \0 */
267 /* Don't want promotion of a signed -1 char in sprintf args */
268 unsigned char c = (unsigned char) *s;
269 sprintf(escbuff, "\\%03o", c);
270 sv_catpv(sstr, escbuff);
272 /* XXX Add line breaks if string is long */
274 sv_catpv(sstr, "\"");
282 SV *sstr = newSVpvn("'", 1);
284 char *s = SvPV(sv, n_a);
287 sv_catpv(sstr, "\\'");
289 sv_catpv(sstr, "\\\\");
290 else if (*s >= ' ' && *s < 127) /* XXX not portable */
291 sv_catpvn(sstr, s, 1);
293 sv_catpv(sstr, "\\n");
295 sv_catpv(sstr, "\\r");
297 sv_catpv(sstr, "\\t");
299 sv_catpv(sstr, "\\a");
301 sv_catpv(sstr, "\\b");
303 sv_catpv(sstr, "\\f");
305 sv_catpv(sstr, "\\v");
308 /* no trigraph support */
309 char escbuff[5]; /* to fit backslash, 3 octals + trailing \0 */
310 /* Don't want promotion of a signed -1 char in sprintf args */
311 unsigned char c = (unsigned char) *s;
312 sprintf(escbuff, "\\%03o", c);
313 sv_catpv(sstr, escbuff);
320 walkoptree(pTHX_ SV *opsv, char *method)
327 croak("opsv is not a reference");
328 opsv = sv_mortalcopy(opsv);
329 o = INT2PTR(OP*,SvIV((SV*)SvRV(opsv)));
330 if (walkoptree_debug) {
334 perl_call_method("walkoptree_debug", G_DISCARD);
339 perl_call_method(method, G_DISCARD);
340 if (o && (o->op_flags & OPf_KIDS)) {
342 for (kid = ((UNOP*)o)->op_first; kid; kid = kid->op_sibling) {
343 /* Use the same opsv. Rely on methods not to mess it up. */
344 sv_setiv(newSVrv(opsv, cc_opclassname(aTHX_ kid)), PTR2IV(kid));
345 walkoptree(aTHX_ opsv, method);
351 typedef UNOP *B__UNOP;
352 typedef BINOP *B__BINOP;
353 typedef LOGOP *B__LOGOP;
354 typedef LISTOP *B__LISTOP;
355 typedef PMOP *B__PMOP;
356 typedef SVOP *B__SVOP;
357 typedef PADOP *B__PADOP;
358 typedef PVOP *B__PVOP;
359 typedef LOOP *B__LOOP;
376 typedef MAGIC *B__MAGIC;
378 MODULE = B PACKAGE = B PREFIX = B_
384 HV *stash = gv_stashpvn("B", 1, TRUE);
385 AV *export_ok = perl_get_av("B::EXPORT_OK",TRUE);
387 specialsv_list[0] = Nullsv;
388 specialsv_list[1] = &PL_sv_undef;
389 specialsv_list[2] = &PL_sv_yes;
390 specialsv_list[3] = &PL_sv_no;
391 specialsv_list[4] = pWARN_ALL;
392 specialsv_list[5] = pWARN_NONE;
396 #define B_main_cv() PL_main_cv
397 #define B_init_av() PL_initav
398 #define B_begin_av() PL_beginav_save
399 #define B_end_av() PL_endav
400 #define B_main_root() PL_main_root
401 #define B_main_start() PL_main_start
402 #define B_amagic_generation() PL_amagic_generation
403 #define B_comppadlist() (PL_main_cv ? CvPADLIST(PL_main_cv) : CvPADLIST(PL_compcv))
404 #define B_sv_undef() &PL_sv_undef
405 #define B_sv_yes() &PL_sv_yes
406 #define B_sv_no() &PL_sv_no
427 B_amagic_generation()
441 MODULE = B PACKAGE = B
445 walkoptree(opsv, method)
449 walkoptree(aTHX_ opsv, method);
452 walkoptree_debug(...)
455 RETVAL = walkoptree_debug;
456 if (items > 0 && SvTRUE(ST(1)))
457 walkoptree_debug = 1;
461 #define address(sv) PTR2IV(sv)
472 croak("argument is not a reference");
473 RETVAL = (SV*)SvRV(sv);
484 ST(0) = sv_newmortal();
485 if (strncmp(name,"pp_",3) == 0)
487 for (i = 0; i < PL_maxo; i++)
489 if (strcmp(name, PL_op_name[i]) == 0)
495 sv_setiv(ST(0),result);
502 ST(0) = sv_newmortal();
503 if (opnum >= 0 && opnum < PL_maxo) {
504 sv_setpvn(ST(0), "pp_", 3);
505 sv_catpv(ST(0), PL_op_name[opnum]);
515 char hexhash[19]; /* must fit "0xffffffffffffffff" plus trailing \0 */
517 PERL_HASH(hash, s, len);
518 sprintf(hexhash, "0x%"UVxf, (UV)hash);
519 ST(0) = sv_2mortal(newSVpv(hexhash, 0));
521 #define cast_I32(foo) (I32)foo
540 RETVAL = cstring(aTHX_ sv);
548 RETVAL = cchar(aTHX_ sv);
555 #ifdef USE_5005THREADS
557 STRLEN len = strlen(PL_threadsv_names);
560 for (i = 0; i < len; i++)
561 PUSHs(sv_2mortal(newSVpvn(&PL_threadsv_names[i], 1)));
565 #define OP_next(o) o->op_next
566 #define OP_sibling(o) o->op_sibling
567 #define OP_desc(o) PL_op_desc[o->op_type]
568 #define OP_targ(o) o->op_targ
569 #define OP_type(o) o->op_type
570 #define OP_seq(o) o->op_seq
571 #define OP_flags(o) o->op_flags
572 #define OP_private(o) o->op_private
574 MODULE = B PACKAGE = B::OP PREFIX = OP_
588 RETVAL = PL_op_name[o->op_type];
598 SV *sv = sv_newmortal();
600 sv_setpvn(sv, "PL_ppaddr[OP_", 13);
601 sv_catpv(sv, PL_op_name[o->op_type]);
602 for (i=13; i<SvCUR(sv); ++i)
603 SvPVX(sv)[i] = toUPPER(SvPVX(sv)[i]);
631 #define UNOP_first(o) o->op_first
633 MODULE = B PACKAGE = B::UNOP PREFIX = UNOP_
639 #define BINOP_last(o) o->op_last
641 MODULE = B PACKAGE = B::BINOP PREFIX = BINOP_
647 #define LOGOP_other(o) o->op_other
649 MODULE = B PACKAGE = B::LOGOP PREFIX = LOGOP_
655 MODULE = B PACKAGE = B::LISTOP PREFIX = LISTOP_
664 for (kid = o->op_first; kid; kid = kid->op_sibling)
670 #define PMOP_pmreplroot(o) o->op_pmreplroot
671 #define PMOP_pmreplstart(o) o->op_pmreplstart
672 #define PMOP_pmnext(o) o->op_pmnext
673 #define PMOP_pmregexp(o) PM_GETRE(o)
674 #define PMOP_pmflags(o) o->op_pmflags
675 #define PMOP_pmpermflags(o) o->op_pmpermflags
677 MODULE = B PACKAGE = B::PMOP PREFIX = PMOP_
684 ST(0) = sv_newmortal();
685 root = o->op_pmreplroot;
686 /* OP_PUSHRE stores an SV* instead of an OP* in op_pmreplroot */
687 if (o->op_type == OP_PUSHRE) {
688 sv_setiv(newSVrv(ST(0), root ?
689 svclassnames[SvTYPE((SV*)root)] : "B::SV"),
693 sv_setiv(newSVrv(ST(0), cc_opclassname(aTHX_ root)), PTR2IV(root));
715 REGEXP * rx = NO_INIT
717 ST(0) = sv_newmortal();
720 sv_setpvn(ST(0), rx->precomp, rx->prelen);
722 #define SVOP_sv(o) cSVOPo->op_sv
723 #define SVOP_gv(o) ((GV*)cSVOPo->op_sv)
725 MODULE = B PACKAGE = B::SVOP PREFIX = SVOP_
735 #define PADOP_padix(o) o->op_padix
736 #define PADOP_sv(o) (o->op_padix ? PL_curpad[o->op_padix] : Nullsv)
737 #define PADOP_gv(o) ((o->op_padix \
738 && SvTYPE(PL_curpad[o->op_padix]) == SVt_PVGV) \
739 ? (GV*)PL_curpad[o->op_padix] : Nullgv)
741 MODULE = B PACKAGE = B::PADOP PREFIX = PADOP_
755 MODULE = B PACKAGE = B::PVOP PREFIX = PVOP_
762 * OP_TRANS uses op_pv to point to a table of 256 or >=258 shorts
763 * whereas other PVOPs point to a null terminated string.
765 if (o->op_type == OP_TRANS &&
766 (o->op_private & OPpTRANS_COMPLEMENT) &&
767 !(o->op_private & OPpTRANS_DELETE))
769 short* tbl = (short*)o->op_pv;
770 short entries = 257 + tbl[256];
771 ST(0) = sv_2mortal(newSVpv(o->op_pv, entries * sizeof(short)));
773 else if (o->op_type == OP_TRANS) {
774 ST(0) = sv_2mortal(newSVpv(o->op_pv, 256 * sizeof(short)));
777 ST(0) = sv_2mortal(newSVpv(o->op_pv, 0));
779 #define LOOP_redoop(o) o->op_redoop
780 #define LOOP_nextop(o) o->op_nextop
781 #define LOOP_lastop(o) o->op_lastop
783 MODULE = B PACKAGE = B::LOOP PREFIX = LOOP_
798 #define COP_label(o) o->cop_label
799 #define COP_stashpv(o) CopSTASHPV(o)
800 #define COP_stash(o) CopSTASH(o)
801 #define COP_file(o) CopFILE(o)
802 #define COP_cop_seq(o) o->cop_seq
803 #define COP_arybase(o) o->cop_arybase
804 #define COP_line(o) CopLINE(o)
805 #define COP_warnings(o) o->cop_warnings
807 MODULE = B PACKAGE = B::COP PREFIX = COP_
841 MODULE = B PACKAGE = B::SV PREFIX = Sv
851 MODULE = B PACKAGE = B::IV PREFIX = Sv
866 MODULE = B PACKAGE = B::IV
868 #define needs64bits(sv) ((I32)SvIVX(sv) != SvIVX(sv))
878 if (sizeof(IV) == 8) {
882 * The following way of spelling 32 is to stop compilers on
883 * 32-bit architectures from moaning about the shift count
884 * being >= the width of the type. Such architectures don't
885 * reach this code anyway (unless sizeof(IV) > 8 but then
886 * everything else breaks too so I'm not fussed at the moment).
889 wp[0] = htonl(((UV)iv) >> (sizeof(UV)*4));
891 wp[0] = htonl(((U32)iv) >> (sizeof(UV)*4));
893 wp[1] = htonl(iv & 0xffffffff);
894 ST(0) = sv_2mortal(newSVpvn((char *)wp, 8));
896 U32 w = htonl((U32)SvIVX(sv));
897 ST(0) = sv_2mortal(newSVpvn((char *)&w, 4));
900 MODULE = B PACKAGE = B::NV PREFIX = Sv
910 MODULE = B PACKAGE = B::RV PREFIX = Sv
916 MODULE = B PACKAGE = B::PV PREFIX = Sv
926 ST(0) = sv_newmortal();
927 sv_setpvn(ST(0), SvPVX(sv), SvCUR(sv));
928 SvFLAGS(ST(0)) |= SvUTF8(sv);
938 MODULE = B PACKAGE = B::PVMG PREFIX = Sv
945 for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic)
946 XPUSHs(make_mg_object(aTHX_ sv_newmortal(), mg));
948 MODULE = B PACKAGE = B::PVMG
954 #define MgMOREMAGIC(mg) mg->mg_moremagic
955 #define MgPRIVATE(mg) mg->mg_private
956 #define MgTYPE(mg) mg->mg_type
957 #define MgFLAGS(mg) mg->mg_flags
958 #define MgOBJ(mg) mg->mg_obj
959 #define MgLENGTH(mg) mg->mg_len
961 MODULE = B PACKAGE = B::MAGIC PREFIX = Mg
991 ST(0) = sv_newmortal();
993 if (mg->mg_len >= 0){
994 sv_setpvn(ST(0), mg->mg_ptr, mg->mg_len);
996 if (mg->mg_len == HEf_SVKEY)
997 sv_setsv(ST(0),newRV((SV*)mg->mg_ptr));
1001 MODULE = B PACKAGE = B::PVLV PREFIX = Lv
1019 MODULE = B PACKAGE = B::BM PREFIX = Bm
1036 STRLEN len = NO_INIT
1037 char * str = NO_INIT
1039 str = SvPV(sv, len);
1040 /* Boyer-Moore table is just after string and its safety-margin \0 */
1041 ST(0) = sv_2mortal(newSVpvn(str + len + 1, 256));
1043 MODULE = B PACKAGE = B::GV PREFIX = Gv
1049 ST(0) = sv_2mortal(newSVpvn(GvNAME(gv), GvNAMELEN(gv)));
1055 RETVAL = GvGP(gv) == Null(GP*);
1107 MODULE = B PACKAGE = B::GV
1117 MODULE = B PACKAGE = B::IO PREFIX = Io
1163 MODULE = B PACKAGE = B::IO
1173 MODULE = B PACKAGE = B::AV PREFIX = Av
1183 #define AvOFF(av) ((XPVAV*)SvANY(av))->xof_off
1193 if (AvFILL(av) >= 0) {
1194 SV **svp = AvARRAY(av);
1196 for (i = 0; i <= AvFILL(av); i++)
1197 XPUSHs(make_sv_object(aTHX_ sv_newmortal(), svp[i]));
1200 MODULE = B PACKAGE = B::AV
1206 MODULE = B PACKAGE = B::CV PREFIX = Cv
1244 ST(0) = sv_2mortal(newSViv(PTR2IV(CvXSUB(cv))));
1251 ST(0) = sv_2mortal(newSViv(CvXSUBANY(cv).any_iv));
1253 MODULE = B PACKAGE = B::CV
1259 MODULE = B PACKAGE = B::CV PREFIX = cv_
1266 MODULE = B PACKAGE = B::HV PREFIX = Hv
1296 if (HvKEYS(hv) > 0) {
1300 (void)hv_iterinit(hv);
1301 EXTEND(sp, HvKEYS(hv) * 2);
1302 while ((sv = hv_iternextsv(hv, &key, &len))) {
1303 PUSHs(newSVpvn(key, len));
1304 PUSHs(make_sv_object(aTHX_ sv_newmortal(), sv));