Blame sysdeps/i386/i586/memset.S

Packit 6c4009
/* memset/bzero -- set memory area to CH/0
Packit 6c4009
   Highly optimized version for ix86, x>=5.
Packit 6c4009
   Copyright (C) 1996-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Torbjorn Granlund, <tege@matematik.su.se>
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <sysdep.h>
Packit 6c4009
#include "asm-syntax.h"
Packit 6c4009
Packit 6c4009
#define PARMS	4+4	/* space for 1 saved reg */
Packit 6c4009
#define RTN	PARMS
Packit 6c4009
#define DEST	RTN
Packit 6c4009
#ifdef USE_AS_BZERO
Packit 6c4009
# define LEN	DEST+4
Packit 6c4009
#else
Packit 6c4009
# define CHR	DEST+4
Packit 6c4009
# define LEN	CHR+4
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
        .text
Packit 6c4009
#if defined SHARED && IS_IN (libc) && !defined USE_AS_BZERO
Packit 6c4009
ENTRY (__memset_chk)
Packit 6c4009
	movl	12(%esp), %eax
Packit 6c4009
	cmpl	%eax, 16(%esp)
Packit 6c4009
	jb	HIDDEN_JUMPTARGET (__chk_fail)
Packit 6c4009
END (__memset_chk)
Packit 6c4009
#endif
Packit 6c4009
ENTRY (memset)
Packit 6c4009
Packit 6c4009
	pushl	%edi
Packit 6c4009
	cfi_adjust_cfa_offset (4)
Packit 6c4009
Packit 6c4009
	movl	DEST(%esp), %edi
Packit 6c4009
	cfi_rel_offset (edi, 0)
Packit 6c4009
	movl	LEN(%esp), %edx
Packit 6c4009
#ifdef USE_AS_BZERO
Packit 6c4009
	xorl	%eax, %eax	/* we fill with 0 */
Packit 6c4009
#else
Packit 6c4009
	movb	CHR(%esp), %al
Packit 6c4009
	movb	%al, %ah
Packit 6c4009
	movl	%eax, %ecx
Packit 6c4009
	shll	$16, %eax
Packit 6c4009
	movw	%cx, %ax
Packit 6c4009
#endif
Packit 6c4009
	cld
Packit 6c4009
Packit 6c4009
/* If less than 36 bytes to write, skip tricky code (it wouldn't work).  */
Packit 6c4009
	cmpl	$36, %edx
Packit 6c4009
	movl	%edx, %ecx	/* needed when branch is taken! */
Packit 6c4009
	jl	L(2)
Packit 6c4009
Packit 6c4009
/* First write 0-3 bytes to make the pointer 32-bit aligned.  */
Packit 6c4009
	movl	%edi, %ecx	/* Copy ptr to ecx... */
Packit 6c4009
	negl	%ecx		/* ...and negate that and... */
Packit 6c4009
	andl	$3, %ecx	/* ...mask to get byte count.  */
Packit 6c4009
	subl	%ecx, %edx	/* adjust global byte count */
Packit 6c4009
	rep
Packit 6c4009
	stosb
Packit 6c4009
Packit 6c4009
	subl	$32, %edx	/* offset count for unrolled loop */
Packit 6c4009
	movl	(%edi), %ecx	/* Fetch destination cache line */
Packit 6c4009
Packit 6c4009
	.align	2, 0x90		/* supply 0x90 for broken assemblers */
Packit 6c4009
L(1):	movl	28(%edi), %ecx	/* allocate cache line for destination */
Packit 6c4009
	subl	$32, %edx	/* decr loop count */
Packit 6c4009
	movl	%eax, 0(%edi)	/* store words pairwise */
Packit 6c4009
	movl	%eax, 4(%edi)
Packit 6c4009
	movl	%eax, 8(%edi)
Packit 6c4009
	movl	%eax, 12(%edi)
Packit 6c4009
	movl	%eax, 16(%edi)
Packit 6c4009
	movl	%eax, 20(%edi)
Packit 6c4009
	movl	%eax, 24(%edi)
Packit 6c4009
	movl	%eax, 28(%edi)
Packit 6c4009
	leal	32(%edi), %edi	/* update destination pointer */
Packit 6c4009
	jge	L(1)
Packit 6c4009
Packit 6c4009
	leal	32(%edx), %ecx	/* reset offset count */
Packit 6c4009
Packit 6c4009
/* Write last 0-7 full 32-bit words (up to 8 words if loop was skipped).  */
Packit 6c4009
L(2):	shrl	$2, %ecx	/* convert byte count to longword count */
Packit 6c4009
	rep
Packit 6c4009
	stosl
Packit 6c4009
Packit 6c4009
/* Finally write the last 0-3 bytes.  */
Packit 6c4009
	movl	%edx, %ecx
Packit 6c4009
	andl	$3, %ecx
Packit 6c4009
	rep
Packit 6c4009
	stosb
Packit 6c4009
Packit 6c4009
#ifndef USE_AS_BZERO
Packit 6c4009
	/* Load result (only if used as memset).  */
Packit 6c4009
	movl DEST(%esp), %eax	/* start address of destination is result */
Packit 6c4009
#endif
Packit 6c4009
	popl	%edi
Packit 6c4009
	cfi_adjust_cfa_offset (-4)
Packit 6c4009
	cfi_restore (edi)
Packit 6c4009
Packit 6c4009
	ret
Packit 6c4009
END (memset)
Packit 6c4009
libc_hidden_builtin_def (memset)