]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/mips/memset.S
Update.
[thirdparty/glibc.git] / sysdeps / mips / memset.S
CommitLineData
d8a5edc2 1/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
9f70d804
AJ
2 This file is part of the GNU C Library.
3 Contributed by Hartvig Ekner <hartvige@mips.com>, 2002.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
19
20#include <sysdep.h>
21#include <endian.h>
22
23
ee7b7036 24/* void *memset(void *s, int c, size_t n). */
9f70d804
AJ
25
26#if __BYTE_ORDER == __BIG_ENDIAN
27# define SWHI swl /* high part is left in big-endian */
28#else
29# define SWHI swr /* high part is right in little-endian */
30#endif
31
32ENTRY (memset)
33 .set noreorder
34
35 slti t1, a2, 8 # Less than 8?
d8a5edc2 36 bne t1, zero, L(last8)
9f70d804
AJ
37 move v0, a0 # Setup exit value before too late
38
d8a5edc2 39 beq a1, zero, L(ueven) # If zero pattern, no need to extend
9f70d804
AJ
40 andi a1, 0xff # Avoid problems with bogus arguments
41 sll t0, a1, 8
42 or a1, t0
43 sll t0, a1, 16
44 or a1, t0 # a1 is now pattern in full word
45
8f9fb000
AO
46L(ueven):
47 subu t0, zero, a0 # Unaligned address?
9f70d804 48 andi t0, 0x3
d8a5edc2 49 beq t0, zero, L(chkw)
9f70d804
AJ
50 subu a2, t0
51 SWHI a1, 0(a0) # Yes, handle first unaligned part
52 addu a0, t0 # Now both a0 and a2 are updated
53
8f9fb000
AO
54L(chkw):
55 andi t0, a2, 0x7 # Enough left for one loop iteration?
d8a5edc2 56 beq t0, a2, L(chkl)
9f70d804
AJ
57 subu a3, a2, t0
58 addu a3, a0 # a3 is last loop address +1
59 move a2, t0 # a2 is now # of bytes left after loop
8f9fb000
AO
60L(loopw):
61 addiu a0, 8 # Handle 2 words pr. iteration
9f70d804 62 sw a1, -8(a0)
d8a5edc2 63 bne a0, a3, L(loopw)
9f70d804
AJ
64 sw a1, -4(a0)
65
8f9fb000
AO
66L(chkl):
67 andi t0, a2, 0x4 # Check if there is at least a full
d8a5edc2 68 beq t0, zero, L(last8) # word remaining after the loop
9f70d804
AJ
69 subu a2, t0
70 sw a1, 0(a0) # Yes...
71 addiu a0, 4
72
8f9fb000
AO
73L(last8):
74 blez a2, L(exit) # Handle last 8 bytes (if cnt>0)
9f70d804 75 addu a3, a2, a0 # a3 is last address +1
8f9fb000
AO
76L(lst8l):
77 addiu a0, 1
d8a5edc2 78 bne a0, a3, L(lst8l)
9f70d804 79 sb a1, -1(a0)
8f9fb000
AO
80L(exit):
81 j ra # Bye, bye
9f70d804
AJ
82 nop
83
84 .set reorder
85END (memset)
85dd1003 86libc_hidden_builtin_def (memset)