]> git.vpit.fr Git - perl/modules/indirect.git/blob - indirect.xs
Remove some dead code in indirect_ck_method
[perl/modules/indirect.git] / indirect.xs
1 /* This file is part of the indirect Perl module.
2  * See http://search.cpan.org/dist/indirect/ */
3
4 #define PERL_NO_GET_CONTEXT
5 #include "EXTERN.h"
6 #include "perl.h"
7 #include "XSUB.h"
8
9 #define __PACKAGE__     "indirect"
10 #define __PACKAGE_LEN__ (sizeof(__PACKAGE__)-1)
11
12 /* --- Compatibility wrappers ---------------------------------------------- */
13
14 #ifndef NOOP
15 # define NOOP
16 #endif
17
18 #ifndef dNOOP
19 # define dNOOP
20 #endif
21
22 #ifndef Newx
23 # define Newx(v, n, c) New(0, v, n, c)
24 #endif
25
26 #ifndef SvPV_const
27 # define SvPV_const SvPV
28 #endif
29
30 #ifndef SvPV_nolen_const
31 # define SvPV_nolen_const SvPV_nolen
32 #endif
33
34 #ifndef SvPVX_const
35 # define SvPVX_const SvPVX
36 #endif
37
38 #ifndef SvREFCNT_inc_simple_NN
39 # define SvREFCNT_inc_simple_NN SvREFCNT_inc
40 #endif
41
42 #ifndef sv_catpvn_nomg
43 # define sv_catpvn_nomg sv_catpvn
44 #endif
45
46 #ifndef mPUSHp
47 # define mPUSHp(P, L) PUSHs(sv_2mortal(newSVpvn((P), (L))))
48 #endif
49
50 #ifndef mPUSHu
51 # define mPUSHu(U) PUSHs(sv_2mortal(newSVuv(U)))
52 #endif
53
54 #ifndef HvNAME_get
55 # define HvNAME_get(H) HvNAME(H)
56 #endif
57
58 #ifndef HvNAMELEN_get
59 # define HvNAMELEN_get(H) strlen(HvNAME_get(H))
60 #endif
61
62 #define I_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
63
64 #if I_HAS_PERL(5, 10, 0) || defined(PL_parser)
65 # ifndef PL_linestr
66 #  define PL_linestr PL_parser->linestr
67 # endif
68 # ifndef PL_bufptr
69 #  define PL_bufptr PL_parser->bufptr
70 # endif
71 # ifndef PL_oldbufptr
72 #  define PL_oldbufptr PL_parser->oldbufptr
73 # endif
74 #else
75 # ifndef PL_linestr
76 #  define PL_linestr PL_Ilinestr
77 # endif
78 # ifndef PL_bufptr
79 #  define PL_bufptr PL_Ibufptr
80 # endif
81 # ifndef PL_oldbufptr
82 #  define PL_oldbufptr PL_Ioldbufptr
83 # endif
84 #endif
85
86 #ifndef I_WORKAROUND_REQUIRE_PROPAGATION
87 # define I_WORKAROUND_REQUIRE_PROPAGATION !I_HAS_PERL(5, 10, 1)
88 #endif
89
90 /* ... Thread safety and multiplicity ...................................... */
91
92 /* Safe unless stated otherwise in Makefile.PL */
93 #ifndef I_FORKSAFE
94 # define I_FORKSAFE 1
95 #endif
96
97 #ifndef I_MULTIPLICITY
98 # if defined(MULTIPLICITY) || defined(PERL_IMPLICIT_CONTEXT)
99 #  define I_MULTIPLICITY 1
100 # else
101 #  define I_MULTIPLICITY 0
102 # endif
103 #endif
104 #if I_MULTIPLICITY && !defined(tTHX)
105 # define tTHX PerlInterpreter*
106 #endif
107
108 #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))
109 # define I_THREADSAFE 1
110 # ifndef MY_CXT_CLONE
111 #  define MY_CXT_CLONE \
112     dMY_CXT_SV;                                                      \
113     my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
114     Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t); \
115     sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
116 # endif
117 #else
118 # define I_THREADSAFE 0
119 # undef  dMY_CXT
120 # define dMY_CXT      dNOOP
121 # undef  MY_CXT
122 # define MY_CXT       indirect_globaldata
123 # undef  START_MY_CXT
124 # define START_MY_CXT STATIC my_cxt_t MY_CXT;
125 # undef  MY_CXT_INIT
126 # define MY_CXT_INIT  NOOP
127 # undef  MY_CXT_CLONE
128 # define MY_CXT_CLONE NOOP
129 #endif
130
131 /* --- Helpers ------------------------------------------------------------- */
132
133 /* ... Thread-safe hints ................................................... */
134
135 #if I_WORKAROUND_REQUIRE_PROPAGATION
136
137 typedef struct {
138  SV *code;
139  IV  require_tag;
140 } indirect_hint_t;
141
142 #define I_HINT_STRUCT 1
143
144 #define I_HINT_CODE(H) ((H)->code)
145
146 #define I_HINT_FREE(H) {   \
147  indirect_hint_t *h = (H); \
148  SvREFCNT_dec(h->code);    \
149  PerlMemShared_free(h);    \
150 }
151
152 #else  /*  I_WORKAROUND_REQUIRE_PROPAGATION */
153
154 typedef SV indirect_hint_t;
155
156 #define I_HINT_STRUCT 0
157
158 #define I_HINT_CODE(H) (H)
159
160 #define I_HINT_FREE(H) SvREFCNT_dec(H);
161
162 #endif /* !I_WORKAROUND_REQUIRE_PROPAGATION */
163
164 #if I_THREADSAFE
165
166 #define PTABLE_NAME        ptable_hints
167 #define PTABLE_VAL_FREE(V) I_HINT_FREE(V)
168
169 #define pPTBL  pTHX
170 #define pPTBL_ pTHX_
171 #define aPTBL  aTHX
172 #define aPTBL_ aTHX_
173
174 #include "ptable.h"
175
176 #define ptable_hints_store(T, K, V) ptable_hints_store(aTHX_ (T), (K), (V))
177 #define ptable_hints_free(T)        ptable_hints_free(aTHX_ (T))
178
179 #endif /* I_THREADSAFE */
180
181 /* Define the op->str ptable here because we need to be able to clean it during
182  * thread cleanup. */
183
184 typedef struct {
185  STRLEN  pos;
186  STRLEN  size;
187  STRLEN  len;
188  char   *buf;
189  line_t  line;
190 } indirect_op_info_t;
191
192 #define PTABLE_NAME        ptable
193 #define PTABLE_VAL_FREE(V) if (V) { Safefree(((indirect_op_info_t *) (V))->buf); Safefree(V); }
194
195 #define pPTBL  pTHX
196 #define pPTBL_ pTHX_
197 #define aPTBL  aTHX
198 #define aPTBL_ aTHX_
199
200 #include "ptable.h"
201
202 #define ptable_store(T, K, V) ptable_store(aTHX_ (T), (K), (V))
203 #define ptable_clear(T)       ptable_clear(aTHX_ (T))
204 #define ptable_free(T)        ptable_free(aTHX_ (T))
205
206 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
207
208 typedef struct {
209 #if I_THREADSAFE
210  ptable *tbl; /* It really is a ptable_hints */
211  tTHX    owner;
212 #endif
213  ptable *map;
214 } my_cxt_t;
215
216 START_MY_CXT
217
218 #if I_THREADSAFE
219
220 STATIC SV *indirect_clone(pTHX_ SV *sv, tTHX owner) {
221 #define indirect_clone(S, O) indirect_clone(aTHX_ (S), (O))
222  CLONE_PARAMS  param;
223  AV           *stashes = NULL;
224  SV           *dupsv;
225
226  if (SvTYPE(sv) == SVt_PVHV && HvNAME_get(sv))
227   stashes = newAV();
228
229  param.stashes    = stashes;
230  param.flags      = 0;
231  param.proto_perl = owner;
232
233  dupsv = sv_dup(sv, &param);
234
235  if (stashes) {
236   av_undef(stashes);
237   SvREFCNT_dec(stashes);
238  }
239
240  return SvREFCNT_inc(dupsv);
241 }
242
243 STATIC void indirect_ptable_clone(pTHX_ ptable_ent *ent, void *ud_) {
244  my_cxt_t        *ud = ud_;
245  indirect_hint_t *h1 = ent->val;
246  indirect_hint_t *h2;
247
248  if (ud->owner == aTHX)
249   return;
250
251 #if I_HINT_STRUCT
252
253  h2       = PerlMemShared_malloc(sizeof *h2);
254  h2->code = indirect_clone(h1->code, ud->owner);
255  SvREFCNT_inc(h2->code);
256 #if I_WORKAROUND_REQUIRE_PROPAGATION
257  h2->require_tag = PTR2IV(indirect_clone(INT2PTR(SV *, h1->require_tag),
258                                          ud->owner));
259 #endif
260
261 #else  /*  I_HINT_STRUCT */
262
263  h2 = indirect_clone(h1, ud->owner);
264  SvREFCNT_inc(h2);
265
266 #endif /* !I_HINT_STRUCT */
267
268  ptable_hints_store(ud->tbl, ent->key, h2);
269 }
270
271 #include "reap.h"
272
273 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
274  dMY_CXT;
275
276  ptable_free(MY_CXT.map);
277  ptable_hints_free(MY_CXT.tbl);
278 }
279
280 #endif /* I_THREADSAFE */
281
282 #if I_WORKAROUND_REQUIRE_PROPAGATION
283 STATIC IV indirect_require_tag(pTHX) {
284 #define indirect_require_tag() indirect_require_tag(aTHX)
285  const CV *cv, *outside;
286
287  cv = PL_compcv;
288
289  if (!cv) {
290   /* If for some reason the pragma is operational at run-time, try to discover
291    * the current cv in use. */
292   const PERL_SI *si;
293
294   for (si = PL_curstackinfo; si; si = si->si_prev) {
295    I32 cxix;
296
297    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
298     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
299
300     switch (CxTYPE(cx)) {
301      case CXt_SUB:
302      case CXt_FORMAT:
303       /* The propagation workaround is only needed up to 5.10.0 and at that
304        * time format and sub contexts were still identical. And even later the
305        * cv members offsets should have been kept the same. */
306       cv = cx->blk_sub.cv;
307       goto get_enclosing_cv;
308      case CXt_EVAL:
309       cv = cx->blk_eval.cv;
310       goto get_enclosing_cv;
311      default:
312       break;
313     }
314    }
315   }
316
317   cv = PL_main_cv;
318  }
319
320 get_enclosing_cv:
321  for (outside = CvOUTSIDE(cv); outside; outside = CvOUTSIDE(cv))
322   cv = outside;
323
324  return PTR2IV(cv);
325 }
326 #endif /* I_WORKAROUND_REQUIRE_PROPAGATION */
327
328 STATIC SV *indirect_tag(pTHX_ SV *value) {
329 #define indirect_tag(V) indirect_tag(aTHX_ (V))
330  indirect_hint_t *h;
331  SV *code = NULL;
332  dMY_CXT;
333
334  if (SvROK(value)) {
335   value = SvRV(value);
336   if (SvTYPE(value) >= SVt_PVCV) {
337    code = value;
338    SvREFCNT_inc_simple_NN(code);
339   }
340  }
341
342 #if I_HINT_STRUCT
343  h = PerlMemShared_malloc(sizeof *h);
344  h->code        = code;
345 # if I_WORKAROUND_REQUIRE_PROPAGATION
346  h->require_tag = indirect_require_tag();
347 # endif /* I_WORKAROUND_REQUIRE_PROPAGATION */
348 #else  /*  I_HINT_STRUCT */
349  h = code;
350 #endif /* !I_HINT_STRUCT */
351
352 #if I_THREADSAFE
353  /* We only need for the key to be an unique tag for looking up the value later.
354   * Allocated memory provides convenient unique identifiers, so that's why we
355   * use the hint as the key itself. */
356  ptable_hints_store(MY_CXT.tbl, h, h);
357 #endif /* I_THREADSAFE */
358
359  return newSViv(PTR2IV(h));
360 }
361
362 STATIC SV *indirect_detag(pTHX_ const SV *hint) {
363 #define indirect_detag(H) indirect_detag(aTHX_ (H))
364  indirect_hint_t *h;
365  dMY_CXT;
366
367  if (!(hint && SvIOK(hint)))
368   return NULL;
369
370  h = INT2PTR(indirect_hint_t *, SvIVX(hint));
371 #if I_THREADSAFE
372  h = ptable_fetch(MY_CXT.tbl, h);
373 #endif /* I_THREADSAFE */
374
375 #if I_WORKAROUND_REQUIRE_PROPAGATION
376  if (indirect_require_tag() != h->require_tag)
377   return NULL;
378 #endif /* I_WORKAROUND_REQUIRE_PROPAGATION */
379
380  return I_HINT_CODE(h);
381 }
382
383 STATIC U32 indirect_hash = 0;
384
385 STATIC SV *indirect_hint(pTHX) {
386 #define indirect_hint() indirect_hint(aTHX)
387  SV *hint;
388
389  if (IN_PERL_RUNTIME)
390   return NULL;
391
392 #if I_HAS_PERL(5, 9, 5)
393  hint = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
394                                        NULL,
395                                        __PACKAGE__, __PACKAGE_LEN__,
396                                        0,
397                                        indirect_hash);
398 #else
399  {
400   SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__,
401                                                                  indirect_hash);
402   if (!val)
403    return 0;
404   hint = *val;
405  }
406 #endif
407  return indirect_detag(hint);
408 }
409
410 /* ... op -> source position ............................................... */
411
412 STATIC void indirect_map_store(pTHX_ const OP *o, STRLEN pos, SV *sv, line_t line) {
413 #define indirect_map_store(O, P, N, L) indirect_map_store(aTHX_ (O), (P), (N), (L))
414  indirect_op_info_t *oi;
415  const char *s;
416  STRLEN len;
417  dMY_CXT;
418
419  if (!(oi = ptable_fetch(MY_CXT.map, o))) {
420   Newx(oi, 1, indirect_op_info_t);
421   ptable_store(MY_CXT.map, o, oi);
422   oi->buf  = NULL;
423   oi->size = 0;
424  }
425
426  if (sv) {
427   s = SvPV_const(sv, len);
428  } else {
429   s   = "{";
430   len = 1;
431  }
432
433  if (len > oi->size) {
434   Safefree(oi->buf);
435   Newx(oi->buf, len, char);
436   oi->size = len;
437  }
438  Copy(s, oi->buf, len, char);
439
440  oi->len  = len;
441  oi->pos  = pos;
442  oi->line = line;
443 }
444
445 STATIC const indirect_op_info_t *indirect_map_fetch(pTHX_ const OP *o) {
446 #define indirect_map_fetch(O) indirect_map_fetch(aTHX_ (O))
447  dMY_CXT;
448
449  return ptable_fetch(MY_CXT.map, o);
450 }
451
452 STATIC void indirect_map_delete(pTHX_ const OP *o) {
453 #define indirect_map_delete(O) indirect_map_delete(aTHX_ (O))
454  dMY_CXT;
455
456  ptable_store(MY_CXT.map, o, NULL);
457 }
458
459 /* --- Check functions ----------------------------------------------------- */
460
461 STATIC int indirect_find(pTHX_ SV *sv, const char *s, STRLEN *pos) {
462 #define indirect_find(N, S, P) indirect_find(aTHX_ (N), (S), (P))
463  STRLEN len;
464  const char *p = NULL, *r = SvPV_const(sv, len);
465
466  if (len >= 1 && *r == '$') {
467   ++r;
468   --len;
469   s = strchr(s, '$');
470   if (!s)
471    return 0;
472  }
473
474  p = strstr(s, r);
475  while (p) {
476   p += len;
477   if (!isALNUM(*p))
478    break;
479   p = strstr(p + 1, r);
480  }
481  if (!p)
482   return 0;
483
484  *pos = p - SvPVX_const(PL_linestr);
485
486  return 1;
487 }
488
489 /* ... ck_const ............................................................ */
490
491 STATIC OP *(*indirect_old_ck_const)(pTHX_ OP *) = 0;
492
493 STATIC OP *indirect_ck_const(pTHX_ OP *o) {
494  o = CALL_FPTR(indirect_old_ck_const)(aTHX_ o);
495
496  if (indirect_hint()) {
497   SV *sv = cSVOPo_sv;
498
499   if (SvPOK(sv) && (SvTYPE(sv) >= SVt_PV)) {
500    STRLEN pos;
501
502    if (indirect_find(sv, PL_oldbufptr, &pos)) {
503     indirect_map_store(o, pos, sv, CopLINE(&PL_compiling));
504     return o;
505    }
506   }
507  }
508
509  indirect_map_delete(o);
510  return o;
511 }
512
513 /* ... ck_rv2sv ............................................................ */
514
515 STATIC OP *(*indirect_old_ck_rv2sv)(pTHX_ OP *) = 0;
516
517 STATIC OP *indirect_ck_rv2sv(pTHX_ OP *o) {
518  if (indirect_hint()) {
519   OP *op = cUNOPo->op_first;
520   SV *sv;
521   const char *name = NULL;
522   STRLEN pos, len;
523   OPCODE type = (OPCODE) op->op_type;
524
525   switch (type) {
526    case OP_GV:
527    case OP_GVSV: {
528     GV *gv = cGVOPx_gv(op);
529     name = GvNAME(gv);
530     len  = GvNAMELEN(gv);
531     break;
532    }
533    default:
534     if ((PL_opargs[type] & OA_CLASS_MASK) == OA_SVOP) {
535      SV *nsv = cSVOPx_sv(op);
536      if (SvPOK(nsv) && (SvTYPE(nsv) >= SVt_PV))
537       name = SvPV_const(nsv, len);
538     }
539   }
540   if (!name)
541    goto done;
542
543   sv = sv_2mortal(newSVpvn("$", 1));
544   sv_catpvn_nomg(sv, name, len);
545   if (!indirect_find(sv, PL_oldbufptr, &pos)) {
546    /* If it failed, retry without the current stash */
547    const char *stash = HvNAME_get(PL_curstash);
548    STRLEN stashlen = HvNAMELEN_get(PL_curstash);
549
550    if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
551        || name[stashlen] != ':' || name[stashlen+1] != ':') {
552     /* Failed again ? Try to remove main */
553     stash = "main";
554     stashlen = 4;
555     if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
556         || name[stashlen] != ':' || name[stashlen+1] != ':')
557      goto done;
558    }
559
560    sv_setpvn(sv, "$", 1);
561    stashlen += 2;
562    sv_catpvn_nomg(sv, name + stashlen, len - stashlen);
563    if (!indirect_find(sv, PL_oldbufptr, &pos))
564     goto done;
565   }
566
567   o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
568
569   indirect_map_store(o, pos, sv, CopLINE(&PL_compiling));
570   return o;
571  }
572
573 done:
574  o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
575
576  indirect_map_delete(o);
577  return o;
578 }
579
580 /* ... ck_padany ........................................................... */
581
582 STATIC OP *(*indirect_old_ck_padany)(pTHX_ OP *) = 0;
583
584 STATIC OP *indirect_ck_padany(pTHX_ OP *o) {
585  o = CALL_FPTR(indirect_old_ck_padany)(aTHX_ o);
586
587  if (indirect_hint()) {
588   SV *sv;
589   const char *s = PL_oldbufptr, *t = PL_bufptr - 1;
590
591   while (s < t && isSPACE(*s)) ++s;
592   if (*s == '$' && ++s <= t) {
593    while (s < t && isSPACE(*s)) ++s;
594    while (s < t && isSPACE(*t)) --t;
595    sv = sv_2mortal(newSVpvn("$", 1));
596    sv_catpvn_nomg(sv, s, t - s + 1);
597    indirect_map_store(o, s - SvPVX_const(PL_linestr),
598                          sv, CopLINE(&PL_compiling));
599    return o;
600   }
601  }
602
603  indirect_map_delete(o);
604  return o;
605 }
606
607 /* ... ck_scope ............................................................ */
608
609 STATIC OP *(*indirect_old_ck_scope)  (pTHX_ OP *) = 0;
610 STATIC OP *(*indirect_old_ck_lineseq)(pTHX_ OP *) = 0;
611
612 STATIC OP *indirect_ck_scope(pTHX_ OP *o) {
613  OP *(*old_ck)(pTHX_ OP *) = 0;
614
615  switch (o->op_type) {
616   case OP_SCOPE:   old_ck = indirect_old_ck_scope;   break;
617   case OP_LINESEQ: old_ck = indirect_old_ck_lineseq; break;
618  }
619  o = CALL_FPTR(old_ck)(aTHX_ o);
620
621  if (indirect_hint()) {
622   indirect_map_store(o, PL_oldbufptr - SvPVX_const(PL_linestr),
623                         NULL, CopLINE(&PL_compiling));
624   return o;
625  }
626
627  indirect_map_delete(o);
628  return o;
629 }
630
631 /* We don't need to clean the map entries for leave ops because they can only
632  * be created by mutating from a lineseq. */
633
634 /* ... ck_method ........................................................... */
635
636 STATIC OP *(*indirect_old_ck_method)(pTHX_ OP *) = 0;
637
638 STATIC OP *indirect_ck_method(pTHX_ OP *o) {
639  if (indirect_hint()) {
640   OP *op = cUNOPo->op_first;
641
642   /* Indirect method call is only possible when the method is a bareword, so
643    * don't trip up on $obj->$meth. */
644   if (op && op->op_type == OP_CONST) {
645    const indirect_op_info_t *oi = indirect_map_fetch(op);
646    STRLEN pos;
647    line_t line;
648    SV *sv;
649
650    if (!oi)
651     goto done;
652
653    sv   = sv_2mortal(newSVpvn(oi->buf, oi->len));
654    pos  = oi->pos;
655    /* Keep the old line so that we really point to the first line of the
656     * expression. */
657    line = oi->line;
658
659    o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
660    /* o may now be a method_named */
661
662    indirect_map_store(o, pos, sv, line);
663    return o;
664   }
665  }
666
667 done:
668  o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
669
670  indirect_map_delete(o);
671  return o;
672 }
673
674 /* ... ck_method_named ..................................................... */
675
676 /* "use foo/no foo" compiles its call to import/unimport directly to a
677  * method_named op. */
678
679 STATIC OP *(*indirect_old_ck_method_named)(pTHX_ OP *) = 0;
680
681 STATIC OP *indirect_ck_method_named(pTHX_ OP *o) {
682  if (indirect_hint()) {
683   STRLEN pos;
684   line_t line;
685   SV *sv;
686
687   sv = cSVOPo_sv;
688   if (!SvPOK(sv) || (SvTYPE(sv) < SVt_PV))
689    goto done;
690   sv = sv_mortalcopy(sv);
691
692   if (!indirect_find(sv, PL_oldbufptr, &pos))
693    goto done;
694   line = CopLINE(&PL_compiling);
695
696   o = CALL_FPTR(indirect_old_ck_method_named)(aTHX_ o);
697
698   indirect_map_store(o, pos, sv, line);
699   return o;
700  }
701
702 done:
703  o = CALL_FPTR(indirect_old_ck_method_named)(aTHX_ o);
704
705  indirect_map_delete(o);
706  return o;
707 }
708
709 /* ... ck_entersub ......................................................... */
710
711 STATIC int indirect_is_indirect(const indirect_op_info_t *moi, const indirect_op_info_t *ooi) {
712  if (moi->pos > ooi->pos)
713   return 0;
714
715  if (moi->pos == ooi->pos)
716   return moi->len == ooi->len && !memcmp(moi->buf, ooi->buf, moi->len);
717
718  return 1;
719 }
720
721 STATIC OP *(*indirect_old_ck_entersub)(pTHX_ OP *) = 0;
722
723 STATIC OP *indirect_ck_entersub(pTHX_ OP *o) {
724  SV *code = indirect_hint();
725
726  o = CALL_FPTR(indirect_old_ck_entersub)(aTHX_ o);
727
728  if (code) {
729   const indirect_op_info_t *moi, *ooi;
730   OP     *mop, *oop;
731   LISTOP *lop;
732
733   oop = o;
734   do {
735    lop = (LISTOP *) oop;
736    if (!(lop->op_flags & OPf_KIDS))
737     goto done;
738    oop = lop->op_first;
739   } while (oop->op_type != OP_PUSHMARK);
740   oop = oop->op_sibling;
741   mop = lop->op_last;
742
743   if (!oop)
744    goto done;
745
746   switch (oop->op_type) {
747    case OP_CONST:
748    case OP_RV2SV:
749    case OP_PADSV:
750    case OP_SCOPE:
751    case OP_LEAVE:
752     break;
753    default:
754     goto done;
755   }
756
757   if (mop->op_type == OP_METHOD)
758    mop = cUNOPx(mop)->op_first;
759   else if (mop->op_type != OP_METHOD_NAMED)
760    goto done;
761
762   moi = indirect_map_fetch(mop);
763   if (!moi)
764    goto done;
765
766   ooi = indirect_map_fetch(oop);
767   if (!ooi)
768    goto done;
769
770   if (indirect_is_indirect(moi, ooi)) {
771    SV *file;
772    dSP;
773
774    ENTER;
775    SAVETMPS;
776
777 #ifdef USE_ITHREADS
778    file = sv_2mortal(newSVpv(CopFILE(&PL_compiling), 0));
779 #else
780    file = sv_mortalcopy(CopFILESV(&PL_compiling));
781 #endif
782
783    PUSHMARK(SP);
784    EXTEND(SP, 4);
785    mPUSHp(ooi->buf, ooi->len);
786    mPUSHp(moi->buf, moi->len);
787    PUSHs(file);
788    mPUSHu(moi->line);
789    PUTBACK;
790
791    call_sv(code, G_VOID);
792
793    PUTBACK;
794
795    FREETMPS;
796    LEAVE;
797   }
798  }
799
800 done:
801  return o;
802 }
803
804 STATIC U32 indirect_initialized = 0;
805
806 STATIC void indirect_teardown(pTHX_ void *root) {
807  dMY_CXT;
808
809  if (!indirect_initialized)
810   return;
811
812 #if I_MULTIPLICITY
813  if (aTHX != root)
814   return;
815 #endif
816
817  ptable_free(MY_CXT.map);
818 #if I_THREADSAFE
819  ptable_hints_free(MY_CXT.tbl);
820 #endif
821
822  PL_check[OP_CONST]           = MEMBER_TO_FPTR(indirect_old_ck_const);
823  indirect_old_ck_const        = 0;
824  PL_check[OP_RV2SV]           = MEMBER_TO_FPTR(indirect_old_ck_rv2sv);
825  indirect_old_ck_rv2sv        = 0;
826  PL_check[OP_PADANY]          = MEMBER_TO_FPTR(indirect_old_ck_padany);
827  indirect_old_ck_padany       = 0;
828  PL_check[OP_SCOPE]           = MEMBER_TO_FPTR(indirect_old_ck_scope);
829  indirect_old_ck_scope        = 0;
830  PL_check[OP_LINESEQ]         = MEMBER_TO_FPTR(indirect_old_ck_lineseq);
831  indirect_old_ck_lineseq      = 0;
832
833  PL_check[OP_METHOD]          = MEMBER_TO_FPTR(indirect_old_ck_method);
834  indirect_old_ck_method       = 0;
835  PL_check[OP_METHOD_NAMED]    = MEMBER_TO_FPTR(indirect_old_ck_method_named);
836  indirect_old_ck_method_named = 0;
837  PL_check[OP_ENTERSUB]        = MEMBER_TO_FPTR(indirect_old_ck_entersub);
838  indirect_old_ck_entersub     = 0;
839
840  indirect_initialized = 0;
841 }
842
843 STATIC void indirect_setup(pTHX) {
844 #define indirect_setup() indirect_setup(aTHX)
845  if (indirect_initialized)
846   return;
847
848  {
849   MY_CXT_INIT;
850 #if I_THREADSAFE
851   MY_CXT.tbl   = ptable_new();
852   MY_CXT.owner = aTHX;
853 #endif
854   MY_CXT.map   = ptable_new();
855  }
856
857  indirect_old_ck_const        = PL_check[OP_CONST];
858  PL_check[OP_CONST]           = MEMBER_TO_FPTR(indirect_ck_const);
859  indirect_old_ck_rv2sv        = PL_check[OP_RV2SV];
860  PL_check[OP_RV2SV]           = MEMBER_TO_FPTR(indirect_ck_rv2sv);
861  indirect_old_ck_padany       = PL_check[OP_PADANY];
862  PL_check[OP_PADANY]          = MEMBER_TO_FPTR(indirect_ck_padany);
863  indirect_old_ck_scope        = PL_check[OP_SCOPE];
864  PL_check[OP_SCOPE]           = MEMBER_TO_FPTR(indirect_ck_scope);
865  indirect_old_ck_lineseq      = PL_check[OP_LINESEQ];
866  PL_check[OP_LINESEQ]         = MEMBER_TO_FPTR(indirect_ck_scope);
867
868  indirect_old_ck_method       = PL_check[OP_METHOD];
869  PL_check[OP_METHOD]          = MEMBER_TO_FPTR(indirect_ck_method);
870  indirect_old_ck_method_named = PL_check[OP_METHOD_NAMED];
871  PL_check[OP_METHOD_NAMED]    = MEMBER_TO_FPTR(indirect_ck_method_named);
872  indirect_old_ck_entersub     = PL_check[OP_ENTERSUB];
873  PL_check[OP_ENTERSUB]        = MEMBER_TO_FPTR(indirect_ck_entersub);
874
875 #if I_MULTIPLICITY
876  call_atexit(indirect_teardown, aTHX);
877 #else
878  call_atexit(indirect_teardown, NULL);
879 #endif
880
881  indirect_initialized = 1;
882 }
883
884 STATIC U32 indirect_booted = 0;
885
886 /* --- XS ------------------------------------------------------------------ */
887
888 MODULE = indirect      PACKAGE = indirect
889
890 PROTOTYPES: ENABLE
891
892 BOOT:
893 {
894  if (!indirect_booted++) {
895   HV *stash;
896
897   PERL_HASH(indirect_hash, __PACKAGE__, __PACKAGE_LEN__);
898
899   stash = gv_stashpvn(__PACKAGE__, __PACKAGE_LEN__, 1);
900   newCONSTSUB(stash, "I_THREADSAFE", newSVuv(I_THREADSAFE));
901   newCONSTSUB(stash, "I_FORKSAFE",   newSVuv(I_FORKSAFE));
902  }
903
904  indirect_setup();
905 }
906
907 #if I_THREADSAFE
908
909 void
910 CLONE(...)
911 PROTOTYPE: DISABLE
912 PREINIT:
913  ptable *t;
914 PPCODE:
915  {
916   my_cxt_t ud;
917   dMY_CXT;
918   ud.tbl   = t = ptable_new();
919   ud.owner = MY_CXT.owner;
920   ptable_walk(MY_CXT.tbl, indirect_ptable_clone, &ud);
921  }
922  {
923   MY_CXT_CLONE;
924   MY_CXT.map   = ptable_new();
925   MY_CXT.tbl   = t;
926   MY_CXT.owner = aTHX;
927  }
928  reap(3, indirect_thread_cleanup, NULL);
929  XSRETURN(0);
930
931 #endif
932
933 SV *
934 _tag(SV *value)
935 PROTOTYPE: $
936 CODE:
937  RETVAL = indirect_tag(value);
938 OUTPUT:
939  RETVAL