This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
updating README.macosx to reflect current systems.
[perl5.git] / pp_hot.c
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
2012-12-11 Ruslan Zakirovrefactor aassign
2012-12-11 Ruslan Zakirovary/hash/firsthashelem should be set only once
2012-12-11 Ruslan Zakirovwe need duplicates counter only in list context
2012-12-11 Ruslan Zakirovhash assign in list context should copy key as well
2012-12-11 Ruslan Zakirovfix issues in hash assignment with odd elements
2012-12-11 Ruslan Zakirovwarn on ($s,%h) = (1,{}) as on %h = {}
2012-12-11 Ruslan Zakirovscalar(%h = (1,1,1,1)) should return 4, not 2
2012-12-10 Father ChrysostomosRemove the second param to tryAMAGICunTARGETlist
2012-12-09 Steffen MuellerConvert some SvREFCNT_dec's to SvREFCNT_dec_NN's for...
2012-12-04 David MitchellAdd SS_ADD_* macros and replace most SSPUSH* uses
2012-12-03 Father ChrysostomosMake PL_sawampersand checks conditional on PERL_SAWAMPE...
2012-11-27 Father ChrysostomosAllow COW with magical and blessed scalars (among others)
2012-11-27 Father ChrysostomosNew COW mechanism
2012-11-25 Karl Williamsonpp_hot.c: Comment typo, white-space only
2012-11-25 Matthew Horsfall... RT-23180 - If we skip matching in pp_match for any...
2012-11-21 Daniel Draganrefactor pp_stringify and pp_and
2012-11-20 Father Chrysostomospp_hot.c:padsv: rewrt cmnt for clrty
2012-11-19 Daniel Draganrefactor pp_padsv
2012-11-15 David Mitchellpp_iter: final whitespace/comment tidy up
2012-11-15 David Mitchellpp_iter: refactor CXt_LOOP_LAZYSV branch
2012-11-15 David Mitchellpp_iter: refactor CXt_LOOP_LAZYIV branch
2012-11-15 David Mitchellpp_iter: a bit more refactoring of CXt_LOOP_FOR branch
2012-11-15 David Mitchellpp_iter: factor out some common code in CXt_LOOP_FOR
2012-11-15 David Mitchellpp_iter: move var declarations to narrower scope
2012-11-15 David Mitchellpp_iter: reindent after removing if block
2012-11-15 David Mitchellpp_iter: move RETPUSHYES outside switch
2012-11-15 David Mitchellpp_iter: reindent code after previous change
2012-11-15 David Mitchellpp_iter: replace if/else with switch
2012-11-14 Father ChrysostomosSVf_IsCOW
2012-11-12 Daniel Draganrmv context from Perl_croak_no_modify and Perl_croak_xs...
2012-11-10 David Mitchellpadrange: handle @_ directly
2012-11-10 David Mitchelladd SAVEt_CLEARPADRANGE
2012-11-10 David Mitchelladd padrange op
2012-11-05 Steffen MuellerAdd C define to remove taint support from perl origin/smueller/no_taint3
2012-11-02 Father ChrysostomosFix $byte_overload .= $utf8 regression
2012-10-30 Father ChrysostomosAllow regexp-to-pvlv assignment
2012-10-16 Father Chrysostomos[perl #96230] Stop s/$qr// from reusing last pattern
2012-10-13 Father ChrysostomosAllow COW copies in aassign
2012-10-12 Father Chrysostomos[perl #49190] Don’t prematurely optimise s/foo/bar...
2012-10-12 Father Chrysostomos[perl #49190] Stringify repl repeatedly in s///g
2012-10-12 Father Chrysostomospp_hot.c:pp_subst: add comment
2012-10-12 Father ChrysostomosSimplify the fix for bug #41530
2012-10-08 Ruslan Zakirovno need to get shared hash value here
2012-10-07 Father ChrysostomosFix infinite loop with $tied =~ s/non-utf8/utf8/
2012-09-26 Nicholas ClarkRestore use of PL_stashcache, the stash name lookup...
2012-09-26 Nicholas Clark-Do now also reports updates and use of PL_stashcache.
2012-09-24 Father ChrysostomosA better fix for leaking array assignment
2012-09-23 Father ChrysostomosStop array assignment from leaking on croak
2012-09-23 Father ChrysostomosStop hash assignment from leaking on croak
2012-09-22 Father Chrysostomos[perl #96230] Stop qr// from reusing last pattern
2012-09-20 Father Chrysostomospp_hot.c: Clean up after the prev commit
2012-09-20 Father Chrysostomos[perl #105922] Allow any string before ->meth
2012-09-16 Father Chrysostomos‘Undefined subroutine &foo called’ for lex subs
2012-09-08 David Mitchellm// and s///; don't copy TEMP/AMAGIC strings
2012-09-08 David Mitchelltidy up patten match copying code
2012-09-08 David Mitchellstop $foo =~ /(bar)/g skipping copy
2012-09-08 David MitchellDon't copy all of the match string buffer
2012-08-26 Father Chrysostomospp_hot.c: pp_rv2av: Squash repetitive code
2012-08-26 Father ChrysostomosCroak for \local %{\%foo}
2012-08-26 Father ChrysostomosRestore ‘Can’t localize through ref’ to lv subs
2012-08-26 Father ChrysostomosCorrect typo in flag name
2012-08-26 Father ChrysostomosBanish boolkeys
2012-08-25 Father ChrysostomosOptimise %hash in sub { %hash || ... }
2012-08-21 Father ChrysostomosUse PADLIST in more places
2012-08-18 Karl WilliamsonOmnibus removal of register declarations
2012-07-28 Father ChrysostomosFlatten vstrings modified in place
2012-07-15 Chip SalzenbergMagic flags harmonization.
2012-07-15 Father Chrysostomospp_hot.c: Mention that pp_grepstart calls pp_pushmark
2012-07-14 Father Chrysostomos[perl #113576] Restore err msg for &{+undef}
2012-07-08 Father ChrysostomosCorrect err msg when calling stub w/no autoload fb
2012-06-28 Jesse Luehrspropagate context into overloads [perl #47119]
2012-06-23 Father Chrysostomos[perl #112966] Crash on delete local; other local bugs
2012-06-22 Reini Urbanpp_sassign: explain the mix of left<=>right in the...
2012-06-19 Nicholas ClarkIn pp_iter, handle end of range at IV_MAX without undef...
2012-06-17 Karl Williamsonpp_hot.c: Combine macro calls
2012-06-17 Karl Williamsonpp_hot.c: Add -Dr messages
2012-06-13 David Mitchellpp_match(): clarify intuit parens behaviour
2012-06-13 David Mitchellmake qr/(?{})/ behave with closures
2012-06-07 Father Chrysostomos[perl #109542] Make num ops treat $1 as "$1"
2012-05-30 Father ChrysostomosDelete two instance of SvSCREAM_off
2012-05-30 Father ChrysostomosAway with REXEC_SCREAM!
2012-05-30 Father ChrysostomosRemove most code conditional on SvSCREAM
2012-05-30 Ricardo Signesupdate the editor hints for spaces, not tabs
2012-05-21 Father ChrysostomosDon’t let method-BLOCK read beyond the stack
2012-05-21 Father Chrysostomospp_hot.c:pp_entersub: Rmv comment about setting PL_compcv
2012-03-27 Father Chrysostomos[perl #111656] Make ‘glob failed’ suppressible
2012-02-18 Ævar Arnfjörð Bjar... Remove gete?[ug]id caching
2012-01-16 Nicholas ClarkProvide as much diagnostic information as possible...
2012-01-10 Father Chrysostomos[perl #35865, #43011] FETCH after autovivifying
2012-01-10 Father ChrysostomosBetter fix for perl #107440
next