summaryrefslogtreecommitdiff
path: root/regexec.c
Commit message (Expand)AuthorAgeFilesLines
* Add Dave's explainations of why certain pointers are always non-NULL,Nicholas Clark2006-04-171-0/+22
* generalize the 'continue on success' mechanism of deferred REsDave Mitchell2006-04-161-51/+56
* abstract regmatch slab access with SLAB_FIRST and SLAB_LAST macrosDave Mitchell2006-04-161-7/+10
* Reverting change #27791 which may cause corruption addition corruptionSteve Peters2006-04-141-1/+1
* eliminate PL_regbol PL_regtill PL_regnarrate PL_reg_ganch PL_reg_svDave Mitchell2006-04-131-79/+83
* Add another NULL check thanks to Coverity.Steve Peters2006-04-131-1/+1
* regexec.c: (Coverity) add NULL checkJarkko Hietaniemi2006-04-131-1/+1
* regexec.c: (Coverity) move NULL check even earlierJarkko Hietaniemi2006-04-131-3/+10
* eliminate PL_reg_reDave Mitchell2006-04-131-32/+24
* [perl #38906] Regex engine does not release MINMODAnimator2006-04-121-0/+3
* Remove the final recursion path from S_regmatch: (??{...})Dave Mitchell2006-04-121-105/+170
* regexec.c: move NULL check earlier to make Coverity happierJarkko Hietaniemi2006-04-111-6/+7
* True consting goodness in regexesAndy Lester2006-04-101-19/+18
* fix potential null deref introduced by change #27716Dave Mitchell2006-04-081-1/+1
* (??{...}) didn't always restore PL_reg_re.Dave Mitchell2006-04-051-1/+3
* eliminate PL_regprecomp, PL_regprogram, PL_regnpar and PL_regdataDave Mitchell2006-04-051-52/+38
* restructure the EVAL branch of regmatch() to minimise local var scopeDave Mitchell2006-04-051-81/+86
* undo #27700 and add a missing Safefree()Dave Mitchell2006-04-031-1/+3
* Removed unused code in regexec.cAndy Lester2006-04-031-3/+2
* anonymous unions aren't legal ANSI cDave Mitchell2006-04-031-247/+247
* whoops, change 27691 blew away the regexec.c changes from 27688Dave Mitchell2006-04-021-8/+8
* subsume CURCUR (current curly) struct within the main regmatch_stateDave Mitchell2006-04-021-69/+68
* Re: [perl #38293] chr(65535) should be allowed in regexesSADAHIRO Tomoyuki2006-04-021-8/+8
* make parts of struct regmatch_state unionsDave Mitchell2006-04-021-213/+215
* use slabs to allocate save state space in regmatch()Dave Mitchell2006-04-021-548/+468
* Clean up regexec.c, and remove two functionsAndy Lester2006-03-301-33/+11
* Silence 3 (spurious) gcc warnings about "maybe used uninitialized".Nicholas Clark2006-03-251-3/+3
* Free the regexp state when exiting "recursion".Nicholas Clark2006-03-251-0/+1
* make S_regmatch() iterative rather than recursive.Dave Mitchell2006-03-241-152/+502
* remove idential code branch from regmatch()Dave Mitchell2006-03-221-23/+1
* merge the TRIEF/TRIEFL and TRIE branches in regmatch(),Dave Mitchell2006-03-201-128/+80
* Restore a bit of change 27533 that change 27534 inadvertently unwound.Nicholas Clark2006-03-171-3/+6
* inline, then delete, S_regrepeat_hard()Dave Mitchell2006-03-171-74/+43
* sv_find() returning false, followed by sv_magic() to add the magic,Nicholas Clark2006-03-171-3/+6
* reduce S_regrepeat_hard() callers from 3 to 1Dave Mitchell2006-03-171-3/+7
* The Coverity audit is upset that the scream_olds variable is notSteve Peters2006-03-091-1/+1
* Trying my "remove the pTHXes" patch againAndy Lester2006-02-091-8/+9
* Re: [PATCH] s/Null(gv|hv|sv)/NULL/gSteven Schubiger2006-02-031-8/+8
* Re: [PATCH] s/Null(av|ch)/NULL/gSteven Schubiger2006-02-021-8/+8
* Change all NEWSV() to newSV() in the core and non-dual-lived modules.Steve Hay2006-01-181-2/+1
* It's the Barbie bus patchAndy Lester2006-01-101-45/+37
* sprinkle dVARJarkko Hietaniemi2006-01-061-0/+15
* Update copyrights for files modified in 2006Rafael Garcia-Suarez2006-01-021-1/+1
* Making 0 pointers to NULLsAndy Lester2006-01-011-3/+3
* Re: [perl #37836] Simple Regex causes SEGV when run on specific dataSADAHIRO Tomoyuki2005-12-051-3/+7
* Clarification and cleanup of the XS SWASHGET codeSADAHIRO Tomoyuki2005-12-051-1/+1
* The regexp engine should check SV flags rather than SV type forNicholas Clark2005-11-301-1/+1
* Re: [perl #37688] Unexpected regex failure. Hugo van der Sanden2005-11-161-0/+1
* Revert patch #25993.Rafael Garcia-Suarez2005-11-041-2/+1
* [perl #19049] Incorrect $` after replacementAndreas König2005-11-041-1/+2