Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 Name: re2 - an efficient, principled regular expression library | 1 Name: re2 - an efficient, principled regular expression library |
| 2 Short Name: re2 | 2 Short Name: re2 |
| 3 URL: https://github.com/google/re2 | 3 URL: https://github.com/google/re2 |
| 4 Version: 7f91923f3ad4 | 4 Version: dba3349aba83b5588e85e5ecf2b56c97f2d259b7 |
| 5 Date: 2012-06-20 | 5 Date: 2015-12-10 |
| 6 Revision: 100:7f91923f3ad4 | |
| 7 License: BSD 3-Clause | 6 License: BSD 3-Clause |
| 8 License File: LICENSE | 7 License File: LICENSE |
| 9 Security Critical: yes | 8 Security Critical: yes |
| 10 | 9 |
| 11 Description: | 10 Description: |
| 12 RE2 is a fast, safe, thread-friendly alternative to backtracking regular | 11 RE2 is a fast, safe, thread-friendly alternative to backtracking regular |
| 13 expression engines like those used in PCRE, Perl, and Python. | 12 expression engines like those used in PCRE, Perl, and Python. |
| 14 | |
| 15 Local Modifications (to be applied in this order): | |
| 16 - Remove valgrind specific code that exists in chromium already | |
| 17 (patches/remove-valgrind-code.patch) | |
|
tfarina
2015/12/12 13:01:24
base/third_party/dynamic_annotations/dynamic_annot
battre
2015/12/12 13:45:05
All uses of ANNOTATE_ macros have been removed ups
| |
| 18 - Support for Windows (patches/re2-msvc9-chrome.patch) | |
| 19 - Support Android (patches/re2-android.patch) | |
|
tfarina
2015/12/12 13:01:24
OS_ANDROID isn't necessary in util/util.h anymore?
battre
2015/12/12 13:45:05
I fully relied on the trybots here that were happy
| |
| 20 - Remove static initializers (patches/remove-static-initializers.patch) | |
| 21 - Support libcxx (patches/re2-libcxx.patch) | |
|
tfarina
2015/12/12 13:01:24
isn't this necessary now because Android moved fro
battre
2015/12/12 13:45:05
See above. I relied on the trybots.
| |
| 22 https://code.google.com/p/re2/issues/detail?id=76 | |
| 23 - Memory optimization for filtered trees | |
| 24 (patches/re2-memory-optimization.patch) | |
| 25 - Prevent unwanted reports from MemorySanitizer. Note: there's an upstream fix | |
| 26 for this (https://code.google.com/p/re2/issues/detail?id=77) which is rendered | |
| 27 ineffective by patches/remove-valgrind-code.patch | |
| 28 (patches/re2-msan.patch) | |
| 29 - Remove comparisons of this with NULL, merges upstream b92ce81f1e25 | |
| 30 - Let COMPILE_ASSERT use static_assert if available, merges upstream | |
| 31 2225f94df8ec | |
| 32 - Merge upstream cc56ba02d9d2bdafa614ad5ebf564dde287625bb. | |
| 33 - Suppress more unwanted reports from MemorySanitizer. | |
| 34 (patches/sparse-array-valgrind.patch) | |
|
tfarina
2015/12/12 13:01:24
was this upstreamed? really? reilly just did https
battre
2015/12/12 13:45:05
This is really's patch in Chrome: https://coderevi
| |
| OLD | NEW |