Index: third_party/zlib/README.chromium |
diff --git a/third_party/zlib/README.chromium b/third_party/zlib/README.chromium |
index c9e06bae394c4334af5ac0874a6f2ebd467271e4..8c031a01a99d8565778bd97e3f49a36b7b589dbd 100644 |
--- a/third_party/zlib/README.chromium |
+++ b/third_party/zlib/README.chromium |
@@ -19,3 +19,17 @@ The 'google.patch' file represents our changes from the original zlib-1.2.5. |
A more significant change to support mixed-source data compression. See |
crbug.com/139744 and mixed-source.patch. |
+ |
+Integrated Intel SIMD optimisations from: https://github.com/jtkukunas/zlib/ |
+and modified to accomodate the older version and existing changes in tree. |
+ |
+This introduces new files: simd_stub.c, crc_folding.c, fill_window_sse.c and |
+x86.[ch]. All but the latter are built into a static library to allow the |
+compiler to use the desired instructions only when valid. |
+ |
+Other changes to accomodate: |
+- fill_window() implementation calls into _sse() variant when supported and the |
+ original implementation renamed to _c() |
+- read_buf was moved from local to ZLIB_INTERNAL for fill_window_sse.c to use |
+- INSERT_STRING macro was made a function, insert_string() and an implementation using CRC instruction added |
+- some crc funcionality moved into crc32.c |