1 /* This file is part of the indirect Perl module.
2 * See http://search.cpan.org/dist/indirect/ */
4 #define PERL_NO_GET_CONTEXT
9 #define __PACKAGE__ "indirect"
10 #define __PACKAGE_LEN__ (sizeof(__PACKAGE__)-1)
12 /* --- Compatibility wrappers ---------------------------------------------- */
23 # define Newx(v, n, c) New(0, v, n, c)
27 # define SvPV_const SvPV
30 #ifndef SvPV_nolen_const
31 # define SvPV_nolen_const SvPV_nolen
35 # define SvPVX_const SvPVX
38 #ifndef sv_catpvn_nomg
39 # define sv_catpvn_nomg sv_catpvn
43 # define mPUSHp(P, L) PUSHs(sv_2mortal(newSVpvn((P), (L))))
47 # define mPUSHu(U) PUSHs(sv_2mortal(newSVuv(U)))
51 # define HvNAME_get(H) HvNAME(H)
55 # define HvNAMELEN_get(H) strlen(HvNAME_get(H))
58 #define I_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
60 #if I_HAS_PERL(5, 10, 0) || defined(PL_parser)
61 # ifndef PL_lex_inwhat
62 # define PL_lex_inwhat PL_parser->lex_inwhat
65 # define PL_linestr PL_parser->linestr
68 # define PL_bufptr PL_parser->bufptr
71 # define PL_oldbufptr PL_parser->oldbufptr
74 # ifndef PL_lex_inwhat
75 # define PL_lex_inwhat PL_Ilex_inwhat
78 # define PL_linestr PL_Ilinestr
81 # define PL_bufptr PL_Ibufptr
84 # define PL_oldbufptr PL_Ioldbufptr
88 #ifndef I_WORKAROUND_REQUIRE_PROPAGATION
89 # define I_WORKAROUND_REQUIRE_PROPAGATION !I_HAS_PERL(5, 10, 1)
92 /* ... Thread safety and multiplicity ...................................... */
94 #ifndef I_MULTIPLICITY
95 # if defined(MULTIPLICITY) || defined(PERL_IMPLICIT_CONTEXT)
96 # define I_MULTIPLICITY 1
98 # define I_MULTIPLICITY 0
101 #if I_MULTIPLICITY && !defined(tTHX)
102 # define tTHX PerlInterpreter*
105 #if I_MULTIPLICITY && defined(USE_ITHREADS) && defined(dMY_CXT) && defined(MY_CXT) && defined(START_MY_CXT) && defined(MY_CXT_INIT) && (defined(MY_CXT_CLONE) || defined(dMY_CXT_SV))
106 # define I_THREADSAFE 1
107 # ifndef MY_CXT_CLONE
108 # define MY_CXT_CLONE \
110 my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
111 Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t); \
112 sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
115 # define I_THREADSAFE 0
117 # define dMY_CXT dNOOP
119 # define MY_CXT indirect_globaldata
121 # define START_MY_CXT STATIC my_cxt_t MY_CXT;
123 # define MY_CXT_INIT NOOP
125 # define MY_CXT_CLONE NOOP
128 /* --- Helpers ------------------------------------------------------------- */
130 /* ... Thread-safe hints ................................................... */
132 /* If any of those are true, we need to store the hint in a global table. */
134 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
138 #if I_WORKAROUND_REQUIRE_PROPAGATION
143 #define PTABLE_NAME ptable_hints
145 #define PTABLE_VAL_FREE(V) \
146 { indirect_hint_t *h = (V); SvREFCNT_dec(h->code); PerlMemShared_free(h); }
155 #define ptable_hints_store(T, K, V) ptable_hints_store(aTHX_ (T), (K), (V))
156 #define ptable_hints_free(T) ptable_hints_free(aTHX_ (T))
158 #endif /* I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION */
160 /* Define the op->str ptable here because we need to be able to clean it during
168 } indirect_op_info_t;
170 #define PTABLE_NAME ptable
171 #define PTABLE_VAL_FREE(V) if (V) { Safefree(((indirect_op_info_t *) (V))->buf); Safefree(V); }
180 #define ptable_store(T, K, V) ptable_store(aTHX_ (T), (K), (V))
181 #define ptable_clear(T) ptable_clear(aTHX_ (T))
182 #define ptable_free(T) ptable_free(aTHX_ (T))
184 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
187 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
188 ptable *tbl; /* It really is a ptable_hints */
201 STATIC SV *indirect_clone(pTHX_ SV *sv, tTHX owner) {
202 #define indirect_clone(S, O) indirect_clone(aTHX_ (S), (O))
207 if (SvTYPE(sv) == SVt_PVHV && HvNAME_get(sv))
210 param.stashes = stashes;
212 param.proto_perl = owner;
214 dupsv = sv_dup(sv, ¶m);
218 SvREFCNT_dec(stashes);
221 return SvREFCNT_inc(dupsv);
224 STATIC void indirect_ptable_clone(pTHX_ ptable_ent *ent, void *ud_) {
226 indirect_hint_t *h1 = ent->val;
227 indirect_hint_t *h2 = PerlMemShared_malloc(sizeof *h2);
231 if (ud->owner != aTHX)
232 h2->code = indirect_clone(h1->code, ud->owner);
234 ptable_hints_store(ud->tbl, ent->key, h2);
235 SvREFCNT_inc(h2->code);
238 STATIC void indirect_thread_cleanup(pTHX_ void *);
240 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
246 SAVEDESTRUCTOR_X(indirect_thread_cleanup, level);
250 PerlMemShared_free(level);
251 ptable_free(MY_CXT.map);
252 ptable_hints_free(MY_CXT.tbl);
256 #endif /* I_THREADSAFE */
258 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
260 STATIC SV *indirect_tag(pTHX_ SV *value) {
261 #define indirect_tag(V) indirect_tag(aTHX_ (V))
265 value = SvOK(value) && SvROK(value) ? SvRV(value) : NULL;
267 h = PerlMemShared_malloc(sizeof *h);
268 h->code = SvREFCNT_inc(value);
270 #if I_WORKAROUND_REQUIRE_PROPAGATION
275 for (si = PL_curstackinfo; si; si = si->si_prev) {
278 for (cxix = si->si_cxix; cxix >= 0; --cxix) {
279 const PERL_CONTEXT *cx = si->si_cxstack + cxix;
281 if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE)
286 h->requires = requires;
290 /* We only need for the key to be an unique tag for looking up the value later.
291 * Allocated memory provides convenient unique identifiers, so that's why we
292 * use the value pointer as the key itself. */
293 ptable_hints_store(MY_CXT.tbl, value, h);
295 return newSVuv(PTR2UV(value));
298 STATIC SV *indirect_detag(pTHX_ const SV *hint) {
299 #define indirect_detag(H) indirect_detag(aTHX_ (H))
303 if (!(hint && SvOK(hint) && SvIOK(hint)))
306 h = ptable_fetch(MY_CXT.tbl, INT2PTR(void *, SvUVX(hint)));
308 #if I_WORKAROUND_REQUIRE_PROPAGATION
313 for (si = PL_curstackinfo; si; si = si->si_prev) {
316 for (cxix = si->si_cxix; cxix >= 0; --cxix) {
317 const PERL_CONTEXT *cx = si->si_cxstack + cxix;
319 if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE
320 && ++requires > h->requires)
332 STATIC SV *indirect_tag(pTHX_ SV *value) {
333 #define indirect_tag(V) indirect_tag(aTHX_ (V))
336 if (SvOK(value) && SvROK(value)) {
345 #define indirect_detag(H) (((H) && SvOK(H)) ? INT2PTR(SV *, SvUVX(H)) : NULL)
347 #endif /* I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION */
349 STATIC U32 indirect_hash = 0;
351 STATIC SV *indirect_hint(pTHX) {
352 #define indirect_hint() indirect_hint(aTHX)
358 #if I_HAS_PERL(5, 9, 5)
359 hint = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
361 __PACKAGE__, __PACKAGE_LEN__,
366 SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__,
373 return indirect_detag(hint);
376 /* ... op -> source position ............................................... */
378 STATIC void indirect_map_store(pTHX_ const OP *o, const char *src, SV *sv, line_t line) {
379 #define indirect_map_store(O, S, N, L) indirect_map_store(aTHX_ (O), (S), (N), (L))
380 indirect_op_info_t *oi;
385 /* When lex_inwhat is set, we're in a quotelike environment (qq, qr, but not q)
386 * In this case the linestr has temporarly changed, but the old buffer should
387 * still be alive somewhere. */
389 if (!PL_lex_inwhat) {
390 const char *pl_linestr = SvPVX_const(PL_linestr);
391 if (MY_CXT.linestr != pl_linestr) {
392 ptable_clear(MY_CXT.map);
393 MY_CXT.linestr = pl_linestr;
397 if (!(oi = ptable_fetch(MY_CXT.map, o))) {
398 Newx(oi, 1, indirect_op_info_t);
399 ptable_store(MY_CXT.map, o, oi);
405 s = SvPV_const(sv, len);
411 if (len > oi->size) {
413 Newx(oi->buf, len, char);
416 Copy(s, oi->buf, len, char);
423 STATIC const indirect_op_info_t *indirect_map_fetch(pTHX_ const OP *o) {
424 #define indirect_map_fetch(O) indirect_map_fetch(aTHX_ (O))
425 const indirect_op_info_t *val;
428 if (MY_CXT.linestr != SvPVX_const(PL_linestr))
431 return ptable_fetch(MY_CXT.map, o);
434 STATIC void indirect_map_delete(pTHX_ const OP *o) {
435 #define indirect_map_delete(O) indirect_map_delete(aTHX_ (O))
438 ptable_store(MY_CXT.map, o, NULL);
441 /* --- Check functions ----------------------------------------------------- */
443 STATIC const char *indirect_find(pTHX_ SV *sv, const char *s) {
444 #define indirect_find(N, S) indirect_find(aTHX_ (N), (S))
446 const char *p = NULL, *r = SvPV_const(sv, len);
448 if (len >= 1 && *r == '$') {
461 p = strstr(p + 1, r);
467 /* ... ck_const ............................................................ */
469 STATIC OP *(*indirect_old_ck_const)(pTHX_ OP *) = 0;
471 STATIC OP *indirect_ck_const(pTHX_ OP *o) {
472 o = CALL_FPTR(indirect_old_ck_const)(aTHX_ o);
474 if (indirect_hint()) {
476 if (SvPOK(sv) && (SvTYPE(sv) >= SVt_PV)) {
477 const char *s = indirect_find(sv, PL_oldbufptr);
478 indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
483 indirect_map_delete(o);
487 /* ... ck_rv2sv ............................................................ */
489 STATIC OP *(*indirect_old_ck_rv2sv)(pTHX_ OP *) = 0;
491 STATIC OP *indirect_ck_rv2sv(pTHX_ OP *o) {
492 if (indirect_hint()) {
493 OP *op = cUNOPo->op_first;
495 const char *name = NULL, *s;
497 OPCODE type = (OPCODE) op->op_type;
502 GV *gv = cGVOPx_gv(op);
508 if ((PL_opargs[type] & OA_CLASS_MASK) == OA_SVOP) {
509 SV *nsv = cSVOPx_sv(op);
510 if (SvPOK(nsv) && (SvTYPE(nsv) >= SVt_PV))
511 name = SvPV_const(nsv, len);
517 sv = sv_2mortal(newSVpvn("$", 1));
518 sv_catpvn_nomg(sv, name, len);
519 s = indirect_find(sv, PL_oldbufptr);
520 if (!s) { /* If it failed, retry without the current stash */
521 const char *stash = HvNAME_get(PL_curstash);
522 STRLEN stashlen = HvNAMELEN_get(PL_curstash);
524 if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
525 || name[stashlen] != ':' || name[stashlen+1] != ':') {
526 /* Failed again ? Try to remove main */
529 if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
530 || name[stashlen] != ':' || name[stashlen+1] != ':')
534 sv_setpvn(sv, "$", 1);
536 sv_catpvn_nomg(sv, name + stashlen, len - stashlen);
537 s = indirect_find(sv, PL_oldbufptr);
542 o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
543 indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
548 o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
550 indirect_map_delete(o);
554 /* ... ck_padany ........................................................... */
556 STATIC OP *(*indirect_old_ck_padany)(pTHX_ OP *) = 0;
558 STATIC OP *indirect_ck_padany(pTHX_ OP *o) {
559 o = CALL_FPTR(indirect_old_ck_padany)(aTHX_ o);
561 if (indirect_hint()) {
563 const char *s = PL_oldbufptr, *t = PL_bufptr - 1;
565 while (s < t && isSPACE(*s)) ++s;
566 if (*s == '$' && ++s <= t) {
567 while (s < t && isSPACE(*s)) ++s;
568 while (s < t && isSPACE(*t)) --t;
569 sv = sv_2mortal(newSVpvn("$", 1));
570 sv_catpvn_nomg(sv, s, t - s + 1);
571 indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
576 indirect_map_delete(o);
580 /* ... ck_scope ............................................................ */
582 STATIC OP *(*indirect_old_ck_scope) (pTHX_ OP *) = 0;
583 STATIC OP *(*indirect_old_ck_lineseq)(pTHX_ OP *) = 0;
585 STATIC OP *indirect_ck_scope(pTHX_ OP *o) {
586 OP *(*old_ck)(pTHX_ OP *) = 0;
588 switch (o->op_type) {
589 case OP_SCOPE: old_ck = indirect_old_ck_scope; break;
590 case OP_LINESEQ: old_ck = indirect_old_ck_lineseq; break;
592 o = CALL_FPTR(old_ck)(aTHX_ o);
594 if (indirect_hint()) {
595 indirect_map_store(o, PL_oldbufptr, NULL, CopLINE(&PL_compiling));
599 indirect_map_delete(o);
603 /* We don't need to clean the map entries for leave ops because they can only
604 * be created by mutating from a lineseq. */
606 /* ... ck_method ........................................................... */
608 STATIC OP *(*indirect_old_ck_method)(pTHX_ OP *) = 0;
610 STATIC OP *indirect_ck_method(pTHX_ OP *o) {
611 if (indirect_hint()) {
612 OP *op = cUNOPo->op_first;
613 const indirect_op_info_t *oi = indirect_map_fetch(op);
614 const char *s = NULL;
618 if (oi && (s = oi->pos)) {
619 sv = sv_2mortal(newSVpvn(oi->buf, oi->len));
620 line = oi->line; /* Keep the old line so that we really point to the first */
623 if (!SvPOK(sv) || (SvTYPE(sv) < SVt_PV))
625 sv = sv_mortalcopy(sv);
626 s = indirect_find(sv, PL_oldbufptr);
627 line = CopLINE(&PL_compiling);
630 o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
631 /* o may now be a method_named */
633 indirect_map_store(o, s, sv, line);
638 o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
640 indirect_map_delete(o);
644 /* ... ck_entersub ......................................................... */
646 STATIC int indirect_is_indirect(const indirect_op_info_t *moi, const indirect_op_info_t *ooi) {
647 if (moi->pos > ooi->pos)
650 if (moi->pos == ooi->pos)
651 return moi->len == ooi->len && !memcmp(moi->buf, ooi->buf, moi->len);
656 STATIC OP *(*indirect_old_ck_entersub)(pTHX_ OP *) = 0;
658 STATIC OP *indirect_ck_entersub(pTHX_ OP *o) {
659 SV *code = indirect_hint();
661 o = CALL_FPTR(indirect_old_ck_entersub)(aTHX_ o);
664 const indirect_op_info_t *moi, *ooi;
670 lop = (LISTOP *) oop;
671 if (!(lop->op_flags & OPf_KIDS))
674 } while (oop->op_type != OP_PUSHMARK);
675 oop = oop->op_sibling;
681 switch (oop->op_type) {
692 if (mop->op_type == OP_METHOD)
693 mop = cUNOPx(mop)->op_first;
694 else if (mop->op_type != OP_METHOD_NAMED)
697 moi = indirect_map_fetch(mop);
698 if (!(moi && moi->pos))
701 ooi = indirect_map_fetch(oop);
702 if (!(ooi && ooi->pos))
705 if (indirect_is_indirect(moi, ooi)) {
713 file = sv_2mortal(newSVpv(CopFILE(&PL_compiling), 0));
715 file = sv_mortalcopy(CopFILESV(&PL_compiling));
720 mPUSHp(ooi->buf, ooi->len);
721 mPUSHp(moi->buf, moi->len);
726 call_sv(code, G_VOID);
739 STATIC U32 indirect_initialized = 0;
741 /* --- XS ------------------------------------------------------------------ */
743 MODULE = indirect PACKAGE = indirect
749 if (!indirect_initialized++) {
753 MY_CXT.map = ptable_new();
754 MY_CXT.linestr = NULL;
755 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
756 MY_CXT.tbl = ptable_new();
762 PERL_HASH(indirect_hash, __PACKAGE__, __PACKAGE_LEN__);
764 indirect_old_ck_const = PL_check[OP_CONST];
765 PL_check[OP_CONST] = MEMBER_TO_FPTR(indirect_ck_const);
766 indirect_old_ck_rv2sv = PL_check[OP_RV2SV];
767 PL_check[OP_RV2SV] = MEMBER_TO_FPTR(indirect_ck_rv2sv);
768 indirect_old_ck_padany = PL_check[OP_PADANY];
769 PL_check[OP_PADANY] = MEMBER_TO_FPTR(indirect_ck_padany);
770 indirect_old_ck_scope = PL_check[OP_SCOPE];
771 PL_check[OP_SCOPE] = MEMBER_TO_FPTR(indirect_ck_scope);
772 indirect_old_ck_lineseq = PL_check[OP_LINESEQ];
773 PL_check[OP_LINESEQ] = MEMBER_TO_FPTR(indirect_ck_scope);
775 indirect_old_ck_method = PL_check[OP_METHOD];
776 PL_check[OP_METHOD] = MEMBER_TO_FPTR(indirect_ck_method);
777 indirect_old_ck_entersub = PL_check[OP_ENTERSUB];
778 PL_check[OP_ENTERSUB] = MEMBER_TO_FPTR(indirect_ck_entersub);
780 stash = gv_stashpvn(__PACKAGE__, __PACKAGE_LEN__, 1);
781 newCONSTSUB(stash, "I_THREADSAFE", newSVuv(I_THREADSAFE));
797 ud.tbl = t = ptable_new();
798 ud.owner = MY_CXT.owner;
799 ptable_walk(MY_CXT.tbl, indirect_ptable_clone, &ud);
803 MY_CXT.map = ptable_new();
804 MY_CXT.linestr = NULL;
809 level = PerlMemShared_malloc(sizeof *level);
812 SAVEDESTRUCTOR_X(indirect_thread_cleanup, level);
822 RETVAL = indirect_tag(value);