1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
2 |
------------------ |
------------------ |
3 |
|
|
4 |
Version 8.21 |
Version 8.35-RC1 xx-xxxx-201x |
5 |
------------ |
----------------------------- |
6 |
|
|
7 |
|
1. A new flag is set, when property checks are present in an XCLASS. |
8 |
|
When this flag is not set, PCRE can perform certain optimizations |
9 |
|
such as studying these XCLASS-es. |
10 |
|
|
11 |
|
2. The auto-possessification of character sets were improved: a normal |
12 |
|
and an extended character set can be compared now. Furthermore |
13 |
|
the JIT compiler optimizes more character set checks. |
14 |
|
|
15 |
|
3. Got rid of some compiler warnings for potentially uninitialized variables |
16 |
|
that show up only when compiled with -O2. |
17 |
|
|
18 |
|
4. A pattern such as (?=ab\K) that uses \K in an assertion can set the start |
19 |
|
of a match later then the end of the match. The pcretest program was not |
20 |
|
handling the case sensibly - it was outputting from the start to the next |
21 |
|
binary zero. It now reports this situation in a message, and outputs the |
22 |
|
text from the end to the start. |
23 |
|
|
24 |
|
5. Fast forward search is improved in JIT. Instead of the first three |
25 |
|
characters, any three characters with fixed position can be searched. |
26 |
|
Search order: first, last, middle. |
27 |
|
|
28 |
|
6. Improve character range checks in JIT. Characters are read by an inprecise |
29 |
|
function now, which returns with an unknown value if the character code is |
30 |
|
above a certain treshold (e.g: 256). The only limitation is that the value |
31 |
|
must be bigger than the treshold as well. This function is useful, when |
32 |
|
the characters above the treshold are handled in the same way. |
33 |
|
|
34 |
|
7. The macros whose names start with RAWUCHAR are placeholders for a future |
35 |
|
mode in which only the bottom 21 bits of 32-bit data items are used. To |
36 |
|
make this more memorable for those maintaining the code, the names have |
37 |
|
been changed to start with UCHAR21, and an extensive comment has been added |
38 |
|
to their definition. |
39 |
|
|
40 |
|
8. Add missing (new) files sljitNativeTILEGX.c and sljitNativeTILEGX-encoder.c |
41 |
|
to the export list in Makefile.am (they were accidentally omitted from the |
42 |
|
8.34 tarball). |
43 |
|
|
44 |
|
9. The informational output from pcretest used the phrase "starting byte set" |
45 |
|
which is inappropriate for the 16-bit and 32-bit libraries. As the output |
46 |
|
for "first char" and "need char" really means "non-UTF-char", I've changed |
47 |
|
"byte" to "char", and slightly reworded the output. The documentation about |
48 |
|
these values has also been (I hope) clarified. |
49 |
|
|
50 |
|
10. Another JIT related optimization: use table jumps for selecting the correct |
51 |
|
backtracking path, when more than four alternatives are present inside a |
52 |
|
bracket. |
53 |
|
|
54 |
|
|
55 |
|
Version 8.34 15-December-2013 |
56 |
|
----------------------------- |
57 |
|
|
58 |
|
1. Add pcre[16|32]_jit_free_unused_memory to forcibly free unused JIT |
59 |
|
executable memory. Patch inspired by Carsten Klein. |
60 |
|
|
61 |
|
2. ./configure --enable-coverage defined SUPPORT_GCOV in config.h, although |
62 |
|
this macro is never tested and has no effect, because the work to support |
63 |
|
coverage involves only compiling and linking options and special targets in |
64 |
|
the Makefile. The comment in config.h implied that defining the macro would |
65 |
|
enable coverage support, which is totally false. There was also support for |
66 |
|
setting this macro in the CMake files (my fault, I just copied it from |
67 |
|
configure). SUPPORT_GCOV has now been removed. |
68 |
|
|
69 |
|
3. Make a small performance improvement in strlen16() and strlen32() in |
70 |
|
pcretest. |
71 |
|
|
72 |
|
4. Change 36 for 8.33 left some unreachable statements in pcre_exec.c, |
73 |
|
detected by the Solaris compiler (gcc doesn't seem to be able to diagnose |
74 |
|
these cases). There was also one in pcretest.c. |
75 |
|
|
76 |
|
5. Cleaned up a "may be uninitialized" compiler warning in pcre_exec.c. |
77 |
|
|
78 |
|
6. In UTF mode, the code for checking whether a group could match an empty |
79 |
|
string (which is used for indefinitely repeated groups to allow for |
80 |
|
breaking an infinite loop) was broken when the group contained a repeated |
81 |
|
negated single-character class with a character that occupied more than one |
82 |
|
data item and had a minimum repetition of zero (for example, [^\x{100}]* in |
83 |
|
UTF-8 mode). The effect was undefined: the group might or might not be |
84 |
|
deemed as matching an empty string, or the program might have crashed. |
85 |
|
|
86 |
|
7. The code for checking whether a group could match an empty string was not |
87 |
|
recognizing that \h, \H, \v, \V, and \R must match a character. |
88 |
|
|
89 |
|
8. Implemented PCRE_INFO_MATCH_EMPTY, which yields 1 if the pattern can match |
90 |
|
an empty string. If it can, pcretest shows this in its information output. |
91 |
|
|
92 |
|
9. Fixed two related bugs that applied to Unicode extended grapheme clusters |
93 |
|
that were repeated with a maximizing qualifier (e.g. \X* or \X{2,5}) when |
94 |
|
matched by pcre_exec() without using JIT: |
95 |
|
|
96 |
|
(a) If the rest of the pattern did not match after a maximal run of |
97 |
|
grapheme clusters, the code for backing up to try with fewer of them |
98 |
|
did not always back up over a full grapheme when characters that do not |
99 |
|
have the modifier quality were involved, e.g. Hangul syllables. |
100 |
|
|
101 |
|
(b) If the match point in a subject started with modifier character, and |
102 |
|
there was no match, the code could incorrectly back up beyond the match |
103 |
|
point, and potentially beyond the first character in the subject, |
104 |
|
leading to a segfault or an incorrect match result. |
105 |
|
|
106 |
|
10. A conditional group with an assertion condition could lead to PCRE |
107 |
|
recording an incorrect first data item for a match if no other first data |
108 |
|
item was recorded. For example, the pattern (?(?=ab)ab) recorded "a" as a |
109 |
|
first data item, and therefore matched "ca" after "c" instead of at the |
110 |
|
start. |
111 |
|
|
112 |
|
11. Change 40 for 8.33 (allowing pcregrep to find empty strings) showed up a |
113 |
|
bug that caused the command "echo a | ./pcregrep -M '|a'" to loop. |
114 |
|
|
115 |
|
12. The source of pcregrep now includes z/OS-specific code so that it can be |
116 |
|
compiled for z/OS as part of the special z/OS distribution. |
117 |
|
|
118 |
|
13. Added the -T and -TM options to pcretest. |
119 |
|
|
120 |
|
14. The code in pcre_compile.c for creating the table of named capturing groups |
121 |
|
has been refactored. Instead of creating the table dynamically during the |
122 |
|
actual compiling pass, the information is remembered during the pre-compile |
123 |
|
pass (on the stack unless there are more than 20 named groups, in which |
124 |
|
case malloc() is used) and the whole table is created before the actual |
125 |
|
compile happens. This has simplified the code (it is now nearly 150 lines |
126 |
|
shorter) and prepared the way for better handling of references to groups |
127 |
|
with duplicate names. |
128 |
|
|
129 |
|
15. A back reference to a named subpattern when there is more than one of the |
130 |
|
same name now checks them in the order in which they appear in the pattern. |
131 |
|
The first one that is set is used for the reference. Previously only the |
132 |
|
first one was inspected. This change makes PCRE more compatible with Perl. |
133 |
|
|
134 |
|
16. Unicode character properties were updated from Unicode 6.3.0. |
135 |
|
|
136 |
|
17. The compile-time code for auto-possessification has been refactored, based |
137 |
|
on a patch by Zoltan Herczeg. It now happens after instead of during |
138 |
|
compilation. The code is cleaner, and more cases are handled. The option |
139 |
|
PCRE_NO_AUTO_POSSESS is added for testing purposes, and the -O and /O |
140 |
|
options in pcretest are provided to set it. It can also be set by |
141 |
|
(*NO_AUTO_POSSESS) at the start of a pattern. |
142 |
|
|
143 |
|
18. The character VT has been added to the default ("C" locale) set of |
144 |
|
characters that match \s and are generally treated as white space, |
145 |
|
following this same change in Perl 5.18. There is now no difference between |
146 |
|
"Perl space" and "POSIX space". Whether VT is treated as white space in |
147 |
|
other locales depends on the locale. |
148 |
|
|
149 |
|
19. The code for checking named groups as conditions, either for being set or |
150 |
|
for being recursed, has been refactored (this is related to 14 and 15 |
151 |
|
above). Processing unduplicated named groups should now be as fast at |
152 |
|
numerical groups, and processing duplicated groups should be faster than |
153 |
|
before. |
154 |
|
|
155 |
|
20. Two patches to the CMake build system, by Alexander Barkov: |
156 |
|
|
157 |
|
(1) Replace the "source" command by "." in CMakeLists.txt because |
158 |
|
"source" is a bash-ism. |
159 |
|
|
160 |
|
(2) Add missing HAVE_STDINT_H and HAVE_INTTYPES_H to config-cmake.h.in; |
161 |
|
without these the CMake build does not work on Solaris. |
162 |
|
|
163 |
|
21. Perl has changed its handling of \8 and \9. If there is no previously |
164 |
|
encountered capturing group of those numbers, they are treated as the |
165 |
|
literal characters 8 and 9 instead of a binary zero followed by the |
166 |
|
literals. PCRE now does the same. |
167 |
|
|
168 |
|
22. Following Perl, added \o{} to specify codepoints in octal, making it |
169 |
|
possible to specify values greater than 0777 and also making them |
170 |
|
unambiguous. |
171 |
|
|
172 |
|
23. Perl now gives an error for missing closing braces after \x{... instead of |
173 |
|
treating the string as literal. PCRE now does the same. |
174 |
|
|
175 |
|
24. RunTest used to grumble if an inappropriate test was selected explicitly, |
176 |
|
but just skip it when running all tests. This make it awkward to run ranges |
177 |
|
of tests when one of them was inappropriate. Now it just skips any |
178 |
|
inappropriate tests, as it always did when running all tests. |
179 |
|
|
180 |
|
25. If PCRE_AUTO_CALLOUT and PCRE_UCP were set for a pattern that contained |
181 |
|
character types such as \d or \w, too many callouts were inserted, and the |
182 |
|
data that they returned was rubbish. |
183 |
|
|
184 |
|
26. In UCP mode, \s was not matching two of the characters that Perl matches, |
185 |
|
namely NEL (U+0085) and MONGOLIAN VOWEL SEPARATOR (U+180E), though they |
186 |
|
were matched by \h. The code has now been refactored so that the lists of |
187 |
|
the horizontal and vertical whitespace characters used for \h and \v (which |
188 |
|
are defined only in one place) are now also used for \s. |
189 |
|
|
190 |
|
27. Add JIT support for the 64 bit TileGX architecture. |
191 |
|
Patch by Jiong Wang (Tilera Corporation). |
192 |
|
|
193 |
|
28. Possessive quantifiers for classes (both explicit and automatically |
194 |
|
generated) now use special opcodes instead of wrapping in ONCE brackets. |
195 |
|
|
196 |
|
29. Whereas an item such as A{4}+ ignored the possessivenes of the quantifier |
197 |
|
(because it's meaningless), this was not happening when PCRE_CASELESS was |
198 |
|
set. Not wrong, but inefficient. |
199 |
|
|
200 |
|
30. Updated perltest.pl to add /u (force Unicode mode) when /W (use Unicode |
201 |
|
properties for \w, \d, etc) is present in a test regex. Otherwise if the |
202 |
|
test contains no characters greater than 255, Perl doesn't realise it |
203 |
|
should be using Unicode semantics. |
204 |
|
|
205 |
|
31. Upgraded the handling of the POSIX classes [:graph:], [:print:], and |
206 |
|
[:punct:] when PCRE_UCP is set so as to include the same characters as Perl |
207 |
|
does in Unicode mode. |
208 |
|
|
209 |
|
32. Added the "forbid" facility to pcretest so that putting tests into the |
210 |
|
wrong test files can sometimes be quickly detected. |
211 |
|
|
212 |
|
33. There is now a limit (default 250) on the depth of nesting of parentheses. |
213 |
|
This limit is imposed to control the amount of system stack used at compile |
214 |
|
time. It can be changed at build time by --with-parens-nest-limit=xxx or |
215 |
|
the equivalent in CMake. |
216 |
|
|
217 |
|
34. Character classes such as [A-\d] or [a-[:digit:]] now cause compile-time |
218 |
|
errors. Perl warns for these when in warning mode, but PCRE has no facility |
219 |
|
for giving warnings. |
220 |
|
|
221 |
|
35. Change 34 for 8.13 allowed quantifiers on assertions, because Perl does. |
222 |
|
However, this was not working for (?!) because it is optimized to (*FAIL), |
223 |
|
for which PCRE does not allow quantifiers. The optimization is now disabled |
224 |
|
when a quantifier follows (?!). I can't see any use for this, but it makes |
225 |
|
things uniform. |
226 |
|
|
227 |
|
36. Perl no longer allows group names to start with digits, so I have made this |
228 |
|
change also in PCRE. It simplifies the code a bit. |
229 |
|
|
230 |
|
37. In extended mode, Perl ignores spaces before a + that indicates a |
231 |
|
possessive quantifier. PCRE allowed a space before the quantifier, but not |
232 |
|
before the possessive +. It now does. |
233 |
|
|
234 |
|
38. The use of \K (reset reported match start) within a repeated possessive |
235 |
|
group such as (a\Kb)*+ was not working. |
236 |
|
|
237 |
|
40. Document that the same character tables must be used at compile time and |
238 |
|
run time, and that the facility to pass tables to pcre_exec() and |
239 |
|
pcre_dfa_exec() is for use only with saved/restored patterns. |
240 |
|
|
241 |
|
41. Applied Jeff Trawick's patch CMakeLists.txt, which "provides two new |
242 |
|
features for Builds with MSVC: |
243 |
|
|
244 |
|
1. Support pcre.rc and/or pcreposix.rc (as is already done for MinGW |
245 |
|
builds). The .rc files can be used to set FileDescription and many other |
246 |
|
attributes. |
247 |
|
|
248 |
|
2. Add an option (-DINSTALL_MSVC_PDB) to enable installation of .pdb files. |
249 |
|
This allows higher-level build scripts which want .pdb files to avoid |
250 |
|
hard-coding the exact files needed." |
251 |
|
|
252 |
|
42. Added support for [[:<:]] and [[:>:]] as used in the BSD POSIX library to |
253 |
|
mean "start of word" and "end of word", respectively, as a transition aid. |
254 |
|
|
255 |
|
43. A minimizing repeat of a class containing codepoints greater than 255 in |
256 |
|
non-UTF 16-bit or 32-bit modes caused an internal error when PCRE was |
257 |
|
compiled to use the heap for recursion. |
258 |
|
|
259 |
|
44. Got rid of some compiler warnings for unused variables when UTF but not UCP |
260 |
|
is configured. |
261 |
|
|
262 |
|
|
263 |
|
Version 8.33 28-May-2013 |
264 |
|
------------------------ |
265 |
|
|
266 |
|
1. Added 'U' to some constants that are compared to unsigned integers, to |
267 |
|
avoid compiler signed/unsigned warnings. Added (int) casts to unsigned |
268 |
|
variables that are added to signed variables, to ensure the result is |
269 |
|
signed and can be negated. |
270 |
|
|
271 |
|
2. Applied patch by Daniel Richard G for quashing MSVC warnings to the |
272 |
|
CMake config files. |
273 |
|
|
274 |
|
3. Revise the creation of config.h.generic so that all boolean macros are |
275 |
|
#undefined, whereas non-boolean macros are #ifndef/#endif-ed. This makes |
276 |
|
overriding via -D on the command line possible. |
277 |
|
|
278 |
|
4. Changing the definition of the variable "op" in pcre_exec.c from pcre_uchar |
279 |
|
to unsigned int is reported to make a quite noticeable speed difference in |
280 |
|
a specific Windows environment. Testing on Linux did also appear to show |
281 |
|
some benefit (and it is clearly not harmful). Also fixed the definition of |
282 |
|
Xop which should be unsigned. |
283 |
|
|
284 |
|
5. Related to (4), changing the definition of the intermediate variable cc |
285 |
|
in repeated character loops from pcre_uchar to pcre_uint32 also gave speed |
286 |
|
improvements. |
287 |
|
|
288 |
|
6. Fix forward search in JIT when link size is 3 or greater. Also removed some |
289 |
|
unnecessary spaces. |
290 |
|
|
291 |
|
7. Adjust autogen.sh and configure.ac to lose warnings given by automake 1.12 |
292 |
|
and later. |
293 |
|
|
294 |
|
8. Fix two buffer over read issues in 16 and 32 bit modes. Affects JIT only. |
295 |
|
|
296 |
|
9. Optimizing fast_forward_start_bits in JIT. |
297 |
|
|
298 |
|
10. Adding support for callouts in JIT, and fixing some issues revealed |
299 |
|
during this work. Namely: |
300 |
|
|
301 |
|
(a) Unoptimized capturing brackets incorrectly reset on backtrack. |
302 |
|
|
303 |
|
(b) Minimum length was not checked before the matching is started. |
304 |
|
|
305 |
|
11. The value of capture_last that is passed to callouts was incorrect in some |
306 |
|
cases when there was a capture on one path that was subsequently abandoned |
307 |
|
after a backtrack. Also, the capture_last value is now reset after a |
308 |
|
recursion, since all captures are also reset in this case. |
309 |
|
|
310 |
|
12. The interpreter no longer returns the "too many substrings" error in the |
311 |
|
case when an overflowing capture is in a branch that is subsequently |
312 |
|
abandoned after a backtrack. |
313 |
|
|
314 |
|
13. In the pathological case when an offset vector of size 2 is used, pcretest |
315 |
|
now prints out the matched string after a yield of 0 or 1. |
316 |
|
|
317 |
|
14. Inlining subpatterns in recursions, when certain conditions are fulfilled. |
318 |
|
Only supported by the JIT compiler at the moment. |
319 |
|
|
320 |
|
15. JIT compiler now supports 32 bit Macs thanks to Lawrence Velazquez. |
321 |
|
|
322 |
|
16. Partial matches now set offsets[2] to the "bumpalong" value, that is, the |
323 |
|
offset of the starting point of the matching process, provided the offsets |
324 |
|
vector is large enough. |
325 |
|
|
326 |
|
17. The \A escape now records a lookbehind value of 1, though its execution |
327 |
|
does not actually inspect the previous character. This is to ensure that, |
328 |
|
in partial multi-segment matching, at least one character from the old |
329 |
|
segment is retained when a new segment is processed. Otherwise, if there |
330 |
|
are no lookbehinds in the pattern, \A might match incorrectly at the start |
331 |
|
of a new segment. |
332 |
|
|
333 |
|
18. Added some #ifdef __VMS code into pcretest.c to help VMS implementations. |
334 |
|
|
335 |
|
19. Redefined some pcre_uchar variables in pcre_exec.c as pcre_uint32; this |
336 |
|
gives some modest performance improvement in 8-bit mode. |
337 |
|
|
338 |
|
20. Added the PCRE-specific property \p{Xuc} for matching characters that can |
339 |
|
be expressed in certain programming languages using Universal Character |
340 |
|
Names. |
341 |
|
|
342 |
|
21. Unicode validation has been updated in the light of Unicode Corrigendum #9, |
343 |
|
which points out that "non characters" are not "characters that may not |
344 |
|
appear in Unicode strings" but rather "characters that are reserved for |
345 |
|
internal use and have only local meaning". |
346 |
|
|
347 |
|
22. When a pattern was compiled with automatic callouts (PCRE_AUTO_CALLOUT) and |
348 |
|
there was a conditional group that depended on an assertion, if the |
349 |
|
assertion was false, the callout that immediately followed the alternation |
350 |
|
in the condition was skipped when pcre_exec() was used for matching. |
351 |
|
|
352 |
|
23. Allow an explicit callout to be inserted before an assertion that is the |
353 |
|
condition for a conditional group, for compatibility with automatic |
354 |
|
callouts, which always insert a callout at this point. |
355 |
|
|
356 |
|
24. In 8.31, (*COMMIT) was confined to within a recursive subpattern. Perl also |
357 |
|
confines (*SKIP) and (*PRUNE) in the same way, and this has now been done. |
358 |
|
|
359 |
|
25. (*PRUNE) is now supported by the JIT compiler. |
360 |
|
|
361 |
|
26. Fix infinite loop when /(?<=(*SKIP)ac)a/ is matched against aa. |
362 |
|
|
363 |
|
27. Fix the case where there are two or more SKIPs with arguments that may be |
364 |
|
ignored. |
365 |
|
|
366 |
|
28. (*SKIP) is now supported by the JIT compiler. |
367 |
|
|
368 |
|
29. (*THEN) is now supported by the JIT compiler. |
369 |
|
|
370 |
|
30. Update RunTest with additional test selector options. |
371 |
|
|
372 |
|
31. The way PCRE handles backtracking verbs has been changed in two ways. |
373 |
|
|
374 |
|
(1) Previously, in something like (*COMMIT)(*SKIP), COMMIT would override |
375 |
|
SKIP. Now, PCRE acts on whichever backtracking verb is reached first by |
376 |
|
backtracking. In some cases this makes it more Perl-compatible, but Perl's |
377 |
|
rather obscure rules do not always do the same thing. |
378 |
|
|
379 |
|
(2) Previously, backtracking verbs were confined within assertions. This is |
380 |
|
no longer the case for positive assertions, except for (*ACCEPT). Again, |
381 |
|
this sometimes improves Perl compatibility, and sometimes does not. |
382 |
|
|
383 |
|
32. A number of tests that were in test 2 because Perl did things differently |
384 |
|
have been moved to test 1, because either Perl or PCRE has changed, and |
385 |
|
these tests are now compatible. |
386 |
|
|
387 |
|
32. Backtracking control verbs are now handled in the same way in JIT and |
388 |
|
interpreter. |
389 |
|
|
390 |
|
33. An opening parenthesis in a MARK/PRUNE/SKIP/THEN name in a pattern that |
391 |
|
contained a forward subroutine reference caused a compile error. |
392 |
|
|
393 |
|
34. Auto-detect and optimize limited repetitions in JIT. |
394 |
|
|
395 |
|
35. Implement PCRE_NEVER_UTF to lock out the use of UTF, in particular, |
396 |
|
blocking (*UTF) etc. |
397 |
|
|
398 |
|
36. In the interpreter, maximizing pattern repetitions for characters and |
399 |
|
character types now use tail recursion, which reduces stack usage. |
400 |
|
|
401 |
|
37. The value of the max lookbehind was not correctly preserved if a compiled |
402 |
|
and saved regex was reloaded on a host of different endianness. |
403 |
|
|
404 |
|
38. Implemented (*LIMIT_MATCH) and (*LIMIT_RECURSION). As part of the extension |
405 |
|
of the compiled pattern block, expand the flags field from 16 to 32 bits |
406 |
|
because it was almost full. |
407 |
|
|
408 |
|
39. Try madvise first before posix_madvise. |
409 |
|
|
410 |
|
40. Change 7 for PCRE 7.9 made it impossible for pcregrep to find empty lines |
411 |
|
with a pattern such as ^$. It has taken 4 years for anybody to notice! The |
412 |
|
original change locked out all matches of empty strings. This has been |
413 |
|
changed so that one match of an empty string per line is recognized. |
414 |
|
Subsequent searches on the same line (for colouring or for --only-matching, |
415 |
|
for example) do not recognize empty strings. |
416 |
|
|
417 |
|
41. Applied a user patch to fix a number of spelling mistakes in comments. |
418 |
|
|
419 |
|
42. Data lines longer than 65536 caused pcretest to crash. |
420 |
|
|
421 |
|
43. Clarified the data type for length and startoffset arguments for pcre_exec |
422 |
|
and pcre_dfa_exec in the function-specific man pages, where they were |
423 |
|
explicitly stated to be in bytes, never having been updated. I also added |
424 |
|
some clarification to the pcreapi man page. |
425 |
|
|
426 |
|
44. A call to pcre_dfa_exec() with an output vector size less than 2 caused |
427 |
|
a segmentation fault. |
428 |
|
|
429 |
|
|
430 |
|
Version 8.32 30-November-2012 |
431 |
|
----------------------------- |
432 |
|
|
433 |
|
1. Improved JIT compiler optimizations for first character search and single |
434 |
|
character iterators. |
435 |
|
|
436 |
|
2. Supporting IBM XL C compilers for PPC architectures in the JIT compiler. |
437 |
|
Patch by Daniel Richard G. |
438 |
|
|
439 |
|
3. Single character iterator optimizations in the JIT compiler. |
440 |
|
|
441 |
|
4. Improved JIT compiler optimizations for character ranges. |
442 |
|
|
443 |
|
5. Rename the "leave" variable names to "quit" to improve WinCE compatibility. |
444 |
|
Reported by Giuseppe D'Angelo. |
445 |
|
|
446 |
|
6. The PCRE_STARTLINE bit, indicating that a match can occur only at the start |
447 |
|
of a line, was being set incorrectly in cases where .* appeared inside |
448 |
|
atomic brackets at the start of a pattern, or where there was a subsequent |
449 |
|
*PRUNE or *SKIP. |
450 |
|
|
451 |
|
7. Improved instruction cache flush for POWER/PowerPC. |
452 |
|
Patch by Daniel Richard G. |
453 |
|
|
454 |
|
8. Fixed a number of issues in pcregrep, making it more compatible with GNU |
455 |
|
grep: |
456 |
|
|
457 |
|
(a) There is now no limit to the number of patterns to be matched. |
458 |
|
|
459 |
|
(b) An error is given if a pattern is too long. |
460 |
|
|
461 |
|
(c) Multiple uses of --exclude, --exclude-dir, --include, and --include-dir |
462 |
|
are now supported. |
463 |
|
|
464 |
|
(d) --exclude-from and --include-from (multiple use) have been added. |
465 |
|
|
466 |
|
(e) Exclusions and inclusions now apply to all files and directories, not |
467 |
|
just to those obtained from scanning a directory recursively. |
468 |
|
|
469 |
|
(f) Multiple uses of -f and --file-list are now supported. |
470 |
|
|
471 |
|
(g) In a Windows environment, the default for -d has been changed from |
472 |
|
"read" (the GNU grep default) to "skip", because otherwise the presence |
473 |
|
of a directory in the file list provokes an error. |
474 |
|
|
475 |
|
(h) The documentation has been revised and clarified in places. |
476 |
|
|
477 |
|
9. Improve the matching speed of capturing brackets. |
478 |
|
|
479 |
|
10. Changed the meaning of \X so that it now matches a Unicode extended |
480 |
|
grapheme cluster. |
481 |
|
|
482 |
|
11. Patch by Daniel Richard G to the autoconf files to add a macro for sorting |
483 |
|
out POSIX threads when JIT support is configured. |
484 |
|
|
485 |
|
12. Added support for PCRE_STUDY_EXTRA_NEEDED. |
486 |
|
|
487 |
|
13. In the POSIX wrapper regcomp() function, setting re_nsub field in the preg |
488 |
|
structure could go wrong in environments where size_t is not the same size |
489 |
|
as int. |
490 |
|
|
491 |
|
14. Applied user-supplied patch to pcrecpp.cc to allow PCRE_NO_UTF8_CHECK to be |
492 |
|
set. |
493 |
|
|
494 |
|
15. The EBCDIC support had decayed; later updates to the code had included |
495 |
|
explicit references to (e.g.) \x0a instead of CHAR_LF. There has been a |
496 |
|
general tidy up of EBCDIC-related issues, and the documentation was also |
497 |
|
not quite right. There is now a test that can be run on ASCII systems to |
498 |
|
check some of the EBCDIC-related things (but is it not a full test). |
499 |
|
|
500 |
|
16. The new PCRE_STUDY_EXTRA_NEEDED option is now used by pcregrep, resulting |
501 |
|
in a small tidy to the code. |
502 |
|
|
503 |
|
17. Fix JIT tests when UTF is disabled and both 8 and 16 bit mode are enabled. |
504 |
|
|
505 |
|
18. If the --only-matching (-o) option in pcregrep is specified multiple |
506 |
|
times, each one causes appropriate output. For example, -o1 -o2 outputs the |
507 |
|
substrings matched by the 1st and 2nd capturing parentheses. A separating |
508 |
|
string can be specified by --om-separator (default empty). |
509 |
|
|
510 |
|
19. Improving the first n character searches. |
511 |
|
|
512 |
|
20. Turn case lists for horizontal and vertical white space into macros so that |
513 |
|
they are defined only once. |
514 |
|
|
515 |
|
21. This set of changes together give more compatible Unicode case-folding |
516 |
|
behaviour for characters that have more than one other case when UCP |
517 |
|
support is available. |
518 |
|
|
519 |
|
(a) The Unicode property table now has offsets into a new table of sets of |
520 |
|
three or more characters that are case-equivalent. The MultiStage2.py |
521 |
|
script that generates these tables (the pcre_ucd.c file) now scans |
522 |
|
CaseFolding.txt instead of UnicodeData.txt for character case |
523 |
|
information. |
524 |
|
|
525 |
|
(b) The code for adding characters or ranges of characters to a character |
526 |
|
class has been abstracted into a generalized function that also handles |
527 |
|
case-independence. In UTF-mode with UCP support, this uses the new data |
528 |
|
to handle characters with more than one other case. |
529 |
|
|
530 |
|
(c) A bug that is fixed as a result of (b) is that codepoints less than 256 |
531 |
|
whose other case is greater than 256 are now correctly matched |
532 |
|
caselessly. Previously, the high codepoint matched the low one, but not |
533 |
|
vice versa. |
534 |
|
|
535 |
|
(d) The processing of \h, \H, \v, and \ in character classes now makes use |
536 |
|
of the new class addition function, using character lists defined as |
537 |
|
macros alongside the case definitions of 20 above. |
538 |
|
|
539 |
|
(e) Caseless back references now work with characters that have more than |
540 |
|
one other case. |
541 |
|
|
542 |
|
(f) General caseless matching of characters with more than one other case |
543 |
|
is supported. |
544 |
|
|
545 |
|
22. Unicode character properties were updated from Unicode 6.2.0 |
546 |
|
|
547 |
|
23. Improved CMake support under Windows. Patch by Daniel Richard G. |
548 |
|
|
549 |
|
24. Add support for 32-bit character strings, and UTF-32 |
550 |
|
|
551 |
|
25. Major JIT compiler update (code refactoring and bugfixing). |
552 |
|
Experimental Sparc 32 support is added. |
553 |
|
|
554 |
|
26. Applied a modified version of Daniel Richard G's patch to create |
555 |
|
pcre.h.generic and config.h.generic by "make" instead of in the |
556 |
|
PrepareRelease script. |
557 |
|
|
558 |
|
27. Added a definition for CHAR_NULL (helpful for the z/OS port), and use it in |
559 |
|
pcre_compile.c when checking for a zero character. |
560 |
|
|
561 |
|
28. Introducing a native interface for JIT. Through this interface, the compiled |
562 |
|
machine code can be directly executed. The purpose of this interface is to |
563 |
|
provide fast pattern matching, so several sanity checks are not performed. |
564 |
|
However, feature tests are still performed. The new interface provides |
565 |
|
1.4x speedup compared to the old one. |
566 |
|
|
567 |
|
29. If pcre_exec() or pcre_dfa_exec() was called with a negative value for |
568 |
|
the subject string length, the error given was PCRE_ERROR_BADOFFSET, which |
569 |
|
was confusing. There is now a new error PCRE_ERROR_BADLENGTH for this case. |
570 |
|
|
571 |
|
30. In 8-bit UTF-8 mode, pcretest failed to give an error for data codepoints |
572 |
|
greater than 0x7fffffff (which cannot be represented in UTF-8, even under |
573 |
|
the "old" RFC 2279). Instead, it ended up passing a negative length to |
574 |
|
pcre_exec(). |
575 |
|
|
576 |
|
31. Add support for GCC's visibility feature to hide internal functions. |
577 |
|
|
578 |
|
32. Running "pcretest -C pcre8" or "pcretest -C pcre16" gave a spurious error |
579 |
|
"unknown -C option" after outputting 0 or 1. |
580 |
|
|
581 |
|
33. There is now support for generating a code coverage report for the test |
582 |
|
suite in environments where gcc is the compiler and lcov is installed. This |
583 |
|
is mainly for the benefit of the developers. |
584 |
|
|
585 |
|
34. If PCRE is built with --enable-valgrind, certain memory regions are marked |
586 |
|
unaddressable using valgrind annotations, allowing valgrind to detect |
587 |
|
invalid memory accesses. This is mainly for the benefit of the developers. |
588 |
|
|
589 |
|
25. (*UTF) can now be used to start a pattern in any of the three libraries. |
590 |
|
|
591 |
|
26. Give configure error if --enable-cpp but no C++ compiler found. |
592 |
|
|
593 |
|
|
594 |
|
Version 8.31 06-July-2012 |
595 |
|
------------------------- |
596 |
|
|
597 |
|
1. Fixing a wrong JIT test case and some compiler warnings. |
598 |
|
|
599 |
|
2. Removed a bashism from the RunTest script. |
600 |
|
|
601 |
|
3. Add a cast to pcre_exec.c to fix the warning "unary minus operator applied |
602 |
|
to unsigned type, result still unsigned" that was given by an MS compiler |
603 |
|
on encountering the code "-sizeof(xxx)". |
604 |
|
|
605 |
|
4. Partial matching support is added to the JIT compiler. |
606 |
|
|
607 |
|
5. Fixed several bugs concerned with partial matching of items that consist |
608 |
|
of more than one character: |
609 |
|
|
610 |
|
(a) /^(..)\1/ did not partially match "aba" because checking references was |
611 |
|
done on an "all or nothing" basis. This also applied to repeated |
612 |
|
references. |
613 |
|
|
614 |
|
(b) \R did not give a hard partial match if \r was found at the end of the |
615 |
|
subject. |
616 |
|
|
617 |
|
(c) \X did not give a hard partial match after matching one or more |
618 |
|
characters at the end of the subject. |
619 |
|
|
620 |
|
(d) When newline was set to CRLF, a pattern such as /a$/ did not recognize |
621 |
|
a partial match for the string "\r". |
622 |
|
|
623 |
|
(e) When newline was set to CRLF, the metacharacter "." did not recognize |
624 |
|
a partial match for a CR character at the end of the subject string. |
625 |
|
|
626 |
|
6. If JIT is requested using /S++ or -s++ (instead of just /S+ or -s+) when |
627 |
|
running pcretest, the text "(JIT)" added to the output whenever JIT is |
628 |
|
actually used to run the match. |
629 |
|
|
630 |
|
7. Individual JIT compile options can be set in pcretest by following -s+[+] |
631 |
|
or /S+[+] with a digit between 1 and 7. |
632 |
|
|
633 |
|
8. OP_NOT now supports any UTF character not just single-byte ones. |
634 |
|
|
635 |
|
9. (*MARK) control verb is now supported by the JIT compiler. |
636 |
|
|
637 |
|
10. The command "./RunTest list" lists the available tests without actually |
638 |
|
running any of them. (Because I keep forgetting what they all are.) |
639 |
|
|
640 |
|
11. Add PCRE_INFO_MAXLOOKBEHIND. |
641 |
|
|
642 |
|
12. Applied a (slightly modified) user-supplied patch that improves performance |
643 |
|
when the heap is used for recursion (compiled with --disable-stack-for- |
644 |
|
recursion). Instead of malloc and free for each heap frame each time a |
645 |
|
logical recursion happens, frames are retained on a chain and re-used where |
646 |
|
possible. This sometimes gives as much as 30% improvement. |
647 |
|
|
648 |
|
13. As documented, (*COMMIT) is now confined to within a recursive subpattern |
649 |
|
call. |
650 |
|
|
651 |
|
14. As documented, (*COMMIT) is now confined to within a positive assertion. |
652 |
|
|
653 |
|
15. It is now possible to link pcretest with libedit as an alternative to |
654 |
|
libreadline. |
655 |
|
|
656 |
|
16. (*COMMIT) control verb is now supported by the JIT compiler. |
657 |
|
|
658 |
|
17. The Unicode data tables have been updated to Unicode 6.1.0. |
659 |
|
|
660 |
|
18. Added --file-list option to pcregrep. |
661 |
|
|
662 |
|
19. Added binary file support to pcregrep, including the -a, --binary-files, |
663 |
|
-I, and --text options. |
664 |
|
|
665 |
|
20. The madvise function is renamed for posix_madvise for QNX compatibility |
666 |
|
reasons. Fixed by Giuseppe D'Angelo. |
667 |
|
|
668 |
|
21. Fixed a bug for backward assertions with REVERSE 0 in the JIT compiler. |
669 |
|
|
670 |
|
22. Changed the option for creating symbolic links for 16-bit man pages from |
671 |
|
-s to -sf so that re-installing does not cause issues. |
672 |
|
|
673 |
|
23. Support PCRE_NO_START_OPTIMIZE in JIT as (*MARK) support requires it. |
674 |
|
|
675 |
|
24. Fixed a very old bug in pcretest that caused errors with restarted DFA |
676 |
|
matches in certain environments (the workspace was not being correctly |
677 |
|
retained). Also added to pcre_dfa_exec() a simple plausibility check on |
678 |
|
some of the workspace data at the beginning of a restart. |
679 |
|
|
680 |
|
25. \s*\R was auto-possessifying the \s* when it should not, whereas \S*\R |
681 |
|
was not doing so when it should - probably a typo introduced by SVN 528 |
682 |
|
(change 8.10/14). |
683 |
|
|
684 |
|
26. When PCRE_UCP was not set, \w+\x{c4} was incorrectly auto-possessifying the |
685 |
|
\w+ when the character tables indicated that \x{c4} was a word character. |
686 |
|
There were several related cases, all because the tests for doing a table |
687 |
|
lookup were testing for characters less than 127 instead of 255. |
688 |
|
|
689 |
|
27. If a pattern contains capturing parentheses that are not used in a match, |
690 |
|
their slots in the ovector are set to -1. For those that are higher than |
691 |
|
any matched groups, this happens at the end of processing. In the case when |
692 |
|
there were back references that the ovector was too small to contain |
693 |
|
(causing temporary malloc'd memory to be used during matching), and the |
694 |
|
highest capturing number was not used, memory off the end of the ovector |
695 |
|
was incorrectly being set to -1. (It was using the size of the temporary |
696 |
|
memory instead of the true size.) |
697 |
|
|
698 |
|
28. To catch bugs like 27 using valgrind, when pcretest is asked to specify an |
699 |
|
ovector size, it uses memory at the end of the block that it has got. |
700 |
|
|
701 |
|
29. Check for an overlong MARK name and give an error at compile time. The |
702 |
|
limit is 255 for the 8-bit library and 65535 for the 16-bit library. |
703 |
|
|
704 |
|
30. JIT compiler update. |
705 |
|
|
706 |
|
31. JIT is now supported on jailbroken iOS devices. Thanks for Ruiger |
707 |
|
Rill for the patch. |
708 |
|
|
709 |
|
32. Put spaces around SLJIT_PRINT_D in the JIT compiler. Required by CXX11. |
710 |
|
|
711 |
|
33. Variable renamings in the PCRE-JIT compiler. No functionality change. |
712 |
|
|
713 |
|
34. Fixed typos in pcregrep: in two places there was SUPPORT_LIBZ2 instead of |
714 |
|
SUPPORT_LIBBZ2. This caused a build problem when bzip2 but not gzip (zlib) |
715 |
|
was enabled. |
716 |
|
|
717 |
|
35. Improve JIT code generation for greedy plus quantifier. |
718 |
|
|
719 |
|
36. When /((?:a?)*)*c/ or /((?>a?)*)*c/ was matched against "aac", it set group |
720 |
|
1 to "aa" instead of to an empty string. The bug affected repeated groups |
721 |
|
that could potentially match an empty string. |
722 |
|
|
723 |
|
37. Optimizing single character iterators in JIT. |
724 |
|
|
725 |
|
38. Wide characters specified with \uxxxx in JavaScript mode are now subject to |
726 |
|
the same checks as \x{...} characters in non-JavaScript mode. Specifically, |
727 |
|
codepoints that are too big for the mode are faulted, and in a UTF mode, |
728 |
|
disallowed codepoints are also faulted. |
729 |
|
|
730 |
|
39. If PCRE was compiled with UTF support, in three places in the DFA |
731 |
|
matcher there was code that should only have been obeyed in UTF mode, but |
732 |
|
was being obeyed unconditionally. In 8-bit mode this could cause incorrect |
733 |
|
processing when bytes with values greater than 127 were present. In 16-bit |
734 |
|
mode the bug would be provoked by values in the range 0xfc00 to 0xdc00. In |
735 |
|
both cases the values are those that cannot be the first data item in a UTF |
736 |
|
character. The three items that might have provoked this were recursions, |
737 |
|
possessively repeated groups, and atomic groups. |
738 |
|
|
739 |
|
40. Ensure that libpcre is explicitly listed in the link commands for pcretest |
740 |
|
and pcregrep, because some OS require shared objects to be explicitly |
741 |
|
passed to ld, causing the link step to fail if they are not. |
742 |
|
|
743 |
|
41. There were two incorrect #ifdefs in pcre_study.c, meaning that, in 16-bit |
744 |
|
mode, patterns that started with \h* or \R* might be incorrectly matched. |
745 |
|
|
746 |
|
|
747 |
|
Version 8.30 04-February-2012 |
748 |
|
----------------------------- |
749 |
|
|
750 |
|
1. Renamed "isnumber" as "is_a_number" because in some Mac environments this |
751 |
|
name is defined in ctype.h. |
752 |
|
|
753 |
|
2. Fixed a bug in fixed-length calculation for lookbehinds that would show up |
754 |
|
only in quite long subpatterns. |
755 |
|
|
756 |
|
3. Removed the function pcre_info(), which has been obsolete and deprecated |
757 |
|
since it was replaced by pcre_fullinfo() in February 2000. |
758 |
|
|
759 |
|
4. For a non-anchored pattern, if (*SKIP) was given with a name that did not |
760 |
|
match a (*MARK), and the match failed at the start of the subject, a |
761 |
|
reference to memory before the start of the subject could occur. This bug |
762 |
|
was introduced by fix 17 of release 8.21. |
763 |
|
|
764 |
|
5. A reference to an unset group with zero minimum repetition was giving |
765 |
|
totally wrong answers (in non-JavaScript-compatibility mode). For example, |
766 |
|
/(another)?(\1?)test/ matched against "hello world test". This bug was |
767 |
|
introduced in release 8.13. |
768 |
|
|
769 |
|
6. Add support for 16-bit character strings (a large amount of work involving |
770 |
|
many changes and refactorings). |
771 |
|
|
772 |
|
7. RunGrepTest failed on msys because \r\n was replaced by whitespace when the |
773 |
|
command "pattern=`printf 'xxx\r\njkl'`" was run. The pattern is now taken |
774 |
|
from a file. |
775 |
|
|
776 |
|
8. Ovector size of 2 is also supported by JIT based pcre_exec (the ovector size |
777 |
|
rounding is not applied in this particular case). |
778 |
|
|
779 |
|
9. The invalid Unicode surrogate codepoints U+D800 to U+DFFF are now rejected |
780 |
|
if they appear, or are escaped, in patterns. |
781 |
|
|
782 |
|
10. Get rid of a number of -Wunused-but-set-variable warnings. |
783 |
|
|
784 |
|
11. The pattern /(?=(*:x))(q|)/ matches an empty string, and returns the mark |
785 |
|
"x". The similar pattern /(?=(*:x))((*:y)q|)/ did not return a mark at all. |
786 |
|
Oddly, Perl behaves the same way. PCRE has been fixed so that this pattern |
787 |
|
also returns the mark "x". This bug applied to capturing parentheses, |
788 |
|
non-capturing parentheses, and atomic parentheses. It also applied to some |
789 |
|
assertions. |
790 |
|
|
791 |
|
12. Stephen Kelly's patch to CMakeLists.txt allows it to parse the version |
792 |
|
information out of configure.ac instead of relying on pcre.h.generic, which |
793 |
|
is not stored in the repository. |
794 |
|
|
795 |
|
13. Applied Dmitry V. Levin's patch for a more portable method for linking with |
796 |
|
-lreadline. |
797 |
|
|
798 |
|
14. ZH added PCRE_CONFIG_JITTARGET; added its output to pcretest -C. |
799 |
|
|
800 |
|
15. Applied Graycode's patch to put the top-level frame on the stack rather |
801 |
|
than the heap when not using the stack for recursion. This gives a |
802 |
|
performance improvement in many cases when recursion is not deep. |
803 |
|
|
804 |
|
16. Experimental code added to "pcretest -C" to output the stack frame size. |
805 |
|
|
806 |
|
|
807 |
|
Version 8.21 12-Dec-2011 |
808 |
|
------------------------ |
809 |
|
|
810 |
1. Updating the JIT compiler. |
1. Updating the JIT compiler. |
811 |
|
|
812 |
|
2. JIT compiler now supports OP_NCREF, OP_RREF and OP_NRREF. New test cases |
813 |
|
are added as well. |
814 |
|
|
815 |
|
3. Fix cache-flush issue on PowerPC (It is still an experimental JIT port). |
816 |
|
PCRE_EXTRA_TABLES is not suported by JIT, and should be checked before |
817 |
|
calling _pcre_jit_exec. Some extra comments are added. |
818 |
|
|
819 |
|
4. (*MARK) settings inside atomic groups that do not contain any capturing |
820 |
|
parentheses, for example, (?>a(*:m)), were not being passed out. This bug |
821 |
|
was introduced by change 18 for 8.20. |
822 |
|
|
823 |
|
5. Supporting of \x, \U and \u in JavaScript compatibility mode based on the |
824 |
|
ECMA-262 standard. |
825 |
|
|
826 |
|
6. Lookbehinds such as (?<=a{2}b) that contained a fixed repetition were |
827 |
|
erroneously being rejected as "not fixed length" if PCRE_CASELESS was set. |
828 |
|
This bug was probably introduced by change 9 of 8.13. |
829 |
|
|
830 |
|
7. While fixing 6 above, I noticed that a number of other items were being |
831 |
|
incorrectly rejected as "not fixed length". This arose partly because newer |
832 |
|
opcodes had not been added to the fixed-length checking code. I have (a) |
833 |
|
corrected the bug and added tests for these items, and (b) arranged for an |
834 |
|
error to occur if an unknown opcode is encountered while checking for fixed |
835 |
|
length instead of just assuming "not fixed length". The items that were |
836 |
|
rejected were: (*ACCEPT), (*COMMIT), (*FAIL), (*MARK), (*PRUNE), (*SKIP), |
837 |
|
(*THEN), \h, \H, \v, \V, and single character negative classes with fixed |
838 |
|
repetitions, e.g. [^a]{3}, with and without PCRE_CASELESS. |
839 |
|
|
840 |
|
8. A possessively repeated conditional subpattern such as (?(?=c)c|d)++ was |
841 |
|
being incorrectly compiled and would have given unpredicatble results. |
842 |
|
|
843 |
|
9. A possessively repeated subpattern with minimum repeat count greater than |
844 |
|
one behaved incorrectly. For example, (A){2,}+ behaved as if it was |
845 |
|
(A)(A)++ which meant that, after a subsequent mismatch, backtracking into |
846 |
|
the first (A) could occur when it should not. |
847 |
|
|
848 |
|
10. Add a cast and remove a redundant test from the code. |
849 |
|
|
850 |
|
11. JIT should use pcre_malloc/pcre_free for allocation. |
851 |
|
|
852 |
|
12. Updated pcre-config so that it no longer shows -L/usr/lib, which seems |
853 |
|
best practice nowadays, and helps with cross-compiling. (If the exec_prefix |
854 |
|
is anything other than /usr, -L is still shown). |
855 |
|
|
856 |
|
13. In non-UTF-8 mode, \C is now supported in lookbehinds and DFA matching. |
857 |
|
|
858 |
|
14. Perl does not support \N without a following name in a [] class; PCRE now |
859 |
|
also gives an error. |
860 |
|
|
861 |
|
15. If a forward reference was repeated with an upper limit of around 2000, |
862 |
|
it caused the error "internal error: overran compiling workspace". The |
863 |
|
maximum number of forward references (including repeats) was limited by the |
864 |
|
internal workspace, and dependent on the LINK_SIZE. The code has been |
865 |
|
rewritten so that the workspace expands (via pcre_malloc) if necessary, and |
866 |
|
the default depends on LINK_SIZE. There is a new upper limit (for safety) |
867 |
|
of around 200,000 forward references. While doing this, I also speeded up |
868 |
|
the filling in of repeated forward references. |
869 |
|
|
870 |
|
16. A repeated forward reference in a pattern such as (a)(?2){2}(.) was |
871 |
|
incorrectly expecting the subject to contain another "a" after the start. |
872 |
|
|
873 |
|
17. When (*SKIP:name) is activated without a corresponding (*MARK:name) earlier |
874 |
|
in the match, the SKIP should be ignored. This was not happening; instead |
875 |
|
the SKIP was being treated as NOMATCH. For patterns such as |
876 |
|
/A(*MARK:A)A+(*SKIP:B)Z|AAC/ this meant that the AAC branch was never |
877 |
|
tested. |
878 |
|
|
879 |
|
18. The behaviour of (*MARK), (*PRUNE), and (*THEN) has been reworked and is |
880 |
|
now much more compatible with Perl, in particular in cases where the result |
881 |
|
is a non-match for a non-anchored pattern. For example, if |
882 |
|
/b(*:m)f|a(*:n)w/ is matched against "abc", the non-match returns the name |
883 |
|
"m", where previously it did not return a name. A side effect of this |
884 |
|
change is that for partial matches, the last encountered mark name is |
885 |
|
returned, as for non matches. A number of tests that were previously not |
886 |
|
Perl-compatible have been moved into the Perl-compatible test files. The |
887 |
|
refactoring has had the pleasing side effect of removing one argument from |
888 |
|
the match() function, thus reducing its stack requirements. |
889 |
|
|
890 |
|
19. If the /S+ option was used in pcretest to study a pattern using JIT, |
891 |
|
subsequent uses of /S (without +) incorrectly behaved like /S+. |
892 |
|
|
893 |
|
21. Retrieve executable code size support for the JIT compiler and fixing |
894 |
|
some warnings. |
895 |
|
|
896 |
|
22. A caseless match of a UTF-8 character whose other case uses fewer bytes did |
897 |
|
not work when the shorter character appeared right at the end of the |
898 |
|
subject string. |
899 |
|
|
900 |
|
23. Added some (int) casts to non-JIT modules to reduce warnings on 64-bit |
901 |
|
systems. |
902 |
|
|
903 |
|
24. Added PCRE_INFO_JITSIZE to pass on the value from (21) above, and also |
904 |
|
output it when the /M option is used in pcretest. |
905 |
|
|
906 |
|
25. The CheckMan script was not being included in the distribution. Also, added |
907 |
|
an explicit "perl" to run Perl scripts from the PrepareRelease script |
908 |
|
because this is reportedly needed in Windows. |
909 |
|
|
910 |
|
26. If study data was being save in a file and studying had not found a set of |
911 |
|
"starts with" bytes for the pattern, the data written to the file (though |
912 |
|
never used) was taken from uninitialized memory and so caused valgrind to |
913 |
|
complain. |
914 |
|
|
915 |
|
27. Updated RunTest.bat as provided by Sheri Pierce. |
916 |
|
|
917 |
|
28. Fixed a possible uninitialized memory bug in pcre_jit_compile.c. |
918 |
|
|
919 |
|
29. Computation of memory usage for the table of capturing group names was |
920 |
|
giving an unnecessarily large value. |
921 |
|
|
922 |
|
|
923 |
Version 8.20 21-Oct-2011 |
Version 8.20 21-Oct-2011 |
924 |
------------------------ |
------------------------ |
1934 |
7. A pattern that could match an empty string could cause pcregrep to loop; it |
7. A pattern that could match an empty string could cause pcregrep to loop; it |
1935 |
doesn't make sense to accept an empty string match in pcregrep, so I have |
doesn't make sense to accept an empty string match in pcregrep, so I have |
1936 |
locked it out (using PCRE's PCRE_NOTEMPTY option). By experiment, this |
locked it out (using PCRE's PCRE_NOTEMPTY option). By experiment, this |
1937 |
seems to be how GNU grep behaves. |
seems to be how GNU grep behaves. [But see later change 40 for release |
1938 |
|
8.33.] |
1939 |
|
|
1940 |
8. The pattern (?(?=.*b)b|^) was incorrectly compiled as "match must be at |
8. The pattern (?(?=.*b)b|^) was incorrectly compiled as "match must be at |
1941 |
start or after a newline", because the conditional assertion was not being |
start or after a newline", because the conditional assertion was not being |
2178 |
containing () gave an internal compiling error instead of "reference to |
containing () gave an internal compiling error instead of "reference to |
2179 |
non-existent subpattern". Fortunately, when the pattern did exist, the |
non-existent subpattern". Fortunately, when the pattern did exist, the |
2180 |
compiled code was correct. (When scanning forwards to check for the |
compiled code was correct. (When scanning forwards to check for the |
2181 |
existencd of the subpattern, it was treating the data ']' as terminating |
existence of the subpattern, it was treating the data ']' as terminating |
2182 |
the class, so got the count wrong. When actually compiling, the reference |
the class, so got the count wrong. When actually compiling, the reference |
2183 |
was subsequently set up correctly.) |
was subsequently set up correctly.) |
2184 |
|
|