This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [perl #46011] [RESOLVED] overload "0+" doesn't handle integer results
[perl5.git] / op.c
2007-09-21 Rafael Garcia-SuarezSilence a load of "value computed is not used" warnings
2007-09-20 Nicholas ClarkGet mad compiling as C++. (At least for me)
2007-09-12 Nicholas ClarkAdd the missing assignment to op_last that change 31798...
2007-09-09 Dave Mitchellstate variables shouldn't be shared between anon subs
2007-09-08 Nicholas ClarkFor now, forbid all list assignment initialisation...
2007-09-08 Nicholas ClarkMake 'state $$' etc report 'Can't use global $$ in...
2007-09-06 Rafael Garcia-Suarezstate $foo if 0 shouldn't warn. Spotted by Abigail.
2007-09-06 Nicholas ClarkMake state $zok = slosh(); behave as the Perl 6 design...
2007-08-30 Jarkko Hietaniemimisc blead stuff
2007-07-16 Dave Mitchell [perl #43425] local $[: fix scoping during parser...
2007-07-07 Gerard GoossenMAD: disable constant subs when PL_madskills
2007-06-28 Ævar Arnfjörð Bjar... Move the RXf_WHITE logic for split " " into the regex...
2007-06-25 Paul Johnsonremove op_static
2007-06-15 Jarkko Hietaniemimiscellanea
2007-06-05 Rafael Garcia-SuarezRemove support for assertions and -A
2007-05-21 Dave Mitchellmove PL_error_count into the PL_parser struct
2007-05-21 Dave Mitchellmove PL_multi_end into the PL_parser struct
2007-05-12 Gerard GoossenDisable slurping assigned of split when PL_madskills
2007-05-12 Gerard GoossenDisable !a&&b, !b||a optimalization when PL_madskills
2007-05-12 Gerard GoossenDisable operator target setting for 'my' variables...
2007-05-12 Dave Mitchellmove PL_in_my and PL_in_my_stash into the PL_parser...
2007-05-12 Dave Mitchellmove PL_rsfp_filters into the parser struct
2007-05-11 Dave Mitchellmove PL_rsfp into the PL_parser struct
2007-05-05 Dave Mitchellmove PL_lex_state into the PL_parser struct
2007-05-04 Dave Mitchellmove some more variables into the PL_parser struct:
2007-05-04 Dave Mitchellmove PL_expect and PL_copline into the PL_parser structure
2007-04-30 Brandon BlackRe: mro status, etc
2007-04-24 Rafael Garcia-SuarezFix potential precedence problem
2007-04-24 Rafael Garcia-SuarezFix a bug in dor assignment (@x //= 1 was triggering an
2007-04-24 Rafael Garcia-SuarezRemove the code that handles assignment to state variables
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-21 Nicholas ClarkSeveral members of struct yy_parser can go on a diet...
2007-04-21 Nicholas ClarkWhere possible, use SvIV instead of SvIVX, SvNV instead...
2007-04-19 Brandon BlackRe: new C3 MRO patch
2007-04-12 Nicholas ClarkFix two errors in the OP debugging code. Now all test...
2007-04-10 Nicholas ClarkS_forget_pmop() only needs a flags argument for the...
2007-04-10 Nicholas ClarkIf PL_curpm is pointing to an op that is getting freed...
2007-04-07 Nicholas ClarkUnder PERL_DEBUG_READONLY_OPS don't panic if you can...
2007-04-07 Nicholas ClarkTurn op_pmreplroot in struct pmop into a real union.
2007-04-07 Nicholas ClarkRemove a now un-needed goto from Perl_peep().
2007-04-07 Nicholas ClarkRejig Perl_peep() to assume that ops are optimised...
2007-04-07 Nicholas ClarkRe-ordering OP_STUB in the switch statement in Perl_pee...
2007-04-06 Nicholas ClarkMerge op_pmreplstart and op_pmstash/op_pmstashpv into...
2007-04-06 Nicholas Clarkassert() that OP_QR and OP_MATCH never set op_pmreplsta...
2007-04-06 Nicholas ClarkOnly append ?? match ops to the list used by reset...
2007-04-06 Nicholas ClarkAvoid accessing free()d memory when calling reset in...
2007-04-06 Nicholas ClarkRemove op_pmnext from PMOPs, and instead store the...
2007-04-05 Nicholas ClarkS_op_destroy() was not static. Also tidy all other...
2007-04-04 Nicholas ClarkGet further through the build with read-only optrees...
2007-04-04 Yves OrtonRe: pmdynflags and thread safety
2007-04-03 Gerard GoossenRe: [PATCH] MAD prototype checking
2007-04-02 Nicholas ClarkWe may not even have a list of slabs when Perl_Slab_Fre...
2007-04-02 Nicholas ClarkFor Perl_Slab_Alloc(), eliminate the unused parameter...
2007-04-02 Nicholas ClarkThe op slab allocator can call calloc() instead of...
2007-04-02 Nicholas ClarkAdd a new compile option PERL_DEBUG_READONLY_OPS which...
2007-03-27 Rafael Garcia-SuarezFix return value of state assignment ($x=state $y=$z).
2007-03-24 Rafael Garcia-SuarezMake readline() default to *ARGV.
2007-03-24 Rafael Garcia-SuarezMake readpipe default to $_
2007-03-23 Nicholas ClarkChange 30080 was wrong to swap the BEGIN test to memEQ
2007-03-19 Rafael Garcia-SuarezLet %^H be modifiable in eval-strings (bug #41531),
2007-03-17 Nicholas ClarkThe code in newCONDOP can be made visibly simpler by...
2007-03-16 Nicholas ClarkUnder -Dmad, free the ops representing the dead code...
2007-03-01 Rafael Garcia-SuarezA couple of casting nits by Jarkko
2007-02-18 Nicholas ClarkAdd a new API function newSV_type, to replace the idiom:
2007-02-13 Robin HoustonRe: Segmentation fault at undeclared for loop variable
2007-02-03 Nicholas ClarkPurge all references to 5005 threads variables in the...
2007-02-02 Nicholas ClarkA few more places where we know the length for sv_setpv...
2007-01-31 Nicholas ClarkYou can't have special blocks if the subroutine has...
2007-01-31 Yves OrtonImprove regex stringification code
2007-01-30 Nicholas ClarkRefactor the code used to check/execute BEGIN/UNITCHECK...
2007-01-29 Nicholas ClarkUNITCHECK for XS code. Turned out to be harder that...
2007-01-29 Nicholas ClarkBEGIN blocks in XS should work. (Given that CHECK,...
2007-01-29 Nicholas ClarkAdd av_create_and_push() and av_create_and_unshift_one...
2007-01-27 Nicholas ClarkChange 30034 wasn't enough to silence the warnings...
2007-01-27 Nicholas ClarknewPADOP()'s sv parameter is never NULL, so mark it...
2007-01-27 Nicholas ClarknewPADOP is only used under ithreads, so don't waste...
2007-01-27 Nicholas ClarkUsing gv_stashsv() and sv_setsv() in Perl_package reduc...
2007-01-25 Nicholas ClarkThe last parameter to gv_stashpv/gv_stashpvn/gv_stashsv...
2007-01-25 SADAHIRO Tomoyukisplit by " \0" (const string staring with a SPACE follo...
2007-01-15 Nicholas ClarkAdd get_cvn_flags(), which is like get_cv() but takes...
2007-01-15 Jarkko Hietaniemig++ fixes
2007-01-12 Dave Mitchellmake tr/// threadsafe by moving swash into pad
2007-01-09 Yves OrtonChange #29711 broke tr//c on Win32.
2007-01-09 Yves OrtonLet the regex parser decide if we have a special patter...
2007-01-08 Nicholas ClarkEliminate pp_threadsv, as it was only ever used by...
2007-01-08 Dave Mitchellallocate op_pv strings from shared mem pool
2007-01-04 Marcus Holland-Moritz4th patch from:
2007-01-02 Nicholas ClarkUpdate copyright years to include 2007. (Plus a couple...
2006-12-29 Dave Mitchellfurther fix for #29543: fix parser leaks caused by...
2006-12-28 Nicholas ClarkWith PAD_COMPNAME_GEN in SvUVX, SvCUR is trustworthy...
2006-12-28 Nicholas ClarkMove PAD_COMPNAME_GEN from SvCUR to SvUVX.
2006-12-23 Rafael Garcia-SuarezFix #6006 for taint mode too.
2006-12-23 Rafael Garcia-SuarezA better fix for RT #6006: revert change 29616, which...
2006-12-23 Rafael Garcia-SuarezFix RT #6006: Regexp replaces using large replacement...
2006-12-18 Jarkko HietaniemiRe: [PATCH] do not meddle in the affairs of PERL_TRACK_...
2006-12-16 Dave Mitchelldon't include MAD code when its not needed
2006-12-14 Steve HaySilence a VC compiler warning
2006-12-13 Dave Mitchellmisc MAD coredump fixes and parser leak fixes
2006-12-13 Dave Mitchellfix double free introduced by #29543 (spotted by Nicholas)
2006-12-13 Dave Mitchellfix parser leaks caused by croaking while shifting...
next