| Commit message (Expand) | Author | Age | Files | Lines |
* | Add more backtracking control verbs to regex engine (?CUT), (?ERROR) | Yves Orton | 2006-11-02 | 1 | -0/+1 |
* | Fix a problem with jump-tries, add (?FAIL) pattern. | Yves Orton | 2006-10-26 | 1 | -2/+2 |
* | Re: [PATCH] Initial attempt at named captures for perls regexp engine | Yves Orton | 2006-10-07 | 1 | -1/+2 |
* | remove REGMATCH detritus and shrink the size of the backtrack structure | Dave Mitchell | 2006-10-05 | 1 | -16/+2 |
* | migrate CURLYX/WHILEM branch in regmatch() to new FSM-esque paradigm | Dave Mitchell | 2006-10-05 | 1 | -16/+18 |
* | Re: [PATCH] Add recursive regexes similar to PCRE | Yves Orton | 2006-10-05 | 1 | -0/+4 |
* | rationalise sayYES and sayNO code in regmatch() | Dave Mitchell | 2006-09-30 | 1 | -0/+2 |
* | Re: [PATCH] Add hook for re_dup() into regex engine as reg_dupe (make re plug... | Yves Orton | 2006-09-29 | 1 | -9/+9 |
* | Re: [PATCH] Add hook for re_dup() into regex engine as reg_dupe (make re plug... | Yves Orton | 2006-09-29 | 1 | -1/+28 |
* | eliminate PL_regindent and improve -Mre=Debug,STATE output | Dave Mitchell | 2006-09-25 | 1 | -2/+0 |
* | fix regression introduced in #27778: must backtrack into inner regex | Dave Mitchell | 2006-09-24 | 1 | -1/+5 |
* | in S_regmatch(), convert state var st->cc into local var cur_curlyx | Dave Mitchell | 2006-09-24 | 1 | -1/+0 |
* | Re: [PATCH] Trie jumping | Yves Orton | 2006-09-05 | 1 | -0/+1 |
* | migrate CURLY/PLUS/STAR branch in regmatch() to new FSM-esque paradigm | Dave Mitchell | 2006-06-30 | 1 | -4/+6 |
* | migrate TRIE branch in regmatch() to new FSM-esque paradigm | Dave Mitchell | 2006-06-23 | 1 | -1/+3 |
* | start turning regmatch() main loop into a FSM | Dave Mitchell | 2006-06-16 | 1 | -28/+14 |
* | Re: [PATCH] regexec/regcomp.c cleanups | Yves Orton | 2006-06-11 | 1 | -7/+11 |
* | Re: [PATCH] Better version of the Aho-Corasick patch and lots of benchmarks. | Yves Orton | 2006-06-11 | 1 | -24/+30 |
* | regmatch: merge the greedy and non-greedy branches of CURLYM | Dave Mitchell | 2006-04-20 | 1 | -1/+1 |
* | regmatch(): make IFMATCH use PUSH_STACK rather than fake recursion | Dave Mitchell | 2006-04-19 | 1 | -0/+8 |
* | generalize the 'continue on success' mechanism of deferred REs | Dave Mitchell | 2006-04-16 | 1 | -4/+10 |
* | eliminate PL_regbol PL_regtill PL_regnarrate PL_reg_ganch PL_reg_sv | Dave Mitchell | 2006-04-13 | 1 | -10/+11 |
* | eliminate PL_reg_re | Dave Mitchell | 2006-04-13 | 1 | -2/+0 |
* | Remove the final recursion path from S_regmatch: (??{...}) | Dave Mitchell | 2006-04-12 | 1 | -27/+11 |
* | Move all the regexp state variables into a single structure. | Nicholas Clark | 2006-04-06 | 1 | -1/+35 |
* | Save the regexp engine state as 1 block on the save stack. | Nicholas Clark | 2006-04-05 | 1 | -0/+50 |
* | anonymous unions aren't legal ANSI c | Dave Mitchell | 2006-04-03 | 1 | -1/+1 |
* | subsume CURCUR (current curly) struct within the main regmatch_state | Dave Mitchell | 2006-04-02 | 1 | -21/+15 |
* | make parts of struct regmatch_state unions | Dave Mitchell | 2006-04-02 | 1 | -19/+53 |
* | use slabs to allocate save state space in regmatch() | Dave Mitchell | 2006-04-02 | 1 | -0/+113 |
* | REXEC_ML is unused. | Gisle Aas | 2006-03-26 | 1 | -1/+0 |
* | s/PERL_COPY_ON_WRITE/PERL_OLD_COPY_ON_WRITE/g | Nicholas Clark | 2005-06-08 | 1 | -2/+2 |
* | Fix up Larry's copyright statements to my best knowledge. | Jarkko Hietaniemi | 2003-04-16 | 1 | -1/+2 |
* | Update all copyrights to 2003, from Jarkko | Hugo van der Sanden | 2003-03-02 | 1 | -1/+1 |
* | COW regexps: | Nicholas Clark | 2003-02-16 | 1 | -0/+20 |
* | [perl #18232] [PATCH] store PL_reg_match_utf8 in reganch | Rafael Garcia-Suarez | 2003-02-02 | 1 | -0/+8 |
* | Sprinkle some copyrights (use the oldest timestamp to | Jarkko Hietaniemi | 2002-01-24 | 1 | -0/+6 |
* | Retract #13048: that introduced a malloc() (through savepvn()) | Jarkko Hietaniemi | 2001-11-18 | 1 | -1/+0 |
* | Re: [PATCH regcomp.[ch], regexp.h, pp_hot.c, t/op/re_tests] lazy $& and \Z fix | Jeff Pinyan | 2001-11-16 | 1 | -0/+1 |
* | Continuation of #11575: SANY_SEEN completely deprecated, | Jarkko Hietaniemi | 2001-08-04 | 1 | -2/+2 |
* | Decouple SANY into SANY and CANY: the new SANY is /./s, | Daniel P. Berrange | 2001-08-04 | 1 | -0/+1 |
* | Add support for $^N, the most-recently closed group. | Jarkko Hietaniemi | 2001-06-30 | 1 | -0/+1 |
* | Re: Regex debugger patch | Mark-Jason Dominus | 2001-04-22 | 1 | -0/+1 |
* | Misapplied regex optimizations when \C is present. | Jarkko Hietaniemi | 2001-02-18 | 1 | -0/+1 |
* | Declare reg_data like reg_substr_data. | Jarkko Hietaniemi | 2000-11-13 | 1 | -0/+2 |
* | fixes for most warnings identified by gcc -Wall | Gurusamy Sarathy | 2000-03-05 | 1 | -1/+1 |
* | regexp.h | Ilya Zakharevich | 1999-11-04 | 1 | -1/+1 |
* | Retract #3922 (Rule #1 was invoked). | Jarkko Hietaniemi | 1999-08-30 | 1 | -2/+0 |
* | Deprecate /^/ implictly meaning /^/m. | Ilya Zakharevich | 1999-08-05 | 1 | -0/+2 |
* | Integrate with Sarathy. | Jarkko Hietaniemi | 1999-07-06 | 1 | -55/+38 |