This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move ExtUtils-Manifest to cpan/
[perl5.git] / pp_hot.c
2014-06-25 Jarkko HietaniemiRemove or downgrade unnecessary dVAR.
2014-06-12 Brian FraserAdding missing SVfARG() invocations
2014-06-02 Jarkko HietaniemiUse PERL_UNUSED_RESULT.
2014-05-30 Jarkko HietaniemiUnify the "fall-through" lint annotation.
2014-05-29 Jarkko HietaniemiInsert asserts to paths suspected by Coverity.
2014-05-13 David Mitchell[perl #121854] use re 'taint' regression
2014-03-22 Craig A. BerryReduce excessive stat calls in glob on VMS.
2014-03-19 Nicholas ClarkChange core uses of Perl_do_openn() to Perl_do_open6...
2014-03-12 David Mitchellsprinkle LIKELY() on pp_hot.c scope.c and some *.h
2014-02-28 David Mitchellmake OP_AELEMFAST work with negative indices
2014-02-27 David Mitchelldon't set SvPADTMP() on PADGV's
2014-02-27 David Mitchellpp_entersub(): simplify XSUB arg cleanup code
2014-02-27 David Mitchellpp_entersub(): tweak some vars
2014-02-27 David Mitchellpp_entersub(): assign CvDEPTH to a local var
2014-02-27 David Mitchellpp_entersub(): re-indent block
2014-02-27 David Mitchelltweak pp_entersub
2014-02-20 Karl WilliamsonChange av_len calls to av_tindex for clarity
2014-02-19 Karl WilliamsonMake taint checking regex compile time instead of runtime
2014-02-10 Steffen Muellerpp_concat: Only call SvPV_force_nolen when needed
2014-01-22 Karl Williamsonpp_hot.c: Rmv unnecessary test
2013-11-24 David Mitchellfix 'ignoring return value' compiler warnings
2013-10-28 Father Chrysostomos[perl #119811] Remove %DB::lsub
2013-10-25 Father Chrysostomospp_hot.c:pp_rv2av: Remove superfluous SPAGAIN
2013-10-25 Father Chrysostomosrv2hv does not use its TARG
2013-09-09 Father ChrysostomosMake &xsub and goto &xsub work with tied @_
2013-09-09 Tony Cook[perl #117265] move the "glob failed" warning to the...
2013-09-07 Father ChrysostomosAllow 64-bit array and stack offsets in entersub &...
2013-09-07 Father ChrysostomosStop &xsub and goto &xsub from crashing on undef *_
2013-09-06 Father ChrysostomosPut AV defelem creation code in one place
2013-09-06 Father ChrysostomosUse defelems for (goto) &xsub calls
2013-09-06 Father Chrysostomospp_hot.c:pp_aelem: Use _NN in one spot
2013-08-29 Father ChrysostomosStop creating defelems for undef in foreach(@_)
2013-08-27 Father Chrysostomos[perl #119311] Keep CvDEPTH and savestack in sync
2013-08-25 Father Chrysostomospp_hot.c: Show lengths in -Dr output for minlen optimis...
2013-08-25 Father Chrysostomos[perl #116907] Allow //g matching past 2**31 threshold
2013-08-25 Father ChrysostomosStop minlen regexp optimisation from rejecting long...
2013-08-25 Father ChrysostomosStop pos() from being confused by changing utf8ness
2013-08-25 Father ChrysostomosUse SSize_t for arrays
2013-08-22 Father Chrysostomos[perl #118747] Allow in-place s///g when !!PL_sawampersand
2013-08-22 Father ChrysostomosRevert "[perl #118747] Allow in-place s///g when !...
2013-08-22 Father Chrysostomospp_hot.c:pp_subst: Move comment
2013-08-22 Father Chrysostomos[perl #118747] Allow in-place s///g when !!PL_sawampersand
2013-08-21 Father Chrysostomos[perl #118691] Allow defelem magic with neg indices
2013-08-21 Father Chrysostomos[perl #7508] Use NULL for nonexistent array elems
2013-08-13 Father ChrysostomosCopy PADTMPS passed to XSUBs
2013-08-11 Father ChrysostomosRead-only COWs should not be exempt from s/// croaking
2013-07-31 David Mitchellpp_match(): remove some superfluous braces
2013-07-31 David Mitchellpp_match(): only look up pos() magic once
2013-07-31 David Mitchellpp_match(): remove redundant condition
2013-07-30 David MitchellRT #118213: handle $r=qr/.../; /$r/p properly
2013-07-28 David Mitchells/.(?=.\G)/X/g: refuse to go backwards
2013-07-28 David Mitchellpp_subst: don't use REXEC_COPY_STR on 2nd match
2013-07-28 David Mitchellpp_subst: combine 3 small elsif blocks into 1
2013-07-28 David Mitchellpp_subst: remove one use of 'm' local var
2013-07-28 David Mitchellpp_subst: reduce scope of 'i' variable
2013-07-28 David Mitchellpp_subst: reduce scope of 'm' var
2013-07-28 David Mitchellpp_subst: set/use s,m vars near where they're used
2013-07-28 David Mitchellpp_subst: reduce scope of 'd' variable
2013-07-28 David Mitchellpp_subst: cosmetic re-arrangement of vars
2013-07-28 David Mitchellpp_match: simplify pos()-getting code
2013-07-28 David Mitchellregexec: handle \G ourself, rather than in callers
2013-07-28 David Mitchellpp_match(): don't set REXEC_IGNOREPOS on 1st iter
2013-07-28 David Mitchellpp_match(): stop setting $-[0] before regexec()
2013-07-28 David Mitchellpp_match: avoid setting $+[0]
2013-07-28 David Mitchellpp_match(): eliminate unused t variable
2013-07-28 David Mitchellpp_match(): skip passing gpos arg to regexec()
2013-07-28 David Mitchelladd intuit-only match to s///
2013-07-28 David Mitchellmove intuit call from pp_match() into regexec()
2013-07-28 David Mitchellmake intuit_start() handle mixed utf8-ness
2013-07-28 David Mitchellpp_match(): fix UTF* match setting
2013-07-28 David Mitchellpp_match(): intuit can handle refs these days
2013-07-28 David Mitchellpp_match(): remove ret_no label
2013-07-28 David Mitchellpp_match(): combine intuit and regexec branches
2013-07-28 David Mitchellpp_match(): refactor intuit-only code
2013-07-28 David Mitchellpp_match(): minor refactor: consolidate RETPUSHYES
2013-07-28 David Mitchellpp_match(): factor out some common code
2013-07-28 David Mitchellre-enable intuit-only matches
2013-07-26 Father Chrysostomos[perl #78194] Make foreach copy pad tmps
2013-07-26 Father Chrysostomos[perl #78194] Make sub calls copy pad tmps
2013-07-26 Father Chrysostomos[perl #78194] Make grep/map copy pad tmps
2013-07-16 Father Chrysostomos[perl #77814] Make defelems propagate pos
2013-07-10 Father ChrysostomosMake method lookup treat *foo as \*foo
2013-06-30 Ruslan Zakirovchange tied_method to use SVs with precomputed hash...
2013-06-18 Lukas Maidon't crash on deep recursion warnings in lexical subs...
2013-06-09 Father Chrysostomospp_hot.c: Correct comment
2013-06-04 Brian FraserStop making assumptions about uids and gids.
2013-06-02 David Mitchellstop callers of rex engine using RX_MATCH_UTF8_set
2013-06-02 David Mitchelladd strbeg argument to Perl_re_intuit_start()
2013-05-28 Father Chrysostomos[perl #117947] Verify lvalueness of XSUBs at run time
2013-05-09 David Mitchellsilence warnings under NO_TAINT_SUPPORT
2013-04-04 Jan DuboisS_* functions should be STATIC
2013-03-27 Yves Ortonrework split() special case interaction with regex...
2013-03-12 Salvador Fandinopp_entersub optimization
2012-12-27 Karl WilliamsonFix comment references to removed rexex ops
2012-12-25 David MitchellEliminate RF_tainted flag from PL_reg_flags
2012-12-22 Karl Williamsonhandy.h: Create isALPHANUMERIC() and kin
2012-12-11 Hugo van der Sandenpp_hot.c: Comments to clarify pp_aassign
2012-12-11 Ruslan Zakirovhash argument is not used anymore in do_oddball
2012-12-11 Father Chrysostomospp_hot.c:pp_aassign: mortalise variable only if we...
2012-12-11 Ruslan Zakirovdon't create a copy of keys if it's not LVALUE context
next