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

Unified Diff: third_party/zlib/x86.c

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
Index: third_party/zlib/x86.c
diff --git a/third_party/zlib/x86.c b/third_party/zlib/x86.c
new file mode 100644
index 0000000000000000000000000000000000000000..097d27964d9455d12994a57aa4c1042a1df51d09
--- /dev/null
+++ b/third_party/zlib/x86.c
@@ -0,0 +1,38 @@
+/*
+ * x86 feature check
+ *
+ * Copyright (C) 2013 Intel Corporation. All rights reserved.
+ * Author:
+ * Jim Kukunas
+ *
+ * For conditions of distribution and use, see copyright notice in zlib.h
+ */
+
+#include "x86.h"
+
+int x86_cpu_has_sse2;
+int x86_cpu_has_sse42;
+int x86_cpu_has_pclmulqdq;
+
+void x86_check_features(void)
+{
+ unsigned eax, ebx, ecx, edx;
+
+ eax = 1;
+ __asm__ __volatile__ (
+#ifdef X86
+ "xchg %%ebx, %1\n\t"
+#endif
+ "cpuid\n\t"
+#ifdef X86
+ "xchg %1, %%ebx\n\t"
+ : "+a" (eax), "=S" (ebx), "=c" (ecx), "=d" (edx)
+#else
+ : "+a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
+#endif
+ );
+
+ x86_cpu_has_sse2 = edx & 0x4000000;
+ x86_cpu_has_sse42= ecx & 0x100000;
+ x86_cpu_has_pclmulqdq = ecx & 0x2;
+}

Powered by Google App Engine
This is Rietveld 408576698