]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blob - Types.xs
Stop leaking the op specific info
[perl/modules/Lexical-Types.git] / Types.xs
1 /* This file is part of the Lexical-Types Perl module.
2  * See http://search.cpan.org/dist/Lexical-Types/ */
3
4 #define PERL_NO_GET_CONTEXT
5 #include "EXTERN.h"
6 #include "perl.h"
7 #include "XSUB.h"
8
9 #define __PACKAGE__     "Lexical::Types"
10 #define __PACKAGE_LEN__ (sizeof(__PACKAGE__)-1)
11
12 /* --- Compatibility wrappers ---------------------------------------------- */
13
14 #define LT_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
15
16 #if LT_HAS_PERL(5, 10, 0) || defined(PL_parser)
17 # ifndef PL_in_my_stash
18 #  define PL_in_my_stash PL_parser->in_my_stash
19 # endif
20 #else
21 # ifndef PL_in_my_stash
22 #  define PL_in_my_stash PL_Iin_my_stash
23 # endif
24 #endif
25
26 #ifndef LT_WORKAROUND_REQUIRE_PROPAGATION
27 # define LT_WORKAROUND_REQUIRE_PROPAGATION !LT_HAS_PERL(5, 10, 1)
28 #endif
29
30 #ifndef HvNAME_get
31 # define HvNAME_get(H) HvNAME(H)
32 #endif
33
34 #ifndef HvNAMELEN_get
35 # define HvNAMELEN_get(H) strlen(HvNAME_get(H))
36 #endif
37
38 #ifndef SvIS_FREED
39 # define SvIS_FREED(sv) ((sv)->sv_flags == SVTYPEMASK)
40 #endif
41
42 /* ... Thread safety and multiplicity ...................................... */
43
44 #ifndef LT_MULTIPLICITY
45 # if defined(MULTIPLICITY) || defined(PERL_IMPLICIT_CONTEXT)
46 #  define LT_MULTIPLICITY 1
47 # else
48 #  define LT_MULTIPLICITY 0
49 # endif
50 #endif
51 #if LT_MULTIPLICITY && !defined(tTHX)
52 # define tTHX PerlInterpreter*
53 #endif
54
55 #if LT_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))
56 # define LT_THREADSAFE 1
57 # ifndef MY_CXT_CLONE
58 #  define MY_CXT_CLONE \
59     dMY_CXT_SV;                                                      \
60     my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
61     Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t); \
62     sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
63 # endif
64 #else
65 # define LT_THREADSAFE 0
66 # undef  dMY_CXT
67 # define dMY_CXT      dNOOP
68 # undef  MY_CXT
69 # define MY_CXT       lt_globaldata
70 # undef  START_MY_CXT
71 # define START_MY_CXT STATIC my_cxt_t MY_CXT;
72 # undef  MY_CXT_INIT
73 # define MY_CXT_INIT  NOOP
74 # undef  MY_CXT_CLONE
75 # define MY_CXT_CLONE NOOP
76 # undef  pMY_CXT
77 # define pMY_CXT
78 # undef  pMY_CXT_
79 # define pMY_CXT_
80 # undef  aMY_CXT
81 # define aMY_CXT
82 # undef  aMY_CXT_
83 # define aMY_CXT_
84 #endif
85
86 /* --- Helpers ------------------------------------------------------------- */
87
88 /* ... Thread-safe hints ................................................... */
89
90 /* If any of those is true, we need to store the hint in a global table. */
91
92 #if LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION
93
94 typedef struct {
95  SV *code;
96 #if LT_WORKAROUND_REQUIRE_PROPAGATION
97  UV  requires;
98 #endif
99 } lt_hint_t;
100
101 #define PTABLE_NAME        ptable_hints
102 #define PTABLE_VAL_FREE(V) { lt_hint_t *h = (V); SvREFCNT_dec(h->code); PerlMemShared_free(h); }
103
104 #define pPTBL  pTHX
105 #define pPTBL_ pTHX_
106 #define aPTBL  aTHX
107 #define aPTBL_ aTHX_
108
109 #include "ptable.h"
110
111 #define ptable_hints_store(T, K, V) ptable_hints_store(aTHX_ (T), (K), (V))
112 #define ptable_hints_free(T)        ptable_hints_free(aTHX_ (T))
113
114 #endif /* LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION */
115
116 /* ... Global data ......................................................... */
117
118 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
119
120 typedef struct {
121 #if LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION
122  ptable *tbl; /* It really is a ptable_hints */
123 #endif
124 #if LT_THREADSAFE
125  tTHX    owner;
126 #endif
127  OP *  (*pp_padsv_saved)(pTHX);
128 } my_cxt_t;
129
130 START_MY_CXT
131
132 /* ... Cloning global data ................................................. */
133
134 #if LT_THREADSAFE
135
136 STATIC SV *lt_clone(pTHX_ SV *sv, tTHX owner) {
137 #define lt_clone(S, O) lt_clone(aTHX_ (S), (O))
138  CLONE_PARAMS  param;
139  AV           *stashes = NULL;
140  SV           *dupsv;
141
142  if (SvTYPE(sv) == SVt_PVHV && HvNAME_get(sv))
143   stashes = newAV();
144
145  param.stashes    = stashes;
146  param.flags      = 0;
147  param.proto_perl = owner;
148
149  dupsv = sv_dup(sv, &param);
150
151  if (stashes) {
152   av_undef(stashes);
153   SvREFCNT_dec(stashes);
154  }
155
156  return dupsv;
157 }
158
159 STATIC void lt_ptable_hints_clone(pTHX_ ptable_ent *ent, void *ud_) {
160  my_cxt_t  *ud  = ud_;
161  lt_hint_t *h1 = ent->val;
162  lt_hint_t *h2 = PerlMemShared_malloc(sizeof *h2);
163
164  *h2 = *h1;
165
166  if (ud->owner != aTHX)
167   h2->code = lt_clone(h1->code, ud->owner);
168
169  ptable_hints_store(ud->tbl, ent->key, h2);
170  SvREFCNT_inc(h2->code);
171 }
172
173 STATIC void lt_thread_cleanup(pTHX_ void *);
174
175 STATIC void lt_thread_cleanup(pTHX_ void *ud) {
176  int *level = ud;
177
178  if (*level) {
179   *level = 0;
180   LEAVE;
181   SAVEDESTRUCTOR_X(lt_thread_cleanup, level);
182   ENTER;
183  } else {
184   dMY_CXT;
185   PerlMemShared_free(level);
186   ptable_hints_free(MY_CXT.tbl);
187  }
188 }
189
190 #endif /* LT_THREADSAFE */
191
192 /* ... Hint tags ........................................................... */
193
194 #if LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION
195
196 STATIC SV *lt_tag(pTHX_ SV *value) {
197 #define lt_tag(V) lt_tag(aTHX_ (V))
198  lt_hint_t *h;
199  dMY_CXT;
200
201  value = SvOK(value) && SvROK(value) ? SvRV(value) : NULL;
202
203  h = PerlMemShared_malloc(sizeof *h);
204  h->code = SvREFCNT_inc(value);
205
206 #if LT_WORKAROUND_REQUIRE_PROPAGATION
207  {
208   const PERL_SI *si;
209   UV             requires = 0;
210
211   for (si = PL_curstackinfo; si; si = si->si_prev) {
212    I32 cxix;
213
214    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
215     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
216
217     if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE)
218      ++requires;
219    }
220   }
221
222   h->requires = requires;
223  }
224 #endif
225
226  /* We only need for the key to be an unique tag for looking up the value later.
227   * Allocated memory provides convenient unique identifiers, so that's why we
228   * use the value pointer as the key itself. */
229  ptable_hints_store(MY_CXT.tbl, value, h);
230
231  return newSVuv(PTR2UV(value));
232 }
233
234 STATIC SV *lt_detag(pTHX_ const SV *hint) {
235 #define lt_detag(H) lt_detag(aTHX_ (H))
236  lt_hint_t *h;
237  dMY_CXT;
238
239  if (!(hint && SvOK(hint) && SvIOK(hint)))
240   return NULL;
241
242  h = ptable_fetch(MY_CXT.tbl, INT2PTR(void *, SvUVX(hint)));
243
244 #if LT_WORKAROUND_REQUIRE_PROPAGATION
245  {
246   const PERL_SI *si;
247   UV             requires = 0;
248
249   for (si = PL_curstackinfo; si; si = si->si_prev) {
250    I32 cxix;
251
252    for (cxix = si->si_cxix; cxix >= 0; --cxix) {
253     const PERL_CONTEXT *cx = si->si_cxstack + cxix;
254
255     if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE
256                                && ++requires > h->requires)
257      return NULL;
258    }
259   }
260  }
261 #endif
262
263  return h->code;
264 }
265
266 #else
267
268 STATIC SV *lt_tag(pTHX_ SV *value) {
269 #define lt_tag(V) lt_tag(aTHX_ (V))
270  UV tag = 0;
271
272  if (SvOK(value) && SvROK(value)) {
273   value = SvRV(value);
274   SvREFCNT_inc(value);
275   tag = PTR2UV(value);
276  }
277
278  return newSVuv(tag);
279 }
280
281 #define lt_detag(H) (((H) && SvOK(H)) ? INT2PTR(SV *, SvUVX(H)) : NULL)
282
283 #endif /* LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION */
284
285 STATIC U32 lt_hash = 0;
286
287 STATIC SV *lt_hint(pTHX) {
288 #define lt_hint() lt_hint(aTHX)
289  SV *hint;
290 #if LT_HAS_PERL(5, 9, 5)
291  hint = Perl_refcounted_he_fetch(aTHX_ PL_curcop->cop_hints_hash,
292                                        NULL,
293                                        __PACKAGE__, __PACKAGE_LEN__,
294                                        0,
295                                        lt_hash);
296 #else
297  SV **val = hv_fetch(GvHV(PL_hintgv), __PACKAGE__, __PACKAGE_LEN__, lt_hash);
298  if (!val)
299   return 0;
300  hint = *val;
301 #endif
302  return lt_detag(hint);
303 }
304
305 /* ... op => info map ...................................................... */
306
307 #define PTABLE_NAME        ptable_map
308 #define PTABLE_VAL_FREE(V) PerlMemShared_free(V)
309
310 #include "ptable.h"
311
312 /* PerlMemShared_free() needs the [ap]PTBLMS_? default values */
313 #define ptable_map_store(T, K, V) ptable_map_store(aPTBLMS_ (T), (K), (V))
314
315 STATIC ptable *lt_op_map = NULL;
316
317 #ifdef USE_ITHREADS
318 STATIC perl_mutex lt_op_map_mutex;
319 #endif
320
321 typedef struct {
322 #if LT_MULTIPLICITY
323  STRLEN buf_size, orig_pkg_len, type_pkg_len, type_meth_len;
324  char *buf;
325 #else /* LT_MULTIPLICITY */
326  SV *orig_pkg;
327  SV *type_pkg;
328  SV *type_meth;
329 #endif /* !LT_MULTIPLICITY */
330  OP *(*pp_padsv)(pTHX);
331 } lt_op_info;
332
333 STATIC void lt_map_store(pPTBLMS_ const OP *o, SV *orig_pkg, SV *type_pkg, SV *type_meth, OP *(*pp_padsv)(pTHX)) {
334 #define lt_map_store(O, OP, TP, TM, PP) lt_map_store(aPTBLMS_ (O), (OP), (TP), (TM), (PP))
335  lt_op_info *oi;
336
337 #ifdef USE_ITHREADS
338  MUTEX_LOCK(&lt_op_map_mutex);
339 #endif
340
341  if (!(oi = ptable_fetch(lt_op_map, o))) {
342   oi = PerlMemShared_malloc(sizeof *oi);
343   ptable_map_store(lt_op_map, o, oi);
344 #if LT_MULTIPLICITY
345   oi->buf      = NULL;
346   oi->buf_size = 0;
347 #else /* LT_MULTIPLICITY */
348  } else {
349   SvREFCNT_dec(oi->orig_pkg);
350   SvREFCNT_dec(oi->type_pkg);
351   SvREFCNT_dec(oi->type_meth);
352 #endif /* !LT_MULTIPLICITY */
353  }
354
355 #if LT_MULTIPLICITY
356  {
357   STRLEN op_len       = SvCUR(orig_pkg);
358   STRLEN tp_len       = SvCUR(type_pkg);
359   STRLEN tm_len       = SvCUR(type_meth);
360   STRLEN new_buf_size = op_len + tp_len + tm_len;
361   char *buf;
362   if (new_buf_size > oi->buf_size) {
363    PerlMemShared_free(oi->buf);
364    oi->buf      = PerlMemShared_malloc(new_buf_size);
365    oi->buf_size = new_buf_size;
366   }
367   buf  = oi->buf;
368   Copy(SvPVX(orig_pkg),  buf, op_len, char);
369   buf += op_len;
370   Copy(SvPVX(type_pkg),  buf, tp_len, char);
371   buf += tp_len;
372   Copy(SvPVX(type_meth), buf, tm_len, char);
373   oi->orig_pkg_len  = op_len;
374   oi->type_pkg_len  = tp_len;
375   oi->type_meth_len = tm_len;
376  }
377 #else /* LT_MULTIPLICITY */
378  oi->orig_pkg  = orig_pkg;
379  oi->type_pkg  = type_pkg;
380  oi->type_meth = type_meth;
381 #endif /* !LT_MULTIPLICITY */
382
383  oi->pp_padsv  = pp_padsv;
384
385 #ifdef USE_ITHREADS
386  MUTEX_UNLOCK(&lt_op_map_mutex);
387 #endif
388 }
389
390 STATIC const lt_op_info *lt_map_fetch(const OP *o, lt_op_info *oi) {
391  const lt_op_info *val;
392
393 #ifdef USE_ITHREADS
394  MUTEX_LOCK(&lt_op_map_mutex);
395 #endif
396
397  val = ptable_fetch(lt_op_map, o);
398  if (val) {
399   *oi = *val;
400   val = oi;
401  }
402
403 #ifdef USE_ITHREADS
404  MUTEX_UNLOCK(&lt_op_map_mutex);
405 #endif
406
407  return val;
408 }
409
410 STATIC void lt_map_delete(pTHX_ const OP *o) {
411 #define lt_map_delete(O) lt_map_delete(aTHX_ (O))
412 #ifdef USE_ITHREADS
413  MUTEX_LOCK(&lt_op_map_mutex);
414 #endif
415
416  ptable_map_store(lt_op_map, o, NULL);
417
418 #ifdef USE_ITHREADS
419  MUTEX_UNLOCK(&lt_op_map_mutex);
420 #endif
421 }
422
423 /* --- Hooks --------------------------------------------------------------- */
424
425 /* ... Our pp_padsv ........................................................ */
426
427 STATIC OP *lt_pp_padsv(pTHX) {
428  lt_op_info oi;
429
430  if ((PL_op->op_private & OPpLVAL_INTRO) && lt_map_fetch(PL_op, &oi)) {
431   PADOFFSET targ = PL_op->op_targ;
432   SV *sv         = PAD_SVl(targ);
433
434   if (sv) {
435    SV *orig_pkg, *type_pkg, *type_meth;
436    int items;
437    dSP;
438
439    ENTER;
440    SAVETMPS;
441
442 #if LT_MULTIPLICITY
443    {
444     STRLEN op_len = oi.orig_pkg_len, tp_len = oi.type_pkg_len;
445     char *buf = oi.buf;
446     orig_pkg  = sv_2mortal(newSVpvn(buf, op_len));
447     SvREADONLY_on(orig_pkg);
448     buf      += op_len;
449     type_pkg  = sv_2mortal(newSVpvn(buf, tp_len));
450     SvREADONLY_on(type_pkg);
451     buf      += tp_len;
452     type_meth = sv_2mortal(newSVpvn(buf, oi.type_meth_len));
453     SvREADONLY_on(type_meth);
454    }
455 #else /* LT_MULTIPLICITY */
456    orig_pkg  = oi.orig_pkg;
457    type_pkg  = oi.type_pkg;
458    type_meth = oi.type_meth;
459 #endif /* !LT_MULTIPLICITY */
460
461    PUSHMARK(SP);
462    EXTEND(SP, 3);
463    PUSHs(type_pkg);
464    PUSHs(sv);
465    PUSHs(orig_pkg);
466    PUTBACK;
467
468    items = call_sv(type_meth, G_ARRAY | G_METHOD);
469
470    SPAGAIN;
471    switch (items) {
472     case 0:
473      break;
474     case 1:
475      sv_setsv(sv, POPs);
476      break;
477     default:
478      croak("Typed scalar initializer method should return zero or one scalar, but got %d", items);
479    }
480    PUTBACK;
481
482    FREETMPS;
483    LEAVE;
484   }
485
486   return CALL_FPTR(oi.pp_padsv)(aTHX);
487  }
488
489  return CALL_FPTR(PL_ppaddr[OP_PADSV])(aTHX);
490 }
491
492 STATIC void lt_pp_padsv_save(pMY_CXT) {
493 #define lt_pp_padsv_save() lt_pp_padsv_save(aMY_CXT)
494  if (MY_CXT.pp_padsv_saved)
495   return;
496
497  MY_CXT.pp_padsv_saved = PL_ppaddr[OP_PADSV];
498  PL_ppaddr[OP_PADSV]   = lt_pp_padsv;
499 }
500
501 STATIC void lt_pp_padsv_restore(pMY_CXT_ OP *o) {
502 #define lt_pp_padsv_restore(O) lt_pp_padsv_restore(aMY_CXT_ (O))
503  OP *(*saved)(pTHX) = MY_CXT.pp_padsv_saved;
504
505  if (!saved)
506   return;
507
508  if (o->op_ppaddr == lt_pp_padsv)
509   o->op_ppaddr = saved;
510
511  PL_ppaddr[OP_PADSV]   = saved;
512  MY_CXT.pp_padsv_saved = 0;
513 }
514
515 /* ... Our ck_pad{any,sv} .................................................. */
516
517 /* Sadly, the PADSV OPs we are interested in don't trigger the padsv check
518  * function, but are instead manually mutated from a PADANY. This is why we set
519  * PL_ppaddr[OP_PADSV] in the padany check function so that PADSV OPs will have
520  * their pp_ppaddr set to our pp_padsv. PL_ppaddr[OP_PADSV] is then reset at the
521  * beginning of every ck_pad{any,sv}. Some unwanted OPs can still call our
522  * pp_padsv, but much less than if we would have set PL_ppaddr[OP_PADSV]
523  * globally. */
524
525 STATIC SV *lt_default_meth = NULL;
526
527 STATIC OP *(*lt_old_ck_padany)(pTHX_ OP *) = 0;
528
529 STATIC OP *lt_ck_padany(pTHX_ OP *o) {
530  HV *stash;
531  SV *code;
532  dMY_CXT;
533
534  lt_pp_padsv_restore(o);
535
536  o = CALL_FPTR(lt_old_ck_padany)(aTHX_ o);
537
538  stash = PL_in_my_stash;
539  if (stash && (code = lt_hint())) {
540   SV *orig_pkg  = newSVpvn(HvNAME_get(stash), HvNAMELEN_get(stash));
541   SV *orig_meth = lt_default_meth;
542   SV *type_pkg  = NULL;
543   SV *type_meth = NULL;
544   int items;
545
546   dSP;
547
548   SvREADONLY_on(orig_pkg);
549
550   ENTER;
551   SAVETMPS;
552
553   PUSHMARK(SP);
554   EXTEND(SP, 2);
555   PUSHs(orig_pkg);
556   PUSHs(orig_meth);
557   PUTBACK;
558
559   items = call_sv(code, G_ARRAY);
560
561   SPAGAIN;
562   if (items > 2)
563    croak(__PACKAGE__ " mangler should return zero, one or two scalars, but got %d", items);
564   if (items == 0) {
565    SvREFCNT_dec(orig_pkg);
566    goto skip;
567   } else {
568    SV *rsv;
569    if (items > 1) {
570     rsv = POPs;
571     if (SvOK(rsv)) {
572      type_meth = newSVsv(rsv);
573      SvREADONLY_on(type_meth);
574     }
575    }
576    rsv = POPs;
577    if (SvOK(rsv)) {
578     type_pkg = newSVsv(rsv);
579     SvREADONLY_on(type_pkg);
580    }
581   }
582   PUTBACK;
583
584   FREETMPS;
585   LEAVE;
586
587   if (!type_pkg) {
588    type_pkg = orig_pkg;
589    SvREFCNT_inc(orig_pkg);
590   }
591
592   if (!type_meth) {
593    type_meth = orig_meth;
594    SvREFCNT_inc(orig_meth);
595   }
596
597   lt_pp_padsv_save();
598
599   lt_map_store(o, orig_pkg, type_pkg, type_meth, MY_CXT.pp_padsv_saved);
600  } else {
601 skip:
602   lt_map_delete(o);
603  }
604
605  return o;
606 }
607
608 STATIC OP *(*lt_old_ck_padsv)(pTHX_ OP *) = 0;
609
610 STATIC OP *lt_ck_padsv(pTHX_ OP *o) {
611  dMY_CXT;
612
613  lt_pp_padsv_restore(o);
614
615  lt_map_delete(o);
616
617  return CALL_FPTR(lt_old_ck_padsv)(aTHX_ o);
618 }
619
620 STATIC U32 lt_initialized = 0;
621
622 /* --- XS ------------------------------------------------------------------ */
623
624 MODULE = Lexical::Types      PACKAGE = Lexical::Types
625
626 PROTOTYPES: ENABLE
627
628 BOOT: 
629 {                                    
630  if (!lt_initialized++) {
631   HV *stash;
632
633   MY_CXT_INIT;
634 #if LT_THREADSAFE || LT_WORKAROUND_REQUIRE_PROPAGATION
635   MY_CXT.tbl            = ptable_new();
636 #endif
637 #if LT_THREADSAFE
638   MY_CXT.owner          = aTHX;
639 #endif
640   MY_CXT.pp_padsv_saved = 0;
641
642   lt_op_map = ptable_new();
643 #ifdef USE_ITHREADS
644   MUTEX_INIT(&lt_op_map_mutex);
645 #endif
646
647   lt_default_meth = newSVpvn("TYPEDSCALAR", 11);
648   SvREADONLY_on(lt_default_meth);
649
650   PERL_HASH(lt_hash, __PACKAGE__, __PACKAGE_LEN__);
651
652   lt_old_ck_padany    = PL_check[OP_PADANY];
653   PL_check[OP_PADANY] = MEMBER_TO_FPTR(lt_ck_padany);
654   lt_old_ck_padsv     = PL_check[OP_PADSV];
655   PL_check[OP_PADSV]  = MEMBER_TO_FPTR(lt_ck_padsv);
656
657   stash = gv_stashpvn(__PACKAGE__, __PACKAGE_LEN__, 1);
658   newCONSTSUB(stash, "LT_THREADSAFE", newSVuv(LT_THREADSAFE));
659  }
660 }
661
662 #if LT_THREADSAFE
663
664 void
665 CLONE(...)
666 PROTOTYPE: DISABLE
667 PREINIT:
668  ptable *t;
669  int    *level;
670 CODE:
671  {
672   my_cxt_t ud;
673   dMY_CXT;
674   ud.tbl   = t = ptable_new();
675   ud.owner = MY_CXT.owner;
676   ptable_walk(MY_CXT.tbl, lt_ptable_hints_clone, &ud);
677  }
678  {
679   MY_CXT_CLONE;
680   MY_CXT.tbl            = t;
681   MY_CXT.owner          = aTHX;
682   MY_CXT.pp_padsv_saved = 0;
683  }
684  {
685   level = PerlMemShared_malloc(sizeof *level);
686   *level = 1;
687   LEAVE;
688   SAVEDESTRUCTOR_X(lt_thread_cleanup, level);
689   ENTER;
690  }
691
692 #endif
693
694 SV *
695 _tag(SV *value)
696 PROTOTYPE: $
697 CODE:
698  RETVAL = lt_tag(value);
699 OUTPUT:
700  RETVAL