blob: b8012532e465679a98b3ff61bd757e72fa6e70ab [file] [log] [blame]
Richard Henderson88ca8e82016-08-29 11:46:12 -07001/*
2 * Simple C functions to supplement the C library
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "qemu/osdep.h"
Richard Henderson88ca8e82016-08-29 11:46:12 -070025#include "qemu/cutils.h"
Richard Henderson5e33a872016-08-29 11:46:15 -070026#include "qemu/bswap.h"
Richard Henderson88ca8e82016-08-29 11:46:12 -070027
Richard Henderson5e33a872016-08-29 11:46:15 -070028static bool
29buffer_zero_int(const void *buf, size_t len)
30{
31 if (unlikely(len < 8)) {
32 /* For a very small buffer, simply accumulate all the bytes. */
33 const unsigned char *p = buf;
34 const unsigned char *e = buf + len;
35 unsigned char t = 0;
36
37 do {
38 t |= *p++;
39 } while (p < e);
40
41 return t == 0;
42 } else {
43 /* Otherwise, use the unaligned memory access functions to
44 handle the beginning and end of the buffer, with a couple
45 of loops handling the middle aligned section. */
46 uint64_t t = ldq_he_p(buf);
47 const uint64_t *p = (uint64_t *)(((uintptr_t)buf + 8) & -8);
48 const uint64_t *e = (uint64_t *)(((uintptr_t)buf + len) & -8);
49
50 for (; p + 8 <= e; p += 8) {
51 __builtin_prefetch(p + 8);
52 if (t) {
53 return false;
54 }
55 t = p[0] | p[1] | p[2] | p[3] | p[4] | p[5] | p[6] | p[7];
56 }
57 while (p < e) {
58 t |= *p++;
59 }
60 t |= ldq_he_p(buf + len - 8);
61
62 return t == 0;
63 }
64}
65
Robert Hoo27f08ea2020-02-29 20:34:35 +080066#if defined(CONFIG_AVX512F_OPT) || defined(CONFIG_AVX2_OPT) || defined(__SSE2__)
Richard Henderson5e33a872016-08-29 11:46:15 -070067/* Do not use push_options pragmas unnecessarily, because clang
68 * does not support them.
69 */
Robert Hoo27f08ea2020-02-29 20:34:35 +080070#if defined(CONFIG_AVX512F_OPT) || defined(CONFIG_AVX2_OPT)
Richard Henderson5e33a872016-08-29 11:46:15 -070071#pragma GCC push_options
72#pragma GCC target("sse2")
73#endif
Richard Henderson88ca8e82016-08-29 11:46:12 -070074#include <emmintrin.h>
Richard Hendersond9911d12016-09-13 13:57:19 -070075
76/* Note that each of these vectorized functions require len >= 64. */
77
78static bool
79buffer_zero_sse2(const void *buf, size_t len)
80{
81 __m128i t = _mm_loadu_si128(buf);
82 __m128i *p = (__m128i *)(((uintptr_t)buf + 5 * 16) & -16);
83 __m128i *e = (__m128i *)(((uintptr_t)buf + len) & -16);
84 __m128i zero = _mm_setzero_si128();
85
86 /* Loop over 16-byte aligned blocks of 64. */
87 while (likely(p <= e)) {
88 __builtin_prefetch(p);
89 t = _mm_cmpeq_epi8(t, zero);
90 if (unlikely(_mm_movemask_epi8(t) != 0xFFFF)) {
91 return false;
92 }
93 t = p[-4] | p[-3] | p[-2] | p[-1];
94 p += 4;
95 }
96
97 /* Finish the aligned tail. */
98 t |= e[-3];
99 t |= e[-2];
100 t |= e[-1];
101
102 /* Finish the unaligned tail. */
103 t |= _mm_loadu_si128(buf + len - 16);
104
105 return _mm_movemask_epi8(_mm_cmpeq_epi8(t, zero)) == 0xFFFF;
106}
Robert Hoo27f08ea2020-02-29 20:34:35 +0800107#if defined(CONFIG_AVX512F_OPT) || defined(CONFIG_AVX2_OPT)
Richard Henderson5e33a872016-08-29 11:46:15 -0700108#pragma GCC pop_options
Richard Henderson88ca8e82016-08-29 11:46:12 -0700109#endif
110
Richard Henderson5e33a872016-08-29 11:46:15 -0700111#ifdef CONFIG_AVX2_OPT
Richard Hendersond9911d12016-09-13 13:57:19 -0700112/* Note that due to restrictions/bugs wrt __builtin functions in gcc <= 4.8,
113 * the includes have to be within the corresponding push_options region, and
114 * therefore the regions themselves have to be ordered with increasing ISA.
115 */
Richard Henderson88ca8e82016-08-29 11:46:12 -0700116#pragma GCC push_options
Paolo Bonzini86444f02016-09-13 17:04:52 +0200117#pragma GCC target("sse4")
118#include <smmintrin.h>
Paolo Bonzini86444f02016-09-13 17:04:52 +0200119
Richard Hendersond9911d12016-09-13 13:57:19 -0700120static bool
121buffer_zero_sse4(const void *buf, size_t len)
122{
123 __m128i t = _mm_loadu_si128(buf);
124 __m128i *p = (__m128i *)(((uintptr_t)buf + 5 * 16) & -16);
125 __m128i *e = (__m128i *)(((uintptr_t)buf + len) & -16);
126
127 /* Loop over 16-byte aligned blocks of 64. */
128 while (likely(p <= e)) {
129 __builtin_prefetch(p);
130 if (unlikely(!_mm_testz_si128(t, t))) {
131 return false;
132 }
133 t = p[-4] | p[-3] | p[-2] | p[-1];
134 p += 4;
135 }
136
137 /* Finish the aligned tail. */
138 t |= e[-3];
139 t |= e[-2];
140 t |= e[-1];
141
142 /* Finish the unaligned tail. */
143 t |= _mm_loadu_si128(buf + len - 16);
144
145 return _mm_testz_si128(t, t);
146}
147
148#pragma GCC pop_options
Paolo Bonzini86444f02016-09-13 17:04:52 +0200149#pragma GCC push_options
Richard Henderson88ca8e82016-08-29 11:46:12 -0700150#pragma GCC target("avx2")
Richard Henderson88ca8e82016-08-29 11:46:12 -0700151#include <immintrin.h>
Richard Hendersond9911d12016-09-13 13:57:19 -0700152
153static bool
154buffer_zero_avx2(const void *buf, size_t len)
155{
156 /* Begin with an unaligned head of 32 bytes. */
157 __m256i t = _mm256_loadu_si256(buf);
158 __m256i *p = (__m256i *)(((uintptr_t)buf + 5 * 32) & -32);
159 __m256i *e = (__m256i *)(((uintptr_t)buf + len) & -32);
160
161 if (likely(p <= e)) {
162 /* Loop over 32-byte aligned blocks of 128. */
163 do {
164 __builtin_prefetch(p);
165 if (unlikely(!_mm256_testz_si256(t, t))) {
166 return false;
167 }
168 t = p[-4] | p[-3] | p[-2] | p[-1];
169 p += 4;
170 } while (p <= e);
171 } else {
172 t |= _mm256_loadu_si256(buf + 32);
173 if (len <= 128) {
174 goto last2;
175 }
176 }
177
178 /* Finish the last block of 128 unaligned. */
179 t |= _mm256_loadu_si256(buf + len - 4 * 32);
180 t |= _mm256_loadu_si256(buf + len - 3 * 32);
181 last2:
182 t |= _mm256_loadu_si256(buf + len - 2 * 32);
183 t |= _mm256_loadu_si256(buf + len - 1 * 32);
184
185 return _mm256_testz_si256(t, t);
186}
Richard Henderson88ca8e82016-08-29 11:46:12 -0700187#pragma GCC pop_options
Richard Hendersond9911d12016-09-13 13:57:19 -0700188#endif /* CONFIG_AVX2_OPT */
189
Robert Hoo27f08ea2020-02-29 20:34:35 +0800190#ifdef CONFIG_AVX512F_OPT
191#pragma GCC push_options
192#pragma GCC target("avx512f")
193#include <immintrin.h>
194
195static bool
196buffer_zero_avx512(const void *buf, size_t len)
197{
198 /* Begin with an unaligned head of 64 bytes. */
199 __m512i t = _mm512_loadu_si512(buf);
200 __m512i *p = (__m512i *)(((uintptr_t)buf + 5 * 64) & -64);
201 __m512i *e = (__m512i *)(((uintptr_t)buf + len) & -64);
202
203 /* Loop over 64-byte aligned blocks of 256. */
204 while (p <= e) {
205 __builtin_prefetch(p);
206 if (unlikely(_mm512_test_epi64_mask(t, t))) {
207 return false;
208 }
209 t = p[-4] | p[-3] | p[-2] | p[-1];
210 p += 4;
211 }
212
213 t |= _mm512_loadu_si512(buf + len - 4 * 64);
214 t |= _mm512_loadu_si512(buf + len - 3 * 64);
215 t |= _mm512_loadu_si512(buf + len - 2 * 64);
216 t |= _mm512_loadu_si512(buf + len - 1 * 64);
217
218 return !_mm512_test_epi64_mask(t, t);
219
220}
221#pragma GCC pop_options
222#endif
223
224
Richard Hendersond9911d12016-09-13 13:57:19 -0700225/* Note that for test_buffer_is_zero_next_accel, the most preferred
226 * ISA must have the least significant bit.
227 */
Robert Hoo27f08ea2020-02-29 20:34:35 +0800228#define CACHE_AVX512F 1
229#define CACHE_AVX2 2
230#define CACHE_SSE4 4
231#define CACHE_SSE2 8
Richard Hendersond9911d12016-09-13 13:57:19 -0700232
233/* Make sure that these variables are appropriately initialized when
234 * SSE2 is enabled on the compiler command-line, but the compiler is
Richard Henderson5dd89902017-07-18 18:40:18 -1000235 * too old to support CONFIG_AVX2_OPT.
Richard Hendersond9911d12016-09-13 13:57:19 -0700236 */
Robert Hoo27f08ea2020-02-29 20:34:35 +0800237#if defined(CONFIG_AVX512F_OPT) || defined(CONFIG_AVX2_OPT)
Richard Hendersond9911d12016-09-13 13:57:19 -0700238# define INIT_CACHE 0
239# define INIT_ACCEL buffer_zero_int
240#else
241# ifndef __SSE2__
242# error "ISA selection confusion"
243# endif
244# define INIT_CACHE CACHE_SSE2
245# define INIT_ACCEL buffer_zero_sse2
Richard Henderson5e33a872016-08-29 11:46:15 -0700246#endif
247
Richard Hendersond9911d12016-09-13 13:57:19 -0700248static unsigned cpuid_cache = INIT_CACHE;
249static bool (*buffer_accel)(const void *, size_t) = INIT_ACCEL;
Robert Hoo27f08ea2020-02-29 20:34:35 +0800250static int length_to_accel = 64;
Richard Henderson5e33a872016-08-29 11:46:15 -0700251
Richard Hendersond9911d12016-09-13 13:57:19 -0700252static void init_accel(unsigned cache)
253{
254 bool (*fn)(const void *, size_t) = buffer_zero_int;
255 if (cache & CACHE_SSE2) {
256 fn = buffer_zero_sse2;
Robert Hoob87c99d2020-03-25 14:50:20 +0800257 length_to_accel = 64;
Richard Hendersond9911d12016-09-13 13:57:19 -0700258 }
259#ifdef CONFIG_AVX2_OPT
260 if (cache & CACHE_SSE4) {
261 fn = buffer_zero_sse4;
Robert Hoob87c99d2020-03-25 14:50:20 +0800262 length_to_accel = 64;
Richard Hendersond9911d12016-09-13 13:57:19 -0700263 }
264 if (cache & CACHE_AVX2) {
265 fn = buffer_zero_avx2;
Robert Hoob87c99d2020-03-25 14:50:20 +0800266 length_to_accel = 64;
Richard Hendersond9911d12016-09-13 13:57:19 -0700267 }
268#endif
Robert Hoo27f08ea2020-02-29 20:34:35 +0800269#ifdef CONFIG_AVX512F_OPT
270 if (cache & CACHE_AVX512F) {
271 fn = buffer_zero_avx512;
272 length_to_accel = 256;
273 }
274#endif
Richard Hendersond9911d12016-09-13 13:57:19 -0700275 buffer_accel = fn;
276}
Richard Henderson5e33a872016-08-29 11:46:15 -0700277
Robert Hoo27f08ea2020-02-29 20:34:35 +0800278#if defined(CONFIG_AVX512F_OPT) || defined(CONFIG_AVX2_OPT)
Richard Henderson5dd89902017-07-18 18:40:18 -1000279#include "qemu/cpuid.h"
280
Richard Henderson5e33a872016-08-29 11:46:15 -0700281static void __attribute__((constructor)) init_cpuid_cache(void)
Richard Henderson88ca8e82016-08-29 11:46:12 -0700282{
Richard Henderson5e33a872016-08-29 11:46:15 -0700283 int max = __get_cpuid_max(0, NULL);
284 int a, b, c, d;
285 unsigned cache = 0;
286
287 if (max >= 1) {
288 __cpuid(1, a, b, c, d);
289 if (d & bit_SSE2) {
290 cache |= CACHE_SSE2;
291 }
Richard Henderson5e33a872016-08-29 11:46:15 -0700292 if (c & bit_SSE4_1) {
293 cache |= CACHE_SSE4;
294 }
295
296 /* We must check that AVX is not just available, but usable. */
Richard Hendersond9911d12016-09-13 13:57:19 -0700297 if ((c & bit_OSXSAVE) && (c & bit_AVX) && max >= 7) {
298 int bv;
299 __asm("xgetbv" : "=a"(bv), "=d"(d) : "c"(0));
300 __cpuid_count(7, 0, a, b, c, d);
Robert Hoo27f08ea2020-02-29 20:34:35 +0800301 if ((bv & 0x6) == 0x6 && (b & bit_AVX2)) {
Richard Hendersond9911d12016-09-13 13:57:19 -0700302 cache |= CACHE_AVX2;
Richard Henderson5e33a872016-08-29 11:46:15 -0700303 }
Robert Hoo27f08ea2020-02-29 20:34:35 +0800304 /* 0xe6:
305 * XCR0[7:5] = 111b (OPMASK state, upper 256-bit of ZMM0-ZMM15
306 * and ZMM16-ZMM31 state are enabled by OS)
307 * XCR0[2:1] = 11b (XMM state and YMM state are enabled by OS)
308 */
309 if ((bv & 0xe6) == 0xe6 && (b & bit_AVX512F)) {
310 cache |= CACHE_AVX512F;
311 }
Richard Henderson5e33a872016-08-29 11:46:15 -0700312 }
Richard Henderson5e33a872016-08-29 11:46:15 -0700313 }
314 cpuid_cache = cache;
Richard Hendersond9911d12016-09-13 13:57:19 -0700315 init_accel(cache);
Richard Henderson88ca8e82016-08-29 11:46:12 -0700316}
Richard Hendersond9911d12016-09-13 13:57:19 -0700317#endif /* CONFIG_AVX2_OPT */
Richard Henderson88ca8e82016-08-29 11:46:12 -0700318
Richard Hendersonefad6682016-08-29 11:46:16 -0700319bool test_buffer_is_zero_next_accel(void)
320{
321 /* If no bits set, we just tested buffer_zero_int, and there
322 are no more acceleration options to test. */
323 if (cpuid_cache == 0) {
324 return false;
325 }
326 /* Disable the accelerator we used before and select a new one. */
327 cpuid_cache &= cpuid_cache - 1;
Richard Hendersond9911d12016-09-13 13:57:19 -0700328 init_accel(cpuid_cache);
Richard Hendersonefad6682016-08-29 11:46:16 -0700329 return true;
330}
331
Richard Henderson5e33a872016-08-29 11:46:15 -0700332static bool select_accel_fn(const void *buf, size_t len)
Richard Henderson88ca8e82016-08-29 11:46:12 -0700333{
Robert Hoo27f08ea2020-02-29 20:34:35 +0800334 if (likely(len >= length_to_accel)) {
Richard Hendersond9911d12016-09-13 13:57:19 -0700335 return buffer_accel(buf, len);
Richard Henderson5e33a872016-08-29 11:46:15 -0700336 }
337 return buffer_zero_int(buf, len);
Richard Henderson88ca8e82016-08-29 11:46:12 -0700338}
Richard Henderson5e33a872016-08-29 11:46:15 -0700339
Richard Henderson5e33a872016-08-29 11:46:15 -0700340#else
341#define select_accel_fn buffer_zero_int
Richard Hendersonefad6682016-08-29 11:46:16 -0700342bool test_buffer_is_zero_next_accel(void)
343{
344 return false;
345}
346#endif
347
Richard Henderson88ca8e82016-08-29 11:46:12 -0700348/*
349 * Checks if a buffer is all zeroes
Richard Henderson88ca8e82016-08-29 11:46:12 -0700350 */
351bool buffer_is_zero(const void *buf, size_t len)
352{
Richard Henderson5e33a872016-08-29 11:46:15 -0700353 if (unlikely(len == 0)) {
354 return true;
Richard Henderson88ca8e82016-08-29 11:46:12 -0700355 }
356
Richard Henderson083d0122016-08-29 11:46:17 -0700357 /* Fetch the beginning of the buffer while we select the accelerator. */
358 __builtin_prefetch(buf);
359
Richard Henderson5e33a872016-08-29 11:46:15 -0700360 /* Use an optimized zero check if possible. Note that this also
361 includes a check for an unrolled loop over 64-bit integers. */
362 return select_accel_fn(buf, len);
Richard Henderson88ca8e82016-08-29 11:46:12 -0700363}