repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
14 lines
318 B
C
14 lines
318 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
MEMCPY_FN(memcpy_orig,
|
|
"x86-64-unrolled",
|
|
"unrolled memcpy() in arch/x86/lib/memcpy_64.S")
|
|
|
|
MEMCPY_FN(__memcpy,
|
|
"x86-64-movsq",
|
|
"movsq-based memcpy() in arch/x86/lib/memcpy_64.S")
|
|
|
|
MEMCPY_FN(memcpy_erms,
|
|
"x86-64-movsb",
|
|
"movsb-based memcpy() in arch/x86/lib/memcpy_64.S")
|