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.
8 * Copyright (C) 2007 Maciej W. Rozycki
11 #include <asm/asm-offsets.h>
12 #include <asm/regdef.h>
22 #define EX(insn,reg,addr,handler) \
24 .section __ex_table,"a"; \
28 .macro f_fill64 dst, offset, val, fixup
29 EX(LONG_S, \val, (\offset + 0 * LONGSIZE)(\dst), \fixup)
30 EX(LONG_S, \val, (\offset + 1 * LONGSIZE)(\dst), \fixup)
31 EX(LONG_S, \val, (\offset + 2 * LONGSIZE)(\dst), \fixup)
32 EX(LONG_S, \val, (\offset + 3 * LONGSIZE)(\dst), \fixup)
33 EX(LONG_S, \val, (\offset + 4 * LONGSIZE)(\dst), \fixup)
34 EX(LONG_S, \val, (\offset + 5 * LONGSIZE)(\dst), \fixup)
35 EX(LONG_S, \val, (\offset + 6 * LONGSIZE)(\dst), \fixup)
36 EX(LONG_S, \val, (\offset + 7 * LONGSIZE)(\dst), \fixup)
38 EX(LONG_S, \val, (\offset + 8 * LONGSIZE)(\dst), \fixup)
39 EX(LONG_S, \val, (\offset + 9 * LONGSIZE)(\dst), \fixup)
40 EX(LONG_S, \val, (\offset + 10 * LONGSIZE)(\dst), \fixup)
41 EX(LONG_S, \val, (\offset + 11 * LONGSIZE)(\dst), \fixup)
42 EX(LONG_S, \val, (\offset + 12 * LONGSIZE)(\dst), \fixup)
43 EX(LONG_S, \val, (\offset + 13 * LONGSIZE)(\dst), \fixup)
44 EX(LONG_S, \val, (\offset + 14 * LONGSIZE)(\dst), \fixup)
45 EX(LONG_S, \val, (\offset + 15 * LONGSIZE)(\dst), \fixup)
50 * memset(void *s, int c, size_t n)
52 * a0: start of area to clear
53 * a1: char to fill with
54 * a2: size of area to clear
60 move v0, a0 /* result */
62 andi a1, 0xff /* spread fillword */
74 sltiu t0, a2, LONGSIZE /* very small region? */
75 bnez t0, .Lsmall_memset
76 andi t0, a0, LONGMASK /* aligned? */
78 #ifndef CONFIG_CPU_DADDI_WORKAROUNDS
80 PTR_SUBU t0, LONGSIZE /* alignment in bytes */
85 PTR_SUBU t0, AT /* alignment in bytes */
91 EX(LONG_S_L, a1, (a0), .Lfirst_fixup) /* make word/dword aligned */
94 EX(LONG_S_R, a1, (a0), .Lfirst_fixup) /* make word/dword aligned */
96 PTR_SUBU a0, t0 /* long align ptr */
97 PTR_ADDU a2, t0 /* correct size */
99 1: ori t1, a2, 0x3f /* # of full blocks */
101 beqz t1, .Lmemset_partial /* no block to fill */
102 andi t0, a2, 0x40-LONGSIZE
104 PTR_ADDU t1, a0 /* end address */
108 f_fill64 a0, -64, a1, .Lfwd_fixup
114 PTR_LA t1, 2f /* where to start */
124 PTR_ADDU a0, t0 /* dest ptr */
129 f_fill64 a0, -64, a1, .Lpartial_fixup /* ... but first do longs ... */
131 andi a2, LONGMASK /* At most one long to go */
134 PTR_ADDU a0, a2 /* What's left */
137 EX(LONG_S_R, a1, -1(a0), .Llast_fixup)
140 EX(LONG_S_L, a1, -1(a0), .Llast_fixup)
149 1: PTR_ADDIU a0, 1 /* fill bytewise */
163 PTR_L t0, TI_TASK($28)
164 LONG_L t0, THREAD_BUADDR(t0)
171 PTR_L t0, TI_TASK($28)
172 LONG_L t0, THREAD_BUADDR(t0)
180 andi v1, a2, LONGMASK