1 /* memset/bzero -- set memory area to CH/0
2 Highly optimized version for ix86, x>=6.
3 Copyright (C) 1999-2015 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
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, see
19 <http://www.gnu.org/licenses/>. */
22 #include "asm-syntax.h"
24 #define PARMS 4+4 /* space for 1 saved reg */
36 #if defined SHARED && IS_IN (libc) && !defined USE_AS_BZERO
37 ENTRY_CHK (__memset_chk)
40 jb HIDDEN_JUMPTARGET (__chk_fail)
41 END_CHK (__memset_chk)
47 cfi_adjust_cfa_offset (4)
51 xorl %eax, %eax /* fill with 0 */
53 movzbl CHR(%esp), %eax
57 cfi_rel_offset (edi, 0)
60 jp 3f /* misaligned at 3, store just one byte below */
61 stosb /* misaligned at 1 or 2, store two bytes */
68 jnz 2f /* was misaligned at 2 or 3, now aligned */
69 stosb /* was misaligned at 1, store third byte */
75 imul $0x01010101, %eax
85 movl DEST(%esp), %eax /* start address of destination is result */
88 cfi_adjust_cfa_offset (-4)
93 libc_hidden_builtin_def (memset)
95 #if defined SHARED && IS_IN (libc) && !defined __memset_chk \
96 && !defined USE_AS_BZERO
97 strong_alias (__memset_chk, __memset_zero_constant_len_parameter)
98 .section .gnu.warning.__memset_zero_constant_len_parameter
99 .string "memset used with constant zero length parameter; this could be due to transposed parameters"