From: Vincent Pit Date: Tue, 1 Jun 2010 17:09:15 +0000 (+0200) Subject: Identify the require scope by the outmost cv outside of the current one X-Git-Tag: v0.10~21 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=ef0c8e746b2468a226f1393c7811e9747db8ee09 Identify the require scope by the outmost cv outside of the current one --- diff --git a/Types.xs b/Types.xs index a8fb284..cfd32cd 100644 --- a/Types.xs +++ b/Types.xs @@ -105,7 +105,7 @@ typedef struct { SV *code; - IV cxreq; + IV require_tag; } lt_hint_t; #define LT_HINT_STRUCT 1 @@ -199,11 +199,11 @@ STATIC void lt_ptable_hints_clone(pTHX_ ptable_ent *ent, void *ud_) { #if LT_HINT_STRUCT - h2 = PerlMemShared_malloc(sizeof *h2); - h2->code = lt_clone(h1->code, ud->owner); + h2 = PerlMemShared_malloc(sizeof *h2); + h2->code = lt_clone(h1->code, ud->owner); SvREFCNT_inc(h2->code); #if LT_WORKAROUND_REQUIRE_PROPAGATION - h2->cxreq = h1->cxreq; + h2->require_tag = PTR2IV(lt_clone(INT2PTR(SV *, h1->require_tag), ud->owner)); #endif #else /* LT_HINT_STRUCT */ @@ -231,20 +231,46 @@ STATIC void lt_thread_cleanup(pTHX_ void *ud) { #if LT_WORKAROUND_REQUIRE_PROPAGATION STATIC IV lt_require_tag(pTHX) { #define lt_require_tag() lt_require_tag(aTHX) - const PERL_SI *si; - - for (si = PL_curstackinfo; si; si = si->si_prev) { - I32 cxix; - - for (cxix = si->si_cxix; cxix >= 0; --cxix) { - const PERL_CONTEXT *cx = si->si_cxstack + cxix; - - if (CxTYPE(cx) == CXt_EVAL && cx->blk_eval.old_op_type == OP_REQUIRE) - return PTR2IV(cx); + const CV *cv, *outside; + + cv = PL_compcv; + + if (!cv) { + /* If for some reason the pragma is operational at run-time, try to discover + * the current cv in use. */ + const PERL_SI *si; + + for (si = PL_curstackinfo; si; si = si->si_prev) { + I32 cxix; + + for (cxix = si->si_cxix; cxix >= 0; --cxix) { + const PERL_CONTEXT *cx = si->si_cxstack + cxix; + + switch (CxTYPE(cx)) { + case CXt_SUB: + case CXt_FORMAT: + /* The propagation workaround is only needed up to 5.10.0 and at that + * time format and sub contexts were still identical. And even later the + * cv members offsets should have been kept the same. */ + cv = cx->blk_sub.cv; + goto get_enclosing_cv; + case CXt_EVAL: + cv = cx->blk_eval.cv; + goto get_enclosing_cv; + default: + break; + } + } } + + cv = PL_main_cv; } - return PTR2IV(NULL); +get_enclosing_cv: + for (outside = CvOUTSIDE(cv); outside; outside = CvOUTSIDE(cv)) + cv = outside; + + return PTR2IV(cv); } #endif /* LT_WORKAROUND_REQUIRE_PROPAGATION */ @@ -264,9 +290,9 @@ STATIC SV *lt_tag(pTHX_ SV *value) { #if LT_HINT_STRUCT h = PerlMemShared_malloc(sizeof *h); - h->code = code; + h->code = code; # if LT_WORKAROUND_REQUIRE_PROPAGATION - h->cxreq = lt_require_tag(); + h->require_tag = lt_require_tag(); # endif /* LT_WORKAROUND_REQUIRE_PROPAGATION */ #else /* LT_HINT_STRUCT */ h = code; @@ -295,7 +321,7 @@ STATIC SV *lt_detag(pTHX_ const SV *hint) { h = ptable_fetch(MY_CXT.tbl, h); #endif /* LT_THREADSAFE */ #if LT_WORKAROUND_REQUIRE_PROPAGATION - if (lt_require_tag() != h->cxreq) + if (lt_require_tag() != h->require_tag) return NULL; #endif /* LT_WORKAROUND_REQUIRE_PROPAGATION */