This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add PERL_ARGS_ASSERT_MEM_LOG_COMMON to S_mem_log_common().
[perl5.git] / regcomp.c
2008-10-18 Marcus Holland-MoritzFix memory leak in // caused by single-char character...
2008-10-05 Nicholas ClarkAvoid allocating 1 extra regnode when duplicating a...
2008-09-20 Nicholas ClarkTwo missing 'static's, spotted by Merijn's smoker.
2008-07-18 Marcus Holland-MoritzWelcome to refcount hell. Fix the leaks reported by...
2008-06-09 Nicholas ClarkStrength reduction optimisation seems to spot that...
2008-06-09 Reini UrbanRe: [PATCH] More COW lvalues
2008-05-18 Dave Mitchellfix misleading comment about Perl_re_dup_guts
2008-04-11 Ævar Arnfjörð Bjar... Re: [perl #52672] regexp failure: (?=) turns into OPFAIL
2008-02-25 Steve HaySilence Borland compiler warnings (except for warnings...
2008-02-17 Yves OrtonFix bug 50496 -- regcomp.c=~s/lastcloseparen/lastparen/g
2008-02-17 Yves OrtonFix perlbug 50114 and document what the code does a...
2008-02-12 Nicholas Clarkassert() that every NN argument is not NULL. Otherwise...
2008-01-10 Ævar Arnfjörð Bjar... Move the reg_stringify logic to Perl_sv_2pv_flags
2008-01-09 Dave Mitchellseen_eval regex field wasn't getting cloned
2008-01-09 Nicholas ClarkFix the bug introduced by the bug fix of change 30755.
2008-01-06 Yves OrtonMake new regex type be 'REGEXP' and make all core qr...
2008-01-05 Nicholas ClarkMake REGEXP a type distinct from SV. (Much like AV...
2008-01-05 Nicholas ClarkDon't allocate the NV slot for SVt_REGEXP.
2008-01-05 Nicholas ClarkConvert all accesses of the member paren_names of struc...
2008-01-05 Nicholas ClarkAbolish RXf_UTF8. Store the UTF-8-ness of the pattern...
2008-01-05 Nicholas ClarkMake Perl_pregcomp() use SvUTF8() of the pattern, rathe...
2008-01-05 Nicholas ClarkReplace all reads of RXf_UTF8 with RX_UTF8().
2008-01-05 Nicholas ClarkAbolish wraplen from struct regexp. We're already stori...
2008-01-05 Nicholas ClarkAbolish RXp_PRELEN(rx) and RXp_WRAPLEN()
2008-01-05 Nicholas ClarkAbolish wrapped in struct regexp - store the wrapped...
2008-01-05 Nicholas ClarkAdd RX_UTF8(), which is effectively SvUTF8() but for...
2008-01-03 Nicholas ClarkExtend newSVpvn_flags() to also call sv_2mortal() if...
2008-01-03 Nicholas ClarkPossible future bugs found by the creation of newSVpvn_...
2008-01-02 Nicholas ClarkAdd a new function newSVpvn_flags(), which takes a...
2008-01-02 Nicholas ClarkMake struct regexp the body of SVt_REGEXP SVs, REGEXPs...
2008-01-02 Nicholas ClarkConvert some "regexp" and "struct regexp" to REGEXP...
2008-01-02 Nicholas ClarkWrap all deferences of struct regexp* in macros RX_...
2007-12-29 Nicholas ClarkThe position of the modifier flag bits is actually...
2007-12-29 Nicholas ClarkWrap wrapped and wraplen from struct regexp in macros...
2007-12-28 Nicholas ClarkEliminate prelen from struct regexp. Possibly we are...
2007-12-28 Nicholas ClarkReplace 3 uses of RX_PRELEN(r) with plen, which has...
2007-12-28 Nicholas ClarkEliminate precomp from struct regexp. Store the offset...
2007-12-28 Nicholas ClarkSilly Nick. There was a bug in change 30757 whereby...
2007-12-28 Nicholas ClarkWrap all accesses to the members precomp and prelen...
2007-12-28 Nicholas ClarkFirst class regexps.
2007-12-17 Yves OrtonFix various bugs in regex engine with mixed utf8/latin...
2007-11-23 Jarkko HietaniemiRe: RC1 build failure
2007-10-31 Rafael Garcia-SuarezFix (or hide?) a case of memory corruption with \K...
2007-10-17 joshFix a few segfaults and a when() bug
2007-10-08 Steve HaySilence compiler warnings on Win32 (VC6)
2007-10-06 Craig A. BerryRe: several compilation problems on VMS in perl@32039
2007-10-06 Nicholas ClarkUse the PERL_PV_PRETTY_NOCLEAR flag to simplify the...
2007-10-06 Nicholas ClarkAvoid using *pvf functions when the format string is...
2007-10-06 Nicholas ClarkRevert one hunk of change 32034 that had the possibilit...
2007-10-05 Nicholas ClarkEliminate the Perl_sv_catpvf() in TRIE_STORE_REVCHAR
2007-10-05 Nicholas ClarkEliminate most *printf-like calls that use a simple...
2007-09-26 Rafael Garcia-SuarezAPI spelling patch, by Jerry D. Hedden
2007-09-25 TelsRe: [perl #45605] Regexp failure with utf8-flagged...
2007-09-24 Dave Mitchellsilence a spurious compiler warning in regcomp.c
2007-09-14 Dave Mitchell[perl #45337] utf8 + "[a]a{2}" + /$.../ = panic: sv_len...
2007-08-12 Reini Urbanregcomp.c fix 64int warning
2007-08-09 Ævar Arnfjörð Bjar... Optimize split //
2007-07-03 Rafael Garcia-SuarezForbid \g0. (tests coming later)
2007-07-01 Jerry D. Heddenchar is not a good type to use for array indexes;
2007-06-30 Benjamin Carterregclass on EBCDIC platforms
2007-06-30 Abigail/p vs (?p)
2007-06-28 Yves OrtonRename various regex defined so that they have distinct...
2007-06-28 Yves OrtonReplace pattern parsing logic with optree "parsing...
2007-06-28 Ævar Arnfjörð Bjar... Move the RXf_WHITE logic for split " " into the regex...
2007-06-28 Yves OrtonFree memory in case of error/failure to compile.
2007-06-24 Nicholas Clarks/\bunicode\b/Unicode/; # For everything not dual life
2007-06-07 Rafael Garcia-SuarezPlug a memory leak (noticed by Yves)
2007-06-06 Ævar Arnfjörð Bjar... Re: [PATCH] Callbacks for named captures (%+ and %-)
2007-06-03 Yves OrtonRe: BBC(Bleadperl Breaks CPAN) Today: String::Multibyte
2007-05-29 Yves OrtonRe: [perl #43015] regex /.*\z/ doesn't matches strings...
2007-05-03 Steve HaySilence some VC6 compiler warnings in the regex code
2007-05-03 Ævar Arnfjörð Bjar... FETCH/STORE/LENGTH callbacks for numbered capture variables
2007-05-03 Andy LesterThe revenge of the consts
2007-05-02 Nicholas ClarkGet PERL_OLD_COPY_ON_WRITE passing all tests, apart...
2007-05-01 Yves OrtonRe: [PATCH] Change meaning of \v, \V, and add \h, ...
2007-04-30 Ævar Arnfjörð Bjar... Re: [PATCH] Cleanup of the regexp API
2007-04-27 Yves OrtonRe: Analysis of problems with mixed encoding case insen...
2007-04-26 Nicholas ClarkAvoid a SIGBUS caused by passing a U32 pointer to utf8_...
2007-04-26 Rafael Garcia-SuarezForgot to submit regcomp.c in change #31081
2007-04-23 Ævar Arnfjörð Bjar... Re: [PATCH (incomplete)] Make regcomp use SV* sv, inste...
2007-04-23 Yves OrtonChange meaning of \v, \V, and add \h, \H to match Perl6...
2007-04-10 Nicholas ClarkSilence the g++ warnings "right-hand operand of comma...
2007-04-08 Ævar Arnfjörð Bjar... RXf_WHITE never used due to small bug in regcomp.c
2007-04-06 Ævar Arnfjörð Bjar... Re: Proposed changes and to regular expression interfac...
2007-04-04 Yves OrtonRe: pmdynflags and thread safety
2007-03-26 Nicholas ClarkIn struct regexp replace the two arrays of I32s accesse...
2007-03-26 Nicholas ClarkSimplify the logic in Perl_re_dup() - copy the structur...
2007-03-25 Nicholas ClarkChange 30753 forgot to remove 2 now unused variables.
2007-03-25 Nicholas ClarkLooks like re_dup has been leaking references on 2...
2007-03-25 Nicholas ClarkA more efficient copy in Perl_reg_temp_copy()
2007-03-25 Marcus Holland-MoritzRe: The performance problem of 30678
2007-03-24 Nicholas Clarkstartp and endp can allocate their array of I32s from...
2007-03-23 Nicholas ClarkIt's possible to write the dup of struct reg_substr_dat...
2007-03-23 Nicholas ClarkMove CHECK_WORD in regcomp.c to a more generic memEQs...
2007-03-22 Nicholas ClarkCan use memEQ instead of strnEQ in CHECK_WORD()
2007-03-22 Yves OrtonResolve PL_curpm issues with (??{}) and fix corruption...
2007-03-20 Yves Ortonfeel the the baÃ\9f (encoding problems in the regex engine)
2007-03-03 Nicholas ClarkDefine and initialise reg_name only once.
2007-02-28 Rafael Garcia-Suarez(?p{}) has been deprecated for a long time.
2007-02-26 Yves OrtonRe: [perl #41565] qr// memory corruption
next