blob: 50ea390df7128d6b6cd063e1b6f1839600349537 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Fenghua Yu9599ec02011-01-17 17:39:15 -08002/*
3 * Normally compiler builtins are used, but sometimes the compiler calls out
4 * of line code. Based on asm-i386/string.h.
5 *
6 * This assembly file is re-written from memmove_64.c file.
7 * - Copyright 2011 Fenghua Yu <fenghua.yu@intel.com>
8 */
Fenghua Yu9599ec02011-01-17 17:39:15 -08009#include <linux/linkage.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010010#include <asm/cpufeatures.h>
Juergen Gross5e21a3e2021-03-11 15:23:06 +010011#include <asm/alternative.h>
Al Viro784d5692016-01-11 11:04:34 -050012#include <asm/export.h>
Fenghua Yu9599ec02011-01-17 17:39:15 -080013
14#undef memmove
15
16/*
17 * Implement memmove(). This can handle overlap between src and dst.
18 *
19 * Input:
20 * rdi: dest
21 * rsi: src
22 * rdx: count
23 *
24 * Output:
25 * rax: dest
26 */
Fangrui Song4d6ffa22020-11-02 17:23:58 -080027SYM_FUNC_START_WEAK(memmove)
Jiri Slaby6dcc5622019-10-11 13:51:04 +020028SYM_FUNC_START(__memmove)
Fenghua Yu057e05c2011-05-17 15:29:17 -070029
Fenghua Yu9599ec02011-01-17 17:39:15 -080030 mov %rdi, %rax
Fenghua Yu9599ec02011-01-17 17:39:15 -080031
32 /* Decide forward/backward copy mode */
33 cmp %rdi, %rsi
Fenghua Yu057e05c2011-05-17 15:29:17 -070034 jge .Lmemmove_begin_forward
35 mov %rsi, %r8
36 add %rdx, %r8
37 cmp %rdi, %r8
38 jg 2f
Fenghua Yu9599ec02011-01-17 17:39:15 -080039
Tony Luckf444a5f2019-12-16 13:42:54 -080040 /* FSRM implies ERMS => no length checks, do the copy directly */
Fenghua Yu057e05c2011-05-17 15:29:17 -070041.Lmemmove_begin_forward:
Tony Luckf444a5f2019-12-16 13:42:54 -080042 ALTERNATIVE "cmp $0x20, %rdx; jb 1f", "", X86_FEATURE_FSRM
Peter Zijlstrae463a092021-12-04 14:43:44 +010043 ALTERNATIVE "", __stringify(movq %rdx, %rcx; rep movsb; RET), X86_FEATURE_ERMS
Borislav Petkova77600c2015-02-04 09:11:17 +010044
Fenghua Yu9599ec02011-01-17 17:39:15 -080045 /*
46 * movsq instruction have many startup latency
47 * so we handle small size by general register.
48 */
49 cmp $680, %rdx
50 jb 3f
51 /*
52 * movsq instruction is only good for aligned case.
53 */
54
55 cmpb %dil, %sil
56 je 4f
573:
58 sub $0x20, %rdx
59 /*
Andy Shevchenkobb916ff2013-04-15 12:06:09 +030060 * We gobble 32 bytes forward in each loop.
Fenghua Yu9599ec02011-01-17 17:39:15 -080061 */
625:
63 sub $0x20, %rdx
64 movq 0*8(%rsi), %r11
65 movq 1*8(%rsi), %r10
66 movq 2*8(%rsi), %r9
67 movq 3*8(%rsi), %r8
68 leaq 4*8(%rsi), %rsi
69
70 movq %r11, 0*8(%rdi)
71 movq %r10, 1*8(%rdi)
72 movq %r9, 2*8(%rdi)
73 movq %r8, 3*8(%rdi)
74 leaq 4*8(%rdi), %rdi
75 jae 5b
76 addq $0x20, %rdx
77 jmp 1f
78 /*
79 * Handle data forward by movsq.
80 */
81 .p2align 4
824:
83 movq %rdx, %rcx
84 movq -8(%rsi, %rdx), %r11
85 lea -8(%rdi, %rdx), %r10
86 shrq $3, %rcx
87 rep movsq
88 movq %r11, (%r10)
89 jmp 13f
Fenghua Yu057e05c2011-05-17 15:29:17 -070090.Lmemmove_end_forward:
91
Fenghua Yu9599ec02011-01-17 17:39:15 -080092 /*
93 * Handle data backward by movsq.
94 */
95 .p2align 4
967:
97 movq %rdx, %rcx
98 movq (%rsi), %r11
99 movq %rdi, %r10
100 leaq -8(%rsi, %rdx), %rsi
101 leaq -8(%rdi, %rdx), %rdi
102 shrq $3, %rcx
103 std
104 rep movsq
105 cld
106 movq %r11, (%r10)
107 jmp 13f
108
109 /*
110 * Start to prepare for backward copy.
111 */
112 .p2align 4
1132:
Tony Luckf444a5f2019-12-16 13:42:54 -0800114 cmp $0x20, %rdx
115 jb 1f
Fenghua Yu9599ec02011-01-17 17:39:15 -0800116 cmp $680, %rdx
117 jb 6f
118 cmp %dil, %sil
119 je 7b
1206:
121 /*
122 * Calculate copy position to tail.
123 */
124 addq %rdx, %rsi
125 addq %rdx, %rdi
126 subq $0x20, %rdx
127 /*
Andy Shevchenkobb916ff2013-04-15 12:06:09 +0300128 * We gobble 32 bytes backward in each loop.
Fenghua Yu9599ec02011-01-17 17:39:15 -0800129 */
1308:
131 subq $0x20, %rdx
132 movq -1*8(%rsi), %r11
133 movq -2*8(%rsi), %r10
134 movq -3*8(%rsi), %r9
135 movq -4*8(%rsi), %r8
136 leaq -4*8(%rsi), %rsi
137
138 movq %r11, -1*8(%rdi)
139 movq %r10, -2*8(%rdi)
140 movq %r9, -3*8(%rdi)
141 movq %r8, -4*8(%rdi)
142 leaq -4*8(%rdi), %rdi
143 jae 8b
144 /*
145 * Calculate copy position to head.
146 */
147 addq $0x20, %rdx
148 subq %rdx, %rsi
149 subq %rdx, %rdi
1501:
151 cmpq $16, %rdx
152 jb 9f
153 /*
154 * Move data from 16 bytes to 31 bytes.
155 */
156 movq 0*8(%rsi), %r11
157 movq 1*8(%rsi), %r10
158 movq -2*8(%rsi, %rdx), %r9
159 movq -1*8(%rsi, %rdx), %r8
160 movq %r11, 0*8(%rdi)
161 movq %r10, 1*8(%rdi)
162 movq %r9, -2*8(%rdi, %rdx)
163 movq %r8, -1*8(%rdi, %rdx)
164 jmp 13f
165 .p2align 4
1669:
167 cmpq $8, %rdx
168 jb 10f
169 /*
170 * Move data from 8 bytes to 15 bytes.
171 */
172 movq 0*8(%rsi), %r11
173 movq -1*8(%rsi, %rdx), %r10
174 movq %r11, 0*8(%rdi)
175 movq %r10, -1*8(%rdi, %rdx)
176 jmp 13f
17710:
178 cmpq $4, %rdx
179 jb 11f
180 /*
181 * Move data from 4 bytes to 7 bytes.
182 */
183 movl (%rsi), %r11d
184 movl -4(%rsi, %rdx), %r10d
185 movl %r11d, (%rdi)
186 movl %r10d, -4(%rdi, %rdx)
187 jmp 13f
18811:
189 cmp $2, %rdx
190 jb 12f
191 /*
192 * Move data from 2 bytes to 3 bytes.
193 */
194 movw (%rsi), %r11w
195 movw -2(%rsi, %rdx), %r10w
196 movw %r11w, (%rdi)
197 movw %r10w, -2(%rdi, %rdx)
198 jmp 13f
19912:
200 cmp $1, %rdx
201 jb 13f
202 /*
203 * Move data for 1 byte.
204 */
205 movb (%rsi), %r11b
206 movb %r11b, (%rdi)
20713:
Peter Zijlstraf94909c2021-12-04 14:43:40 +0100208 RET
Jiri Slaby6dcc5622019-10-11 13:51:04 +0200209SYM_FUNC_END(__memmove)
Jiri Slabye9b9d022019-10-11 13:50:49 +0200210SYM_FUNC_END_ALIAS(memmove)
Al Viro784d5692016-01-11 11:04:34 -0500211EXPORT_SYMBOL(__memmove)
212EXPORT_SYMBOL(memmove)