2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1998, 1999, 2000 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
10 #include <asm/offset.h>
11 #include <asm/regdef.h>
13 #define EX(insn,reg,addr,handler) \
15 .section __ex_table,"a"; \
19 .macro f_fill64 dst, offset, val, fixup
20 EX(LONG_S, \val, (\offset + 0 * LONGSIZE)(\dst), \fixup)
21 EX(LONG_S, \val, (\offset + 1 * LONGSIZE)(\dst), \fixup)
22 EX(LONG_S, \val, (\offset + 2 * LONGSIZE)(\dst), \fixup)
23 EX(LONG_S, \val, (\offset + 3 * LONGSIZE)(\dst), \fixup)
24 EX(LONG_S, \val, (\offset + 4 * LONGSIZE)(\dst), \fixup)
25 EX(LONG_S, \val, (\offset + 5 * LONGSIZE)(\dst), \fixup)
26 EX(LONG_S, \val, (\offset + 6 * LONGSIZE)(\dst), \fixup)
27 EX(LONG_S, \val, (\offset + 7 * LONGSIZE)(\dst), \fixup)
31 * memset(void *s, int c, size_t n)
33 * a0: start of area to clear
34 * a1: char to fill with
35 * a2: size of area to clear
41 move v0, a0 /* result */
43 andi a1, 0xff /* spread fillword */
53 sltiu t0, a2, LONGSIZE /* very small region? */
55 andi t0, a0, LONGMASK /* aligned? */
58 PTR_SUBU t0, LONGSIZE /* alignment in bytes */
61 EX(sdl, a1, (a0), first_fixup) /* make dword aligned */
64 EX(sdr, a1, (a0), first_fixup) /* make dword aligned */
66 PTR_SUBU a0, t0 /* long align ptr */
67 PTR_ADDU a2, t0 /* correct size */
69 1: ori t1, a2, 0x3f /* # of full blocks */
71 beqz t1, memset_partial /* no block to fill */
74 PTR_ADDU t1, a0 /* end address */
77 f_fill64 a0, -64, a1, fwd_fixup
82 PTR_LA t1, 2f /* where to start */
88 PTR_ADDU a0, t0 /* dest ptr */
93 f_fill64 a0, -64, a1, partial_fixup /* ... but first do longs ... */
95 andi a2, LONGMASK /* At most one long to go */
98 PTR_ADDU a0, a2 /* What's left */
100 EX(sdr, a1, -1(a0), last_fixup)
103 EX(sdl, a1, -1(a0), last_fixup)
112 1: PTR_ADDIU a0, 1 /* fill bytewise */
125 PTR_L t0, TI_TASK($28)
126 LONG_L t0, THREAD_BUADDR(t0)
133 PTR_L t0, TI_TASK($28)
134 LONG_L t0, THREAD_BUADDR(t0)
142 andi v1, a2, LONGMASK