Searched refs:blk_eval (Results 1 – 9 of 9) sorted by relevance
3767 cx->blk_eval.retop = retop; in Perl_push_evalortry_common()3768 cx->blk_eval.old_namesv = namesv; in Perl_push_evalortry_common()3769 cx->blk_eval.old_eval_root = PL_eval_root; in Perl_push_evalortry_common()3770 cx->blk_eval.cur_text = PL_parser ? PL_parser->linestr : NULL; in Perl_push_evalortry_common()3771 cx->blk_eval.cv = NULL; /* later set by doeval_compile() */ in Perl_push_evalortry_common()3772 cx->blk_eval.cur_top_env = PL_top_env; in Perl_push_evalortry_common()3786 cx->blk_eval.old_cxsubix = PL_curstackinfo->si_cxsubix; in Perl_cx_pusheval()3799 cx->blk_eval.old_cxsubix = PL_curstackinfo->si_cxsubix; in Perl_cx_pushtry()3813 PL_eval_root = cx->blk_eval.old_eval_root; in Perl_cx_popeval()3814 sv = cx->blk_eval.cur_text; in Perl_cx_popeval()[all …]
1814 if (cx->blk_eval.old_namesv) in Perl_cx_dump()1816 SvPVX_const(cx->blk_eval.old_namesv)); in Perl_cx_dump()1818 PTR2UV(cx->blk_eval.old_eval_root)); in Perl_cx_dump()1820 PTR2UV(cx->blk_eval.retop)); in Perl_cx_dump()
1924 namesv = cx->blk_eval.old_namesv; in S_pop_eval_context_maybe_croak()1925 cx->blk_eval.old_namesv = NULL; in S_pop_eval_context_maybe_croak()2052 restartjmpenv = cx->blk_eval.cur_top_env; in Perl_die_unwind()2053 restartop = cx->blk_eval.retop; in Perl_die_unwind()2290 SV *cur_text = cx->blk_eval.cur_text;2303 else if (cx->blk_eval.old_namesv) {2304 mPUSHs(newSVsv(cx->blk_eval.old_namesv));3488 last_eval_cx->blk_eval.old_eval_root : in PP()3833 cv = cx->blk_eval.cv; in Perl_find_runcv_where()4007 CX_CUR()->blk_eval.cv = evalcv; in S_doeval_compile()[all …]
1024 #define blk_eval cx_u.cx_blk.blk_u.blku_eval macro
15050 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,15053 ncx->blk_eval.cur_text = sv_dup(ncx->blk_eval.cur_text, param);15054 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
3373 return cx->blk_eval.cv; in S_deb_curcv()
11267 && cx->blk_eval.cur_text == linestr) in S_scan_heredoc()11269 cx->blk_eval.cur_text = newSVsv(linestr); in S_scan_heredoc()
49 blk_eval # Z added by devel/scanprov
3334 the C<blk_eval.cur_top_env> pointer in the C<eval> context frame that