blob: f3f0d3f1943560de78245cd7c709fb0b3715c826 [file] [log] [blame]
Damjan Marionf1213b82016-03-13 02:22:06 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*-
16 * BSD LICENSE
17 *
18 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
19 * All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 *
25 * * Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * * Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in
29 * the documentation and/or other materials provided with the
30 * distribution.
31 * * Neither the name of Intel Corporation nor the names of its
32 * contributors may be used to endorse or promote products derived
33 * from this software without specific prior written permission.
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46 */
47
Damjan Marionfad3fb32017-12-14 09:30:11 +010048#ifndef included_clib_memcpy_avx2_h
49#define included_clib_memcpy_avx2_h
Damjan Marionf1213b82016-03-13 02:22:06 +010050
51#include <stdint.h>
52#include <x86intrin.h>
Benoît Gannea66971f2020-04-24 10:44:40 +020053#include <vppinfra/warnings.h>
54
55/* *INDENT-OFF* */
56WARN_OFF (stringop-overflow)
57/* *INDENT-ON* */
Damjan Marionf1213b82016-03-13 02:22:06 +010058
59static inline void
Dave Barachc3799992016-08-15 11:12:27 -040060clib_mov16 (u8 * dst, const u8 * src)
Damjan Marionf1213b82016-03-13 02:22:06 +010061{
Damjan Marion31e59d92017-07-05 18:15:08 +020062 __m128i xmm0;
63
64 xmm0 = _mm_loadu_si128 ((const __m128i *) src);
65 _mm_storeu_si128 ((__m128i *) dst, xmm0);
Damjan Marionf1213b82016-03-13 02:22:06 +010066}
67
68static inline void
Dave Barachc3799992016-08-15 11:12:27 -040069clib_mov32 (u8 * dst, const u8 * src)
Damjan Marionf1213b82016-03-13 02:22:06 +010070{
Damjan Marion31e59d92017-07-05 18:15:08 +020071 __m256i ymm0;
72
73 ymm0 = _mm256_loadu_si256 ((const __m256i *) src);
74 _mm256_storeu_si256 ((__m256i *) dst, ymm0);
Damjan Marionf1213b82016-03-13 02:22:06 +010075}
76
77static inline void
Dave Barachc3799992016-08-15 11:12:27 -040078clib_mov64 (u8 * dst, const u8 * src)
Damjan Marionf1213b82016-03-13 02:22:06 +010079{
Dave Barachc3799992016-08-15 11:12:27 -040080 clib_mov32 ((u8 *) dst + 0 * 32, (const u8 *) src + 0 * 32);
81 clib_mov32 ((u8 *) dst + 1 * 32, (const u8 *) src + 1 * 32);
Damjan Marionf1213b82016-03-13 02:22:06 +010082}
83
84static inline void
Dave Barachc3799992016-08-15 11:12:27 -040085clib_mov128 (u8 * dst, const u8 * src)
Damjan Marionf1213b82016-03-13 02:22:06 +010086{
Dave Barachc3799992016-08-15 11:12:27 -040087 clib_mov64 ((u8 *) dst + 0 * 64, (const u8 *) src + 0 * 64);
88 clib_mov64 ((u8 *) dst + 1 * 64, (const u8 *) src + 1 * 64);
Damjan Marionf1213b82016-03-13 02:22:06 +010089}
90
91static inline void
Damjan Marionfad3fb32017-12-14 09:30:11 +010092clib_mov128blocks (u8 * dst, const u8 * src, size_t n)
Damjan Marionf1213b82016-03-13 02:22:06 +010093{
Damjan Marionfad3fb32017-12-14 09:30:11 +010094 __m256i ymm0, ymm1, ymm2, ymm3;
Damjan Marionf1213b82016-03-13 02:22:06 +010095
Damjan Marionfad3fb32017-12-14 09:30:11 +010096 while (n >= 128)
Dave Barachc3799992016-08-15 11:12:27 -040097 {
98 ymm0 =
99 _mm256_loadu_si256 ((const __m256i *) ((const u8 *) src + 0 * 32));
Damjan Marionfad3fb32017-12-14 09:30:11 +0100100 n -= 128;
Dave Barachc3799992016-08-15 11:12:27 -0400101 ymm1 =
102 _mm256_loadu_si256 ((const __m256i *) ((const u8 *) src + 1 * 32));
103 ymm2 =
104 _mm256_loadu_si256 ((const __m256i *) ((const u8 *) src + 2 * 32));
105 ymm3 =
106 _mm256_loadu_si256 ((const __m256i *) ((const u8 *) src + 3 * 32));
Damjan Marionfad3fb32017-12-14 09:30:11 +0100107 src = (const u8 *) src + 128;
Dave Barachc3799992016-08-15 11:12:27 -0400108 _mm256_storeu_si256 ((__m256i *) ((u8 *) dst + 0 * 32), ymm0);
109 _mm256_storeu_si256 ((__m256i *) ((u8 *) dst + 1 * 32), ymm1);
110 _mm256_storeu_si256 ((__m256i *) ((u8 *) dst + 2 * 32), ymm2);
111 _mm256_storeu_si256 ((__m256i *) ((u8 *) dst + 3 * 32), ymm3);
Damjan Marionfad3fb32017-12-14 09:30:11 +0100112 dst = (u8 *) dst + 128;
Dave Barachc3799992016-08-15 11:12:27 -0400113 }
Damjan Marionf1213b82016-03-13 02:22:06 +0100114}
115
116static inline void *
Dave Barach178cf492018-11-13 16:34:13 -0500117clib_memcpy_fast (void *dst, const void *src, size_t n)
Damjan Marionf1213b82016-03-13 02:22:06 +0100118{
Dave Barachc3799992016-08-15 11:12:27 -0400119 uword dstu = (uword) dst;
120 uword srcu = (uword) src;
121 void *ret = dst;
122 size_t dstofss;
123 size_t bits;
Damjan Marionf1213b82016-03-13 02:22:06 +0100124
Damjan Marionfad3fb32017-12-14 09:30:11 +0100125 /**
126 * Copy less than 16 bytes
127 */
Dave Barachc3799992016-08-15 11:12:27 -0400128 if (n < 16)
129 {
130 if (n & 0x01)
131 {
132 *(u8 *) dstu = *(const u8 *) srcu;
133 srcu = (uword) ((const u8 *) srcu + 1);
134 dstu = (uword) ((u8 *) dstu + 1);
135 }
136 if (n & 0x02)
137 {
Damjan Marionfad3fb32017-12-14 09:30:11 +0100138 *(u16 *) dstu = *(const u16 *) srcu;
139 srcu = (uword) ((const u16 *) srcu + 1);
140 dstu = (uword) ((u16 *) dstu + 1);
Dave Barachc3799992016-08-15 11:12:27 -0400141 }
142 if (n & 0x04)
143 {
Damjan Marionfad3fb32017-12-14 09:30:11 +0100144 *(u32 *) dstu = *(const u32 *) srcu;
145 srcu = (uword) ((const u32 *) srcu + 1);
146 dstu = (uword) ((u32 *) dstu + 1);
Dave Barachc3799992016-08-15 11:12:27 -0400147 }
148 if (n & 0x08)
149 {
Damjan Marionfad3fb32017-12-14 09:30:11 +0100150 *(u64 *) dstu = *(const u64 *) srcu;
Dave Barachc3799992016-08-15 11:12:27 -0400151 }
152 return ret;
153 }
Damjan Marionf1213b82016-03-13 02:22:06 +0100154
Damjan Marionfad3fb32017-12-14 09:30:11 +0100155 /**
156 * Fast way when copy size doesn't exceed 512 bytes
157 */
Dave Barachc3799992016-08-15 11:12:27 -0400158 if (n <= 32)
159 {
160 clib_mov16 ((u8 *) dst, (const u8 *) src);
161 clib_mov16 ((u8 *) dst - 16 + n, (const u8 *) src - 16 + n);
162 return ret;
163 }
Damjan Marionfad3fb32017-12-14 09:30:11 +0100164 if (n <= 48)
165 {
166 clib_mov16 ((u8 *) dst, (const u8 *) src);
167 clib_mov16 ((u8 *) dst + 16, (const u8 *) src + 16);
168 clib_mov16 ((u8 *) dst - 16 + n, (const u8 *) src - 16 + n);
169 return ret;
170 }
Dave Barachc3799992016-08-15 11:12:27 -0400171 if (n <= 64)
172 {
173 clib_mov32 ((u8 *) dst, (const u8 *) src);
174 clib_mov32 ((u8 *) dst - 32 + n, (const u8 *) src - 32 + n);
175 return ret;
176 }
Damjan Marionfad3fb32017-12-14 09:30:11 +0100177 if (n <= 256)
Dave Barachc3799992016-08-15 11:12:27 -0400178 {
Dave Barachc3799992016-08-15 11:12:27 -0400179 if (n >= 128)
180 {
181 n -= 128;
182 clib_mov128 ((u8 *) dst, (const u8 *) src);
183 src = (const u8 *) src + 128;
184 dst = (u8 *) dst + 128;
185 }
Damjan Marionfad3fb32017-12-14 09:30:11 +0100186 COPY_BLOCK_128_BACK31:
Dave Barachc3799992016-08-15 11:12:27 -0400187 if (n >= 64)
188 {
189 n -= 64;
190 clib_mov64 ((u8 *) dst, (const u8 *) src);
191 src = (const u8 *) src + 64;
192 dst = (u8 *) dst + 64;
193 }
Dave Barachc3799992016-08-15 11:12:27 -0400194 if (n > 32)
195 {
196 clib_mov32 ((u8 *) dst, (const u8 *) src);
197 clib_mov32 ((u8 *) dst - 32 + n, (const u8 *) src - 32 + n);
198 return ret;
199 }
200 if (n > 0)
201 {
202 clib_mov32 ((u8 *) dst - 32 + n, (const u8 *) src - 32 + n);
203 }
204 return ret;
205 }
Damjan Marionf1213b82016-03-13 02:22:06 +0100206
Damjan Marionfad3fb32017-12-14 09:30:11 +0100207 /**
208 * Make store aligned when copy size exceeds 256 bytes
209 */
Dave Barachc3799992016-08-15 11:12:27 -0400210 dstofss = (uword) dst & 0x1F;
211 if (dstofss > 0)
212 {
213 dstofss = 32 - dstofss;
214 n -= dstofss;
215 clib_mov32 ((u8 *) dst, (const u8 *) src);
216 src = (const u8 *) src + dstofss;
217 dst = (u8 *) dst + dstofss;
218 }
Damjan Marionf1213b82016-03-13 02:22:06 +0100219
Damjan Marionfad3fb32017-12-14 09:30:11 +0100220 /**
221 * Copy 128-byte blocks.
222 */
223 clib_mov128blocks ((u8 *) dst, (const u8 *) src, n);
Dave Barachc3799992016-08-15 11:12:27 -0400224 bits = n;
Damjan Marionfad3fb32017-12-14 09:30:11 +0100225 n = n & 127;
Dave Barachc3799992016-08-15 11:12:27 -0400226 bits -= n;
227 src = (const u8 *) src + bits;
228 dst = (u8 *) dst + bits;
Damjan Marionf1213b82016-03-13 02:22:06 +0100229
Damjan Marionfad3fb32017-12-14 09:30:11 +0100230 /**
231 * Copy whatever left
232 */
233 goto COPY_BLOCK_128_BACK31;
Damjan Marionf1213b82016-03-13 02:22:06 +0100234}
235
Benoît Gannea66971f2020-04-24 10:44:40 +0200236/* *INDENT-OFF* */
237WARN_ON (stringop-overflow)
238/* *INDENT-ON* */
Damjan Marionf1213b82016-03-13 02:22:06 +0100239
Paul Vinciguerraec11b132018-09-24 05:25:00 -0700240#endif /* included_clib_memcpy_avx2_h */
Damjan Marionf1213b82016-03-13 02:22:06 +0100241
Dave Barachc3799992016-08-15 11:12:27 -0400242
243/*
244 * fd.io coding-style-patch-verification: ON
245 *
246 * Local Variables:
247 * eval: (c-set-style "gnu")
248 * End:
249 */