Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 88084a3df1672e131ddc1b4e39eeacfd39864acf authored by Linus Torvalds on 03 July 2022, 22:39:28 UTC
Linux 5.19-rc5
Tip revision: 88084a3
mem-memset-x86-64-asm-def.h
/* 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")
back to top