]> git.vpit.fr Git - perl/modules/indirect.git/blob - indirect.xs
Only declare dMY_CXT when really needed
[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, 12, 0)
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_delete(T, K)   ptable_delete(aTHX_ (T), (K))
204 #define ptable_clear(T)       ptable_clear(aTHX_ (T))
205 #define ptable_free(T)        ptable_free(aTHX_ (T))
206
207 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
208
209 typedef struct {
210 #if I_THREADSAFE
211  ptable *tbl; /* It really is a ptable_hints */
212  tTHX    owner;
213 #endif
214  ptable *map;
215 } my_cxt_t;
216
217 START_MY_CXT
218
219 #if I_THREADSAFE
220
221 STATIC SV *indirect_clone(pTHX_ SV *sv, tTHX owner) {
222 #define indirect_clone(S, O) indirect_clone(aTHX_ (S), (O))
223  CLONE_PARAMS  param;
224  AV           *stashes = NULL;
225  SV           *dupsv;
226
227  if (SvTYPE(sv) == SVt_PVHV && HvNAME_get(sv))
228   stashes = newAV();
229
230  param.stashes    = stashes;
231  param.flags      = 0;
232  param.proto_perl = owner;
233
234  dupsv = sv_dup(sv, &param);
235
236  if (stashes) {
237   av_undef(stashes);
238   SvREFCNT_dec(stashes);
239  }
240
241  return SvREFCNT_inc(dupsv);
242 }
243
244 STATIC void indirect_ptable_clone(pTHX_ ptable_ent *ent, void *ud_) {
245  my_cxt_t        *ud = ud_;
246  indirect_hint_t *h1 = ent->val;
247  indirect_hint_t *h2;
248
249  if (ud->owner == aTHX)
250   return;
251
252 #if I_HINT_STRUCT
253
254  h2       = PerlMemShared_malloc(sizeof *h2);
255  h2->code = indirect_clone(h1->code, ud->owner);
256  SvREFCNT_inc(h2->code);
257 #if I_WORKAROUND_REQUIRE_PROPAGATION
258  h2->require_tag = PTR2IV(indirect_clone(INT2PTR(SV *, h1->require_tag),
259                                          ud->owner));
260 #endif
261
262 #else  /*  I_HINT_STRUCT */
263
264  h2 = indirect_clone(h1, ud->owner);
265  SvREFCNT_inc(h2);
266
267 #endif /* !I_HINT_STRUCT */
268
269  ptable_hints_store(ud->tbl, ent->key, h2);
270 }
271
272 #include "reap.h"
273
274 STATIC void indirect_thread_cleanup(pTHX_ void *ud) {
275  dMY_CXT;
276
277  ptable_free(MY_CXT.map);
278  ptable_hints_free(MY_CXT.tbl);
279 }
280
281 #endif /* I_THREADSAFE */
282
283 #if I_WORKAROUND_REQUIRE_PROPAGATION
284 STATIC IV indirect_require_tag(pTHX) {
285 #define indirect_require_tag() indirect_require_tag(aTHX)
286  const CV *cv, *outside;
287
288  cv = PL_compcv;
289
290  if (!cv) {
291   /* If for some reason the pragma is operational at run-time, try to discover
292    * the current cv in use. */
293   const PERL_SI *si;
294
295   for (si = PL_curstackinfo; si; si = si->si_prev) {
296    I32 cxix;
297
298    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
299     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
300
301     switch (CxTYPE(cx)) {
302      case CXt_SUB:
303      case CXt_FORMAT:
304       /* The propagation workaround is only needed up to 5.10.0 and at that
305        * time format and sub contexts were still identical. And even later the
306        * cv members offsets should have been kept the same. */
307       cv = cx->blk_sub.cv;
308       goto get_enclosing_cv;
309      case CXt_EVAL:
310       cv = cx->blk_eval.cv;
311       goto get_enclosing_cv;
312      default:
313       break;
314     }
315    }
316   }
317
318   cv = PL_main_cv;
319  }
320
321 get_enclosing_cv:
322  for (outside = CvOUTSIDE(cv); outside; outside = CvOUTSIDE(cv))
323   cv = outside;
324
325  return PTR2IV(cv);
326 }
327 #endif /* I_WORKAROUND_REQUIRE_PROPAGATION */
328
329 STATIC SV *indirect_tag(pTHX_ SV *value) {
330 #define indirect_tag(V) indirect_tag(aTHX_ (V))
331  indirect_hint_t *h;
332  SV *code = NULL;
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  {
354   dMY_CXT;
355   /* We only need for the key to be an unique tag for looking up the value later
356    * Allocated memory provides convenient unique identifiers, so that's why we
357    * use the hint as the key itself. */
358   ptable_hints_store(MY_CXT.tbl, h, h);
359  }
360 #endif /* I_THREADSAFE */
361
362  return newSViv(PTR2IV(h));
363 }
364
365 STATIC SV *indirect_detag(pTHX_ const SV *hint) {
366 #define indirect_detag(H) indirect_detag(aTHX_ (H))
367  indirect_hint_t *h;
368
369  if (!(hint && SvIOK(hint)))
370   return NULL;
371
372  h = INT2PTR(indirect_hint_t *, SvIVX(hint));
373 #if I_THREADSAFE
374  {
375   dMY_CXT;
376   h = ptable_fetch(MY_CXT.tbl, h);
377  }
378 #endif /* I_THREADSAFE */
379
380 #if I_WORKAROUND_REQUIRE_PROPAGATION
381  if (indirect_require_tag() != h->require_tag)
382   return NULL;
383 #endif /* I_WORKAROUND_REQUIRE_PROPAGATION */
384
385  return I_HINT_CODE(h);
386 }
387
388 STATIC U32 indirect_hash = 0;
389
390 STATIC SV *indirect_hint(pTHX) {
391 #define indirect_hint() indirect_hint(aTHX)
392  SV **val;
393
394  if (IN_PERL_RUNTIME)
395   return NULL;
396
397  val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__, indirect_hash);
398  if (!val)
399   return NULL;
400
401  return indirect_detag(*val);
402 }
403
404 /* ... op -> source position ............................................... */
405
406 STATIC void indirect_map_store(pTHX_ const OP *o, STRLEN pos, SV *sv, line_t line) {
407 #define indirect_map_store(O, P, N, L) indirect_map_store(aTHX_ (O), (P), (N), (L))
408  indirect_op_info_t *oi;
409  const char *s;
410  STRLEN len;
411  dMY_CXT;
412
413  if (!(oi = ptable_fetch(MY_CXT.map, o))) {
414   Newx(oi, 1, indirect_op_info_t);
415   ptable_store(MY_CXT.map, o, oi);
416   oi->buf  = NULL;
417   oi->size = 0;
418  }
419
420  if (sv) {
421   s = SvPV_const(sv, len);
422  } else {
423   s   = "{";
424   len = 1;
425  }
426
427  if (len > oi->size) {
428   Safefree(oi->buf);
429   Newx(oi->buf, len, char);
430   oi->size = len;
431  }
432  Copy(s, oi->buf, len, char);
433
434  oi->len  = len;
435  oi->pos  = pos;
436  oi->line = line;
437 }
438
439 STATIC const indirect_op_info_t *indirect_map_fetch(pTHX_ const OP *o) {
440 #define indirect_map_fetch(O) indirect_map_fetch(aTHX_ (O))
441  dMY_CXT;
442
443  return ptable_fetch(MY_CXT.map, o);
444 }
445
446 STATIC void indirect_map_delete(pTHX_ const OP *o) {
447 #define indirect_map_delete(O) indirect_map_delete(aTHX_ (O))
448  dMY_CXT;
449
450  ptable_delete(MY_CXT.map, o);
451 }
452
453 /* --- Check functions ----------------------------------------------------- */
454
455 STATIC int indirect_find(pTHX_ SV *sv, const char *s, STRLEN *pos) {
456 #define indirect_find(N, S, P) indirect_find(aTHX_ (N), (S), (P))
457  STRLEN len;
458  const char *p, *r = SvPV_const(sv, len);
459
460  if (len >= 1 && *r == '$') {
461   ++r;
462   --len;
463   s = strchr(s, '$');
464   if (!s)
465    return 0;
466  }
467
468  p = s;
469  while (1) {
470   p = strstr(p, r);
471   if (!p)
472    return 0;
473   if (!isALNUM(p[len]))
474    break;
475   /* p points to a word that has r as prefix, skip the rest of the word */
476   p += len + 1;
477   while (isALNUM(*p))
478    ++p;
479  }
480
481  *pos = p - SvPVX_const(PL_linestr);
482
483  return 1;
484 }
485
486 /* ... ck_const ............................................................ */
487
488 STATIC OP *(*indirect_old_ck_const)(pTHX_ OP *) = 0;
489
490 STATIC OP *indirect_ck_const(pTHX_ OP *o) {
491  o = indirect_old_ck_const(aTHX_ o);
492
493  if (indirect_hint()) {
494   SV *sv = cSVOPo_sv;
495
496   if (SvPOK(sv) && (SvTYPE(sv) >= SVt_PV)) {
497    STRLEN pos;
498
499    if (indirect_find(sv, PL_oldbufptr, &pos)) {
500     indirect_map_store(o, pos, sv, CopLINE(&PL_compiling));
501     return o;
502    }
503   }
504  }
505
506  indirect_map_delete(o);
507  return o;
508 }
509
510 /* ... ck_rv2sv ............................................................ */
511
512 STATIC OP *(*indirect_old_ck_rv2sv)(pTHX_ OP *) = 0;
513
514 STATIC OP *indirect_ck_rv2sv(pTHX_ OP *o) {
515  if (indirect_hint()) {
516   OP *op = cUNOPo->op_first;
517   SV *sv;
518   const char *name = NULL;
519   STRLEN pos, len;
520   OPCODE type = (OPCODE) op->op_type;
521
522   switch (type) {
523    case OP_GV:
524    case OP_GVSV: {
525     GV *gv = cGVOPx_gv(op);
526     name = GvNAME(gv);
527     len  = GvNAMELEN(gv);
528     break;
529    }
530    default:
531     if ((PL_opargs[type] & OA_CLASS_MASK) == OA_SVOP) {
532      SV *nsv = cSVOPx_sv(op);
533      if (SvPOK(nsv) && (SvTYPE(nsv) >= SVt_PV))
534       name = SvPV_const(nsv, len);
535     }
536   }
537   if (!name)
538    goto done;
539
540   sv = sv_2mortal(newSVpvn("$", 1));
541   sv_catpvn_nomg(sv, name, len);
542   if (!indirect_find(sv, PL_oldbufptr, &pos)) {
543    /* If it failed, retry without the current stash */
544    const char *stash = HvNAME_get(PL_curstash);
545    STRLEN stashlen = HvNAMELEN_get(PL_curstash);
546
547    if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
548        || name[stashlen] != ':' || name[stashlen+1] != ':') {
549     /* Failed again ? Try to remove main */
550     stash = "main";
551     stashlen = 4;
552     if ((len < stashlen + 2) || strnNE(name, stash, stashlen)
553         || name[stashlen] != ':' || name[stashlen+1] != ':')
554      goto done;
555    }
556
557    sv_setpvn(sv, "$", 1);
558    stashlen += 2;
559    sv_catpvn_nomg(sv, name + stashlen, len - stashlen);
560    if (!indirect_find(sv, PL_oldbufptr, &pos))
561     goto done;
562   }
563
564   o = indirect_old_ck_rv2sv(aTHX_ o);
565
566   indirect_map_store(o, pos, sv, CopLINE(&PL_compiling));
567   return o;
568  }
569
570 done:
571  o = indirect_old_ck_rv2sv(aTHX_ o);
572
573  indirect_map_delete(o);
574  return o;
575 }
576
577 /* ... ck_padany ........................................................... */
578
579 STATIC OP *(*indirect_old_ck_padany)(pTHX_ OP *) = 0;
580
581 STATIC OP *indirect_ck_padany(pTHX_ OP *o) {
582  o = indirect_old_ck_padany(aTHX_ o);
583
584  if (indirect_hint()) {
585   SV *sv;
586   const char *s = PL_oldbufptr, *t = PL_bufptr - 1;
587
588   while (s < t && isSPACE(*s)) ++s;
589   if (*s == '$' && ++s <= t) {
590    while (s < t && isSPACE(*s)) ++s;
591    while (s < t && isSPACE(*t)) --t;
592    sv = sv_2mortal(newSVpvn("$", 1));
593    sv_catpvn_nomg(sv, s, t - s + 1);
594    indirect_map_store(o, s - SvPVX_const(PL_linestr),
595                          sv, CopLINE(&PL_compiling));
596    return o;
597   }
598  }
599
600  indirect_map_delete(o);
601  return o;
602 }
603
604 /* ... ck_scope ............................................................ */
605
606 STATIC OP *(*indirect_old_ck_scope)  (pTHX_ OP *) = 0;
607 STATIC OP *(*indirect_old_ck_lineseq)(pTHX_ OP *) = 0;
608
609 STATIC OP *indirect_ck_scope(pTHX_ OP *o) {
610  OP *(*old_ck)(pTHX_ OP *) = 0;
611
612  switch (o->op_type) {
613   case OP_SCOPE:   old_ck = indirect_old_ck_scope;   break;
614   case OP_LINESEQ: old_ck = indirect_old_ck_lineseq; break;
615  }
616  o = old_ck(aTHX_ o);
617
618  if (indirect_hint()) {
619   indirect_map_store(o, PL_oldbufptr - SvPVX_const(PL_linestr),
620                         NULL, CopLINE(&PL_compiling));
621   return o;
622  }
623
624  indirect_map_delete(o);
625  return o;
626 }
627
628 /* We don't need to clean the map entries for leave ops because they can only
629  * be created by mutating from a lineseq. */
630
631 /* ... ck_method ........................................................... */
632
633 STATIC OP *(*indirect_old_ck_method)(pTHX_ OP *) = 0;
634
635 STATIC OP *indirect_ck_method(pTHX_ OP *o) {
636  if (indirect_hint()) {
637   OP *op = cUNOPo->op_first;
638
639   /* Indirect method call is only possible when the method is a bareword, so
640    * don't trip up on $obj->$meth. */
641   if (op && op->op_type == OP_CONST) {
642    const indirect_op_info_t *oi = indirect_map_fetch(op);
643    STRLEN pos;
644    line_t line;
645    SV *sv;
646
647    if (!oi)
648     goto done;
649
650    sv   = sv_2mortal(newSVpvn(oi->buf, oi->len));
651    pos  = oi->pos;
652    /* Keep the old line so that we really point to the first line of the
653     * expression. */
654    line = oi->line;
655
656    o = indirect_old_ck_method(aTHX_ o);
657    /* o may now be a method_named */
658
659    indirect_map_store(o, pos, sv, line);
660    return o;
661   }
662  }
663
664 done:
665  o = indirect_old_ck_method(aTHX_ o);
666
667  indirect_map_delete(o);
668  return o;
669 }
670
671 /* ... ck_method_named ..................................................... */
672
673 /* "use foo/no foo" compiles its call to import/unimport directly to a
674  * method_named op. */
675
676 STATIC OP *(*indirect_old_ck_method_named)(pTHX_ OP *) = 0;
677
678 STATIC OP *indirect_ck_method_named(pTHX_ OP *o) {
679  if (indirect_hint()) {
680   STRLEN pos;
681   line_t line;
682   SV *sv;
683
684   sv = cSVOPo_sv;
685   if (!SvPOK(sv) || (SvTYPE(sv) < SVt_PV))
686    goto done;
687   sv = sv_mortalcopy(sv);
688
689   if (!indirect_find(sv, PL_oldbufptr, &pos))
690    goto done;
691   line = CopLINE(&PL_compiling);
692
693   o = indirect_old_ck_method_named(aTHX_ o);
694
695   indirect_map_store(o, pos, sv, line);
696   return o;
697  }
698
699 done:
700  o = indirect_old_ck_method_named(aTHX_ o);
701
702  indirect_map_delete(o);
703  return o;
704 }
705
706 /* ... ck_entersub ......................................................... */
707
708 STATIC OP *(*indirect_old_ck_entersub)(pTHX_ OP *) = 0;
709
710 STATIC OP *indirect_ck_entersub(pTHX_ OP *o) {
711  SV *code = indirect_hint();
712
713  o = indirect_old_ck_entersub(aTHX_ o);
714
715  if (code) {
716   const indirect_op_info_t *moi, *ooi;
717   OP     *mop, *oop;
718   LISTOP *lop;
719
720   oop = o;
721   do {
722    lop = (LISTOP *) oop;
723    if (!(lop->op_flags & OPf_KIDS))
724     goto done;
725    oop = lop->op_first;
726   } while (oop->op_type != OP_PUSHMARK);
727   oop = oop->op_sibling;
728   mop = lop->op_last;
729
730   if (!oop)
731    goto done;
732
733   switch (oop->op_type) {
734    case OP_CONST:
735    case OP_RV2SV:
736    case OP_PADSV:
737    case OP_SCOPE:
738    case OP_LEAVE:
739     break;
740    default:
741     goto done;
742   }
743
744   if (mop->op_type == OP_METHOD)
745    mop = cUNOPx(mop)->op_first;
746   else if (mop->op_type != OP_METHOD_NAMED)
747    goto done;
748
749   moi = indirect_map_fetch(mop);
750   if (!moi)
751    goto done;
752
753   ooi = indirect_map_fetch(oop);
754   if (!ooi)
755    goto done;
756
757   /* When positions are identical, the method and the object must have the
758    * same name. But it also means that it is an indirect call, as "foo->foo"
759    * results in different positions. */
760   if (moi->pos <= ooi->pos) {
761    SV *file;
762    dSP;
763
764    ENTER;
765    SAVETMPS;
766
767 #ifdef USE_ITHREADS
768    file = sv_2mortal(newSVpv(CopFILE(&PL_compiling), 0));
769 #else
770    file = sv_mortalcopy(CopFILESV(&PL_compiling));
771 #endif
772
773    PUSHMARK(SP);
774    EXTEND(SP, 4);
775    mPUSHp(ooi->buf, ooi->len);
776    mPUSHp(moi->buf, moi->len);
777    PUSHs(file);
778    mPUSHu(moi->line);
779    PUTBACK;
780
781    call_sv(code, G_VOID);
782
783    PUTBACK;
784
785    FREETMPS;
786    LEAVE;
787   }
788  }
789
790 done:
791  return o;
792 }
793
794 STATIC U32 indirect_initialized = 0;
795
796 STATIC void indirect_teardown(pTHX_ void *root) {
797  if (!indirect_initialized)
798   return;
799
800 #if I_MULTIPLICITY
801  if (aTHX != root)
802   return;
803 #endif
804
805  {
806   dMY_CXT;
807   ptable_free(MY_CXT.map);
808 #if I_THREADSAFE
809   ptable_hints_free(MY_CXT.tbl);
810 #endif
811  }
812
813  PL_check[OP_CONST]           = MEMBER_TO_FPTR(indirect_old_ck_const);
814  indirect_old_ck_const        = 0;
815  PL_check[OP_RV2SV]           = MEMBER_TO_FPTR(indirect_old_ck_rv2sv);
816  indirect_old_ck_rv2sv        = 0;
817  PL_check[OP_PADANY]          = MEMBER_TO_FPTR(indirect_old_ck_padany);
818  indirect_old_ck_padany       = 0;
819  PL_check[OP_SCOPE]           = MEMBER_TO_FPTR(indirect_old_ck_scope);
820  indirect_old_ck_scope        = 0;
821  PL_check[OP_LINESEQ]         = MEMBER_TO_FPTR(indirect_old_ck_lineseq);
822  indirect_old_ck_lineseq      = 0;
823
824  PL_check[OP_METHOD]          = MEMBER_TO_FPTR(indirect_old_ck_method);
825  indirect_old_ck_method       = 0;
826  PL_check[OP_METHOD_NAMED]    = MEMBER_TO_FPTR(indirect_old_ck_method_named);
827  indirect_old_ck_method_named = 0;
828  PL_check[OP_ENTERSUB]        = MEMBER_TO_FPTR(indirect_old_ck_entersub);
829  indirect_old_ck_entersub     = 0;
830
831  indirect_initialized = 0;
832 }
833
834 STATIC void indirect_setup(pTHX) {
835 #define indirect_setup() indirect_setup(aTHX)
836  if (indirect_initialized)
837   return;
838
839  {
840   MY_CXT_INIT;
841 #if I_THREADSAFE
842   MY_CXT.tbl   = ptable_new();
843   MY_CXT.owner = aTHX;
844 #endif
845   MY_CXT.map   = ptable_new();
846  }
847
848  indirect_old_ck_const        = PL_check[OP_CONST];
849  PL_check[OP_CONST]           = MEMBER_TO_FPTR(indirect_ck_const);
850  indirect_old_ck_rv2sv        = PL_check[OP_RV2SV];
851  PL_check[OP_RV2SV]           = MEMBER_TO_FPTR(indirect_ck_rv2sv);
852  indirect_old_ck_padany       = PL_check[OP_PADANY];
853  PL_check[OP_PADANY]          = MEMBER_TO_FPTR(indirect_ck_padany);
854  indirect_old_ck_scope        = PL_check[OP_SCOPE];
855  PL_check[OP_SCOPE]           = MEMBER_TO_FPTR(indirect_ck_scope);
856  indirect_old_ck_lineseq      = PL_check[OP_LINESEQ];
857  PL_check[OP_LINESEQ]         = MEMBER_TO_FPTR(indirect_ck_scope);
858
859  indirect_old_ck_method       = PL_check[OP_METHOD];
860  PL_check[OP_METHOD]          = MEMBER_TO_FPTR(indirect_ck_method);
861  indirect_old_ck_method_named = PL_check[OP_METHOD_NAMED];
862  PL_check[OP_METHOD_NAMED]    = MEMBER_TO_FPTR(indirect_ck_method_named);
863  indirect_old_ck_entersub     = PL_check[OP_ENTERSUB];
864  PL_check[OP_ENTERSUB]        = MEMBER_TO_FPTR(indirect_ck_entersub);
865
866 #if I_MULTIPLICITY
867  call_atexit(indirect_teardown, aTHX);
868 #else
869  call_atexit(indirect_teardown, NULL);
870 #endif
871
872  indirect_initialized = 1;
873 }
874
875 STATIC U32 indirect_booted = 0;
876
877 /* --- XS ------------------------------------------------------------------ */
878
879 MODULE = indirect      PACKAGE = indirect
880
881 PROTOTYPES: ENABLE
882
883 BOOT:
884 {
885  if (!indirect_booted++) {
886   HV *stash;
887
888   PERL_HASH(indirect_hash, __PACKAGE__, __PACKAGE_LEN__);
889
890   stash = gv_stashpvn(__PACKAGE__, __PACKAGE_LEN__, 1);
891   newCONSTSUB(stash, "I_THREADSAFE", newSVuv(I_THREADSAFE));
892   newCONSTSUB(stash, "I_FORKSAFE",   newSVuv(I_FORKSAFE));
893  }
894
895  indirect_setup();
896 }
897
898 #if I_THREADSAFE
899
900 void
901 CLONE(...)
902 PROTOTYPE: DISABLE
903 PREINIT:
904  ptable *t;
905 PPCODE:
906  {
907   my_cxt_t ud;
908   dMY_CXT;
909   ud.tbl   = t = ptable_new();
910   ud.owner = MY_CXT.owner;
911   ptable_walk(MY_CXT.tbl, indirect_ptable_clone, &ud);
912  }
913  {
914   MY_CXT_CLONE;
915   MY_CXT.map   = ptable_new();
916   MY_CXT.tbl   = t;
917   MY_CXT.owner = aTHX;
918  }
919  reap(3, indirect_thread_cleanup, NULL);
920  XSRETURN(0);
921
922 #endif
923
924 SV *
925 _tag(SV *value)
926 PROTOTYPE: $
927 CODE:
928  RETVAL = indirect_tag(value);
929 OUTPUT:
930  RETVAL