You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
318 B
13 lines
318 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
MEMSET_FN(memset_orig,
|
|
"x86-64-unrolled",
|
|
"unrolled memset() in arch/x86/lib/memset_64.S")
|
|
|
|
MEMSET_FN(__memset,
|
|
"x86-64-stosq",
|
|
"movsq-based memset() in arch/x86/lib/memset_64.S")
|
|
|
|
MEMSET_FN(memset_erms,
|
|
"x86-64-stosb",
|
|
"movsb-based memset() in arch/x86/lib/memset_64.S")
|
|
|