Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char* xend
[p5sagit/p5-mst-13.2.git] / op.c
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-21 Nicholas Clark Several members of struct yy_parser can go on a diet...
2007-04-21 Nicholas Clark Where possible, use SvIV instead of SvIVX, SvNV instead...
2007-04-19 Brandon Black Re: new C3 MRO patch
2007-04-12 Nicholas Clark Fix two errors in the OP debugging code. Now all test...
2007-04-10 Nicholas Clark S_forget_pmop() only needs a flags argument for the...
2007-04-10 Nicholas Clark If PL_curpm is pointing to an op that is getting freed...
2007-04-07 Nicholas Clark Under PERL_DEBUG_READONLY_OPS don't panic if you can...
2007-04-07 Nicholas Clark Turn op_pmreplroot in struct pmop into a real union.
2007-04-07 Nicholas Clark Remove a now un-needed goto from Perl_peep().
2007-04-07 Nicholas Clark Rejig Perl_peep() to assume that ops are optimised...
2007-04-07 Nicholas Clark Re-ordering OP_STUB in the switch statement in Perl_pee...
2007-04-06 Nicholas Clark Merge op_pmreplstart and op_pmstash/op_pmstashpv into...
2007-04-06 Nicholas Clark assert() that OP_QR and OP_MATCH never set op_pmreplsta...
2007-04-06 Nicholas Clark Only append ?? match ops to the list used by reset...
2007-04-06 Nicholas Clark Avoid accessing free()d memory when calling reset in...
2007-04-06 Nicholas Clark Remove op_pmnext from PMOPs, and instead store the...
2007-04-05 Nicholas Clark S_op_destroy() was not static. Also tidy all other...
2007-04-04 Nicholas Clark Get further through the build with read-only optrees...
2007-04-04 Yves Orton Re: pmdynflags and thread safety
2007-04-03 Gerard Goossen Re: [PATCH] MAD prototype checking
2007-04-02 Nicholas Clark We may not even have a list of slabs when Perl_Slab_Fre...
2007-04-02 Nicholas Clark For Perl_Slab_Alloc(), eliminate the unused parameter...
2007-04-02 Nicholas Clark The op slab allocator can call calloc() instead of...
2007-04-02 Nicholas Clark Add a new compile option PERL_DEBUG_READONLY_OPS which...
2007-03-27 Rafael Garcia-Suarez Fix return value of state assignment ($x=state $y=$z).
2007-03-24 Rafael Garcia-Suarez Make readline() default to *ARGV.
2007-03-24 Rafael Garcia-Suarez Make readpipe default to $_
2007-03-23 Nicholas Clark Change 30080 was wrong to swap the BEGIN test to memEQ
2007-03-19 Rafael Garcia-Suarez Let %^H be modifiable in eval-strings (bug #41531),
2007-03-17 Nicholas Clark The code in newCONDOP can be made visibly simpler by...
2007-03-16 Nicholas Clark Under -Dmad, free the ops representing the dead code...
2007-03-01 Rafael Garcia-Suarez A couple of casting nits by Jarkko
2007-02-18 Nicholas Clark Add a new API function newSV_type, to replace the idiom:
2007-02-13 Robin Houston Re: Segmentation fault at undeclared for loop variable
2007-02-03 Nicholas Clark Purge all references to 5005 threads variables in the...
2007-02-02 Nicholas Clark A few more places where we know the length for sv_setpv...
2007-01-31 Nicholas Clark You can't have special blocks if the subroutine has...
2007-01-31 Yves Orton Improve regex stringification code
2007-01-30 Nicholas Clark Refactor the code used to check/execute BEGIN/UNITCHECK...
2007-01-29 Nicholas Clark UNITCHECK for XS code. Turned out to be harder that...
2007-01-29 Nicholas Clark BEGIN blocks in XS should work. (Given that CHECK,...
2007-01-29 Nicholas Clark Add av_create_and_push() and av_create_and_unshift_one...
2007-01-27 Nicholas Clark Change 30034 wasn't enough to silence the warnings...
2007-01-27 Nicholas Clark newPADOP()'s sv parameter is never NULL, so mark it...
2007-01-27 Nicholas Clark newPADOP is only used under ithreads, so don't waste...
2007-01-27 Nicholas Clark Using gv_stashsv() and sv_setsv() in Perl_package reduc...
2007-01-25 Nicholas Clark The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv...
2007-01-25 SADAHIRO Tomoyuki split by " \0" (const string staring with a SPACE follo...
2007-01-15 Nicholas Clark Add get_cvn_flags(), which is like get_cv() but takes...
2007-01-15 Jarkko Hietaniemi g++ fixes
2007-01-12 Dave Mitchell make tr/// threadsafe by moving swash into pad
2007-01-09 Yves Orton Change #29711 broke tr//c on Win32.
2007-01-09 Yves Orton Let the regex parser decide if we have a special patter...
2007-01-08 Nicholas Clark Eliminate pp_threadsv, as it was only ever used by...
2007-01-08 Dave Mitchell allocate op_pv strings from shared mem pool
2007-01-04 Marcus Holland-Moritz 4th patch from:
2007-01-02 Nicholas Clark Update copyright years to include 2007. (Plus a couple...
2006-12-29 Dave Mitchell further fix for #29543: fix parser leaks caused by...
2006-12-28 Nicholas Clark With PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy...
2006-12-28 Nicholas Clark Move PAD_COMPNAME_GEN from SvCUR to SvUVX.
2006-12-23 Rafael Garcia-Suarez Fix #6006 for taint mode too.
2006-12-23 Rafael Garcia-Suarez A better fix for RT #6006: revert change 29616, which...
2006-12-23 Rafael Garcia-Suarez Fix RT #6006: Regexp replaces using large replacement...
2006-12-18 Jarkko Hietaniemi Re: [PATCH] do not meddle in the affairs of PERL_TRACK_...
2006-12-16 Dave Mitchell don't include MAD code when its not needed
2006-12-14 Steve Hay Silence a VC compiler warning
2006-12-13 Dave Mitchell misc MAD coredump fixes and parser leak fixes
2006-12-13 Dave Mitchell fix double free introduced by #29543 (spotted by Nicholas)
2006-12-13 Dave Mitchell fix parser leaks caused by croaking while shifting...
2006-12-01 Rafael Garcia-Suarez Verify that the debugger has an array where to store...
2006-11-23 Yves Orton Cleanup regexp flags and structure
2006-11-23 Rafael Garcia-Suarez More safety in free()s
2006-11-20 Rafael Garcia-Suarez Unify the two warnings "Can't declare %s in %s", in...
2006-11-20 Jerry D. Hedden Re: thread free problem
2006-11-02 Rafael Garcia-Suarez This volatile modifier is not on the referent, but...
2006-11-02 Gisle Aas Re: $, and say
2006-10-30 Steve Peters VOL should be used instead of volatile in the core.
2006-10-25 Rafael Garcia-Suarez Plug a memory leak in newCONSTSUB
2006-10-19 Alexander Gough stab at UNITCHECK blocks
2006-10-19 Rafael Garcia-Suarez Allow the _ prototype character to be followed by optio...
2006-10-18 Rafael Garcia-Suarez The _ character is only allowed to be at the end of...
2006-10-18 Rafael Garcia-Suarez Improvements and fixes to the _ prototype
2006-10-17 Rafael Garcia-Suarez First attempt at implementing the _ prototype
2006-09-29 Yves Orton Re: [PATCH] Add hook for re_dup() into regex engine...
2006-09-08 Rafael Garcia-Suarez Use %^H instead of $^H for the assertions pragma
2006-08-31 Nicholas Clark Change the generation of {} and [] from 3 ops to 1...
2006-08-09 Steve Peters A couple const's and a cast to get Sun CC to compile...
2006-08-08 Jarkko Hietaniemi g++ stage 1 reached
2006-08-07 Jarkko Hietaniemi g++ large patch
2006-07-27 Steve Hay Clear up most of the VC6 compiler warnings in the follo...
2006-07-23 Rafael Garcia-Suarez Add another volatile modifier to protect against longjm...
2006-07-13 Steve Peters Clear up a few more warnings from blead.
2006-07-07 Rafael Garcia-Suarez Fix the implementation of list assignment to state().
2006-07-06 Rafael Garcia-Suarez Add a new warning, "State variable %s will be reinitial...
2006-07-05 Rafael Garcia-Suarez Implement handling of state variables in list assignment
2006-07-05 Rafael Garcia-Suarez Fix a bug on setting OPpASSIGN_COMMON on a AASSIGN...
2006-07-02 Dave Mitchell remove some unnecessary uses of WITH_THR
2006-06-12 Andy Lester Proper use of enums
2006-05-20 Nicholas Clark Abolish cop_io (the simple way) by storing the value...
next