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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * x86 feature check
3 *
4 * Copyright (C) 2013 Intel Corporation. All rights reserved.
5 * Author:
6 * Jim Kukunas
7 *
8 * For conditions of distribution and use, see copyright notice in zlib.h
9 */
10
11 #include "x86.h"
12
13 int x86_cpu_has_sse2;
14 int x86_cpu_has_sse42;
15 int x86_cpu_has_pclmulqdq;
16
17 void x86_check_features(void)
18 {
19 unsigned eax, ebx, ecx, edx;
20
21 eax = 1;
22 __asm__ __volatile__ (
23 #ifdef X86
24 "xchg %%ebx, %1\n\t"
25 #endif
26 "cpuid\n\t"
27 #ifdef X86
28 "xchg %1, %%ebx\n\t"
29 : "+a" (eax), "=S" (ebx), "=c" (ecx), "=d" (edx)
30 #else
31 : "+a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
32 #endif
33 );
34
35 x86_cpu_has_sse2 = edx & 0x4000000;
36 x86_cpu_has_sse42= ecx & 0x100000;
37 x86_cpu_has_pclmulqdq = ecx & 0x2;
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698