]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blob - Upper.xs
Give a proper definition of SU_CXNAME() for non DEBUGGING builds
[perl/modules/Scope-Upper.git] / Upper.xs
1 /* This file is part of the Scope::Upper Perl module.
2  * See http://search.cpan.org/dist/Scope-Upper/ */
3
4 #define PERL_NO_GET_CONTEXT
5 #include "EXTERN.h"
6 #include "perl.h"
7 #include "XSUB.h"
8
9 #define __PACKAGE__ "Scope::Upper"
10
11 #ifndef SU_DEBUG
12 # define SU_DEBUG 0
13 #endif
14
15 /* --- Compatibility ------------------------------------------------------- */
16
17 #ifndef NOOP
18 # define NOOP
19 #endif
20
21 #ifndef dNOOP
22 # define dNOOP
23 #endif
24
25 #ifndef dVAR
26 # define dVAR dNOOP
27 #endif
28
29 #ifndef MUTABLE_SV
30 # define MUTABLE_SV(S) ((SV *) (S))
31 #endif
32
33 #ifndef MUTABLE_AV
34 # define MUTABLE_AV(A) ((AV *) (A))
35 #endif
36
37 #ifndef MUTABLE_CV
38 # define MUTABLE_CV(C) ((CV *) (C))
39 #endif
40
41 #ifndef PERL_UNUSED_VAR
42 # define PERL_UNUSED_VAR(V)
43 #endif
44
45 #ifndef STMT_START
46 # define STMT_START do
47 #endif
48
49 #ifndef STMT_END
50 # define STMT_END while (0)
51 #endif
52
53 #if SU_DEBUG
54 # define SU_D(X) STMT_START X STMT_END
55 #else
56 # define SU_D(X)
57 #endif
58
59 #ifndef Newx
60 # define Newx(v, n, c) New(0, v, n, c)
61 #endif
62
63 #ifdef DEBUGGING
64 # ifdef PoisonNew
65 #  define SU_POISON(D, N, T) PoisonNew((D), (N), T)
66 # elif defined(Poison)
67 #  define SU_POISON(D, N, T) Poison((D), (N), T)
68 # endif
69 #endif
70 #ifndef SU_POISON
71 # define SU_POISON(D, N, T) NOOP
72 #endif
73
74 #ifndef newSV_type
75 static SV *su_newSV_type(pTHX_ svtype t) {
76  SV *sv = newSV(0);
77  SvUPGRADE(sv, t);
78  return sv;
79 }
80 # define newSV_type(T) su_newSV_type(aTHX_ (T))
81 #endif
82
83 #ifdef newSVpvn_flags
84 # define su_newmortal_pvn(S, L) newSVpvn_flags((S), (L), SVs_TEMP)
85 #else
86 # define su_newmortal_pvn(S, L) sv_2mortal(newSVpvn((S), (L)))
87 #endif
88 #define su_newmortal_pvs(S) su_newmortal_pvn((S), sizeof(S)-1)
89
90 #ifndef SvPV_const
91 # define SvPV_const(S, L) SvPV(S, L)
92 #endif
93
94 #ifndef SvPVX_const
95 # define SvPVX_const(S) SvPVX(S)
96 #endif
97
98 #ifndef SvPV_nolen_const
99 # define SvPV_nolen_const(S) SvPV_nolen(S)
100 #endif
101
102 #ifndef SvREFCNT_inc_simple_void
103 # define SvREFCNT_inc_simple_void(sv) ((void) SvREFCNT_inc(sv))
104 #endif
105
106 #ifndef mPUSHi
107 # define mPUSHi(I) PUSHs(sv_2mortal(newSViv(I)))
108 #endif
109
110 #ifndef GvCV_set
111 # define GvCV_set(G, C) (GvCV(G) = (C))
112 #endif
113
114 #ifndef CvGV_set
115 # define CvGV_set(C, G) (CvGV(C) = (G))
116 #endif
117
118 #ifndef CvSTASH_set
119 # define CvSTASH_set(C, S) (CvSTASH(C) = (S))
120 #endif
121
122 #ifndef CvISXSUB
123 # define CvISXSUB(C) CvXSUB(C)
124 #endif
125
126 #ifndef PadlistARRAY
127 # define PadlistARRAY(P) AvARRAY(P)
128 # define PadARRAY(P)     AvARRAY(P)
129 #endif
130
131 #ifndef CxHASARGS
132 # define CxHASARGS(C) ((C)->blk_sub.hasargs)
133 #endif
134
135 #ifndef CxGIMME
136 # ifdef G_WANT
137 #  define CxGIMME(C) ((C)->blk_gimme & G_WANT)
138 # else
139 #  define CxGIMME(C) ((C)->blk_gimme)
140 # endif
141 #endif
142
143 #ifndef CxOLD_OP_TYPE
144 # define CxOLD_OP_TYPE(C) (C)->blk_eval.old_op_type
145 #endif
146
147 #ifndef OutCopFILE
148 # define OutCopFILE(C) CopFILE(C)
149 #endif
150
151 #ifndef OutCopFILE_len
152 # define OutCopFILE_len(C) strlen(OutCopFILE(C))
153 #endif
154
155 #ifndef CopHINTS_get
156 # define CopHINTS_get(C) ((I32) (C)->op_private & HINT_PRIVATE_MASK)
157 #endif
158
159 #ifndef CopHINTHASH_get
160 # define CopHINTHASH_get(C) (C)->cop_hints_hash
161 #endif
162
163 #ifndef cophh_2hv
164 # define COPHH           struct refcounted_he
165 # define cophh_2hv(H, F) Perl_refcounted_he_chain_2hv(aTHX_ (H))
166 #endif
167
168 #ifndef HvNAME_get
169 # define HvNAME_get(H) HvNAME(H)
170 #endif
171
172 #ifndef HvNAMELEN
173 # define HvNAMELEN(H) strlen(HvNAME(H))
174 #endif
175
176 #ifndef gv_fetchpvn_flags
177 # define gv_fetchpvn_flags(A, B, C, D) gv_fetchpv((A), (C), (D))
178 #endif
179
180 #ifndef hv_fetchs
181 # define hv_fetchs(H, K, L) hv_fetch((H), (K), sizeof(K)-1, (L))
182 #endif
183
184 #ifndef OP_GIMME_REVERSE
185 static U8 su_op_gimme_reverse(U8 gimme) {
186  switch (gimme) {
187   case G_VOID:
188    return OPf_WANT_VOID;
189   case G_ARRAY:
190    return OPf_WANT_LIST;
191   default:
192    break;
193  }
194
195  return OPf_WANT_SCALAR;
196 }
197 #define OP_GIMME_REVERSE(G) su_op_gimme_reverse(G)
198 #endif
199
200 #ifndef OpSIBLING
201 # ifdef OP_SIBLING
202 #  define OpSIBLING(O) OP_SIBLING(O)
203 # else
204 #  define OpSIBLING(O) ((O)->op_sibling)
205 # endif
206 #endif
207
208 #ifndef PERL_MAGIC_tied
209 # define PERL_MAGIC_tied 'P'
210 #endif
211
212 #ifndef PERL_MAGIC_env
213 # define PERL_MAGIC_env 'E'
214 #endif
215
216 #ifndef NEGATIVE_INDICES_VAR
217 # define NEGATIVE_INDICES_VAR "NEGATIVE_INDICES"
218 #endif
219
220 #define SU_HAS_PERL(R, V, S) (PERL_REVISION > (R) || (PERL_REVISION == (R) && (PERL_VERSION > (V) || (PERL_VERSION == (V) && (PERL_SUBVERSION >= (S))))))
221 #define SU_HAS_PERL_EXACT(R, V, S) ((PERL_REVISION == (R)) && (PERL_VERSION == (V)) && (PERL_SUBVERSION == (S)))
222
223 /* --- Threads and multiplicity -------------------------------------------- */
224
225 #ifndef SU_MULTIPLICITY
226 # if defined(MULTIPLICITY) || defined(PERL_IMPLICIT_CONTEXT)
227 #  define SU_MULTIPLICITY 1
228 # else
229 #  define SU_MULTIPLICITY 0
230 # endif
231 #endif
232 #if SU_MULTIPLICITY && !defined(tTHX)
233 # define tTHX PerlInterpreter*
234 #endif
235
236 #if SU_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))
237 # define SU_THREADSAFE 1
238 # ifndef MY_CXT_CLONE
239 #  define MY_CXT_CLONE \
240     dMY_CXT_SV;                                                      \
241     my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1)); \
242     Copy(INT2PTR(my_cxt_t*, SvUV(my_cxt_sv)), my_cxtp, 1, my_cxt_t); \
243     sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
244 # endif
245 #else
246 # define SU_THREADSAFE 0
247 # undef  dMY_CXT
248 # define dMY_CXT      dNOOP
249 # undef  MY_CXT
250 # define MY_CXT       su_globaldata
251 # undef  START_MY_CXT
252 # define START_MY_CXT static my_cxt_t MY_CXT;
253 # undef  MY_CXT_INIT
254 # define MY_CXT_INIT  NOOP
255 # undef  MY_CXT_CLONE
256 # define MY_CXT_CLONE NOOP
257 #endif
258
259 /* --- Unique context ID global storage ------------------------------------ */
260
261 /* ... Sequence ID counter ................................................. */
262
263 typedef struct {
264  UV     *seqs;
265  STRLEN  size;
266 } su_uv_array;
267
268 static su_uv_array su_uid_seq_counter;
269
270 #ifdef USE_ITHREADS
271
272 static perl_mutex su_uid_seq_counter_mutex;
273
274 #define SU_LOCK(M)   MUTEX_LOCK(M)
275 #define SU_UNLOCK(M) MUTEX_UNLOCK(M)
276
277 #else /* USE_ITHREADS */
278
279 #define SU_LOCK(M)
280 #define SU_UNLOCK(M)
281
282 #endif /* !USE_ITHREADS */
283
284 static UV su_uid_seq_next(pTHX_ UV depth) {
285 #define su_uid_seq_next(D) su_uid_seq_next(aTHX_ (D))
286  UV seq;
287  UV *seqs;
288
289  SU_LOCK(&su_uid_seq_counter_mutex);
290
291  seqs = su_uid_seq_counter.seqs;
292
293  if (depth >= su_uid_seq_counter.size) {
294   UV i;
295
296   seqs = PerlMemShared_realloc(seqs, (depth + 1) * sizeof(UV));
297   for (i = su_uid_seq_counter.size; i <= depth; ++i)
298    seqs[i] = 0;
299
300   su_uid_seq_counter.seqs = seqs;
301   su_uid_seq_counter.size = depth + 1;
302  }
303
304  seq = ++seqs[depth];
305
306  SU_UNLOCK(&su_uid_seq_counter_mutex);
307
308  return seq;
309 }
310
311 /* ... UID storage ......................................................... */
312
313 typedef struct {
314  UV  seq;
315  U32 flags;
316 } su_uid;
317
318 #define SU_UID_ACTIVE 1
319
320 static UV su_uid_depth(pTHX_ I32 cxix) {
321 #define su_uid_depth(I) su_uid_depth(aTHX_ (I))
322  const PERL_SI *si;
323  UV depth;
324
325  depth = cxix;
326  for (si = PL_curstackinfo->si_prev; si; si = si->si_prev)
327   depth += si->si_cxix + 1;
328
329  return depth;
330 }
331
332 typedef struct {
333  su_uid **map;
334  STRLEN   used;
335  STRLEN   alloc;
336 } su_uid_storage;
337
338 static void su_uid_storage_dup(pTHX_ su_uid_storage *new_cxt, const su_uid_storage *old_cxt, UV max_depth) {
339 #define su_uid_storage_dup(N, O, D) su_uid_storage_dup(aTHX_ (N), (O), (D))
340  su_uid **old_map = old_cxt->map;
341
342  if (old_map) {
343   su_uid **new_map = new_cxt->map;
344   STRLEN old_used  = old_cxt->used;
345   STRLEN new_used, new_alloc;
346   STRLEN i;
347
348   new_used = max_depth < old_used ? max_depth : old_used;
349   new_cxt->used = new_used;
350
351   if (new_used <= new_cxt->alloc)
352    new_alloc = new_cxt->alloc;
353   else {
354    new_alloc = new_used;
355    Renew(new_map, new_alloc, su_uid *);
356    for (i = new_cxt->alloc; i < new_alloc; ++i)
357     new_map[i] = NULL;
358    new_cxt->map   = new_map;
359    new_cxt->alloc = new_alloc;
360   }
361
362   for (i = 0; i < new_alloc; ++i) {
363    su_uid *new_uid = new_map[i];
364
365    if (i < new_used) { /* => i < max_depth && i < old_used */
366     su_uid *old_uid = old_map[i];
367
368     if (old_uid && (old_uid->flags & SU_UID_ACTIVE)) {
369      if (!new_uid) {
370       Newx(new_uid, 1, su_uid);
371       new_map[i] = new_uid;
372      }
373      *new_uid = *old_uid;
374      continue;
375     }
376    }
377
378    if (new_uid)
379     new_uid->flags &= ~SU_UID_ACTIVE;
380   }
381  }
382
383  return;
384 }
385
386 /* --- unwind() global storage --------------------------------------------- */
387
388 typedef struct {
389  I32      cxix;
390  I32      items;
391  SV     **savesp;
392  LISTOP   return_op;
393  OP       proxy_op;
394 } su_unwind_storage;
395
396 /* --- yield() global storage ---------------------------------------------- */
397
398 typedef struct {
399  I32      cxix;
400  I32      items;
401  SV     **savesp;
402  UNOP     leave_op;
403  OP       proxy_op;
404 } su_yield_storage;
405
406 /* --- uplevel() data tokens and global storage ---------------------------- */
407
408 #define SU_UPLEVEL_HIJACKS_RUNOPS SU_HAS_PERL(5, 8, 0)
409
410 typedef struct {
411  void          *next;
412
413  su_uid_storage tmp_uid_storage;
414  su_uid_storage old_uid_storage;
415
416  I32            cxix;
417
418  I32            target_depth;
419  CV            *target;
420
421  CV            *callback;
422  CV            *renamed;
423
424  PERL_SI       *si;
425  PERL_SI       *old_curstackinfo;
426  AV            *old_mainstack;
427
428  COP           *old_curcop;
429
430  OP            *old_op;
431 #if SU_UPLEVEL_HIJACKS_RUNOPS
432  runops_proc_t  old_runops;
433 #endif
434  bool           old_catch;
435
436  bool           died;
437 } su_uplevel_ud;
438
439 static su_uplevel_ud *su_uplevel_ud_new(pTHX) {
440 #define su_uplevel_ud_new() su_uplevel_ud_new(aTHX)
441  su_uplevel_ud *sud;
442  PERL_SI       *si;
443
444  Newx(sud, 1, su_uplevel_ud);
445  sud->next = NULL;
446
447  sud->tmp_uid_storage.map   = NULL;
448  sud->tmp_uid_storage.used  = 0;
449  sud->tmp_uid_storage.alloc = 0;
450
451  Newx(si, 1, PERL_SI);
452  si->si_stack   = newAV();
453  AvREAL_off(si->si_stack);
454  si->si_cxstack = NULL;
455  si->si_cxmax   = 0;
456
457  sud->si = si;
458
459  return sud;
460 }
461
462 static void su_uplevel_ud_delete(pTHX_ su_uplevel_ud *sud) {
463 #define su_uplevel_ud_delete(S) su_uplevel_ud_delete(aTHX_ (S))
464  PERL_SI *si = sud->si;
465
466  Safefree(si->si_cxstack);
467  SvREFCNT_dec(si->si_stack);
468  Safefree(si);
469
470  if (sud->tmp_uid_storage.map) {
471   su_uid **map   = sud->tmp_uid_storage.map;
472   STRLEN   alloc = sud->tmp_uid_storage.alloc;
473   STRLEN   i;
474
475   for (i = 0; i < alloc; ++i)
476    Safefree(map[i]);
477
478   Safefree(map);
479  }
480
481  Safefree(sud);
482
483  return;
484 }
485
486 typedef struct {
487  su_uplevel_ud *top;
488  su_uplevel_ud *root;
489  I32            count;
490 } su_uplevel_storage;
491
492 #ifndef SU_UPLEVEL_STORAGE_SIZE
493 # define SU_UPLEVEL_STORAGE_SIZE 4
494 #endif
495
496 /* --- Global data --------------------------------------------------------- */
497
498 #define MY_CXT_KEY __PACKAGE__ "::_guts" XS_VERSION
499
500 typedef struct {
501  char               *stack_placeholder;
502  su_unwind_storage   unwind_storage;
503  su_yield_storage    yield_storage;
504  su_uplevel_storage  uplevel_storage;
505  su_uid_storage      uid_storage;
506 } my_cxt_t;
507
508 START_MY_CXT
509
510 /* --- Stack manipulations ------------------------------------------------- */
511
512 #define SU_SAVE_PLACEHOLDER() save_pptr(&MY_CXT.stack_placeholder)
513
514 #define SU_SAVE_DESTRUCTOR_SIZE  3
515 #define SU_SAVE_PLACEHOLDER_SIZE 3
516
517 #define SU_SAVE_SCALAR_SIZE 3
518
519 #define SU_SAVE_ARY_SIZE      3
520 #define SU_SAVE_AELEM_SIZE    4
521 #ifdef SAVEADELETE
522 # define SU_SAVE_ADELETE_SIZE 3
523 #else
524 # define SU_SAVE_ADELETE_SIZE SU_SAVE_DESTRUCTOR_SIZE
525 #endif
526 #if SU_SAVE_AELEM_SIZE < SU_SAVE_ADELETE_SIZE
527 # define SU_SAVE_AELEM_OR_ADELETE_SIZE SU_SAVE_ADELETE_SIZE
528 #else
529 # define SU_SAVE_AELEM_OR_ADELETE_SIZE SU_SAVE_AELEM_SIZE
530 #endif
531
532 #define SU_SAVE_HASH_SIZE    3
533 #define SU_SAVE_HELEM_SIZE   4
534 #define SU_SAVE_HDELETE_SIZE 4
535 #if SU_SAVE_HELEM_SIZE < SU_SAVE_HDELETE_SIZE
536 # define SU_SAVE_HELEM_OR_HDELETE_SIZE SU_SAVE_HDELETE_SIZE
537 #else
538 # define SU_SAVE_HELEM_OR_HDELETE_SIZE SU_SAVE_HELEM_SIZE
539 #endif
540
541 #define SU_SAVE_GVCV_SIZE SU_SAVE_DESTRUCTOR_SIZE
542
543 #if !SU_HAS_PERL(5, 8, 9)
544 # define SU_SAVE_GP_SIZE 6
545 #elif !SU_HAS_PERL(5, 13, 0) || (SU_RELEASE && SU_HAS_PERL_EXACT(5, 13, 0))
546 # define SU_SAVE_GP_SIZE 3
547 #elif !SU_HAS_PERL(5, 13, 8)
548 # define SU_SAVE_GP_SIZE 4
549 #else
550 # define SU_SAVE_GP_SIZE 3
551 #endif
552
553 #ifndef SvCANEXISTDELETE
554 # define SvCANEXISTDELETE(sv) \
555   (!SvRMAGICAL(sv)            \
556    || ((mg = mg_find((SV *) sv, PERL_MAGIC_tied))            \
557        && (stash = SvSTASH(SvRV(SvTIED_obj((SV *) sv, mg)))) \
558        && gv_fetchmethod_autoload(stash, "EXISTS", TRUE)     \
559        && gv_fetchmethod_autoload(stash, "DELETE", TRUE)     \
560       )                       \
561    )
562 #endif
563
564 /* ... Saving array elements ............................................... */
565
566 static I32 su_av_key2idx(pTHX_ AV *av, I32 key) {
567 #define su_av_key2idx(A, K) su_av_key2idx(aTHX_ (A), (K))
568  I32 idx;
569
570  if (key >= 0)
571   return key;
572
573 /* Added by MJD in perl-5.8.1 with 6f12eb6d2a1dfaf441504d869b27d2e40ef4966a */
574 #if SU_HAS_PERL(5, 8, 1)
575  if (SvRMAGICAL(av)) {
576   const MAGIC * const tied_magic = mg_find((SV *) av, PERL_MAGIC_tied);
577   if (tied_magic) {
578    SV * const * const negative_indices_glob =
579                     hv_fetch(SvSTASH(SvRV(SvTIED_obj((SV *) (av), tied_magic))),
580                              NEGATIVE_INDICES_VAR, 16, 0);
581    if (negative_indices_glob && SvTRUE(GvSV(*negative_indices_glob)))
582     return key;
583   }
584  }
585 #endif
586
587  idx = key + av_len(av) + 1;
588  if (idx < 0)
589   return key;
590
591  return idx;
592 }
593
594 #ifndef SAVEADELETE
595
596 typedef struct {
597  AV *av;
598  I32 idx;
599 } su_ud_adelete;
600
601 static void su_adelete(pTHX_ void *ud_) {
602  su_ud_adelete *ud = (su_ud_adelete *) ud_;
603
604  av_delete(ud->av, ud->idx, G_DISCARD);
605  SvREFCNT_dec(ud->av);
606
607  Safefree(ud);
608 }
609
610 static void su_save_adelete(pTHX_ AV *av, I32 idx) {
611 #define su_save_adelete(A, K) su_save_adelete(aTHX_ (A), (K))
612  su_ud_adelete *ud;
613
614  Newx(ud, 1, su_ud_adelete);
615  ud->av  = av;
616  ud->idx = idx;
617  SvREFCNT_inc_simple_void(av);
618
619  SAVEDESTRUCTOR_X(su_adelete, ud);
620 }
621
622 #define SAVEADELETE(A, K) su_save_adelete((A), (K))
623
624 #endif /* SAVEADELETE */
625
626 static void su_save_aelem(pTHX_ AV *av, SV *key, SV *val) {
627 #define su_save_aelem(A, K, V) su_save_aelem(aTHX_ (A), (K), (V))
628  I32 idx;
629  I32 preeminent = 1;
630  SV **svp;
631  HV *stash;
632  MAGIC *mg;
633
634  idx = su_av_key2idx(av, SvIV(key));
635
636  if (SvCANEXISTDELETE(av))
637   preeminent = av_exists(av, idx);
638
639  svp = av_fetch(av, idx, 1);
640  if (!svp || *svp == &PL_sv_undef) croak(PL_no_aelem, idx);
641
642  if (preeminent)
643   save_aelem(av, idx, svp);
644  else
645   SAVEADELETE(av, idx);
646
647  if (val) { /* local $x[$idx] = $val; */
648   SvSetMagicSV(*svp, val);
649  } else {   /* local $x[$idx]; delete $x[$idx]; */
650   av_delete(av, idx, G_DISCARD);
651  }
652 }
653
654 /* ... Saving hash elements ................................................ */
655
656 static void su_save_helem(pTHX_ HV *hv, SV *keysv, SV *val) {
657 #define su_save_helem(H, K, V) su_save_helem(aTHX_ (H), (K), (V))
658  I32 preeminent = 1;
659  HE *he;
660  SV **svp;
661  HV *stash;
662  MAGIC *mg;
663
664  if (SvCANEXISTDELETE(hv) || mg_find((SV *) hv, PERL_MAGIC_env))
665   preeminent = hv_exists_ent(hv, keysv, 0);
666
667  he  = hv_fetch_ent(hv, keysv, 1, 0);
668  svp = he ? &HeVAL(he) : NULL;
669  if (!svp || *svp == &PL_sv_undef) croak("Modification of non-creatable hash value attempted, subscript \"%s\"", SvPV_nolen_const(*svp));
670
671  if (HvNAME_get(hv) && isGV(*svp)) {
672   save_gp((GV *) *svp, 0);
673   return;
674  }
675
676  if (preeminent)
677   save_helem(hv, keysv, svp);
678  else {
679   STRLEN keylen;
680   const char * const key = SvPV_const(keysv, keylen);
681   SAVEDELETE(hv, savepvn(key, keylen),
682                  SvUTF8(keysv) ? -(I32)keylen : (I32)keylen);
683  }
684
685  if (val) { /* local $x{$keysv} = $val; */
686   SvSetMagicSV(*svp, val);
687  } else {   /* local $x{$keysv}; delete $x{$keysv}; */
688   (void)hv_delete_ent(hv, keysv, G_DISCARD, HeHASH(he));
689  }
690 }
691
692 /* ... Saving code slots from a glob ....................................... */
693
694 #if !SU_HAS_PERL(5, 10, 0) && !defined(mro_method_changed_in)
695 # define mro_method_changed_in(G) PL_sub_generation++
696 #endif
697
698 typedef struct {
699  GV *gv;
700  CV *old_cv;
701 } su_save_gvcv_ud;
702
703 static void su_restore_gvcv(pTHX_ void *ud_) {
704  su_save_gvcv_ud *ud = ud_;
705  GV              *gv = ud->gv;
706
707  GvCV_set(gv, ud->old_cv);
708  GvCVGEN(gv) = 0;
709  mro_method_changed_in(GvSTASH(gv));
710
711  Safefree(ud);
712 }
713
714 static void su_save_gvcv(pTHX_ GV *gv) {
715 #define su_save_gvcv(G) su_save_gvcv(aTHX_ (G))
716  su_save_gvcv_ud *ud;
717
718  Newx(ud, 1, su_save_gvcv_ud);
719  ud->gv     = gv;
720  ud->old_cv = GvCV(gv);
721
722  GvCV_set(gv, NULL);
723  GvCVGEN(gv) = 0;
724  mro_method_changed_in(GvSTASH(gv));
725
726  SAVEDESTRUCTOR_X(su_restore_gvcv, ud);
727 }
728
729 /* --- Actions ------------------------------------------------------------- */
730
731 typedef struct {
732  I32 depth;
733  I32 pad;
734  I32 *origin;
735  void (*handler)(pTHX_ void *);
736 } su_ud_common;
737
738 #define SU_UD_DEPTH(U)   (((su_ud_common *) (U))->depth)
739 #define SU_UD_PAD(U)     (((su_ud_common *) (U))->pad)
740 #define SU_UD_ORIGIN(U)  (((su_ud_common *) (U))->origin)
741 #define SU_UD_HANDLER(U) (((su_ud_common *) (U))->handler)
742
743 #define SU_UD_FREE(U) STMT_START { \
744  if (SU_UD_ORIGIN(U)) Safefree(SU_UD_ORIGIN(U)); \
745  Safefree(U); \
746 } STMT_END
747
748 /* ... Reap ................................................................ */
749
750 #define SU_SAVE_LAST_CX (!SU_HAS_PERL(5, 8, 4) || (SU_HAS_PERL(5, 9, 5) && !SU_HAS_PERL(5, 14, 0)) || SU_HAS_PERL(5, 15, 0))
751
752 typedef struct {
753  su_ud_common ci;
754  SV *cb;
755 } su_ud_reap;
756
757 static void su_call(pTHX_ void *ud_) {
758  su_ud_reap *ud = (su_ud_reap *) ud_;
759 #if SU_SAVE_LAST_CX
760  I32 cxix;
761  PERL_CONTEXT saved_cx;
762 #endif /* SU_SAVE_LAST_CX */
763
764  dSP;
765
766  SU_D({
767   PerlIO_printf(Perl_debug_log,
768                 "%p: @@@ call\n%p: depth=%2d scope_ix=%2d save_ix=%2d\n",
769                  ud, ud, SU_UD_DEPTH(ud), PL_scopestack_ix, PL_savestack_ix);
770  });
771
772  ENTER;
773  SAVETMPS;
774
775  PUSHMARK(SP);
776  PUTBACK;
777
778 #if SU_SAVE_LAST_CX
779  /* If the recently popped context isn't saved there, it will be overwritten by
780   * the sub scope from call_sv, although it's still needed in our caller. */
781  cxix     = (cxstack_ix < cxstack_max) ? (cxstack_ix + 1) : Perl_cxinc(aTHX);
782  saved_cx = cxstack[cxix];
783 #endif /* SU_SAVE_LAST_CX */
784
785  call_sv(ud->cb, G_VOID);
786
787 #if SU_SAVE_LAST_CX
788  cxstack[cxix] = saved_cx;
789 #endif /* SU_SAVE_LAST_CX */
790
791  PUTBACK;
792
793  FREETMPS;
794  LEAVE;
795
796  SvREFCNT_dec(ud->cb);
797  SU_UD_FREE(ud);
798 }
799
800 static void su_reap(pTHX_ void *ud) {
801 #define su_reap(U) su_reap(aTHX_ (U))
802  SU_D({
803   PerlIO_printf(Perl_debug_log,
804                 "%p: === reap\n%p: depth=%2d scope_ix=%2d save_ix=%2d\n",
805                  ud, ud, SU_UD_DEPTH(ud), PL_scopestack_ix, PL_savestack_ix);
806  });
807
808  SAVEDESTRUCTOR_X(su_call, ud);
809 }
810
811 /* ... Localize & localize array/hash element .............................. */
812
813 typedef struct {
814  su_ud_common ci;
815  SV    *sv;
816  SV    *val;
817  SV    *elem;
818  svtype type;
819 } su_ud_localize;
820
821 #define SU_UD_LOCALIZE_FREE(U) STMT_START { \
822  SvREFCNT_dec((U)->elem); \
823  SvREFCNT_dec((U)->val);  \
824  SvREFCNT_dec((U)->sv);   \
825  SU_UD_FREE(U);           \
826 } STMT_END
827
828 static I32 su_ud_localize_init(pTHX_ su_ud_localize *ud, SV *sv, SV *val, SV *elem) {
829 #define su_ud_localize_init(UD, S, V, E) su_ud_localize_init(aTHX_ (UD), (S), (V), (E))
830  UV deref = 0;
831  svtype t = SVt_NULL;
832  I32 size;
833
834  SvREFCNT_inc_simple_void(sv);
835
836  if (SvTYPE(sv) >= SVt_PVGV) {
837   if (!val || !SvROK(val)) { /* local *x; or local *x = $val; */
838    t = SVt_PVGV;
839   } else {                   /* local *x = \$val; */
840    t = SvTYPE(SvRV(val));
841    deref = 1;
842   }
843  } else if (SvROK(sv)) {
844   croak("Invalid %s reference as the localization target",
845                  sv_reftype(SvRV(sv), 0));
846  } else {
847   STRLEN len, l;
848   const char *p = SvPV_const(sv, len), *s;
849   for (s = p, l = len; l > 0 && isSPACE(*s); ++s, --l) { }
850   if (!l) {
851    l = len;
852    s = p;
853   }
854   switch (*s) {
855    case '$': t = SVt_PV;   break;
856    case '@': t = SVt_PVAV; break;
857    case '%': t = SVt_PVHV; break;
858    case '&': t = SVt_PVCV; break;
859    case '*': t = SVt_PVGV; break;
860   }
861   if (t != SVt_NULL) {
862    ++s;
863    --l;
864   } else if (val) { /* t == SVt_NULL, type can't be inferred from the sigil */
865    if (SvROK(val) && !sv_isobject(val)) {
866     t = SvTYPE(SvRV(val));
867     deref = 1;
868    } else {
869     t = SvTYPE(val);
870    }
871   }
872   SvREFCNT_dec(sv);
873   sv = newSVpvn(s, l);
874  }
875
876  switch (t) {
877   case SVt_PVAV:
878    size  = elem ? SU_SAVE_AELEM_OR_ADELETE_SIZE
879                 : SU_SAVE_ARY_SIZE;
880    deref = 0;
881    break;
882   case SVt_PVHV:
883    size  = elem ? SU_SAVE_HELEM_OR_HDELETE_SIZE
884                 : SU_SAVE_HASH_SIZE;
885    deref = 0;
886    break;
887   case SVt_PVGV:
888    size  = SU_SAVE_GP_SIZE;
889    deref = 0;
890    break;
891   case SVt_PVCV:
892    size  = SU_SAVE_GVCV_SIZE;
893    deref = 0;
894    break;
895   default:
896    size = SU_SAVE_SCALAR_SIZE;
897    break;
898  }
899  /* When deref is set, val isn't NULL */
900
901  ud->sv   = sv;
902  ud->val  = val ? newSVsv(deref ? SvRV(val) : val) : NULL;
903  ud->elem = SvREFCNT_inc(elem);
904  ud->type = t;
905
906  return size;
907 }
908
909 static void su_localize(pTHX_ void *ud_) {
910 #define su_localize(U) su_localize(aTHX_ (U))
911  su_ud_localize *ud = (su_ud_localize *) ud_;
912  SV *sv   = ud->sv;
913  SV *val  = ud->val;
914  SV *elem = ud->elem;
915  svtype t = ud->type;
916  GV *gv;
917
918  if (SvTYPE(sv) >= SVt_PVGV) {
919   gv = (GV *) sv;
920  } else {
921 #ifdef gv_fetchsv
922   gv = gv_fetchsv(sv, GV_ADDMULTI, t);
923 #else
924   STRLEN len;
925   const char *name = SvPV_const(sv, len);
926   gv = gv_fetchpvn_flags(name, len, GV_ADDMULTI, t);
927 #endif
928  }
929
930  SU_D({
931   SV *z = newSV(0);
932   SvUPGRADE(z, t);
933   PerlIO_printf(Perl_debug_log, "%p: === localize a %s\n",ud, sv_reftype(z, 0));
934   PerlIO_printf(Perl_debug_log,
935                 "%p: depth=%2d scope_ix=%2d save_ix=%2d\n",
936                  ud, SU_UD_DEPTH(ud), PL_scopestack_ix, PL_savestack_ix);
937   SvREFCNT_dec(z);
938  });
939
940  /* Inspired from Alias.pm */
941  switch (t) {
942   case SVt_PVAV:
943    if (elem) {
944     su_save_aelem(GvAV(gv), elem, val);
945     goto done;
946    } else
947     save_ary(gv);
948    break;
949   case SVt_PVHV:
950    if (elem) {
951     su_save_helem(GvHV(gv), elem, val);
952     goto done;
953    } else
954     save_hash(gv);
955    break;
956   case SVt_PVGV:
957    save_gp(gv, 1); /* hide previous entry in symtab */
958    break;
959   case SVt_PVCV:
960    su_save_gvcv(gv);
961    break;
962   default:
963    gv = (GV *) save_scalar(gv);
964    break;
965  }
966
967  if (val)
968   SvSetMagicSV((SV *) gv, val);
969
970 done:
971  SU_UD_LOCALIZE_FREE(ud);
972 }
973
974 /* --- Pop a context back -------------------------------------------------- */
975
976 #ifdef DEBUGGING
977 # define SU_CXNAME(C) PL_block_type[CxTYPE(C)]
978 #else
979 # if SU_HAS_PERL(5, 11, 0)
980 static const char *su_block_type[] = {
981  "NULL",
982  "WHEN",
983  "BLOCK",
984  "GIVEN",
985  "LOOP_FOR",
986  "LOOP_PLAIN",
987  "LOOP_LAZYSV",
988  "LOOP_LAZYIV",
989  "SUB",
990  "FORMAT",
991  "EVAL",
992  "SUBST"
993 };
994 # elif SU_HAS_PERL(5, 9, 3)
995 static const char *su_block_type[] = {
996  "NULL",
997  "SUB",
998  "EVAL",
999  "WHEN",
1000  "SUBST",
1001  "BLOCK",
1002  "FORMAT",
1003  "GIVEN",
1004  "LOOP_FOR",
1005  "LOOP_PLAIN",
1006  "LOOP_LAZYSV",
1007  "LOOP_LAZYIV"
1008 };
1009 # else
1010 static const char *su_block_type[] = {
1011  "NULL",
1012  "SUB",
1013  "EVAL",
1014  "LOOP",
1015  "SUBST",
1016  "BLOCK"
1017 };
1018 # endif
1019 # define SU_CXNAME(C) su_block_type[CxTYPE(C)]
1020 #endif
1021
1022 static void su_pop(pTHX_ void *ud) {
1023 #define su_pop(U) su_pop(aTHX_ (U))
1024  I32 depth, base, mark, *origin;
1025  depth = SU_UD_DEPTH(ud);
1026
1027  SU_D(
1028   PerlIO_printf(Perl_debug_log,
1029    "%p: --- pop a %s\n"
1030    "%p: leave scope     at depth=%2d scope_ix=%2d cur_top=%2d cur_base=%2d\n",
1031     ud, SU_CXNAME(cxstack + cxstack_ix),
1032     ud, depth, PL_scopestack_ix,PL_savestack_ix,PL_scopestack[PL_scopestack_ix])
1033  );
1034
1035  origin = SU_UD_ORIGIN(ud);
1036  mark   = origin[depth];
1037  base   = origin[depth - 1];
1038
1039  SU_D(PerlIO_printf(Perl_debug_log,
1040                     "%p: original scope was %*c top=%2d     base=%2d\n",
1041                      ud,                24, ' ',    mark,        base));
1042
1043  if (base < mark) {
1044 #if SU_HAS_PERL(5, 19, 4)
1045   I32 save = -1;
1046   PERL_CONTEXT *cx;
1047 #endif
1048
1049   SU_D(PerlIO_printf(Perl_debug_log, "%p: clear leftovers\n", ud));
1050
1051 #if SU_HAS_PERL(5, 19, 4)
1052   cx = cxstack + cxstack_ix;
1053   if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT)
1054    save = PL_scopestack[cx->blk_oldscopesp - 1];
1055 #endif
1056
1057   PL_savestack_ix = mark;
1058   leave_scope(base);
1059
1060 #if SU_HAS_PERL(5, 19, 4)
1061   if (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT)
1062    PL_scopestack[cx->blk_oldscopesp - 1] = save;
1063 #endif
1064  }
1065  PL_savestack_ix = base;
1066
1067  SU_UD_DEPTH(ud) = --depth;
1068
1069  if (depth > 0) {
1070   I32 pad;
1071
1072   if ((pad = SU_UD_PAD(ud))) {
1073    dMY_CXT;
1074    do {
1075     SU_D(PerlIO_printf(Perl_debug_log,
1076           "%p: push a pad slot at depth=%2d scope_ix=%2d save_ix=%2d\n",
1077            ud,                       depth, PL_scopestack_ix, PL_savestack_ix));
1078     SU_SAVE_PLACEHOLDER();
1079    } while (--pad);
1080   }
1081
1082   SU_D(PerlIO_printf(Perl_debug_log,
1083           "%p: push destructor at depth=%2d scope_ix=%2d save_ix=%2d\n",
1084            ud,                       depth, PL_scopestack_ix, PL_savestack_ix));
1085   SAVEDESTRUCTOR_X(su_pop, ud);
1086  } else {
1087   SU_UD_HANDLER(ud)(aTHX_ ud);
1088  }
1089
1090  SU_D(PerlIO_printf(Perl_debug_log,
1091                     "%p: --- end pop: cur_top=%2d == cur_base=%2d\n",
1092                      ud, PL_savestack_ix, PL_scopestack[PL_scopestack_ix]));
1093 }
1094
1095 /* --- Initialize the stack and the action userdata ------------------------ */
1096
1097 static I32 su_init(pTHX_ void *ud, I32 cxix, I32 size) {
1098 #define su_init(U, C, S) su_init(aTHX_ (U), (C), (S))
1099  I32 i, depth = 1, pad, offset, base, *origin;
1100
1101  SU_D(PerlIO_printf(Perl_debug_log, "%p: ### init for cx %d\n", ud, cxix));
1102
1103  if (size <= SU_SAVE_DESTRUCTOR_SIZE)
1104   pad = 0;
1105  else {
1106   I32 extra = size - SU_SAVE_DESTRUCTOR_SIZE;
1107   pad = extra / SU_SAVE_PLACEHOLDER_SIZE;
1108   if (extra % SU_SAVE_PLACEHOLDER_SIZE)
1109    ++pad;
1110  }
1111  offset = SU_SAVE_DESTRUCTOR_SIZE + SU_SAVE_PLACEHOLDER_SIZE * pad;
1112
1113  SU_D(PerlIO_printf(Perl_debug_log, "%p: size=%d pad=%d offset=%d\n",
1114                                      ud,    size,   pad,   offset));
1115
1116  for (i = cxstack_ix; i > cxix; --i) {
1117   PERL_CONTEXT *cx = cxstack + i;
1118   switch (CxTYPE(cx)) {
1119 #if SU_HAS_PERL(5, 11, 0)
1120    case CXt_LOOP_FOR:
1121    case CXt_LOOP_PLAIN:
1122    case CXt_LOOP_LAZYSV:
1123    case CXt_LOOP_LAZYIV:
1124 #else
1125    case CXt_LOOP:
1126 #endif
1127     SU_D(PerlIO_printf(Perl_debug_log, "%p: cx %d is loop\n", ud, i));
1128     depth += 2;
1129     break;
1130    default:
1131     SU_D(PerlIO_printf(Perl_debug_log, "%p: cx %d is other\n", ud, i));
1132     depth++;
1133     break;
1134   }
1135  }
1136  SU_D(PerlIO_printf(Perl_debug_log, "%p: going down to depth %d\n", ud, depth));
1137
1138  Newx(origin, depth + 1, I32);
1139  base = PL_scopestack_ix - depth;
1140  origin[0] = PL_scopestack[base];
1141  PL_scopestack[base] += size;
1142  for (i = 1; i < depth; ++i) {
1143   I32 j = i + base;
1144   origin[i] = PL_scopestack[j];
1145   PL_scopestack[j] += offset;
1146  }
1147  origin[depth] = PL_savestack_ix;
1148
1149  SU_UD_ORIGIN(ud) = origin;
1150  SU_UD_DEPTH(ud)  = depth;
1151  SU_UD_PAD(ud)    = pad;
1152
1153  /* Make sure the first destructor fires by pushing enough fake slots on the
1154   * stack. */
1155  if (PL_savestack_ix + SU_SAVE_DESTRUCTOR_SIZE
1156                                        <= PL_scopestack[PL_scopestack_ix - 1]) {
1157   dMY_CXT;
1158   do {
1159    SU_D(PerlIO_printf(Perl_debug_log,
1160                   "%p: push a fake slot      at scope_ix=%2d  save_ix=%2d\n",
1161                    ud,                      PL_scopestack_ix, PL_savestack_ix));
1162    SU_SAVE_PLACEHOLDER();
1163   } while (PL_savestack_ix + SU_SAVE_DESTRUCTOR_SIZE
1164                                         <= PL_scopestack[PL_scopestack_ix - 1]);
1165  }
1166  SU_D(PerlIO_printf(Perl_debug_log,
1167                   "%p: push first destructor at scope_ix=%2d  save_ix=%2d\n",
1168                    ud,                      PL_scopestack_ix, PL_savestack_ix));
1169  SAVEDESTRUCTOR_X(su_pop, ud);
1170
1171  SU_D({
1172   for (i = 0; i <= depth; ++i) {
1173    I32 j = PL_scopestack_ix  - i;
1174    PerlIO_printf(Perl_debug_log,
1175                  "%p: depth=%2d scope_ix=%2d saved_floor=%2d new_floor=%2d\n",
1176                   ud,        i, j, origin[depth - i],
1177                                    i == 0 ? PL_savestack_ix : PL_scopestack[j]);
1178   }
1179  });
1180
1181  return depth;
1182 }
1183
1184 /* --- Unwind stack -------------------------------------------------------- */
1185
1186 static void su_unwind(pTHX_ void *ud_) {
1187  dMY_CXT;
1188  I32 cxix  = MY_CXT.unwind_storage.cxix;
1189  I32 items = MY_CXT.unwind_storage.items;
1190  I32 mark;
1191
1192  PERL_UNUSED_VAR(ud_);
1193
1194  PL_stack_sp = MY_CXT.unwind_storage.savesp;
1195 #if SU_HAS_PERL(5, 19, 4)
1196  {
1197   I32 i;
1198   SV **sp = PL_stack_sp;
1199   for (i = -items + 1; i <= 0; ++i)
1200    if (!SvTEMP(sp[i]))
1201     sv_2mortal(SvREFCNT_inc(sp[i]));
1202  }
1203 #endif
1204
1205  if (cxstack_ix > cxix)
1206   dounwind(cxix);
1207
1208  mark = PL_markstack[cxstack[cxix].blk_oldmarksp];
1209  *PL_markstack_ptr = PL_stack_sp - PL_stack_base - items;
1210
1211  SU_D({
1212   I32 gimme = GIMME_V;
1213   PerlIO_printf(Perl_debug_log,
1214                 "%p: cx=%d gimme=%s items=%d sp=%d oldmark=%d mark=%d\n",
1215                 &MY_CXT, cxix,
1216                 gimme == G_VOID ? "void" : gimme == G_ARRAY ? "list" : "scalar",
1217                 items, PL_stack_sp - PL_stack_base, *PL_markstack_ptr, mark);
1218  });
1219
1220  PL_op = (OP *) &(MY_CXT.unwind_storage.return_op);
1221  PL_op = PL_op->op_ppaddr(aTHX);
1222
1223  *PL_markstack_ptr = mark;
1224
1225  MY_CXT.unwind_storage.proxy_op.op_next = PL_op;
1226  PL_op = &(MY_CXT.unwind_storage.proxy_op);
1227 }
1228
1229 /* --- Yield --------------------------------------------------------------- */
1230
1231 #if SU_HAS_PERL(5, 10, 0)
1232 # define SU_RETOP_SUB(C)   ((C)->blk_sub.retop)
1233 # define SU_RETOP_EVAL(C)  ((C)->blk_eval.retop)
1234 # define SU_RETOP_LOOP(C)  ((C)->blk_loop.my_op->op_lastop->op_next)
1235 # define SU_RETOP_GIVEN(C) ((C)->blk_givwhen.leave_op->op_next)
1236 #else
1237 # define SU_RETOP_SUB(C)  ((C)->blk_oldretsp > 0 ? PL_retstack[(C)->blk_oldretsp - 1] : NULL)
1238 # define SU_RETOP_EVAL(C) SU_RETOP_SUB(C)
1239 # define SU_RETOP_LOOP(C) ((C)->blk_loop.last_op->op_next)
1240 #endif
1241
1242 static void su_yield(pTHX_ void *ud_) {
1243  dMY_CXT;
1244  PERL_CONTEXT *cx;
1245  const char   *which = ud_;
1246  I32 cxix      = MY_CXT.yield_storage.cxix;
1247  I32 items     = MY_CXT.yield_storage.items;
1248  opcode  type  = OP_NULL;
1249  U8      flags = 0;
1250  OP     *next;
1251
1252  PERL_UNUSED_VAR(ud_);
1253
1254  cx = cxstack + cxix;
1255  switch (CxTYPE(cx)) {
1256   case CXt_BLOCK: {
1257    I32 i, cur = cxstack_ix, n = 1;
1258    OP *o = NULL;
1259    /* Is this actually a given/when block? This may occur only when yield was
1260     * called with HERE (or nothing) as the context. */
1261 #if SU_HAS_PERL(5, 10, 0)
1262    if (cxix > 0) {
1263     PERL_CONTEXT *prev = cx - 1;
1264     U8       prev_type = CxTYPE(prev);
1265     if ((prev_type == CXt_GIVEN || prev_type == CXt_WHEN)
1266         && (prev->blk_oldcop == cx->blk_oldcop)) {
1267      cxix--;
1268      cx = prev;
1269      if (prev_type == CXt_GIVEN)
1270       goto cxt_given;
1271      else
1272       goto cxt_when;
1273     }
1274    }
1275 #endif
1276    type  = OP_LEAVE;
1277    next  = NULL;
1278    /* Bare blocks (that appear as do { ... } blocks, map { ... } blocks or
1279     * constant folded blcoks) don't need to save the op to return to anywhere
1280     * since 'last' isn't supposed to work inside them. So we climb higher in
1281     * the context stack until we reach a context that has a return op (i.e. a
1282     * sub, an eval, a format or a real loop), recording how many blocks we
1283     * crossed. Then we follow the op_next chain until we get to the leave op
1284     * that closes the original block, which we are assured to reach since
1285     * everything is static (the blocks we have crossed cannot be evals or
1286     * subroutine calls). */
1287    for (i = cxix + 1; i <= cur; ++i) {
1288     PERL_CONTEXT *cx2 = cxstack + i;
1289     switch (CxTYPE(cx2)) {
1290      case CXt_BLOCK:
1291       ++n;
1292       break;
1293      case CXt_SUB:
1294      case CXt_FORMAT:
1295       o = SU_RETOP_SUB(cx2);
1296       break;
1297      case CXt_EVAL:
1298       o = SU_RETOP_EVAL(cx2);
1299       break;
1300 #if SU_HAS_PERL(5, 11, 0)
1301      case CXt_LOOP_FOR:
1302      case CXt_LOOP_PLAIN:
1303      case CXt_LOOP_LAZYSV:
1304      case CXt_LOOP_LAZYIV:
1305 #else
1306      case CXt_LOOP:
1307 #endif
1308       o = SU_RETOP_LOOP(cx2);
1309       break;
1310     }
1311     if (o)
1312      break;
1313    }
1314    if (!o)
1315     o = PL_op;
1316    while (n && o) {
1317     /* We may find other enter/leave blocks on our way to the matching leave.
1318      * Make sure the depth is incremented/decremented appropriately. */
1319     if (o->op_type == OP_ENTER) {
1320      ++n;
1321     } else if (o->op_type == OP_LEAVE) {
1322      --n;
1323      if (!n) {
1324       next = o->op_next;
1325       break;
1326      }
1327     }
1328     o = o->op_next;
1329    }
1330    break;
1331   }
1332   case CXt_SUB:
1333   case CXt_FORMAT:
1334    type = OP_LEAVESUB;
1335    next = SU_RETOP_SUB(cx);
1336    break;
1337   case CXt_EVAL:
1338    type = CxTRYBLOCK(cx) ? OP_LEAVETRY : OP_LEAVEEVAL;
1339    next = SU_RETOP_EVAL(cx);
1340    break;
1341 #if SU_HAS_PERL(5, 11, 0)
1342   case CXt_LOOP_FOR:
1343   case CXt_LOOP_PLAIN:
1344   case CXt_LOOP_LAZYSV:
1345   case CXt_LOOP_LAZYIV:
1346 #else
1347   case CXt_LOOP:
1348 #endif
1349    type = OP_LEAVELOOP;
1350    next = SU_RETOP_LOOP(cx);
1351    break;
1352 #if SU_HAS_PERL(5, 10, 0)
1353   case CXt_GIVEN:
1354 cxt_given:
1355    type = OP_LEAVEGIVEN;
1356    next = SU_RETOP_GIVEN(cx);
1357    break;
1358   case CXt_WHEN:
1359 cxt_when:
1360 #if SU_HAS_PERL(5, 15, 1)
1361    type   = OP_LEAVEWHEN;
1362 #else
1363    type   = OP_BREAK;
1364    flags |= OPf_SPECIAL;
1365 #endif
1366    next   = NULL;
1367    break;
1368 #endif
1369   case CXt_SUBST:
1370    croak("%s() can't target a substitution context", which);
1371    break;
1372   default:
1373    croak("%s() doesn't know how to leave a %s context",
1374           which,                         SU_CXNAME(cxstack + cxix));
1375    break;
1376  }
1377
1378  PL_stack_sp = MY_CXT.yield_storage.savesp;
1379 #if SU_HAS_PERL(5, 19, 4)
1380  {
1381   I32 i;
1382   SV **sp = PL_stack_sp;
1383   for (i = -items + 1; i <= 0; ++i)
1384    if (!SvTEMP(sp[i]))
1385     sv_2mortal(SvREFCNT_inc(sp[i]));
1386  }
1387 #endif
1388
1389  if (cxstack_ix > cxix)
1390   dounwind(cxix);
1391
1392  /* Copy the arguments passed to yield() where the leave op expects to find
1393   * them. */
1394  if (items)
1395   Move(PL_stack_sp - items + 1, PL_stack_base + cx->blk_oldsp + 1, items, SV *);
1396  PL_stack_sp = PL_stack_base + cx->blk_oldsp + items;
1397
1398  flags |= OP_GIMME_REVERSE(cx->blk_gimme);
1399
1400  MY_CXT.yield_storage.leave_op.op_type   = type;
1401  MY_CXT.yield_storage.leave_op.op_ppaddr = PL_ppaddr[type];
1402  MY_CXT.yield_storage.leave_op.op_flags  = flags;
1403  MY_CXT.yield_storage.leave_op.op_next   = next;
1404
1405  PL_op = (OP *) &(MY_CXT.yield_storage.leave_op);
1406  PL_op = PL_op->op_ppaddr(aTHX);
1407
1408  MY_CXT.yield_storage.proxy_op.op_next = PL_op;
1409  PL_op = &(MY_CXT.yield_storage.proxy_op);
1410 }
1411
1412 /* --- Uplevel ------------------------------------------------------------- */
1413
1414 #define SU_UPLEVEL_SAVE(f, t) STMT_START { sud->old_##f = PL_##f; PL_##f = (t); } STMT_END
1415 #define SU_UPLEVEL_RESTORE(f) STMT_START { PL_##f = sud->old_##f; } STMT_END
1416
1417 static su_uplevel_ud *su_uplevel_storage_new(pTHX_ I32 cxix) {
1418 #define su_uplevel_storage_new(I) su_uplevel_storage_new(aTHX_ (I))
1419  su_uplevel_ud *sud;
1420  UV depth;
1421  dMY_CXT;
1422
1423  sud = MY_CXT.uplevel_storage.root;
1424  if (sud) {
1425   MY_CXT.uplevel_storage.root = sud->next;
1426   MY_CXT.uplevel_storage.count--;
1427  } else {
1428   sud = su_uplevel_ud_new();
1429  }
1430
1431  sud->next = MY_CXT.uplevel_storage.top;
1432  MY_CXT.uplevel_storage.top = sud;
1433
1434  depth = su_uid_depth(cxix);
1435  su_uid_storage_dup(&sud->tmp_uid_storage, &MY_CXT.uid_storage, depth);
1436  sud->old_uid_storage = MY_CXT.uid_storage;
1437  MY_CXT.uid_storage   = sud->tmp_uid_storage;
1438
1439  return sud;
1440 }
1441
1442 #if SU_HAS_PERL(5, 13, 7)
1443
1444 static void su_uplevel_storage_delete(pTHX_ su_uplevel_ud *sud) {
1445 #define su_uplevel_storage_delete(S) su_uplevel_storage_delete(aTHX_ (S))
1446  dMY_CXT;
1447
1448  sud->tmp_uid_storage = MY_CXT.uid_storage;
1449  MY_CXT.uid_storage   = sud->old_uid_storage;
1450  {
1451   su_uid **map;
1452   UV  i, alloc;
1453   map   = sud->tmp_uid_storage.map;
1454   alloc = sud->tmp_uid_storage.alloc;
1455   for (i = 0; i < alloc; ++i) {
1456    if (map[i])
1457     map[i]->flags &= SU_UID_ACTIVE;
1458   }
1459  }
1460  MY_CXT.uplevel_storage.top = sud->next;
1461
1462  if (MY_CXT.uplevel_storage.count >= SU_UPLEVEL_STORAGE_SIZE) {
1463   su_uplevel_ud_delete(sud);
1464  } else {
1465   sud->next = MY_CXT.uplevel_storage.root;
1466   MY_CXT.uplevel_storage.root = sud;
1467   MY_CXT.uplevel_storage.count++;
1468  }
1469 }
1470
1471 #endif
1472
1473 static int su_uplevel_goto_static(const OP *o) {
1474  for (; o; o = OpSIBLING(o)) {
1475   /* goto ops are unops with kids. */
1476   if (!(o->op_flags & OPf_KIDS))
1477    continue;
1478
1479   switch (o->op_type) {
1480    case OP_LEAVEEVAL:
1481    case OP_LEAVETRY:
1482     /* Don't care about gotos inside eval, as they are forbidden at run time. */
1483     break;
1484    case OP_GOTO:
1485     return 1;
1486    default:
1487     if (su_uplevel_goto_static(((const UNOP *) o)->op_first))
1488      return 1;
1489     break;
1490   }
1491  }
1492
1493  return 0;
1494 }
1495
1496 #if SU_UPLEVEL_HIJACKS_RUNOPS
1497
1498 static int su_uplevel_goto_runops(pTHX) {
1499 #define su_uplevel_goto_runops() su_uplevel_goto_runops(aTHX)
1500  register OP *op;
1501  dVAR;
1502
1503  op = PL_op;
1504  do {
1505   if (op->op_type == OP_GOTO) {
1506    AV  *argarray = NULL;
1507    I32  cxix;
1508
1509    for (cxix = cxstack_ix; cxix >= 0; --cxix) {
1510     const PERL_CONTEXT *cx = cxstack + cxix;
1511
1512     switch (CxTYPE(cx)) {
1513      case CXt_SUB:
1514       if (CxHASARGS(cx)) {
1515        argarray = cx->blk_sub.argarray;
1516        goto done;
1517       }
1518       break;
1519      case CXt_EVAL:
1520      case CXt_FORMAT:
1521       goto done;
1522      default:
1523       break;
1524     }
1525    }
1526
1527 done:
1528    if (argarray) {
1529     dMY_CXT;
1530
1531     if (MY_CXT.uplevel_storage.top->cxix == cxix) {
1532      AV  *args  = GvAV(PL_defgv);
1533      I32  items = AvFILLp(args);
1534
1535      av_extend(argarray, items);
1536      Copy(AvARRAY(args), AvARRAY(argarray), items + 1, SV *);
1537      AvFILLp(argarray) = items;
1538     }
1539    }
1540   }
1541
1542   PL_op = op = op->op_ppaddr(aTHX);
1543
1544 #if !SU_HAS_PERL(5, 13, 0)
1545   PERL_ASYNC_CHECK();
1546 #endif
1547  } while (op);
1548
1549  TAINT_NOT;
1550
1551  return 0;
1552 }
1553
1554 #endif /* SU_UPLEVEL_HIJACKS_RUNOPS */
1555
1556 #define su_at_underscore(C) PadARRAY(PadlistARRAY(CvPADLIST(C))[CvDEPTH(C)])[0]
1557
1558 static void su_uplevel_restore(pTHX_ void *sus_) {
1559  su_uplevel_ud *sud = sus_;
1560  PERL_SI *cur = sud->old_curstackinfo;
1561  PERL_SI *si  = sud->si;
1562
1563 #if SU_UPLEVEL_HIJACKS_RUNOPS
1564  if (PL_runops == su_uplevel_goto_runops)
1565   PL_runops = sud->old_runops;
1566 #endif
1567
1568  if (sud->callback) {
1569   PERL_CONTEXT *cx = cxstack + sud->cxix;
1570   AV     *argarray = MUTABLE_AV(su_at_underscore(sud->callback));
1571
1572   /* We have to fix the pad entry for @_ in the original callback because it
1573    * may have been reified. */
1574   if (AvREAL(argarray)) {
1575    const I32 fill = AvFILLp(argarray);
1576    SvREFCNT_dec(argarray);
1577    argarray = newAV();
1578    AvREAL_off(argarray);
1579    AvREIFY_on(argarray);
1580    av_extend(argarray, fill);
1581    su_at_underscore(sud->callback) = MUTABLE_SV(argarray);
1582   } else {
1583    CLEAR_ARGARRAY(argarray);
1584   }
1585
1586   /* If the old cv member is our renamed CV, it means that this place has been
1587    * reached without a goto() happening, and the old argarray member is
1588    * actually our fake argarray. Destroy it properly in that case. */
1589   if (cx->blk_sub.cv == sud->renamed) {
1590    SvREFCNT_dec(cx->blk_sub.argarray);
1591    cx->blk_sub.argarray = argarray;
1592   }
1593
1594   CvDEPTH(sud->callback)--;
1595   SvREFCNT_dec(sud->callback);
1596  }
1597
1598  /* Free the renamed CV. We must do it ourselves so that we can force the
1599   * depth to be 0, or perl would complain about it being "still in use".
1600   * But we *know* that it cannot be so. */
1601  if (sud->renamed) {
1602   if (!CvISXSUB(sud->renamed)) {
1603    CvDEPTH(sud->renamed)   = 0;
1604    CvPADLIST(sud->renamed) = NULL;
1605   }
1606   SvREFCNT_dec(sud->renamed);
1607  }
1608
1609  CATCH_SET(sud->old_catch);
1610
1611  SU_UPLEVEL_RESTORE(op);
1612
1613  /* stack_grow() wants PL_curstack so restore the old stack first */
1614  if (PL_curstackinfo == si) {
1615   PL_curstack = cur->si_stack;
1616   if (sud->old_mainstack)
1617    SU_UPLEVEL_RESTORE(mainstack);
1618   SU_UPLEVEL_RESTORE(curstackinfo);
1619
1620   if (sud->died) {
1621    CV *target = sud->target;
1622    I32 levels = 0, i;
1623
1624    /* When we die, the depth of the target CV is not updated because of the
1625     * stack switcheroo. So we have to look at all the frames between the
1626     * uplevel call and the catch block to count how many call frames to the
1627     * target CV were skipped. */
1628    for (i = cur->si_cxix; i > sud->cxix; i--) {
1629     register const PERL_CONTEXT *cx = cxstack + i;
1630
1631     if (CxTYPE(cx) == CXt_SUB) {
1632      if (cx->blk_sub.cv == target)
1633       ++levels;
1634     }
1635    }
1636
1637    /* If we died, the replacement stack was already unwinded to the first
1638     * eval frame, and all the contexts down there were popped. We don't have
1639     * to pop manually any context of the original stack, because they must
1640     * have been in the replacement stack as well (since the second was copied
1641     * from the first). Thus we only have to make sure the original stack index
1642     * points to the context just below the first eval scope under the target
1643     * frame. */
1644    for (; i >= 0; i--) {
1645     register const PERL_CONTEXT *cx = cxstack + i;
1646
1647     switch (CxTYPE(cx)) {
1648      case CXt_SUB:
1649       if (cx->blk_sub.cv == target)
1650        ++levels;
1651       break;
1652      case CXt_EVAL:
1653       goto found_it;
1654       break;
1655      default:
1656       break;
1657     }
1658    }
1659
1660 found_it:
1661    CvDEPTH(target) = sud->target_depth - levels;
1662    PL_curstackinfo->si_cxix = i - 1;
1663
1664 #if !SU_HAS_PERL(5, 13, 1)
1665    /* Since $@ was maybe localized between the target frame and the uplevel
1666     * call, we forcefully flush the save stack to get rid of it and then
1667     * reset $@ to its proper value. Note that the the call to
1668     * su_uplevel_restore() must happen before the "reset $@" item of the save
1669     * stack is processed, as uplevel was called after the localization.
1670     * Andrew's changes to how $@ was handled, which were mainly integrated
1671     * between perl 5.13.0 and 5.13.1, fixed this. */
1672    if (ERRSV && SvTRUE(ERRSV)) {
1673     register const PERL_CONTEXT *cx = cxstack + i; /* This is the eval scope */
1674     SV *errsv = SvREFCNT_inc(ERRSV);
1675     PL_scopestack_ix = cx->blk_oldscopesp;
1676     leave_scope(PL_scopestack[PL_scopestack_ix]);
1677     sv_setsv(ERRSV, errsv);
1678     SvREFCNT_dec(errsv);
1679    }
1680 #endif
1681   }
1682  }
1683
1684  SU_UPLEVEL_RESTORE(curcop);
1685
1686  SvREFCNT_dec(sud->target);
1687
1688  PL_stack_base = AvARRAY(cur->si_stack);
1689  PL_stack_sp   = PL_stack_base + AvFILLp(cur->si_stack);
1690  PL_stack_max  = PL_stack_base + AvMAX(cur->si_stack);
1691
1692  /* When an exception is thrown from the uplevel'd subroutine,
1693   * su_uplevel_restore() may be called by the LEAVE in die_unwind() (renamed
1694   * die_where() in more recent perls), which has the sad habit of keeping a
1695   * pointer to the current context frame across this call. This means that we
1696   * can't free the temporary context stack we used for the uplevel call right
1697   * now, or that pointer upwards would point to garbage. */
1698 #if SU_HAS_PERL(5, 13, 7)
1699  /* This issue has been fixed in perl with commit 8f89e5a9, which was made
1700   * public in perl 5.13.7. */
1701  su_uplevel_storage_delete(sud);
1702 #else
1703  /* Otherwise, we just enqueue it back in the global storage list. */
1704  {
1705   dMY_CXT;
1706
1707   sud->tmp_uid_storage = MY_CXT.uid_storage;
1708   MY_CXT.uid_storage   = sud->old_uid_storage;
1709
1710   MY_CXT.uplevel_storage.top  = sud->next;
1711   sud->next = MY_CXT.uplevel_storage.root;
1712   MY_CXT.uplevel_storage.root = sud;
1713   MY_CXT.uplevel_storage.count++;
1714  }
1715 #endif
1716
1717  return;
1718 }
1719
1720 static CV *su_cv_clone(pTHX_ CV *proto, GV *gv) {
1721 #define su_cv_clone(P, G) su_cv_clone(aTHX_ (P), (G))
1722  dVAR;
1723  CV *cv;
1724
1725  cv = MUTABLE_CV(newSV_type(SvTYPE(proto)));
1726
1727  CvFLAGS(cv)  = CvFLAGS(proto);
1728 #ifdef CVf_CVGV_RC
1729  CvFLAGS(cv) &= ~CVf_CVGV_RC;
1730 #endif
1731  CvDEPTH(cv)  = CvDEPTH(proto);
1732 #ifdef USE_ITHREADS
1733  CvFILE(cv)   = CvISXSUB(proto) ? CvFILE(proto) : savepv(CvFILE(proto));
1734 #else
1735  CvFILE(cv)   = CvFILE(proto);
1736 #endif
1737
1738  CvGV_set(cv, gv);
1739 #if SU_RELEASE && SU_HAS_PERL_EXACT(5, 21, 4)
1740  CvNAMED_off(cv);
1741 #endif
1742  CvSTASH_set(cv, CvSTASH(proto));
1743  /* Commit 4c74a7df, publicized with perl 5.13.3, began to add backrefs to
1744   * stashes. CvSTASH_set() started to do it as well with commit c68d95645
1745   * (which was part of perl 5.13.7). */
1746 #if SU_HAS_PERL(5, 13, 3) && !SU_HAS_PERL(5, 13, 7)
1747  if (CvSTASH(proto))
1748   Perl_sv_add_backref(aTHX_ CvSTASH(proto), MUTABLE_SV(cv));
1749 #endif
1750
1751  if (CvISXSUB(proto)) {
1752   CvXSUB(cv)       = CvXSUB(proto);
1753   CvXSUBANY(cv)    = CvXSUBANY(proto);
1754  } else {
1755   OP_REFCNT_LOCK;
1756   CvROOT(cv)       = OpREFCNT_inc(CvROOT(proto));
1757   OP_REFCNT_UNLOCK;
1758   CvSTART(cv)      = CvSTART(proto);
1759   CvPADLIST(cv)    = CvPADLIST(proto);
1760  }
1761  CvOUTSIDE(cv)     = CvOUTSIDE(proto);
1762 #ifdef CVf_WEAKOUTSIDE
1763  if (!(CvFLAGS(proto) & CVf_WEAKOUTSIDE))
1764 #endif
1765   SvREFCNT_inc_simple_void(CvOUTSIDE(cv));
1766 #ifdef CvOUTSIDE_SEQ
1767  CvOUTSIDE_SEQ(cv) = CvOUTSIDE_SEQ(proto);
1768 #endif
1769
1770  if (SvPOK(proto))
1771   sv_setpvn(MUTABLE_SV(cv), SvPVX_const(proto), SvCUR(proto));
1772
1773 #ifdef CvCONST
1774  if (CvCONST(cv))
1775   CvCONST_off(cv);
1776 #endif
1777
1778  return cv;
1779 }
1780
1781 static I32 su_uplevel(pTHX_ CV *callback, I32 cxix, I32 args) {
1782 #define su_uplevel(C, I, A) su_uplevel(aTHX_ (C), (I), (A))
1783  su_uplevel_ud *sud;
1784  const PERL_CONTEXT *cx = cxstack + cxix;
1785  PERL_SI *si;
1786  PERL_SI *cur = PL_curstackinfo;
1787  SV **old_stack_sp;
1788  CV  *target;
1789  CV  *renamed;
1790  UNOP sub_op;
1791  I32  gimme;
1792  I32  old_mark, new_mark;
1793  I32  ret;
1794  dSP;
1795
1796  ENTER;
1797
1798  gimme = GIMME_V;
1799  /* Make PL_stack_sp point just before the CV. */
1800  PL_stack_sp -= args + 1;
1801  old_mark = AvFILLp(PL_curstack) = PL_stack_sp - PL_stack_base;
1802  SPAGAIN;
1803
1804  sud = su_uplevel_storage_new(cxix);
1805
1806  sud->cxix     = cxix;
1807  sud->died     = 1;
1808  sud->callback = NULL;
1809  sud->renamed  = NULL;
1810  SAVEDESTRUCTOR_X(su_uplevel_restore, sud);
1811
1812  si = sud->si;
1813
1814  si->si_type    = cur->si_type;
1815  si->si_next    = NULL;
1816  si->si_prev    = cur->si_prev;
1817 #ifdef DEBUGGING
1818  si->si_markoff = cx->blk_oldmarksp;
1819 #endif
1820
1821  /* Allocate enough space for all the elements of the original stack up to the
1822   * target context, plus the forthcoming arguments. */
1823  new_mark = cx->blk_oldsp;
1824  av_extend(si->si_stack, new_mark + 1 + args + 1);
1825  Copy(PL_curstack, AvARRAY(si->si_stack), new_mark + 1, SV *);
1826  AvFILLp(si->si_stack) = new_mark;
1827  SU_POISON(AvARRAY(si->si_stack) + new_mark + 1, args + 1, SV *);
1828
1829  /* Specialized SWITCHSTACK() */
1830  PL_stack_base = AvARRAY(si->si_stack);
1831  old_stack_sp  = PL_stack_sp;
1832  PL_stack_sp   = PL_stack_base + AvFILLp(si->si_stack);
1833  PL_stack_max  = PL_stack_base + AvMAX(si->si_stack);
1834  SPAGAIN;
1835
1836  /* Copy the context stack up to the context just below the target. */
1837  si->si_cxix = (cxix < 0) ? -1 : (cxix - 1);
1838  if (si->si_cxmax < cxix) {
1839   /* The max size must be at least two so that GROW(max) = (max*3)/2 > max */
1840   si->si_cxmax = (cxix < 4) ? 4 : cxix;
1841   Renew(si->si_cxstack, si->si_cxmax + 1, PERL_CONTEXT);
1842  }
1843  Copy(cur->si_cxstack, si->si_cxstack, cxix, PERL_CONTEXT);
1844  SU_POISON(si->si_cxstack + cxix, si->si_cxmax + 1 - cxix, PERL_CONTEXT);
1845
1846  target            = cx->blk_sub.cv;
1847  sud->target       = (CV *) SvREFCNT_inc(target);
1848  sud->target_depth = CvDEPTH(target);
1849
1850  /* blk_oldcop is essentially needed for caller() and stack traces. It has no
1851   * run-time implication, since PL_curcop will be overwritten as soon as we
1852   * enter a sub (a sub starts by a nextstate/dbstate). Hence it's safe to just
1853   * make it point to the blk_oldcop for the target frame, so that caller()
1854   * reports the right file name, line number and lexical hints. */
1855  SU_UPLEVEL_SAVE(curcop, cx->blk_oldcop);
1856  /* Don't reset PL_markstack_ptr, or we would overwrite the mark stack below
1857   * this point. Don't reset PL_curpm either, we want the most recent matches. */
1858
1859  SU_UPLEVEL_SAVE(curstackinfo, si);
1860  /* If those two are equal, we need to fool POPSTACK_TO() */
1861  if (PL_mainstack == PL_curstack)
1862   SU_UPLEVEL_SAVE(mainstack, si->si_stack);
1863  else
1864   sud->old_mainstack = NULL;
1865  PL_curstack = si->si_stack;
1866
1867  renamed      = su_cv_clone(callback, CvGV(target));
1868  sud->renamed = renamed;
1869
1870  PUSHMARK(SP);
1871  /* Both SP and old_stack_sp point just before the CV. */
1872  Copy(old_stack_sp + 2, SP + 1, args, SV *);
1873  SP += args;
1874  PUSHs((SV *) renamed);
1875  PUTBACK;
1876
1877  Zero(&sub_op, 1, UNOP);
1878  sub_op.op_type  = OP_ENTERSUB;
1879  sub_op.op_next  = NULL;
1880  sub_op.op_flags = OP_GIMME_REVERSE(gimme) | OPf_STACKED;
1881  if (PL_DBsub)
1882   sub_op.op_flags |= OPpENTERSUB_DB;
1883
1884  SU_UPLEVEL_SAVE(op, (OP *) &sub_op);
1885
1886 #if SU_UPLEVEL_HIJACKS_RUNOPS
1887  sud->old_runops = PL_runops;
1888 #endif
1889
1890  sud->old_catch = CATCH_GET;
1891  CATCH_SET(TRUE);
1892
1893  if ((PL_op = PL_ppaddr[OP_ENTERSUB](aTHX))) {
1894   PERL_CONTEXT *sub_cx = cxstack + cxstack_ix;
1895
1896   /* If pp_entersub() returns a non-null OP, it means that the callback is not
1897    * an XSUB. */
1898
1899   sud->callback = MUTABLE_CV(SvREFCNT_inc(callback));
1900   CvDEPTH(callback)++;
1901
1902   if (CxHASARGS(cx) && cx->blk_sub.argarray) {
1903    /* The call to pp_entersub() has saved the current @_ (in XS terms,
1904     * GvAV(PL_defgv)) in the savearray member, and has created a new argarray
1905     * with what we put on the stack. But we want to fake up the same arguments
1906     * as the ones in use at the context we uplevel to, so we replace the
1907     * argarray with an unreal copy of the original @_. */
1908    AV *av = newAV();
1909    AvREAL_off(av);
1910    AvREIFY_on(av);
1911    av_extend(av, AvMAX(cx->blk_sub.argarray));
1912    AvFILLp(av) = AvFILLp(cx->blk_sub.argarray);
1913    Copy(AvARRAY(cx->blk_sub.argarray), AvARRAY(av), AvFILLp(av) + 1, SV *);
1914    sub_cx->blk_sub.argarray = av;
1915   } else {
1916    SvREFCNT_inc_simple_void(sub_cx->blk_sub.argarray);
1917   }
1918
1919   if (su_uplevel_goto_static(CvROOT(renamed))) {
1920 #if SU_UPLEVEL_HIJACKS_RUNOPS
1921    if (PL_runops != PL_runops_std) {
1922     if (PL_runops == PL_runops_dbg) {
1923      if (PL_debug)
1924       croak("uplevel() can't execute code that calls goto when debugging flags are set");
1925     } else if (PL_runops != su_uplevel_goto_runops)
1926      croak("uplevel() can't execute code that calls goto with a custom runloop");
1927    }
1928
1929    PL_runops = su_uplevel_goto_runops;
1930 #else  /* SU_UPLEVEL_HIJACKS_RUNOPS */
1931    croak("uplevel() can't execute code that calls goto before perl 5.8");
1932 #endif /* !SU_UPLEVEL_HIJACKS_RUNOPS */
1933   }
1934
1935   CALLRUNOPS(aTHX);
1936  }
1937
1938  sud->died = 0;
1939
1940  ret = PL_stack_sp - (PL_stack_base + new_mark);
1941  if (ret > 0) {
1942   AV *old_stack = sud->old_curstackinfo->si_stack;
1943
1944   if (old_mark + ret > AvMAX(old_stack)) {
1945    /* Specialized EXTEND(old_sp, ret) */
1946    av_extend(old_stack, old_mark + ret + 1);
1947    old_stack_sp = AvARRAY(old_stack) + old_mark;
1948   }
1949
1950   Copy(PL_stack_sp - ret + 1, old_stack_sp + 1, ret, SV *);
1951   PL_stack_sp        += ret;
1952   AvFILLp(old_stack) += ret;
1953  }
1954
1955  LEAVE;
1956
1957  return ret;
1958 }
1959
1960 /* --- Unique context ID --------------------------------------------------- */
1961
1962 static su_uid *su_uid_storage_fetch(pTHX_ UV depth) {
1963 #define su_uid_storage_fetch(D) su_uid_storage_fetch(aTHX_ (D))
1964  su_uid **map, *uid;
1965  STRLEN alloc;
1966  dMY_CXT;
1967
1968  map   = MY_CXT.uid_storage.map;
1969  alloc = MY_CXT.uid_storage.alloc;
1970
1971  if (depth >= alloc) {
1972   STRLEN i;
1973
1974   Renew(map, depth + 1, su_uid *);
1975   for (i = alloc; i <= depth; ++i)
1976    map[i] = NULL;
1977
1978   MY_CXT.uid_storage.map   = map;
1979   MY_CXT.uid_storage.alloc = depth + 1;
1980  }
1981
1982  uid = map[depth];
1983
1984  if (!uid) {
1985   Newx(uid, 1, su_uid);
1986   uid->seq   = 0;
1987   uid->flags = 0;
1988   map[depth] = uid;
1989  }
1990
1991  if (depth >= MY_CXT.uid_storage.used)
1992   MY_CXT.uid_storage.used = depth + 1;
1993
1994  return uid;
1995 }
1996
1997 static int su_uid_storage_check(pTHX_ UV depth, UV seq) {
1998 #define su_uid_storage_check(D, S) su_uid_storage_check(aTHX_ (D), (S))
1999  su_uid *uid;
2000  dMY_CXT;
2001
2002  if (depth >= MY_CXT.uid_storage.used)
2003   return 0;
2004
2005  uid = MY_CXT.uid_storage.map[depth];
2006
2007  return uid && (uid->seq == seq) && (uid->flags & SU_UID_ACTIVE);
2008 }
2009
2010 static void su_uid_drop(pTHX_ void *ud_) {
2011  su_uid *uid = ud_;
2012
2013  uid->flags &= ~SU_UID_ACTIVE;
2014 }
2015
2016 static void su_uid_bump(pTHX_ void *ud_) {
2017  su_ud_reap *ud  = ud_;
2018
2019  SAVEDESTRUCTOR_X(su_uid_drop, ud->cb);
2020
2021  SU_UD_FREE(ud);
2022 }
2023
2024 static SV *su_uid_get(pTHX_ I32 cxix) {
2025 #define su_uid_get(I) su_uid_get(aTHX_ (I))
2026  su_uid *uid;
2027  SV *uid_sv;
2028  UV depth;
2029
2030  depth = su_uid_depth(cxix);
2031  uid   = su_uid_storage_fetch(depth);
2032
2033  if (!(uid->flags & SU_UID_ACTIVE)) {
2034   su_ud_reap *ud;
2035
2036   uid->seq = su_uid_seq_next(depth);
2037   uid->flags |= SU_UID_ACTIVE;
2038
2039   Newx(ud, 1, su_ud_reap);
2040   SU_UD_ORIGIN(ud)  = NULL;
2041   SU_UD_HANDLER(ud) = su_uid_bump;
2042   ud->cb = (SV *) uid;
2043   su_init(ud, cxix, SU_SAVE_DESTRUCTOR_SIZE);
2044  }
2045
2046  uid_sv = sv_newmortal();
2047  sv_setpvf(uid_sv, "%"UVuf"-%"UVuf, depth, uid->seq);
2048  return uid_sv;
2049 }
2050
2051 #ifdef grok_number
2052
2053 #define su_grok_number(S, L, VP) grok_number((S), (L), (VP))
2054
2055 #else /* grok_number */
2056
2057 #define IS_NUMBER_IN_UV 0x1
2058
2059 static int su_grok_number(pTHX_ const char *s, STRLEN len, UV *valuep) {
2060 #define su_grok_number(S, L, VP) su_grok_number(aTHX_ (S), (L), (VP))
2061  STRLEN i;
2062  SV *tmpsv;
2063
2064  /* This crude check should be good enough for a fallback implementation.
2065   * Better be too strict than too lax. */
2066  for (i = 0; i < len; ++i) {
2067   if (!isDIGIT(s[i]))
2068    return 0;
2069  }
2070
2071  tmpsv = sv_newmortal();
2072  sv_setpvn(tmpsv, s, len);
2073  *valuep = sv_2uv(tmpsv);
2074
2075  return IS_NUMBER_IN_UV;
2076 }
2077
2078 #endif /* !grok_number */
2079
2080 static int su_uid_validate(pTHX_ SV *uid) {
2081 #define su_uid_validate(U) su_uid_validate(aTHX_ (U))
2082  const char *s;
2083  STRLEN len, p = 0;
2084  UV depth, seq;
2085  int type;
2086
2087  s = SvPV_const(uid, len);
2088
2089  while (p < len && s[p] != '-')
2090   ++p;
2091  if (p >= len)
2092   croak("UID contains only one part");
2093
2094  type = su_grok_number(s, p, &depth);
2095  if (type != IS_NUMBER_IN_UV)
2096   croak("First UID part is not an unsigned integer");
2097
2098  ++p; /* Skip '-'. As we used to have p < len, len - (p + 1) >= 0. */
2099
2100  type = su_grok_number(s + p, len - p, &seq);
2101  if (type != IS_NUMBER_IN_UV)
2102   croak("Second UID part is not an unsigned integer");
2103
2104  return su_uid_storage_check(depth, seq);
2105 }
2106
2107 /* --- Context operations -------------------------------------------------- */
2108
2109 /* Remove sequences of BLOCKs having DB for stash, followed by a SUB context
2110  * for the debugger callback. */
2111
2112 static I32 su_context_skip_db(pTHX_ I32 cxix) {
2113 #define su_context_skip_db(C) su_context_skip_db(aTHX_ (C))
2114  I32 i;
2115
2116  if (!PL_DBsub)
2117   return cxix;
2118
2119  for (i = cxix; i > 0; --i) {
2120   PERL_CONTEXT *cx = cxstack + i;
2121
2122   switch (CxTYPE(cx)) {
2123 #if SU_HAS_PERL(5, 17, 1)
2124    case CXt_LOOP_PLAIN:
2125 #endif
2126    case CXt_BLOCK:
2127     if (cx->blk_oldcop && CopSTASH(cx->blk_oldcop) == GvSTASH(PL_DBgv))
2128      continue;
2129     break;
2130    case CXt_SUB:
2131     if (cx->blk_sub.cv == GvCV(PL_DBsub)) {
2132      cxix = i - 1;
2133      continue;
2134     }
2135     break;
2136    default:
2137     break;
2138   }
2139
2140   break;
2141  }
2142
2143  return cxix;
2144 }
2145
2146
2147 static I32 su_context_normalize_up(pTHX_ I32 cxix) {
2148 #define su_context_normalize_up(C) su_context_normalize_up(aTHX_ (C))
2149  PERL_CONTEXT *cx;
2150
2151  if (cxix <= 0)
2152   return 0;
2153
2154  cx = cxstack + cxix;
2155  if (CxTYPE(cx) == CXt_BLOCK) {
2156   PERL_CONTEXT *prev = cx - 1;
2157
2158   switch (CxTYPE(prev)) {
2159 #if SU_HAS_PERL(5, 10, 0)
2160    case CXt_GIVEN:
2161    case CXt_WHEN:
2162 #endif
2163 #if SU_HAS_PERL(5, 11, 0)
2164    /* That's the only subcategory that can cause an extra BLOCK context */
2165    case CXt_LOOP_PLAIN:
2166 #else
2167    case CXt_LOOP:
2168 #endif
2169     if (cx->blk_oldcop == prev->blk_oldcop)
2170      return cxix - 1;
2171     break;
2172    case CXt_SUBST:
2173     if (cx->blk_oldcop && OpSIBLING(cx->blk_oldcop)
2174                        && OpSIBLING(cx->blk_oldcop)->op_type == OP_SUBST)
2175      return cxix - 1;
2176     break;
2177   }
2178  }
2179
2180  return cxix;
2181 }
2182
2183 static I32 su_context_normalize_down(pTHX_ I32 cxix) {
2184 #define su_context_normalize_down(C) su_context_normalize_down(aTHX_ (C))
2185  PERL_CONTEXT *next;
2186
2187  if (cxix >= cxstack_ix)
2188   return cxstack_ix;
2189
2190  next = cxstack + cxix + 1;
2191  if (CxTYPE(next) == CXt_BLOCK) {
2192   PERL_CONTEXT *cx = next - 1;
2193
2194   switch (CxTYPE(cx)) {
2195 #if SU_HAS_PERL(5, 10, 0)
2196    case CXt_GIVEN:
2197    case CXt_WHEN:
2198 #endif
2199 #if SU_HAS_PERL(5, 11, 0)
2200    /* That's the only subcategory that can cause an extra BLOCK context */
2201    case CXt_LOOP_PLAIN:
2202 #else
2203    case CXt_LOOP:
2204 #endif
2205     if (cx->blk_oldcop == next->blk_oldcop)
2206      return cxix + 1;
2207     break;
2208    case CXt_SUBST:
2209     if (next->blk_oldcop && OpSIBLING(next->blk_oldcop)
2210                          && OpSIBLING(next->blk_oldcop)->op_type == OP_SUBST)
2211      return cxix + 1;
2212     break;
2213   }
2214  }
2215
2216  return cxix;
2217 }
2218
2219 #define su_context_here() su_context_normalize_up(su_context_skip_db(cxstack_ix))
2220
2221 static I32 su_context_gimme(pTHX_ I32 cxix) {
2222 #define su_context_gimme(C) su_context_gimme(aTHX_ (C))
2223  I32 i;
2224
2225  for (i = cxix; i >= 0; --i) {
2226   PERL_CONTEXT *cx = cxstack + i;
2227
2228   switch (CxTYPE(cx)) {
2229    /* gimme is always G_ARRAY for loop contexts. */
2230 #if SU_HAS_PERL(5, 11, 0)
2231    case CXt_LOOP_FOR:
2232    case CXt_LOOP_PLAIN:
2233    case CXt_LOOP_LAZYSV:
2234    case CXt_LOOP_LAZYIV:
2235 #else
2236    case CXt_LOOP:
2237 #endif
2238    case CXt_SUBST: {
2239     const COP *cop = cx->blk_oldcop;
2240     if (cop && OpSIBLING(cop)) {
2241      switch (OpSIBLING(cop)->op_flags & OPf_WANT) {
2242       case OPf_WANT_VOID:
2243        return G_VOID;
2244       case OPf_WANT_SCALAR:
2245        return G_SCALAR;
2246       case OPf_WANT_LIST:
2247        return G_ARRAY;
2248       default:
2249        break;
2250      }
2251     }
2252     break;
2253    }
2254    default:
2255     return CxGIMME(cx);
2256     break;
2257   }
2258  }
2259
2260  return G_VOID;
2261 }
2262
2263 /* --- Global setup/teardown ----------------------------------------------- */
2264
2265 static VOL U32 su_initialized = 0;
2266
2267 static void su_global_teardown(pTHX_ void *root) {
2268  if (!su_initialized)
2269   return;
2270
2271 #if SU_MULTIPLICITY
2272  if (aTHX != root)
2273   return;
2274 #endif
2275
2276  SU_LOCK(&su_uid_seq_counter_mutex);
2277  PerlMemShared_free(su_uid_seq_counter.seqs);
2278  su_uid_seq_counter.size = 0;
2279  SU_UNLOCK(&su_uid_seq_counter_mutex);
2280
2281  MUTEX_DESTROY(&su_uid_seq_counter_mutex);
2282
2283  su_initialized = 0;
2284
2285  return;
2286 }
2287
2288 XS(XS_Scope__Upper_unwind);
2289 XS(XS_Scope__Upper_yield);
2290 XS(XS_Scope__Upper_leave);
2291
2292 #if SU_HAS_PERL(5, 9, 0)
2293 # define SU_XS_FILE_TYPE const char
2294 #else
2295 # define SU_XS_FILE_TYPE char
2296 #endif
2297
2298 static void su_global_setup(pTHX_ SU_XS_FILE_TYPE *file) {
2299 #define su_global_setup(F) su_global_setup(aTHX_ (F))
2300  HV *stash;
2301
2302  if (su_initialized)
2303   return;
2304
2305  MUTEX_INIT(&su_uid_seq_counter_mutex);
2306
2307  SU_LOCK(&su_uid_seq_counter_mutex);
2308  su_uid_seq_counter.seqs = NULL;
2309  su_uid_seq_counter.size = 0;
2310  SU_UNLOCK(&su_uid_seq_counter_mutex);
2311
2312  stash = gv_stashpv(__PACKAGE__, 1);
2313  newCONSTSUB(stash, "TOP",           newSViv(0));
2314  newCONSTSUB(stash, "SU_THREADSAFE", newSVuv(SU_THREADSAFE));
2315
2316  newXSproto("Scope::Upper::unwind", XS_Scope__Upper_unwind, file, NULL);
2317  newXSproto("Scope::Upper::yield",  XS_Scope__Upper_yield,  file, NULL);
2318  newXSproto("Scope::Upper::leave",  XS_Scope__Upper_leave,  file, NULL);
2319
2320 #if SU_MULTIPLICITY
2321  call_atexit(su_global_teardown, aTHX);
2322 #else
2323  call_atexit(su_global_teardown, NULL);
2324 #endif
2325
2326  su_initialized = 1;
2327
2328  return;
2329 }
2330
2331 /* --- Interpreter setup/teardown ------------------------------------------ */
2332
2333 static void su_local_teardown(pTHX_ void *param) {
2334  su_uplevel_ud *cur;
2335  su_uid **map;
2336  dMY_CXT;
2337
2338  map = MY_CXT.uid_storage.map;
2339  if (map) {
2340   STRLEN i;
2341   for (i = 0; i < MY_CXT.uid_storage.used; ++i)
2342    Safefree(map[i]);
2343   Safefree(map);
2344  }
2345
2346  cur = MY_CXT.uplevel_storage.root;
2347  if (cur) {
2348   su_uplevel_ud *prev;
2349   do {
2350    prev = cur;
2351    cur  = prev->next;
2352    su_uplevel_ud_delete(prev);
2353   } while (cur);
2354  }
2355
2356  return;
2357 }
2358
2359 static void su_local_setup(pTHX) {
2360 #define su_local_setup() su_local_setup(aTHX)
2361  MY_CXT_INIT;
2362
2363  MY_CXT.stack_placeholder = NULL;
2364
2365  /* NewOp() calls calloc() which just zeroes the memory with memset(). */
2366  Zero(&(MY_CXT.unwind_storage.return_op), 1, LISTOP);
2367  MY_CXT.unwind_storage.return_op.op_type   = OP_RETURN;
2368  MY_CXT.unwind_storage.return_op.op_ppaddr = PL_ppaddr[OP_RETURN];
2369
2370  Zero(&(MY_CXT.unwind_storage.proxy_op), 1, OP);
2371  MY_CXT.unwind_storage.proxy_op.op_type   = OP_STUB;
2372  MY_CXT.unwind_storage.proxy_op.op_ppaddr = NULL;
2373
2374  Zero(&(MY_CXT.yield_storage.leave_op), 1, UNOP);
2375  MY_CXT.yield_storage.leave_op.op_type   = OP_STUB;
2376  MY_CXT.yield_storage.leave_op.op_ppaddr = NULL;
2377
2378  Zero(&(MY_CXT.yield_storage.proxy_op), 1, OP);
2379  MY_CXT.yield_storage.proxy_op.op_type   = OP_STUB;
2380  MY_CXT.yield_storage.proxy_op.op_ppaddr = NULL;
2381
2382  MY_CXT.uplevel_storage.top   = NULL;
2383  MY_CXT.uplevel_storage.root  = NULL;
2384  MY_CXT.uplevel_storage.count = 0;
2385
2386  MY_CXT.uid_storage.map   = NULL;
2387  MY_CXT.uid_storage.used  = 0;
2388  MY_CXT.uid_storage.alloc = 0;
2389
2390  call_atexit(su_local_teardown, NULL);
2391
2392  return;
2393 }
2394
2395 /* --- XS ------------------------------------------------------------------ */
2396
2397 #define SU_GET_CONTEXT(A, B, D) \
2398  STMT_START {                   \
2399   if (items > A) {              \
2400    SV *csv = ST(B);             \
2401    if (!SvOK(csv))              \
2402     goto default_cx;            \
2403    cxix = SvIV(csv);            \
2404    if (cxix < 0)                \
2405     cxix = 0;                   \
2406    else if (cxix > cxstack_ix)  \
2407     goto default_cx;            \
2408   } else {                      \
2409 default_cx:                     \
2410    cxix = (D);                  \
2411   }                             \
2412  } STMT_END
2413
2414 #define SU_GET_LEVEL(A, B) \
2415  STMT_START {              \
2416   level = 0;               \
2417   if (items > 0) {         \
2418    SV *lsv = ST(B);        \
2419    if (SvOK(lsv)) {        \
2420     level = SvIV(lsv);     \
2421     if (level < 0)         \
2422      level = 0;            \
2423    }                       \
2424   }                        \
2425  } STMT_END
2426
2427 #if SU_HAS_PERL(5, 10, 0)
2428 # define SU_INFO_COUNT 11
2429 #else
2430 # define SU_INFO_COUNT 10
2431 #endif
2432
2433 XS(XS_Scope__Upper_unwind) {
2434 #ifdef dVAR
2435  dVAR; dXSARGS;
2436 #else
2437  dXSARGS;
2438 #endif
2439  dMY_CXT;
2440  I32 cxix;
2441
2442  PERL_UNUSED_VAR(cv); /* -W */
2443  PERL_UNUSED_VAR(ax); /* -Wall */
2444
2445  SU_GET_CONTEXT(0, items - 1, cxstack_ix);
2446  do {
2447   PERL_CONTEXT *cx = cxstack + cxix;
2448   switch (CxTYPE(cx)) {
2449    case CXt_SUB:
2450     if (PL_DBsub && cx->blk_sub.cv == GvCV(PL_DBsub))
2451      continue;
2452    case CXt_EVAL:
2453    case CXt_FORMAT:
2454     MY_CXT.unwind_storage.cxix   = cxix;
2455     MY_CXT.unwind_storage.items  = items;
2456     MY_CXT.unwind_storage.savesp = PL_stack_sp;
2457     if (items > 0) {
2458      MY_CXT.unwind_storage.items--;
2459      MY_CXT.unwind_storage.savesp--;
2460     }
2461     /* pp_entersub will want to sanitize the stack after returning from there
2462      * Screw that, we're insane!
2463      * dXSARGS calls POPMARK, so we need to match PL_markstack_ptr[1] */
2464     if (GIMME_V == G_SCALAR)
2465      PL_stack_sp = PL_stack_base + PL_markstack_ptr[1] + 1;
2466     SAVEDESTRUCTOR_X(su_unwind, NULL);
2467     return;
2468    default:
2469     break;
2470   }
2471  } while (--cxix >= 0);
2472  croak("Can't return outside a subroutine");
2473 }
2474
2475 static const char su_yield_name[] = "yield";
2476
2477 XS(XS_Scope__Upper_yield) {
2478 #ifdef dVAR
2479  dVAR; dXSARGS;
2480 #else
2481  dXSARGS;
2482 #endif
2483  dMY_CXT;
2484  I32 cxix;
2485
2486  PERL_UNUSED_VAR(cv); /* -W */
2487  PERL_UNUSED_VAR(ax); /* -Wall */
2488
2489  SU_GET_CONTEXT(0, items - 1, su_context_here());
2490  MY_CXT.yield_storage.cxix   = cxix;
2491  MY_CXT.yield_storage.items  = items;
2492  MY_CXT.yield_storage.savesp = PL_stack_sp;
2493  if (items > 0) {
2494   MY_CXT.yield_storage.items--;
2495   MY_CXT.yield_storage.savesp--;
2496  }
2497  /* See XS_Scope__Upper_unwind */
2498  if (GIMME_V == G_SCALAR)
2499   PL_stack_sp = PL_stack_base + PL_markstack_ptr[1] + 1;
2500  SAVEDESTRUCTOR_X(su_yield, su_yield_name);
2501  return;
2502 }
2503
2504 static const char su_leave_name[] = "leave";
2505
2506 XS(XS_Scope__Upper_leave) {
2507 #ifdef dVAR
2508  dVAR; dXSARGS;
2509 #else
2510  dXSARGS;
2511 #endif
2512  dMY_CXT;
2513
2514  PERL_UNUSED_VAR(cv); /* -W */
2515  PERL_UNUSED_VAR(ax); /* -Wall */
2516
2517  MY_CXT.yield_storage.cxix   = su_context_here();
2518  MY_CXT.yield_storage.items  = items;
2519  MY_CXT.yield_storage.savesp = PL_stack_sp;
2520  /* See XS_Scope__Upper_unwind */
2521  if (GIMME_V == G_SCALAR)
2522   PL_stack_sp = PL_stack_base + PL_markstack_ptr[1] + 1;
2523  SAVEDESTRUCTOR_X(su_yield, su_leave_name);
2524  return;
2525 }
2526
2527 MODULE = Scope::Upper            PACKAGE = Scope::Upper
2528
2529 PROTOTYPES: ENABLE
2530
2531 BOOT:
2532 {
2533  su_global_setup(file);
2534  su_local_setup();
2535 }
2536
2537 #if SU_THREADSAFE
2538
2539 void
2540 CLONE(...)
2541 PROTOTYPE: DISABLE
2542 PREINIT:
2543  su_uid_storage new_cxt;
2544 PPCODE:
2545  {
2546   dMY_CXT;
2547   new_cxt.map   = NULL;
2548   new_cxt.used  = 0;
2549   new_cxt.alloc = 0;
2550   su_uid_storage_dup(&new_cxt, &MY_CXT.uid_storage, MY_CXT.uid_storage.used);
2551  }
2552  {
2553   MY_CXT_CLONE;
2554   MY_CXT.uplevel_storage.top   = NULL;
2555   MY_CXT.uplevel_storage.root  = NULL;
2556   MY_CXT.uplevel_storage.count = 0;
2557   MY_CXT.uid_storage           = new_cxt;
2558  }
2559  XSRETURN(0);
2560
2561 #endif /* SU_THREADSAFE */
2562
2563 void
2564 HERE()
2565 PROTOTYPE:
2566 PREINIT:
2567  I32 cxix;
2568 PPCODE:
2569  cxix = su_context_here();
2570  EXTEND(SP, 1);
2571  mPUSHi(cxix);
2572  XSRETURN(1);
2573
2574 void
2575 UP(...)
2576 PROTOTYPE: ;$
2577 PREINIT:
2578  I32 cxix;
2579 PPCODE:
2580  SU_GET_CONTEXT(0, 0, su_context_here());
2581  if (cxix > 0) {
2582   --cxix;
2583   cxix = su_context_skip_db(cxix);
2584   cxix = su_context_normalize_up(cxix);
2585  }
2586  EXTEND(SP, 1);
2587  mPUSHi(cxix);
2588  XSRETURN(1);
2589
2590 void
2591 SUB(...)
2592 PROTOTYPE: ;$
2593 PREINIT:
2594  I32 cxix;
2595 PPCODE:
2596  SU_GET_CONTEXT(0, 0, cxstack_ix);
2597  EXTEND(SP, 1);
2598  for (; cxix >= 0; --cxix) {
2599   PERL_CONTEXT *cx = cxstack + cxix;
2600   switch (CxTYPE(cx)) {
2601    default:
2602     continue;
2603    case CXt_SUB:
2604     if (PL_DBsub && cx->blk_sub.cv == GvCV(PL_DBsub))
2605      continue;
2606     mPUSHi(cxix);
2607     XSRETURN(1);
2608   }
2609  }
2610  XSRETURN_UNDEF;
2611
2612 void
2613 EVAL(...)
2614 PROTOTYPE: ;$
2615 PREINIT:
2616  I32 cxix;
2617 PPCODE:
2618  SU_GET_CONTEXT(0, 0, cxstack_ix);
2619  EXTEND(SP, 1);
2620  for (; cxix >= 0; --cxix) {
2621   PERL_CONTEXT *cx = cxstack + cxix;
2622   switch (CxTYPE(cx)) {
2623    default:
2624     continue;
2625    case CXt_EVAL:
2626     mPUSHi(cxix);
2627     XSRETURN(1);
2628   }
2629  }
2630  XSRETURN_UNDEF;
2631
2632 void
2633 SCOPE(...)
2634 PROTOTYPE: ;$
2635 PREINIT:
2636  I32 cxix, level;
2637 PPCODE:
2638  SU_GET_LEVEL(0, 0);
2639  cxix = su_context_here();
2640  while (--level >= 0) {
2641   if (cxix <= 0)
2642    break;
2643   --cxix;
2644   cxix = su_context_skip_db(cxix);
2645   cxix = su_context_normalize_up(cxix);
2646  }
2647  EXTEND(SP, 1);
2648  mPUSHi(cxix);
2649  XSRETURN(1);
2650
2651 void
2652 CALLER(...)
2653 PROTOTYPE: ;$
2654 PREINIT:
2655  I32 cxix, level;
2656 PPCODE:
2657  SU_GET_LEVEL(0, 0);
2658  for (cxix = cxstack_ix; cxix > 0; --cxix) {
2659   PERL_CONTEXT *cx = cxstack + cxix;
2660   switch (CxTYPE(cx)) {
2661    case CXt_SUB:
2662     if (PL_DBsub && cx->blk_sub.cv == GvCV(PL_DBsub))
2663      continue;
2664    case CXt_EVAL:
2665    case CXt_FORMAT:
2666     if (--level < 0)
2667      goto done;
2668     break;
2669   }
2670  }
2671 done:
2672  EXTEND(SP, 1);
2673  mPUSHi(cxix);
2674  XSRETURN(1);
2675
2676 void
2677 want_at(...)
2678 PROTOTYPE: ;$
2679 PREINIT:
2680  I32 cxix;
2681 PPCODE:
2682  SU_GET_CONTEXT(0, 0, cxstack_ix);
2683  EXTEND(SP, 1);
2684  while (cxix > 0) {
2685   PERL_CONTEXT *cx = cxstack + cxix--;
2686   switch (CxTYPE(cx)) {
2687    case CXt_SUB:
2688     if (PL_DBsub && cx->blk_sub.cv == GvCV(PL_DBsub))
2689      continue;
2690    case CXt_EVAL:
2691    case CXt_FORMAT: {
2692     I32 gimme = cx->blk_gimme;
2693     switch (gimme) {
2694      case G_VOID:   XSRETURN_UNDEF; break;
2695      case G_SCALAR: XSRETURN_NO;    break;
2696      case G_ARRAY:  XSRETURN_YES;   break;
2697     }
2698     break;
2699    }
2700   }
2701  }
2702  XSRETURN_UNDEF;
2703
2704 void
2705 context_info(...)
2706 PROTOTYPE: ;$
2707 PREINIT:
2708  I32 cxix;
2709  const PERL_CONTEXT *cx, *dbcx;
2710  COP *cop;
2711 PPCODE:
2712  SU_GET_CONTEXT(0, 0, su_context_skip_db(cxstack_ix));
2713  cxix = su_context_normalize_up(cxix);
2714  cx   = cxstack + cxix;
2715  dbcx = cx;
2716  if (PL_DBsub && cxix && (CxTYPE(cx) == CXt_SUB || CxTYPE(cx) == CXt_FORMAT)) {
2717   I32 i = su_context_skip_db(cxix - 1) + 1;
2718   if (i < cxix && CxTYPE(cxstack + i) == CXt_SUB)
2719    cx = cxstack + i;
2720  }
2721  cop  = cx->blk_oldcop;
2722  EXTEND(SP, SU_INFO_COUNT);
2723  /* stash (0) */
2724  {
2725   HV *stash = CopSTASH(cop);
2726   if (stash)
2727    PUSHs(su_newmortal_pvn(HvNAME(stash), HvNAMELEN(stash)));
2728   else
2729    PUSHs(&PL_sv_undef);
2730  }
2731  /* file (1) */
2732  PUSHs(su_newmortal_pvn(OutCopFILE(cop), OutCopFILE_len(cop)));
2733  /* line (2) */
2734  mPUSHi(CopLINE(cop));
2735  /* subroutine (3) and has_args (4) */
2736  switch (CxTYPE(cx)) {
2737   case CXt_SUB:
2738   case CXt_FORMAT: {
2739    GV *cvgv = CvGV(dbcx->blk_sub.cv);
2740    if (cvgv && isGV(cvgv)) {
2741     SV *sv = sv_newmortal();
2742     gv_efullname3(sv, cvgv, NULL);
2743     PUSHs(sv);
2744    } else {
2745     PUSHs(su_newmortal_pvs("(unknown)"));
2746    }
2747    if (CxHASARGS(cx))
2748     PUSHs(&PL_sv_yes);
2749    else
2750     PUSHs(&PL_sv_no);
2751    break;
2752   }
2753   case CXt_EVAL:
2754    PUSHs(su_newmortal_pvs("(eval)"));
2755    mPUSHi(0);
2756    break;
2757   default:
2758    PUSHs(&PL_sv_undef);
2759    PUSHs(&PL_sv_undef);
2760  }
2761  /* gimme (5) */
2762  switch (su_context_gimme(cxix)) {
2763   case G_ARRAY:
2764    PUSHs(&PL_sv_yes);
2765    break;
2766   case G_SCALAR:
2767    PUSHs(&PL_sv_no);
2768    break;
2769   default: /* G_VOID */
2770    PUSHs(&PL_sv_undef);
2771    break;
2772  }
2773  /* eval text (6) and is_require (7) */
2774  switch (CxTYPE(cx)) {
2775   case CXt_EVAL:
2776    if (CxOLD_OP_TYPE(cx) == OP_ENTEREVAL) {
2777     /* eval STRING */
2778 #if SU_HAS_PERL(5, 17, 4)
2779     PUSHs(newSVpvn_flags(SvPVX(cx->blk_eval.cur_text),
2780                          SvCUR(cx->blk_eval.cur_text)-2,
2781                          SvUTF8(cx->blk_eval.cur_text)|SVs_TEMP));
2782 #else
2783     PUSHs(cx->blk_eval.cur_text);
2784 #endif
2785     PUSHs(&PL_sv_no);
2786     break;
2787    } else if (cx->blk_eval.old_namesv) {
2788     /* require */
2789     PUSHs(sv_mortalcopy(cx->blk_eval.old_namesv));
2790     PUSHs(&PL_sv_yes);
2791     break;
2792    }
2793    /* FALLTHROUGH */
2794   default:
2795    /* Anything else including eval BLOCK */
2796    PUSHs(&PL_sv_undef);
2797    PUSHs(&PL_sv_undef);
2798    break;
2799  }
2800  /* hints (8) */
2801  mPUSHi(CopHINTS_get(cop));
2802  /* warnings (9) */
2803  {
2804   SV *mask = NULL;
2805 #if SU_HAS_PERL(5, 9, 4)
2806   STRLEN *old_warnings = cop->cop_warnings;
2807 #else
2808   SV *old_warnings = cop->cop_warnings;
2809 #endif
2810   if (old_warnings == pWARN_STD) {
2811    if (PL_dowarn & G_WARN_ON)
2812     goto context_info_warnings_on;
2813    else
2814 #if SU_HAS_PERL(5, 17, 4)
2815     mask = &PL_sv_undef;
2816 #else
2817     goto context_info_warnings_off;
2818 #endif
2819   } else if (old_warnings == pWARN_NONE) {
2820 #if !SU_HAS_PERL(5, 17, 4)
2821 context_info_warnings_off:
2822 #endif
2823    mask = su_newmortal_pvn(WARN_NONEstring, WARNsize);
2824   } else if (old_warnings == pWARN_ALL) {
2825    HV *bits;
2826 context_info_warnings_on:
2827 #if SU_HAS_PERL(5, 8, 7)
2828    bits = get_hv("warnings::Bits", 0);
2829    if (bits) {
2830     SV **bits_all = hv_fetchs(bits, "all", FALSE);
2831     if (bits_all)
2832      mask = sv_mortalcopy(*bits_all);
2833    }
2834 #endif
2835    if (!mask)
2836     mask = su_newmortal_pvn(WARN_ALLstring, WARNsize);
2837   } else {
2838 #if SU_HAS_PERL(5, 9, 4)
2839    mask = su_newmortal_pvn((char *) (old_warnings + 1), old_warnings[0]);
2840 #else
2841    mask = sv_mortalcopy(old_warnings);
2842 #endif
2843   }
2844   PUSHs(mask);
2845  }
2846 #if SU_HAS_PERL(5, 10, 0)
2847  /* hints hash (10) */
2848  {
2849   COPHH *hints_hash = CopHINTHASH_get(cop);
2850   if (hints_hash) {
2851    SV *rhv = sv_2mortal(newRV_noinc((SV *) cophh_2hv(hints_hash, 0)));
2852    PUSHs(rhv);
2853   } else {
2854    PUSHs(&PL_sv_undef);
2855   }
2856  }
2857 #endif
2858  XSRETURN(SU_INFO_COUNT);
2859
2860 void
2861 reap(SV *hook, ...)
2862 PROTOTYPE: &;$
2863 PREINIT:
2864  I32 cxix;
2865  su_ud_reap *ud;
2866 CODE:
2867  SU_GET_CONTEXT(1, 1, su_context_skip_db(cxstack_ix));
2868  cxix = su_context_normalize_down(cxix);
2869  Newx(ud, 1, su_ud_reap);
2870  SU_UD_ORIGIN(ud)  = NULL;
2871  SU_UD_HANDLER(ud) = su_reap;
2872  ud->cb = newSVsv(hook);
2873  su_init(ud, cxix, SU_SAVE_DESTRUCTOR_SIZE);
2874
2875 void
2876 localize(SV *sv, SV *val, ...)
2877 PROTOTYPE: $$;$
2878 PREINIT:
2879  I32 cxix;
2880  I32 size;
2881  su_ud_localize *ud;
2882 CODE:
2883  SU_GET_CONTEXT(2, 2, su_context_skip_db(cxstack_ix));
2884  cxix = su_context_normalize_down(cxix);
2885  Newx(ud, 1, su_ud_localize);
2886  SU_UD_ORIGIN(ud)  = NULL;
2887  SU_UD_HANDLER(ud) = su_localize;
2888  size = su_ud_localize_init(ud, sv, val, NULL);
2889  su_init(ud, cxix, size);
2890
2891 void
2892 localize_elem(SV *sv, SV *elem, SV *val, ...)
2893 PROTOTYPE: $$$;$
2894 PREINIT:
2895  I32 cxix;
2896  I32 size;
2897  su_ud_localize *ud;
2898 CODE:
2899  if (SvTYPE(sv) >= SVt_PVGV)
2900   croak("Can't infer the element localization type from a glob and the value");
2901  SU_GET_CONTEXT(3, 3, su_context_skip_db(cxstack_ix));
2902  cxix = su_context_normalize_down(cxix);
2903  Newx(ud, 1, su_ud_localize);
2904  SU_UD_ORIGIN(ud)  = NULL;
2905  SU_UD_HANDLER(ud) = su_localize;
2906  size = su_ud_localize_init(ud, sv, val, elem);
2907  if (ud->type != SVt_PVAV && ud->type != SVt_PVHV) {
2908   SU_UD_LOCALIZE_FREE(ud);
2909   croak("Can't localize an element of something that isn't an array or a hash");
2910  }
2911  su_init(ud, cxix, size);
2912
2913 void
2914 localize_delete(SV *sv, SV *elem, ...)
2915 PROTOTYPE: $$;$
2916 PREINIT:
2917  I32 cxix;
2918  I32 size;
2919  su_ud_localize *ud;
2920 CODE:
2921  SU_GET_CONTEXT(2, 2, su_context_skip_db(cxstack_ix));
2922  cxix = su_context_normalize_down(cxix);
2923  Newx(ud, 1, su_ud_localize);
2924  SU_UD_ORIGIN(ud)  = NULL;
2925  SU_UD_HANDLER(ud) = su_localize;
2926  size = su_ud_localize_init(ud, sv, NULL, elem);
2927  su_init(ud, cxix, size);
2928
2929 void
2930 uplevel(SV *code, ...)
2931 PROTOTYPE: &@
2932 PREINIT:
2933  I32 cxix, ret, args = 0;
2934 PPCODE:
2935  if (SvROK(code))
2936   code = SvRV(code);
2937  if (SvTYPE(code) < SVt_PVCV)
2938   croak("First argument to uplevel must be a code reference");
2939  SU_GET_CONTEXT(1, items - 1, cxstack_ix);
2940  do {
2941   PERL_CONTEXT *cx = cxstack + cxix;
2942   switch (CxTYPE(cx)) {
2943    case CXt_EVAL:
2944     croak("Can't uplevel to an eval frame");
2945    case CXt_FORMAT:
2946     croak("Can't uplevel to a format frame");
2947    case CXt_SUB:
2948     if (PL_DBsub && cx->blk_sub.cv == GvCV(PL_DBsub))
2949      continue;
2950     if (items > 1) {
2951      PL_stack_sp--;
2952      args = items - 2;
2953     }
2954     /* su_uplevel() takes care of extending the stack if needed. */
2955     ret = su_uplevel((CV *) code, cxix, args);
2956     XSRETURN(ret);
2957    default:
2958     break;
2959   }
2960  } while (--cxix >= 0);
2961  croak("Can't uplevel outside a subroutine");
2962
2963 void
2964 uid(...)
2965 PROTOTYPE: ;$
2966 PREINIT:
2967  I32 cxix;
2968  SV *uid;
2969 PPCODE:
2970  SU_GET_CONTEXT(0, 0, su_context_here());
2971  uid = su_uid_get(cxix);
2972  EXTEND(SP, 1);
2973  PUSHs(uid);
2974  XSRETURN(1);
2975
2976 void
2977 validate_uid(SV *uid)
2978 PROTOTYPE: $
2979 PREINIT:
2980  SV *ret;
2981 PPCODE:
2982  ret = su_uid_validate(uid) ? &PL_sv_yes : &PL_sv_no;
2983  EXTEND(SP, 1);
2984  PUSHs(ret);
2985  XSRETURN(1);