summaryrefslogtreecommitdiff
path: root/pp_hot.c
Commit message (Expand)AuthorAgeFilesLines
* pp_subst(): rename local varDavid Mitchell2016-03-021-3/+5
* pp_subst: fix typoDavid Mitchell2016-03-021-1/+1
* use cBOOL() in pp_subst()David Mitchell2016-03-021-3/+1
* [perl #127635] s///r with -DPERL_NO_COW attempts to modify source SVTony Cook2016-03-011-9/+11
* assert(cv) before doing CvROOT(cv)Jarkko Hietaniemi2016-02-071-0/+1
* Whitespace only: zap empty lines.Jarkko Hietaniemi2016-02-071-2/+0
* Lexical scoping in case statement is tricky.Jarkko Hietaniemi2016-02-071-7/+5
* assert() that itersvp is non-NULL.Jarkko Hietaniemi2016-02-071-0/+1
* pp_enter: calculate gimme earlier in XS branchDavid Mitchell2016-02-061-1/+6
* leave_adjust_stacks() fix some code commentsDavid Mitchell2016-02-031-3/+1
* leave_adjust_stacks(): avoid accessing random tmpsDavid Mitchell2016-02-031-7/+19
* make gimme consistently U8David Mitchell2016-02-031-8/+8
* fix -DPERL_GLOBAL_STRUCT_PRIVATEDavid Mitchell2016-02-031-0/+1
* convert CX_PUSHSUB/POPSUB to inline fnsDavid Mitchell2016-02-031-5/+5
* convert CX_PUSH/POP/TOPBLOCK to inline fnsDavid Mitchell2016-02-031-2/+2
* rename PUSHBLOCK,PUSHSUB etc to CX_PUSHBLOCK etcDavid Mitchell2016-02-031-6/+6
* PUSHSUB: make retop a parameterDavid Mitchell2016-02-031-2/+1
* PUSHSUB: don't use implicit argsDavid Mitchell2016-02-031-1/+1
* PUSHBLOCK: don't use implicit argsDavid Mitchell2016-02-031-1/+1
* move PL_savestack_ix saving into PUSHBLOCKDavid Mitchell2016-02-031-2/+1
* eliminate PERL_STACK_OVERFLOW_CHECKDavid Mitchell2016-02-031-3/+1
* rename POPFOO() to CX_POPFOO()David Mitchell2016-02-031-3/+3
* pp_iter: optimise integer setting in for (1..10) {}David Mitchell2016-02-031-1/+16
* fix *_ = "" for 0 .. 1;David Mitchell2016-02-031-5/+9
* replace leave_common() with leave_adjust_stacks()David Mitchell2016-02-031-2/+3
* make pp_return() use leave_adjust_stacks()David Mitchell2016-02-031-13/+14
* make pp_leavesublv use S_leavesub_adjust_stacks()David Mitchell2016-02-031-47/+84
* pp_leavesublv(): croak on *all* PADTMPsDavid Mitchell2016-02-031-0/+29
* pp_leavesub(): call FREETMPS and optimiseDavid Mitchell2016-02-031-57/+250
* pp_leavesub: reset SP in void contextDavid Mitchell2016-02-031-0/+5
* add CX_CUR() macroDavid Mitchell2016-02-031-4/+4
* make POPSUB and POPFORMAT re-entrant safeDavid Mitchell2016-02-031-5/+7
* move and rename cx_old_savestack_ixDavid Mitchell2016-02-031-1/+1
* simplify two conditions in pp_iter:David Mitchell2016-02-031-1/+1
* pp_iter(): optimise stack handlingDavid Mitchell2016-02-031-7/+18
* split CXt_LOOP_FOR into CXt_LOOP_LIST,CXt_LOOP_ARYDavid Mitchell2016-02-031-26/+31
* add CX_POP(cx) macro: glorified cxstack_ix--David Mitchell2016-02-031-2/+4
* move blku_old_savestack_ix to base of cxt structDavid Mitchell2016-02-031-1/+1
* move CX_LEAVE_SCOPE outside the POPFOO'sDavid Mitchell2016-02-031-0/+1
* remove newpm param from POPBLOCK() macro.David Mitchell2016-02-031-3/+1
* reverse the order of POPBLOCK; POPFOODavid Mitchell2016-02-031-3/+2
* eliminate LEAVESUB() macroDavid Mitchell2016-02-031-4/+2
* make LEAVESUB() always immediately follow POPSUB()David Mitchell2016-02-031-1/+1
* add CX_LEAVE_SCOPE(cx) macroDavid Mitchell2016-02-031-1/+1
* move POPBLOCK after arg stack mungingDavid Mitchell2016-02-031-3/+8
* Make remaining context types avoid ENTER/LEAVEDavid Mitchell2016-02-031-3/+11
* context: move couple of fields into block structDavid Mitchell2016-02-031-1/+1
* pp_entersub(): reduce life of padlist varDavid Mitchell2016-02-031-1/+2
* pp_entersub: unroll some CvFLAGS(cv) testsDavid Mitchell2016-02-031-1/+2
* pp_entersub(): reduce scope of gimmeDavid Mitchell2016-02-031-4/+3