summaryrefslogtreecommitdiff
path: root/pp_hot.c
Commit message (Expand)AuthorAgeFilesLines
* Remove code that protected pp_qr against REGEXPs going away duringNicholas Clark2008-01-111-9/+0
* Introduce macro PERL_MAX_SUB_DEPTHRafael Garcia-Suarez2008-01-111-1/+1
* Fix leak introduced by change #32873, thanks to NicholasRafael Garcia-Suarez2008-01-091-1/+1
* In PL_regexp_padav, store regexps via real references, rather thanNicholas Clark2008-01-081-1/+10
* Re: [perl #49264] say behaves as just print on tied filehandleMichael G. Schwern2008-01-061-0/+5
* Make REGEXP a type distinct from SV. (Much like AV, CV, GV, HV).Nicholas Clark2008-01-051-1/+1
* Replace all reads of RXf_UTF8 with RX_UTF8().Nicholas Clark2008-01-051-1/+1
* Fix the compile for -DPERL_OLD_COPY_ON_WRITE (apart from the tenaciousNicholas Clark2008-01-051-4/+5
* Add macros mPUSHs() and mXPUSHs() for pushing SVs on the stackMarcus Holland-Moritz2008-01-041-3/+3
* Extend newSVpvn_flags() to also call sv_2mortal() if SVs_TEMP is set inNicholas Clark2008-01-031-2/+2
* Add a new function newSVpvn_flags(), which takes a third parameter ofNicholas Clark2008-01-021-3/+1
* Make struct regexp the body of SVt_REGEXP SVs, REGEXPs become SVs,Nicholas Clark2008-01-021-3/+13
* Wrap all deferences of struct regexp* in macros RX_*() [and forNicholas Clark2008-01-021-72/+72
* Move all code that relies on reading the to-be-thrown-away buffer aheadNicholas Clark2007-12-291-3/+1
* Fix Perl #49190, tests from Abigail, codefix from me.Yves Orton2007-12-291-5/+5
* Wrap all accesses to the members precomp and prelen of struct regexp inNicholas Clark2007-12-281-2/+2
* First class regexps.Nicholas Clark2007-12-281-3/+3
* Regexps are now orange.Nicholas Clark2007-12-271-0/+1
* Take code that occurs in three places to take a scalar and ready it toNicholas Clark2007-12-261-7/+1
* Eliminate SVt_RV, and use SVt_IV to store plain references.Nicholas Clark2007-12-261-3/+3
* Swap SVt_RV and SVt_NV in the SV ordering.Nicholas Clark2007-12-261-1/+1
* PATCH re 32711Robin Barker2007-12-241-1/+2
* Remove warning about casting integer to different sized pointer.Nicholas Clark2007-12-221-1/+1
* Re: overload64.t failuresRick Delaney2007-10-211-2/+3
* Fix overloading for 64-bit ints (revised)Jerry D. Hedden2007-10-191-12/+15
* No need to call strlen() on the result of CopSTASHPV() when unthreaded,Nicholas Clark2007-10-181-2/+12
* Fix bug 45607 - for the corner case *{"BONK"} = \&{"BONK"} the orderNicholas Clark2007-09-221-10/+36
* Silence a load of "value computed is not used" warningsRafael Garcia-Suarez2007-09-211-1/+1
* Re: [perl #44623] Optimized magic_setisa has bugRick Delaney2007-09-101-3/+2
* Re: optimize push @ISA, (was Re: parent.pm at http://corion.net/perl-dev)Brandon Black2007-08-311-8/+3
* Comment typo fixAbigail2007-06-301-1/+1
* Resolve Yves Orton2007-06-231-3/+6
* Remove support for assertions and -ARafael Garcia-Suarez2007-06-051-3/+0
* Re: mro status, etcBrandon Black2007-05-031-0/+9
* Re: mro status, etcBrandon Black2007-04-301-1/+1
* Re: [PATCH] Cleanup of the regexp APIÆvar Arnfjörð Bjarmason2007-04-301-1/+1
* Fix a bug in method caching. Better version (broader) of change #29336.Brandon Black2007-04-261-5/+0
* Remove unnecessarily paranoid protection in pp_definedRafael Garcia-Suarez2007-04-241-3/+4
* Remove the code that handles assignment to state variablesRafael Garcia-Suarez2007-04-241-16/+0
* Re: new C3 MRO patchBrandon Black2007-04-191-2/+3
* Turn op_pmreplroot in struct pmop into a real union.Nicholas Clark2007-04-071-1/+1
* Re: Proposed changes and to regular expression interfaces in coreÆvar Arnfjörð Bjarmason2007-04-061-4/+5
* Re: pmdynflags and thread safetyYves Orton2007-04-041-14/+33
* Fix the error message "Can't call method "DOES" on unblessedRafael Garcia-Suarez2007-03-311-0/+1
* Fix return value of state assignment ($x=state $y=$z).Rafael Garcia-Suarez2007-03-271-7/+10
* In struct regexp replace the two arrays of I32s accessed via startpNicholas Clark2007-03-261-31/+32
* Let %^H be modifiable in eval-strings (bug #41531),Rafael Garcia-Suarez2007-03-191-1/+8
* Need a SPAGAIN here because the stack pointer might haveRafael Garcia-Suarez2007-03-131-0/+1
* A couple of casting nits by JarkkoRafael Garcia-Suarez2007-03-011-1/+1
* Add a new API function newSV_type, to replace the idiom:Nicholas Clark2007-02-181-2/+1