This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Mark unexpectedly passing TEST -deparse tests
[perl5.git] / pp_ctl.c
2016-03-18 David Mitchellrename and function-ise dtrace macros
2016-02-03 David Mitchellremove dSP from a couple of pp_enter* fns
2016-02-03 David Mitchellmake gimme consistently U8
2016-02-03 David Mitchellconvert CX_{PUSH|POP}{WHEN|GIVEN} to inline fns
2016-02-03 David Mitchellconvert CX_PUSHLOOP*/POPLOOP to inline fns
2016-02-03 David Mitchellconvert CX_PUSHEVAL/POPEVAL to inline fns
2016-02-03 David Mitchellconvert CX_PUSHFORMAT/POPFORMAT to inline fns
2016-02-03 David Mitchellconvert CX_PUSHSUB/POPSUB to inline fns
2016-02-03 David Mitchellconvert CX_PUSH/POP/TOPBLOCK to inline fns
2016-02-03 David Mitchellrename PUSHBLOCK,PUSHSUB etc to CX_PUSHBLOCK etc
2016-02-03 David Mitchelleliminate PUSH/POPBASICBLK macros
2016-02-03 David Mitchellpp_enteriter: add comment about setting cxt type
2016-02-03 David MitchellPUSHEVAL: make n param an SV rather than a string
2016-02-03 David MitchellPUSHSUB: make retop a parameter
2016-02-03 David MitchellPUSHEVAL: make retop a parameter
2016-02-03 David MitchellPUSHSUB: don't use implicit args
2016-02-03 David MitchellPUSHBLOCK: don't use implicit args
2016-02-03 David Mitchellmove PL_savestack_ix saving into PUSHBLOCK
2016-02-03 David Mitchelleliminate PERL_STACK_OVERFLOW_CHECK
2016-02-03 David Mitchellrename POPFOO() to CX_POPFOO()
2016-02-03 David Mitchellpp_redo()): reorder some stuff
2016-02-03 David Mitchelloptimise bare 'next'
2016-02-03 David Mitchellmake S_unwind_loop static again
2016-02-03 David MitchellS_unwind_loop(): remove opname param
2016-02-03 David MitchellS_unwind_loop(): return pointer rather than index
2016-02-03 David Mitchelldounwind(): do a POPBLOCK for final cx frame.
2016-02-03 David Mitchellpp_break(): don't use TOPBLOCK
2016-02-03 David Mitchellonly set CXp_FOR_DEF with CXp_FOR_GV
2016-02-03 David Mitchellgive POP_SAVEARRAY() macro a cx arg
2016-02-03 David Mitchellclarify code comment in pp_goto(()
2016-02-03 David Mitchellfix *_ = "" for 0 .. 1;
2016-02-03 David Mitchellpp_enteriter: use efficient SvREFCNT_inc variant
2016-02-03 David Mitchellprovide some basic documentation for Perl_dounwind
2016-02-03 David Mitchellpp_ctl.c: s/newsp/oldsp/g
2016-02-03 David Mitchellreplace leave_common() with leave_adjust_stacks()
2016-02-03 David Mitchellmake pp_return() use leave_adjust_stacks()
2016-02-03 David Mitchellmake pp_leavesublv use S_leavesub_adjust_stacks()
2016-02-03 David Mitchellpp_leavesublv(): document PL_sv_undef exception
2016-02-03 David Mitchellpp_leavesublv(): croak on *all* PADTMPs
2016-02-03 David Mitchellextend magic copy test to all scope exit types
2016-02-03 David MitchellAlways copy return values when exiting scope
2016-02-03 David Mitchellmake TOPBLOCK(cx) not set cx
2016-02-03 David Mitchellrename DEBUG_CX() to CX_DEBUG()
2016-02-03 David Mitchelladd CX_CUR() macro
2016-02-03 David Mitchellmove and rename cx_old_savestack_ix
2016-02-03 David MitchellEliminate cx->blk_loop.resetsp
2016-02-03 David Mitchellpp_iter(): optimise stack handling
2016-02-03 David Mitchellsplit CXt_LOOP_FOR into CXt_LOOP_LIST,CXt_LOOP_ARY
2016-02-03 David Mitchellstop S_undo_inc_then_croak() doing CX_POP
2016-02-03 David Mitchellpp_leaveeval: reset stack in VOID context
2016-02-03 David Mitchellrename S_doeval() to S_doeval_compile()
2016-02-03 David MitchellS_doeval(): tidy up comments
2016-02-03 David Mitchellremove obsolete panic from die_unwind()
2016-02-03 David Mitchellpp_return: avoid potential CX stack realloc prob
2016-02-03 David MitchellPerl_die_unwind(): remove unneeded assert
2016-02-03 David Mitchelladd S_undo_inc_then_croak()
2016-02-03 David MitchellPOPEVAL: don't set optype
2016-02-03 David Mitchelladd CX_POP(cx) macro: glorified cxstack_ix--
2016-02-03 David Mitchellremove redundant croak code in pp_leavesublv
2016-02-03 David Mitchellfactor common code into POPSUB_ARGS()
2016-02-03 David Mitchellmake POPSUBST not cxstack_ix--
2016-02-03 David Mitchelldowinwind(): move common CX_LEAVE_SCOPE() outside
2016-02-03 David Mitchelldounwind: CX_LEAVE_SCOPE for CXt_SUBST too
2016-02-03 David Mitchellmove blku_old_savestack_ix to base of cxt struct
2016-02-03 David Mitchellmove sbu_oldsave into base of CX struct
2016-02-03 David Mitchellmove CX_LEAVE_SCOPE outside the POPFOO's
2016-02-03 David Mitchellsort(!) out CXt_NULL and CXp_MULTICALL
2016-02-03 David Mitchellremove newpm param from POPBLOCK() macro.
2016-02-03 David Mitchellreverse the order of POPBLOCK; POPFOO
2016-02-03 David Mitchellmake PL_tmps_floor restore consistent
2016-02-03 David Mitchellsimplify S_leave_common() and callers
2016-02-03 David Mitchelleliminate weird gimme calc in pp_leave()
2016-02-03 David Mitchelleliminate LEAVESUB() macro
2016-02-03 David Mitchellmake LEAVESUB() always immediately follow POPSUB()
2016-02-03 David Mitchellmove CX_LEAVE_SCOPE into POPEVAL
2016-02-03 David Mitchelladd CX_LEAVE_SCOPE(cx) macro
2016-02-03 David Mitchellcall LEAVE_SCOPE() before POPEVAL()
2016-02-03 David MitchellPOPBLOCK: don't set newsp and gimme
2016-02-03 David Mitchellmove POPBLOCK after arg stack munging
2016-02-03 David Mitchelladd PUSH/POPBASICBLK macros.
2016-02-03 David Mitchellpp_leavewhen(): skip POPWHEN()
2016-02-03 David Mitchellpp_leavewhen: simply for() handling
2016-02-03 David Mitchellrename S_dopoptogiven() to S_dopoptogivenfor()
2016-02-03 David MitchellMake remaining context types avoid ENTER/LEAVE
2016-02-03 David MitchellConsistently call leave_common() before POPFOO
2016-02-03 David Mitchellpp_given: avoid using savestack for old var
2016-02-03 David Mitchellcontext: move couple of fields into block struct
2016-02-03 David Mitchellpp_enteriter, POPLOOP: simplify some code
2016-02-03 David Mitchellpp_enteriter: don't create new SV for GvSV slot
2016-02-03 David Mitchelladd CXp_FOR_PAD, CXp_FOR_GV flags
2016-02-03 David Mitchellpp_enteriter: tidy itervar-setting code
2016-02-03 David Mitchellfor loops: don't refcount bump orig var
2016-02-03 David MitchellAdd itersave field to LOOP context struct
2016-02-03 David Mitchellpp_return(): reindent following previous commit
2016-02-03 David Mitchellpp_return(): handle dounwind() freeing args
2016-02-03 David Mitchellpp_leaveloop: use SVs_PADTMP|SVs_TEMP
2016-02-03 David MitchellS_leave_common(): simplify SVs_PADTMP handling
2016-02-03 David Mitchellfor my $x (...): $x is always stale
2016-02-03 David Mitchellpp_last: use debugging LEAVE variant
2016-02-03 David Mitchellonly call leave_common in non-void context
next