glibc/sysdeps/arm/memset.S

79 lines
1.8 KiB
ArmAsm
Raw Normal View History

/* Copyright (C) 1998-2014 Free Software Foundation, Inc.
1998-03-18 15:29:09 +01:00
This file is part of the GNU C Library.
Contributed by Philip Blundell <philb@gnu.org>
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 06:56:23 +02:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1998-03-18 15:29:09 +01:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 06:56:23 +02:00
Lesser General Public License for more details.
1998-03-18 15:29:09 +01:00
2001-07-06 06:56:23 +02:00
You should have received a copy of the GNU Lesser General Public
2012-03-10 00:56:38 +01:00
License along with the GNU C Library. If not, see
<http://www.gnu.org/licenses/>. */
1998-03-18 15:29:09 +01:00
/* Thumb requires excessive IT insns here. */
#define NO_THUMB
1998-03-18 15:29:09 +01:00
#include <sysdep.h>
.text
.syntax unified
1998-03-18 15:29:09 +01:00
/* void *memset (dstpp, c, len) */
ENTRY(memset)
2003-09-14 21:53:42 +02:00
mov r3, r0
cmp r2, #8
bcc 2f @ less than 8 bytes to move
1998-03-18 15:29:09 +01:00
1:
2003-09-14 21:53:42 +02:00
tst r3, #3 @ aligned yet?
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
strbne r1, [\B], #1
2003-09-14 21:53:42 +02:00
subne r2, r2, #1
1998-03-18 15:29:09 +01:00
bne 1b
2003-09-14 21:53:42 +02:00
and r1, r1, #255 @ clear any sign bits
2003-09-14 21:53:42 +02:00
orr r1, r1, r1, lsl $8
orr r1, r1, r1, lsl $16
mov ip, r1
2003-09-14 21:53:42 +02:00
1998-03-18 15:29:09 +01:00
1:
2003-09-14 21:53:42 +02:00
subs r2, r2, #8
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
stmiacs \B!, {r1, ip} @ store up to 32 bytes per loop iteration
subscs r2, r2, #8
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
stmiacs \B!, {r1, ip}
subscs r2, r2, #8
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
stmiacs \B!, {r1, ip}
subscs r2, r2, #8
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
stmiacs \B!, {r1, ip}
2003-09-14 21:53:42 +02:00
bcs 1b
and r2, r2, #7
1998-03-18 15:29:09 +01:00
2:
2003-09-14 21:53:42 +02:00
subs r2, r2, #1 @ store up to 4 bytes per loop iteration
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
strbcs r1, [\B], #1
subscs r2, r2, #1
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
strbcs r1, [\B], #1
subscs r2, r2, #1
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
strbcs r1, [\B], #1
subscs r2, r2, #1
2013-03-15 17:31:56 +01:00
sfi_breg r3, \
strbcs r1, [\B], #1
2003-09-14 21:53:42 +02:00
bcs 2b
2003-09-14 21:53:42 +02:00
DO_RET(lr)
1998-03-18 15:29:09 +01:00
END(memset)
2003-04-30 00:47:20 +02:00
libc_hidden_builtin_def (memset)