| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | add S_padhv_rv2hv_common() function | David Mitchell | 2017-07-27 | 1 | -76/+64 |
* | move pp_padav(), pp_padhv() from pp.c to pp_hot.c | David Mitchell | 2017-07-27 | 1 | -0/+124 |
* | pp_grepwhile: no need to extend the stack | David Mitchell | 2017-07-27 | 1 | -2/+2 |
* | change sv_setsv(sv,NULL) to sv_set_undef(sv) | David Mitchell | 2017-07-27 | 1 | -1/+1 |
* | pp_iter(): jump directly to op after OP_AND | David Mitchell | 2017-07-27 | 1 | -9/+18 |
* | pp_readline,close,getc: explain NULL stack arg | David Mitchell | 2017-07-27 | 1 | -0/+2 |
* | add boolean context support to several ops | David Mitchell | 2017-07-27 | 1 | -3/+14 |
* | optimise @array in boolean context | David Mitchell | 2017-07-27 | 1 | -3/+8 |
* | optimise away OP_KEYS op in scalar/void context | David Mitchell | 2017-07-27 | 1 | -5/+28 |
* | make callers of SvTRUE() more efficient | David Mitchell | 2017-07-27 | 1 | -6/+9 |
* | add, and use, some RXp_FOO() variants of RX_FOO() | David Mitchell | 2017-07-27 | 1 | -48/+57 |
* | S_check_for_bool_cxt(): special-case OP_AND | David Mitchell | 2017-07-27 | 1 | -1/+1 |
* | (perl #131570) don't skip the temps stack entry we just allocated | Tony Cook | 2017-07-10 | 1 | -1/+1 |
* | add PL_curstackinfo->si_stack_hwm | David Mitchell | 2017-06-24 | 1 | -1/+1 |
* | pp_match/subst: extend stack | David Mitchell | 2017-06-22 | 1 | -6/+10 |
* | PERL_GLOBAL_STRUCT_PRIVATE: fix PL_isa_DOES | David Mitchell | 2017-03-17 | 1 | -2/+0 |
* | update size after Renew | Hugo van der Sanden | 2017-03-15 | 1 | -1/+1 |
* | Moving variables to their innermost scope. | Andy Lester | 2017-02-18 | 1 | -1/+4 |
* | avoid a leak in list assign from/to magic values | David Mitchell | 2017-02-15 | 1 | -1/+2 |
* | HvTOTALKEYS() takes a HV* as argument | Steffen Mueller | 2017-02-03 | 1 | -1/+1 |
* | In A && B, stop special-casing boolean-ness of A | David Mitchell | 2017-01-06 | 1 | -3/+1 |
* | re-implement boolean context detection | David Mitchell | 2017-01-06 | 1 | -0/+2 |
* | Fix the Unicode Bug in the range operator | Aaron Crane | 2017-01-05 | 1 | -0/+2 |
* | RT#130496: assertion failure for '{}->$x' on undefined $x | Aaron Crane | 2017-01-04 | 1 | -1/+1 |
* | add sv_set_undef() API function | David Mitchell | 2016-11-24 | 1 | -1/+1 |
* | avoid premature free of referent in list assign | David Mitchell | 2016-11-24 | 1 | -0/+20 |
* | Change white space to avoid C++ deprecation warning | Karl Williamson | 2016-11-18 | 1 | -14/+14 |
* | remove DOES's usage of SvSCREAM | David Mitchell | 2016-11-12 | 1 | -1/+3 |
* | handle SvIMMORTALs in LHS of list assign | David Mitchell | 2016-11-09 | 1 | -2/+1 |
* | call AV set magic in list assign | David Mitchell | 2016-11-04 | 1 | -1/+1 |
* | fix taint handling in list assignment | David Mitchell | 2016-11-02 | 1 | -0/+7 |
* | rework perl #129903 - inf recursion from use of empty pattern in regex codeblock | Yves Orton | 2016-11-01 | 1 | -13/+26 |
* | Handle list assignment in list context better | David Mitchell | 2016-10-26 | 1 | -29/+11 |
* | Better optimise array and hash assignment | David Mitchell | 2016-10-26 | 1 | -193/+409 |
* | pp_(hot|ctl).c: switch croak() to Perl_croak() for win32 | Yves Orton | 2016-10-19 | 1 | -2/+2 |
* | regexec.c: fix #129903: forbid empty pattern in regex code block | Yves Orton | 2016-10-19 | 1 | -4/+9 |
* | pp_hot.c: use new SvPVCLEAR and constant string friendly macros | Yves Orton | 2016-10-19 | 1 | -1/+1 |
* | make OP_SPLIT a PMOP, and eliminate OP_PUSHRE | David Mitchell | 2016-10-04 | 1 | -19/+0 |
* | sassign was used as UNOP, optimize {or,and,dor}assign | Reini Urban | 2016-09-29 | 1 | -1/+1 |
* | make PADOFFSET be SSizet_t | David Mitchell | 2016-09-26 | 1 | -1/+2 |
* | [perl #47047] Fix erroneous AUTOLOAD warning | Father Chrysostomos | 2016-09-05 | 1 | -1/+4 |
* | av_fetch(): remove check for freed SV | David Mitchell | 2016-08-19 | 1 | -1/+1 |
* | add OP_ARGELEM, OP_ARGDEFELEM, OP_ARGCHECK ops | David Mitchell | 2016-08-03 | 1 | -0/+22 |
* | Remove IN_ENCODING macro, and all code dependent on it | Father Chrysostomos | 2016-07-13 | 1 | -11/+2 |
* | pp_aelemfast: always extend stack | David Mitchell | 2016-06-27 | 1 | -1/+2 |
* | pp_aelemfast: skip av_fetch() for simple cases | David Mitchell | 2016-06-26 | 1 | -3/+19 |
* | [perl #127877] Emit undef warning on sassign+concat | Aaron Crane | 2016-05-09 | 1 | -2/+5 |
* | Improve code comments for some ctx stuff | David Mitchell | 2016-03-30 | 1 | -0/+2 |
* | pp_subst(): rename local var | David Mitchell | 2016-03-02 | 1 | -3/+5 |
* | pp_subst: fix typo | David Mitchell | 2016-03-02 | 1 | -1/+1 |