bzero.S revision 1.2.26.1 1 /* $NetBSD: bzero.S,v 1.2.26.1 2014/08/19 23:45:13 tls Exp $ */
2
3 /*-
4 * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by J.T. Conklin.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*-
33 * Copyright (c) 1990 The Regents of the University of California.
34 * All rights reserved.
35 *
36 * This code is derived from software contributed to Berkeley by
37 * the Systems Programming Group of the University of Utah Computer
38 * Science Department.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 * 3. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 */
64
65 #include <machine/asm.h>
66
67 #if defined(LIBC_SCCS) && !defined(lint)
68 #if 0
69 RCSID("from: @(#)bzero.s 5.1 (Berkeley) 5/12/90")
70 #else
71 RCSID("$NetBSD: bzero.S,v 1.2.26.1 2014/08/19 23:45:13 tls Exp $")
72 #endif
73 #endif /* LIBC_SCCS and not lint */
74
75 ENTRY(bzero)
76 movl %d2,-(%sp)
77 movl 8(%sp),%a0 | destination
78 movl 12(%sp),%d1 | count
79
80 clrl %d2
81
82 /*
83 * It isn't worth the overhead of aligning to {long}word boundries
84 * if the string is too short.
85 */
86 cmpl #8,%d1
87 jlt .Lbzbyte
88
89 /* word align */
90 movl %a0,%d0
91 btst #0,%d0 | if (dst & 1)
92 jeq .Lbzalgndw |
93 movb %d2,(%a0)+ | *(char *)dst++ = 0
94 subql #1,%d1 | len--
95 .Lbzalgndw:
96 /* long word align */
97 btst #1,%d0 | if (dst & 2)
98 jeq .Lbzalgndl |
99 movw %d2,(%a0)+ | *(short *)dst++ = 0
100 subql #2,%d1 | len -= 2
101 .Lbzalgndl:
102 /* zero by 8 longwords */
103 movel %d1,%d0
104 lsrl #5,%d0 | cnt = len / 32
105 jeq .Lbzlong | if (cnt)
106 andl #31,%d1 | len %= 32
107 subql #1,%d0 | set up for dbf
108 .Lbz32loop:
109 movl %d2,(%a0)+ | zero 8 long words
110 movl %d2,(%a0)+
111 movl %d2,(%a0)+
112 movl %d2,(%a0)+
113 movl %d2,(%a0)+
114 movl %d2,(%a0)+
115 movl %d2,(%a0)+
116 movl %d2,(%a0)+
117 #ifndef __mcoldfire__
118 dbf %d0,.Lbz32loop | till done
119 clrw %d0
120 #endif
121 subql #1,%d0
122 jcc .Lbz32loop
123
124 .Lbzlong:
125 /* copy by longwords */
126 movel %d1,%d0
127 lsrl #2,%d0 | cnt = len / 4
128 jeq .Lbzbyte | if (cnt)
129 subql #1,%d0 | set up for dbf
130 .Lbzlloop:
131 movl %d2,(%a0)+ | clear longwords
132 #ifdef __mcoldfire__
133 subql #1,%d0 | decrement
134 jcc .Lbzlloop | till done
135 #else
136 dbf %d0,.Lbzlloop | till done
137 #endif
138 andl #3,%d1 | len %= 4
139 jeq .Lbzdone
140
141 subql #1,%d1 | set up for dbf
142 .Lbzbloop:
143 movb %d2,(%a0)+ | zero bytes
144 .Lbzbyte:
145 #ifdef __mcoldfire__
146 subql #1,%d0 | decrement
147 jcc .Lbzbloop | till done
148 #else
149 dbf %d1,.Lbzbloop | till done
150 #endif
151 .Lbzdone:
152 movl (%sp)+,%d2
153 rts
154 END(bzero)
155