Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: third_party/zlib/BUILD.gn

Issue 552123005: Integrate SIMD optimisations for zlib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issues in fallback (non-SIMD) code Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/zlib/README.chromium » ('j') | third_party/zlib/crc32.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/zlib/BUILD.gn
diff --git a/third_party/zlib/BUILD.gn b/third_party/zlib/BUILD.gn
index 9ac85a574fe53f7ef0e754d159909cdeb235b7f9..1bad4082bdda685470b43cac3de2389d30d13e1d 100644
--- a/third_party/zlib/BUILD.gn
+++ b/third_party/zlib/BUILD.gn
@@ -42,6 +42,18 @@ static_library("zlib") {
"zutil.h",
]
+ if (is_linux && (cpu_arch == "x86" || cpu_arch == "x64")) {
+ sources += [ "crc_folding.c",
+ "fill_window_sse.c",
+ "x86.c",
+ "x86.h" ]
+ defines = [ "HAVE_SSE2",
+ "CHECK_SSE2",
+ "USE_SSE4_2_CRC_HASH",
+ "HAVE_PCLMULQDQ" ]
+ cflags = ["-msse2", "-msse4.2", "-mpclmul"]
agl 2014/09/23 21:41:39 These compiler flags allow the compiler to use the
+ }
+
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
« no previous file with comments | « no previous file | third_party/zlib/README.chromium » ('j') | third_party/zlib/crc32.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698