1 /* memset/bzero -- set memory area to CH/0
2 Highly optimized version for ix86, x>=5.
3 Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Torbjorn Granlund, <tege@matematik.su.se>
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include "asm-syntax.h"
27 /* BEWARE: `#ifdef memset' means that memset is redefined as `bzero' */
28 #define BZERO_P (defined memset)
30 #define PARMS LINKAGE+4 /* space for 1 saved reg */
32 #define DEST RTN+RTN_SIZE
34 # define LEN DEST+PTR_SIZE
36 # define CHR DEST+PTR_SIZE
41 ENTRY (BP_SYM (memset))
48 CHECK_BOUNDS_BOTH_WIDE (%edi, DEST(%esp), %edx)
50 xorl %eax, %eax /* we fill with 0 */
60 /* If less than 36 bytes to write, skip tricky code (it wouldn't work). */
62 movl %edx, %ecx /* needed when branch is taken! */
65 /* First write 0-3 bytes to make the pointer 32-bit aligned. */
66 movl %edi, %ecx /* Copy ptr to ecx... */
67 negl %ecx /* ...and negate that and... */
68 andl $3, %ecx /* ...mask to get byte count. */
69 subl %ecx, %edx /* adjust global byte count */
73 subl $32, %edx /* offset count for unrolled loop */
74 movl (%edi), %ecx /* Fetch destination cache line */
76 .align 2, 0x90 /* supply 0x90 for broken assemblers */
77 L(1): movl 28(%edi), %ecx /* allocate cache line for destination */
78 subl $32, %edx /* decr loop count */
79 movl %eax, 0(%edi) /* store words pairwise */
87 leal 32(%edi), %edi /* update destination pointer */
90 leal 32(%edx), %ecx /* reset offset count */
92 /* Write last 0-7 full 32-bit words (up to 8 words if loop was skipped). */
93 L(2): shrl $2, %ecx /* convert byte count to longword count */
97 /* Finally write the last 0-3 bytes. */
104 /* Load result (only if used as memset). */
105 movl DEST(%esp), %eax /* start address of destination is result */
106 RETURN_BOUNDED_POINTER (DEST(%esp))
116 END (BP_SYM (memset))