]> git.vpit.fr Git - perl/modules/indirect.git/blob - indirect.xs
Only enable the pragma during compile time
[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 sv_catpvn_nomg
39 # define sv_catpvn_nomg sv_catpvn
40 #endif
41
42 #ifndef mPUSHp
43 # define mPUSHp(P, L) PUSHs(sv_2mortal(newSVpvn((P), (L))))
44 #endif
45
46 #ifndef mPUSHu
47 # define mPUSHu(U) PUSHs(sv_2mortal(newSVuv(U)))
48 #endif
49
50 #ifndef HvNAME_get
51 # define HvNAME_get(H) HvNAME(H)
52 #endif
53
54 #ifndef HvNAMELEN_get
55 # define HvNAMELEN_get(H) strlen(HvNAME_get(H))
56 #endif
57
58 #define I_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
59
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
63 # endif
64 # ifndef PL_linestr
65 #  define PL_linestr PL_parser->linestr
66 # endif
67 # ifndef PL_bufptr
68 #  define PL_bufptr PL_parser->bufptr
69 # endif
70 # ifndef PL_oldbufptr
71 #  define PL_oldbufptr PL_parser->oldbufptr
72 # endif
73 #else
74 # ifndef PL_lex_inwhat
75 #  define PL_lex_inwhat PL_Ilex_inwhat
76 # endif
77 # ifndef PL_linestr
78 #  define PL_linestr PL_Ilinestr
79 # endif
80 # ifndef PL_bufptr
81 #  define PL_bufptr PL_Ibufptr
82 # endif
83 # ifndef PL_oldbufptr
84 #  define PL_oldbufptr PL_Ioldbufptr
85 # endif
86 #endif
87
88 #ifndef I_WORKAROUND_REQUIRE_PROPAGATION
89 # define I_WORKAROUND_REQUIRE_PROPAGATION !I_HAS_PERL(5, 10, 1)
90 #endif
91
92 /* ... Thread safety and multiplicity ...................................... */
93
94 #ifndef I_MULTIPLICITY
95 # if defined(MULTIPLICITY) || defined(PERL_IMPLICIT_CONTEXT)
96 #  define I_MULTIPLICITY 1
97 # else
98 #  define I_MULTIPLICITY 0
99 # endif
100 #endif
101 #if I_MULTIPLICITY && !defined(tTHX)
102 # define tTHX PerlInterpreter*
103 #endif
104
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 \
109     dMY_CXT_SV;                                                      \
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))
113 # endif
114 #else
115 # define I_THREADSAFE 0
116 # undef  dMY_CXT
117 # define dMY_CXT      dNOOP
118 # undef  MY_CXT
119 # define MY_CXT       indirect_globaldata
120 # undef  START_MY_CXT
121 # define START_MY_CXT STATIC my_cxt_t MY_CXT;
122 # undef  MY_CXT_INIT
123 # define MY_CXT_INIT  NOOP
124 # undef  MY_CXT_CLONE
125 # define MY_CXT_CLONE NOOP
126 #endif
127
128 /* --- Helpers ------------------------------------------------------------- */
129
130 /* ... Thread-safe hints ................................................... */
131
132 /* If any of those are true, we need to store the hint in a global table. */
133
134 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
135
136 typedef struct {
137  SV  *code;
138 #if I_WORKAROUND_REQUIRE_PROPAGATION
139  I32  requires;
140 #endif
141 } indirect_hint_t;
142
143 #define PTABLE_NAME ptable_hints
144
145 #define PTABLE_VAL_FREE(V) \
146    { indirect_hint_t *h = (V); SvREFCNT_dec(h->code); PerlMemShared_free(h); }
147
148 #define pPTBL  pTHX
149 #define pPTBL_ pTHX_
150 #define aPTBL  aTHX
151 #define aPTBL_ aTHX_
152
153 #include "ptable.h"
154
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))
157
158 #endif /* I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION */
159
160 /* Define the op->str ptable here because we need to be able to clean it during
161  * thread cleanup. */
162
163 typedef struct {
164  const char *pos;
165  char       *buf;
166  STRLEN      len, size;
167  line_t      line;
168 } indirect_op_info_t;
169
170 #define PTABLE_NAME        ptable
171 #define PTABLE_VAL_FREE(V) if (V) { Safefree(((indirect_op_info_t *) (V))->buf); Safefree(V); }
172
173 #define pPTBL  pTHX
174 #define pPTBL_ pTHX_
175 #define aPTBL  aTHX
176 #define aPTBL_ aTHX_
177
178 #include "ptable.h"
179
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))
183
184 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
185
186 typedef struct {
187 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
188  ptable     *tbl; /* It really is a ptable_hints */
189 #endif
190  ptable     *map;
191  const char *linestr;
192 #if I_THREADSAFE
193  tTHX        owner;
194 #endif
195 } my_cxt_t;
196
197 START_MY_CXT
198
199 #if I_THREADSAFE
200
201 STATIC SV *indirect_clone(pTHX_ SV *sv, tTHX owner) {
202 #define indirect_clone(S, O) indirect_clone(aTHX_ (S), (O))
203  CLONE_PARAMS  param;
204  AV           *stashes = NULL;
205  SV           *dupsv;
206
207  if (SvTYPE(sv) == SVt_PVHV && HvNAME_get(sv))
208   stashes = newAV();
209
210  param.stashes    = stashes;
211  param.flags      = 0;
212  param.proto_perl = owner;
213
214  dupsv = sv_dup(sv, &param);
215
216  if (stashes) {
217   av_undef(stashes);
218   SvREFCNT_dec(stashes);
219  }
220
221  return SvREFCNT_inc(dupsv);
222 }
223
224 STATIC void indirect_ptable_clone(pTHX_ ptable_ent *ent, void *ud_) {
225  my_cxt_t        *ud = ud_;
226  indirect_hint_t *h1 = ent->val;
227  indirect_hint_t *h2 = PerlMemShared_malloc(sizeof *h2);
228
229  *h2 = *h1;
230
231  if (ud->owner != aTHX)
232   h2->code = indirect_clone(h1->code, ud->owner);
233
234  ptable_hints_store(ud->tbl, ent->key, h2);
235  SvREFCNT_inc(h2->code);
236 }
237
238 STATIC void indirect_thread_cleanup(pTHX_ void *);
239
240 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
241  int *level = ud;
242
243  if (*level) {
244   *level = 0;
245   LEAVE;
246   SAVEDESTRUCTOR_X(indirect_thread_cleanup, level);
247   ENTER;
248  } else {
249   dMY_CXT;
250   PerlMemShared_free(level);
251   ptable_free(MY_CXT.map);
252   ptable_hints_free(MY_CXT.tbl);
253  }
254 }
255
256 #endif /* I_THREADSAFE */
257
258 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
259
260 STATIC SV *indirect_tag(pTHX_ SV *value) {
261 #define indirect_tag(V) indirect_tag(aTHX_ (V))
262  indirect_hint_t *h;
263  dMY_CXT;
264
265  value = SvOK(value) && SvROK(value) ? SvRV(value) : NULL;
266
267  h = PerlMemShared_malloc(sizeof *h);
268  h->code = SvREFCNT_inc(value);
269
270 #if I_WORKAROUND_REQUIRE_PROPAGATION
271  {
272   const PERL_SI *si;
273   I32            requires = 0;
274
275   for (si = PL_curstackinfo; si; si = si->si_prev) {
276    I32 cxix;
277
278    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
279     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
280
281     if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE)
282      ++requires;
283    }
284   }
285
286   h->requires = requires;
287  }
288 #endif
289
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);
294
295  return newSVuv(PTR2UV(value));
296 }
297
298 STATIC SV *indirect_detag(pTHX_ const SV *hint) {
299 #define indirect_detag(H) indirect_detag(aTHX_ (H))
300  indirect_hint_t *h;
301  dMY_CXT;
302
303  if (!(hint && SvOK(hint) && SvIOK(hint)))
304   return NULL;
305
306  h = ptable_fetch(MY_CXT.tbl, INT2PTR(void *, SvUVX(hint)));
307
308 #if I_WORKAROUND_REQUIRE_PROPAGATION
309  {
310   const PERL_SI *si;
311   I32            requires = 0;
312
313   for (si = PL_curstackinfo; si; si = si->si_prev) {
314    I32 cxix;
315
316    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
317     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
318
319     if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE
320                                && ++requires > h->requires)
321      return NULL;
322    }
323   }
324  }
325 #endif
326
327  return h->code;
328 }
329
330 #else
331
332 STATIC SV *indirect_tag(pTHX_ SV *value) {
333 #define indirect_tag(V) indirect_tag(aTHX_ (V))
334  UV tag = 0;
335
336  if (SvOK(value) && SvROK(value)) {
337   value = SvRV(value);
338   SvREFCNT_inc(value);
339   tag = PTR2UV(value);
340  }
341
342  return newSVuv(tag);
343 }
344
345 #define indirect_detag(H) (((H) && SvOK(H)) ? INT2PTR(SV *, SvUVX(H)) : NULL)
346
347 #endif /* I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION */
348
349 STATIC U32 indirect_hash = 0;
350
351 STATIC SV *indirect_hint(pTHX) {
352 #define indirect_hint() indirect_hint(aTHX)
353  SV *hint;
354
355  if (IN_PERL_RUNTIME)
356   return NULL;
357
358 #if I_HAS_PERL(5, 9, 5)
359  hint = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
360                                        NULL,
361                                        __PACKAGE__, __PACKAGE_LEN__,
362                                        0,
363                                        indirect_hash);
364 #else
365  {
366   SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__,
367                                                                  indirect_hash);
368   if (!val)
369    return 0;
370   hint = *val;
371  }
372 #endif
373  return indirect_detag(hint);
374 }
375
376 /* ... op -> source position ............................................... */
377
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;
381  const char *s;
382  STRLEN len;
383  dMY_CXT;
384
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. */
388
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;
394   }
395  }
396
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);
400   oi->buf  = NULL;
401   oi->size = 0;
402  }
403
404  s = SvPV_const(sv, len);
405  if (len > oi->size) {
406   Safefree(oi->buf);
407   Newx(oi->buf, len, char);
408   oi->size = len;
409  }
410  Copy(s, oi->buf, len, char);
411  oi->len  = len;
412  oi->pos  = src;
413  oi->line = line;
414 }
415
416 STATIC const indirect_op_info_t *indirect_map_fetch(pTHX_ const OP *o) {
417 #define indirect_map_fetch(O) indirect_map_fetch(aTHX_ (O))
418  const indirect_op_info_t *val;
419  dMY_CXT;
420
421  if (MY_CXT.linestr != SvPVX_const(PL_linestr))
422   return NULL;
423
424  return ptable_fetch(MY_CXT.map, o);
425 }
426
427 STATIC void indirect_map_delete(pTHX_ const OP *o) {
428 #define indirect_map_delete(O) indirect_map_delete(aTHX_ (O))
429  dMY_CXT;
430
431  ptable_store(MY_CXT.map, o, NULL);
432 }
433
434 /* --- Check functions ----------------------------------------------------- */
435
436 STATIC const char *indirect_find(pTHX_ SV *sv, const char *s) {
437 #define indirect_find(N, S) indirect_find(aTHX_ (N), (S))
438  STRLEN len;
439  const char *p = NULL, *r = SvPV_const(sv, len);
440
441  if (len >= 1 && *r == '$') {
442   ++r;
443   --len;
444   s = strchr(s, '$');
445   if (!s)
446    return NULL;
447  }
448
449  p = strstr(s, r);
450  while (p) {
451   p += len;
452   if (!isALNUM(*p))
453    break;
454   p = strstr(p + 1, r);
455  }
456
457  return p;
458 }
459
460 /* ... ck_const ............................................................ */
461
462 STATIC OP *(*indirect_old_ck_const)(pTHX_ OP *) = 0;
463
464 STATIC OP *indirect_ck_const(pTHX_ OP *o) {
465  o = CALL_FPTR(indirect_old_ck_const)(aTHX_ o);
466
467  if (indirect_hint()) {
468   SV *sv = cSVOPo_sv;
469   if (SvPOK(sv) && (SvTYPE(sv) >= SVt_PV)) {
470    const char *s = indirect_find(sv, PL_oldbufptr);
471    indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
472    return o;
473   }
474  }
475
476  indirect_map_delete(o);
477  return o;
478 }
479
480 /* ... ck_rv2sv ............................................................ */
481
482 STATIC OP *(*indirect_old_ck_rv2sv)(pTHX_ OP *) = 0;
483
484 STATIC OP *indirect_ck_rv2sv(pTHX_ OP *o) {
485  if (indirect_hint()) {
486   OP *op = cUNOPo->op_first;
487   SV *sv;
488   const char *name = NULL, *s;
489   STRLEN len;
490   OPCODE type = (OPCODE) op->op_type;
491
492   switch (type) {
493    case OP_GV:
494    case OP_GVSV: {
495     GV *gv = cGVOPx_gv(op);
496     name = GvNAME(gv);
497     len  = GvNAMELEN(gv);
498     break;
499    }
500    default:
501     if ((PL_opargs[type] & OA_CLASS_MASK) == OA_SVOP) {
502      SV *nsv = cSVOPx_sv(op);
503      if (SvPOK(nsv) && (SvTYPE(nsv) >= SVt_PV))
504       name = SvPV_const(nsv, len);
505     }
506   }
507   if (!name)
508    goto done;
509
510   sv = sv_2mortal(newSVpvn("$", 1));
511   sv_catpvn_nomg(sv, name, len);
512   s = indirect_find(sv, PL_oldbufptr);
513   if (!s) { /* If it failed, retry without the current stash */
514    const char *stash = HvNAME_get(PL_curstash);
515    STRLEN stashlen = HvNAMELEN_get(PL_curstash);
516
517    if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
518        || name[stashlen] != ':' || name[stashlen+1] != ':') {
519     /* Failed again ? Try to remove main */
520     stash = "main";
521     stashlen = 4;
522     if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
523         || name[stashlen] != ':' || name[stashlen+1] != ':')
524      goto done;
525    }
526
527    sv_setpvn(sv, "$", 1);
528    stashlen += 2;
529    sv_catpvn_nomg(sv, name + stashlen, len - stashlen);
530    s = indirect_find(sv, PL_oldbufptr);
531    if (!s)
532     goto done;
533   }
534
535   o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
536   indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
537   return o;
538  }
539
540 done:
541  o = CALL_FPTR(indirect_old_ck_rv2sv)(aTHX_ o);
542
543  indirect_map_delete(o);
544  return o;
545 }
546
547 /* ... ck_padany ........................................................... */
548
549 STATIC OP *(*indirect_old_ck_padany)(pTHX_ OP *) = 0;
550
551 STATIC OP *indirect_ck_padany(pTHX_ OP *o) {
552  o = CALL_FPTR(indirect_old_ck_padany)(aTHX_ o);
553
554  if (indirect_hint()) {
555   SV *sv;
556   const char *s = PL_oldbufptr, *t = PL_bufptr - 1;
557
558   while (s < t && isSPACE(*s)) ++s;
559   if (*s == '$' && ++s <= t) {
560    while (s < t && isSPACE(*s)) ++s;
561    while (s < t && isSPACE(*t)) --t;
562    sv = sv_2mortal(newSVpvn("$", 1));
563    sv_catpvn_nomg(sv, s, t - s + 1);
564    indirect_map_store(o, s, sv, CopLINE(&PL_compiling));
565    return o;
566   }
567  }
568
569  indirect_map_delete(o);
570  return o;
571 }
572
573 /* ... ck_method ........................................................... */
574
575 STATIC OP *(*indirect_old_ck_method)(pTHX_ OP *) = 0;
576
577 STATIC OP *indirect_ck_method(pTHX_ OP *o) {
578  if (indirect_hint()) {
579   OP *op = cUNOPo->op_first;
580   const indirect_op_info_t *oi = indirect_map_fetch(op);
581   const char *s = NULL;
582   line_t line;
583   SV *sv;
584
585   if (oi && (s = oi->pos)) {
586    sv   = sv_2mortal(newSVpvn(oi->buf, oi->len));
587    line = oi->line; /* Keep the old line so that we really point to the first */
588   } else {
589    sv = cSVOPx_sv(op);
590    if (!SvPOK(sv) || (SvTYPE(sv) < SVt_PV))
591     goto done;
592    sv   = sv_mortalcopy(sv);
593    s    = indirect_find(sv, PL_oldbufptr);
594    line = CopLINE(&PL_compiling);
595   }
596
597   o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
598   /* o may now be a method_named */
599
600   indirect_map_store(o, s, sv, line);
601   return o;
602  }
603
604 done:
605  o = CALL_FPTR(indirect_old_ck_method)(aTHX_ o);
606
607  indirect_map_delete(o);
608  return o;
609 }
610
611 /* ... ck_entersub ......................................................... */
612
613 STATIC int indirect_is_indirect(const indirect_op_info_t *moi, const indirect_op_info_t *ooi) {
614  if (moi->pos > ooi->pos)
615   return 0;
616
617  if (moi->pos == ooi->pos)
618   return moi->len == ooi->len && !memcmp(moi->buf, ooi->buf, moi->len);
619
620  return 1;
621 }
622
623 STATIC OP *(*indirect_old_ck_entersub)(pTHX_ OP *) = 0;
624
625 STATIC OP *indirect_ck_entersub(pTHX_ OP *o) {
626  SV *code = indirect_hint();
627
628  o = CALL_FPTR(indirect_old_ck_entersub)(aTHX_ o);
629
630  if (code) {
631   const indirect_op_info_t *moi, *ooi;
632   OP     *mop, *oop;
633   LISTOP *lop;
634
635   oop = o;
636   do {
637    lop = (LISTOP *) oop;
638    if (!(lop->op_flags & OPf_KIDS))
639     goto done;
640    oop = lop->op_first;
641   } while (oop->op_type != OP_PUSHMARK);
642   oop = oop->op_sibling;
643   mop = lop->op_last;
644
645   if (!oop)
646    goto done;
647
648   switch (oop->op_type) {
649    case OP_CONST:
650    case OP_RV2SV:
651    case OP_PADSV:
652     break;
653    default:
654     goto done;
655   }
656
657   if (mop->op_type == OP_METHOD)
658    mop = cUNOPx(mop)->op_first;
659   else if (mop->op_type != OP_METHOD_NAMED)
660    goto done;
661
662   moi = indirect_map_fetch(mop);
663   if (!(moi && moi->pos))
664    goto done;
665
666   ooi = indirect_map_fetch(oop);
667   if (!(ooi && ooi->pos))
668    goto done;
669
670   if (indirect_is_indirect(moi, ooi)) {
671    SV *file;
672    dSP;
673
674    ENTER;
675    SAVETMPS;
676
677 #ifdef USE_ITHREADS
678    file = sv_2mortal(newSVpv(CopFILE(&PL_compiling), 0));
679 #else
680    file = sv_mortalcopy(CopFILESV(&PL_compiling));
681 #endif
682
683    PUSHMARK(SP);
684    EXTEND(SP, 4);
685    mPUSHp(ooi->buf, ooi->len);
686    mPUSHp(moi->buf, moi->len);
687    PUSHs(file);
688    mPUSHu(moi->line);
689    PUTBACK;
690
691    call_sv(code, G_VOID);
692
693    PUTBACK;
694
695    FREETMPS;
696    LEAVE;
697   }
698  }
699
700 done:
701  return o;
702 }
703
704 STATIC U32 indirect_initialized = 0;
705
706 /* --- XS ------------------------------------------------------------------ */
707
708 MODULE = indirect      PACKAGE = indirect
709
710 PROTOTYPES: ENABLE
711
712 BOOT:
713 {
714  if (!indirect_initialized++) {
715   HV *stash;
716
717   MY_CXT_INIT;
718   MY_CXT.map     = ptable_new();
719   MY_CXT.linestr = NULL;
720 #if I_THREADSAFE || I_WORKAROUND_REQUIRE_PROPAGATION
721   MY_CXT.tbl     = ptable_new();
722 #endif
723 #if I_THREADSAFE
724   MY_CXT.owner   = aTHX;
725 #endif
726
727   PERL_HASH(indirect_hash, __PACKAGE__, __PACKAGE_LEN__);
728
729   indirect_old_ck_const    = PL_check[OP_CONST];
730   PL_check[OP_CONST]       = MEMBER_TO_FPTR(indirect_ck_const);
731   indirect_old_ck_rv2sv    = PL_check[OP_RV2SV];
732   PL_check[OP_RV2SV]       = MEMBER_TO_FPTR(indirect_ck_rv2sv);
733   indirect_old_ck_padany   = PL_check[OP_PADANY];
734   PL_check[OP_PADANY]      = MEMBER_TO_FPTR(indirect_ck_padany);
735   indirect_old_ck_method   = PL_check[OP_METHOD];
736   PL_check[OP_METHOD]      = MEMBER_TO_FPTR(indirect_ck_method);
737   indirect_old_ck_entersub = PL_check[OP_ENTERSUB];
738   PL_check[OP_ENTERSUB]    = MEMBER_TO_FPTR(indirect_ck_entersub);
739
740   stash = gv_stashpvn(__PACKAGE__, __PACKAGE_LEN__, 1);
741   newCONSTSUB(stash, "I_THREADSAFE", newSVuv(I_THREADSAFE));
742  }
743 }
744
745 #if I_THREADSAFE
746
747 void
748 CLONE(...)
749 PROTOTYPE: DISABLE
750 PREINIT:
751  ptable *t;
752  int    *level;
753 CODE:
754  {
755   my_cxt_t ud;
756   dMY_CXT;
757   ud.tbl   = t = ptable_new();
758   ud.owner = MY_CXT.owner;
759   ptable_walk(MY_CXT.tbl, indirect_ptable_clone, &ud);
760  }
761  {
762   MY_CXT_CLONE;
763   MY_CXT.map     = ptable_new();
764   MY_CXT.linestr = NULL;
765   MY_CXT.tbl     = t;
766   MY_CXT.owner   = aTHX;
767  }
768  {
769   level = PerlMemShared_malloc(sizeof *level);
770   *level = 1;
771   LEAVE;
772   SAVEDESTRUCTOR_X(indirect_thread_cleanup, level);
773   ENTER;
774  }
775
776 #endif
777
778 SV *
779 _tag(SV *value)
780 PROTOTYPE: $
781 CODE:
782  RETVAL = indirect_tag(value);
783 OUTPUT:
784  RETVAL