summaryrefslogtreecommitdiff
path: root/op.c
Commit message (Expand)AuthorAgeFilesLines
* REGEXPs are now stored directly in PL_regex_padav, rather thanNicholas Clark2008-01-111-8/+5
* Real regexps are stored via RVs, IVs can only mean spare slots. HenceNicholas Clark2008-01-101-1/+1
* Change 32899 missed undoing the reference count increase when the SVNicholas Clark2008-01-101-1/+5
* With regexps stored as real RVs, we can eliminate SvREPADTMP().Nicholas Clark2008-01-081-2/+0
* Correct a long-standing ithreads reference counting anonamly - theNicholas Clark2008-01-081-2/+3
* Big slowdown in 5.10 @_ parameter passingRick Delaney2008-01-071-49/+61
* Let's remove the grep in void context warning.Rafael Garcia-Suarez2008-01-071-3/+1
* Re: grep and smart match should warn in void contextMichael G. Schwern2008-01-061-1/+5
* Enforce some type safety in PM_SETRE by adding PM_SETRE_OFFSET.Nicholas Clark2008-01-061-1/+1
* Clarify the intent of the code in Perl_op_clear. Under ithreads, avoidNicholas Clark2008-01-061-4/+6
* Fix compilation issues and warnings with exotic configuration.Marcus Holland-Moritz2008-01-061-2/+4
* Abolish RXf_UTF8. Store the UTF-8-ness of the pattern with SvUTF8().Nicholas Clark2008-01-051-1/+0
* Make Perl_pregcomp() use SvUTF8() of the pattern, rather than the flagNicholas Clark2008-01-051-3/+13
* Follow up on change #32680. This fixes compilationMarcus Holland-Moritz2008-01-041-1/+1
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-1/+1
* Typo in op.cVincent Pit2007-12-291-1/+1
* Wrap all accesses to the members precomp and prelen of struct regexp inNicholas Clark2007-12-281-2/+2
* Implement each @array.Nicholas Clark2007-12-201-0/+21
* Fix an off by one error, found by valgrindRafael Garcia-Suarez2007-10-241-1/+1
* Fix a few segfaults and a when() bugjosh2007-10-171-0/+5
* Perl_ck_smartmatch needs a dVAR too.Nicholas Clark2007-10-161-0/+1
* Remove some strlen()s and replace one strlcpy() with memcpy() becauseNicholas Clark2007-10-121-4/+9
* newCONTSUB() wasn't thread-safe ([perl #45053])Dave Mitchell2007-10-101-0/+7
* 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