summaryrefslogtreecommitdiff
path: root/op.c
Commit message (Expand)AuthorAgeFilesLines
* Silence a load of "value computed is not used" warningsRafael Garcia-Suarez2007-09-211-1/+2
* Get mad compiling as C++. (At least for me)Nicholas Clark2007-09-201-1/+1
* Add the missing assignment to op_last that change 31798 missed out.Nicholas Clark2007-09-121-0/+5
* state variables shouldn't be shared between anon subsDave Mitchell2007-09-091-0/+6
* For now, forbid all list assignment initialisation of state variables,Nicholas Clark2007-09-081-0/+50
* Make 'state $$' etc report 'Can't use global $$ in "state"' (not "my")Nicholas Clark2007-09-081-3/+5
* state $foo if 0 shouldn't warn. Spotted by Abigail.Rafael Garcia-Suarez2007-09-061-0/+1
* Make state $zok = slosh(); behave as the Perl 6 design with an implicitNicholas Clark2007-09-061-0/+24
* misc blead stuffJarkko Hietaniemi2007-08-301-1/+1
* [perl #43425] local $[: fix scoping during parser error handling.Dave Mitchell2007-07-161-0/+6
* MAD: disable constant subs when PL_madskillsGerard Goossen2007-07-071-0/+3
* Move the RXf_WHITE logic for split " " into the regex engineÆvar Arnfjörð Bjarmason2007-06-281-21/+4
* remove op_staticPaul Johnson2007-06-251-1/+1
* miscellaneaJarkko Hietaniemi2007-06-151-2/+2
* Remove support for assertions and -ARafael Garcia-Suarez2007-06-051-20/+0
* move PL_error_count into the PL_parser structDave Mitchell2007-05-211-13/+17
* move PL_multi_end into the PL_parser structDave Mitchell2007-05-211-2/+2
* Disable slurping assigned of split when PL_madskillsGerard Goossen2007-05-121-5/+1
* Disable !a&&b, !b||a optimalization when PL_madskillsGerard Goossen2007-05-121-5/+2
* Disable operator target setting for 'my' variables (OPpTARGET_MY)Gerard Goossen2007-05-121-6/+4
* move PL_in_my and PL_in_my_stash into the PL_parser structDave Mitchell2007-05-121-18/+28
* move PL_rsfp_filters into the parser structDave Mitchell2007-05-121-1/+1
* move PL_rsfp into the PL_parser structDave Mitchell2007-05-111-1/+1
* move PL_lex_state into the PL_parser structDave Mitchell2007-05-051-1/+1
* move some more variables into the PL_parser struct:Dave Mitchell2007-05-041-2/+3
* move PL_expect and PL_copline into the PL_parser structureDave Mitchell2007-05-041-32/+36
* Re: mro status, etcBrandon Black2007-04-301-4/+0
* Fix potential precedence problemRafael Garcia-Suarez2007-04-241-1/+1
* Fix a bug in dor assignment (@x //= 1 was triggering anRafael Garcia-Suarez2007-04-241-0/+1
* Remove the code that handles assignment to state variablesRafael Garcia-Suarez2007-04-241-48/+0
* Re: [PATCH (incomplete)] Make regcomp use SV* sv, instead of char* exp, char*...Ævar Arnfjörð Bjarmason2007-04-231-2/+1
* Several members of struct yy_parser can go on a diet. Some I32s wereNicholas Clark2007-04-211-2/+2
* Where possible, use SvIV instead of SvIVX, SvNV instead of SvNVX,Nicholas Clark2007-04-211-3/+3
* Re: new C3 MRO patchBrandon Black2007-04-191-4/+15
* Fix two errors in the OP debugging code. Now all test errors relateNicholas Clark2007-04-121-2/+3
* S_forget_pmop() only needs a flags argument for the ithreads case,Nicholas Clark2007-04-101-1/+12
* If PL_curpm is pointing to an op that is getting freed, reset it toNicholas Clark2007-04-101-0/+2
* Under PERL_DEBUG_READONLY_OPS don't panic if you can't find the slabNicholas Clark2007-04-071-16/+27
* Turn op_pmreplroot in struct pmop into a real union.Nicholas Clark2007-04-071-17/+30
* Remove a now un-needed goto from Perl_peep().Nicholas Clark2007-04-071-2/+1
* Rejig Perl_peep() to assume that ops are optimised by default. TheNicholas Clark2007-04-071-35/+11
* Re-ordering OP_STUB in the switch statement in Perl_peep saves a goto.Nicholas Clark2007-04-071-7/+6
* Merge op_pmreplstart and op_pmstash/op_pmstashpv into a union inNicholas Clark2007-04-061-6/+11
* assert() that OP_QR and OP_MATCH never set op_pmreplstart, whichNicholas Clark2007-04-061-2/+4
* Only append ?? match ops to the list used by reset. This saves memoryNicholas Clark2007-04-061-14/+0
* Avoid accessing free()d memory when calling reset in one thread, afterNicholas Clark2007-04-061-1/+24
* Remove op_pmnext from PMOPs, and instead store the list for reset asNicholas Clark2007-04-061-26/+39
* S_op_destroy() was not static. Also tidy all other STATIC/staticNicholas Clark2007-04-051-5/+3
* Get further through the build with read-only optrees. Free()ing copsNicholas Clark2007-04-041-1/+5
* Re: pmdynflags and thread safetyYves Orton2007-04-041-12/+9