memset.S 4.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1998, 1999, 2000 by Ralf Baechle
 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8
 * Copyright (C) 2007  Maciej W. Rozycki
L
Linus Torvalds 已提交
9 10
 */
#include <asm/asm.h>
11
#include <asm/asm-offsets.h>
L
Linus Torvalds 已提交
12 13
#include <asm/regdef.h>

A
Atsushi Nemoto 已提交
14 15 16 17 18 19 20 21
#if LONGSIZE == 4
#define LONG_S_L swl
#define LONG_S_R swr
#else
#define LONG_S_L sdl
#define LONG_S_R sdr
#endif

L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#define EX(insn,reg,addr,handler)			\
9:	insn	reg, addr;				\
	.section __ex_table,"a"; 			\
	PTR	9b, handler; 				\
	.previous

	.macro	f_fill64 dst, offset, val, fixup
	EX(LONG_S, \val, (\offset +  0 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  1 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  2 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  3 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  4 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  5 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  6 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  7 * LONGSIZE)(\dst), \fixup)
A
Atsushi Nemoto 已提交
37
#if LONGSIZE == 4
L
Linus Torvalds 已提交
38 39 40 41 42 43 44 45
	EX(LONG_S, \val, (\offset +  8 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset +  9 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 10 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 11 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 12 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 13 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 14 * LONGSIZE)(\dst), \fixup)
	EX(LONG_S, \val, (\offset + 15 * LONGSIZE)(\dst), \fixup)
A
Atsushi Nemoto 已提交
46
#endif
L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
	.endm

/*
 * memset(void *s, int c, size_t n)
 *
 * a0: start of area to clear
 * a1: char to fill with
 * a2: size of area to clear
 */
	.set	noreorder
	.align	5
LEAF(memset)
	beqz		a1, 1f
	 move		v0, a0			/* result */

	andi		a1, 0xff		/* spread fillword */
A
Atsushi Nemoto 已提交
63
	LONG_SLL		t1, a1, 8
L
Linus Torvalds 已提交
64
	or		a1, t1
A
Atsushi Nemoto 已提交
65 66 67 68 69
	LONG_SLL		t1, a1, 16
#if LONGSIZE == 8
	or		a1, t1
	LONG_SLL		t1, a1, 32
#endif
L
Linus Torvalds 已提交
70 71 72 73 74
	or		a1, t1
1:

FEXPORT(__bzero)
	sltiu		t0, a2, LONGSIZE	/* very small region? */
75
	bnez		t0, .Lsmall_memset
L
Linus Torvalds 已提交
76 77
	 andi		t0, a0, LONGMASK	/* aligned? */

78
#ifndef CONFIG_CPU_DADDI_WORKAROUNDS
L
Linus Torvalds 已提交
79 80
	beqz		t0, 1f
	 PTR_SUBU	t0, LONGSIZE		/* alignment in bytes */
81 82 83 84 85 86 87
#else
	.set		noat
	li		AT, LONGSIZE
	beqz		t0, 1f
	 PTR_SUBU	t0, AT			/* alignment in bytes */
	.set		at
#endif
L
Linus Torvalds 已提交
88

89
	R10KCBARRIER(0(ra))
L
Linus Torvalds 已提交
90
#ifdef __MIPSEB__
91
	EX(LONG_S_L, a1, (a0), .Lfirst_fixup)	/* make word/dword aligned */
L
Linus Torvalds 已提交
92 93
#endif
#ifdef __MIPSEL__
94
	EX(LONG_S_R, a1, (a0), .Lfirst_fixup)	/* make word/dword aligned */
L
Linus Torvalds 已提交
95 96 97 98 99 100
#endif
	PTR_SUBU	a0, t0			/* long align ptr */
	PTR_ADDU	a2, t0			/* correct size */

1:	ori		t1, a2, 0x3f		/* # of full blocks */
	xori		t1, 0x3f
101
	beqz		t1, .Lmemset_partial	/* no block to fill */
A
Atsushi Nemoto 已提交
102
	 andi		t0, a2, 0x40-LONGSIZE
L
Linus Torvalds 已提交
103 104 105 106

	PTR_ADDU	t1, a0			/* end address */
	.set		reorder
1:	PTR_ADDIU	a0, 64
107
	R10KCBARRIER(0(ra))
108
	f_fill64 a0, -64, a1, .Lfwd_fixup
L
Linus Torvalds 已提交
109 110 111
	bne		t1, a0, 1b
	.set		noreorder

112
.Lmemset_partial:
113
	R10KCBARRIER(0(ra))
L
Linus Torvalds 已提交
114
	PTR_LA		t1, 2f			/* where to start */
A
Atsushi Nemoto 已提交
115
#if LONGSIZE == 4
L
Linus Torvalds 已提交
116
	PTR_SUBU	t1, t0
A
Atsushi Nemoto 已提交
117 118 119 120
#else
	.set		noat
	LONG_SRL		AT, t0, 1
	PTR_SUBU	t1, AT
121
	.set		at
A
Atsushi Nemoto 已提交
122
#endif
L
Linus Torvalds 已提交
123 124 125 126 127 128
	jr		t1
	 PTR_ADDU	a0, t0			/* dest ptr */

	.set		push
	.set		noreorder
	.set		nomacro
129
	f_fill64 a0, -64, a1, .Lpartial_fixup	/* ... but first do longs ... */
L
Linus Torvalds 已提交
130 131 132 133 134
2:	.set		pop
	andi		a2, LONGMASK		/* At most one long to go */

	beqz		a2, 1f
	 PTR_ADDU	a0, a2			/* What's left */
135
	R10KCBARRIER(0(ra))
L
Linus Torvalds 已提交
136
#ifdef __MIPSEB__
137
	EX(LONG_S_R, a1, -1(a0), .Llast_fixup)
L
Linus Torvalds 已提交
138 139
#endif
#ifdef __MIPSEL__
140
	EX(LONG_S_L, a1, -1(a0), .Llast_fixup)
L
Linus Torvalds 已提交
141 142 143 144
#endif
1:	jr		ra
	 move		a2, zero

145
.Lsmall_memset:
L
Linus Torvalds 已提交
146 147 148 149
	beqz		a2, 2f
	 PTR_ADDU	t1, a0, a2

1:	PTR_ADDIU	a0, 1			/* fill bytewise */
150
	R10KCBARRIER(0(ra))
L
Linus Torvalds 已提交
151 152 153 154 155 156 157
	bne		t1, a0, 1b
	 sb		a1, -1(a0)

2:	jr		ra			/* done */
	 move		a2, zero
	END(memset)

158
.Lfirst_fixup:
L
Linus Torvalds 已提交
159 160 161
	jr	ra
	 nop

162
.Lfwd_fixup:
L
Linus Torvalds 已提交
163 164 165 166 167 168 169
	PTR_L		t0, TI_TASK($28)
	LONG_L		t0, THREAD_BUADDR(t0)
	andi		a2, 0x3f
	LONG_ADDU	a2, t1
	jr		ra
	 LONG_SUBU	a2, t0

170
.Lpartial_fixup:
L
Linus Torvalds 已提交
171 172 173 174 175 176 177
	PTR_L		t0, TI_TASK($28)
	LONG_L		t0, THREAD_BUADDR(t0)
	andi		a2, LONGMASK
	LONG_ADDU	a2, t1
	jr		ra
	 LONG_SUBU	a2, t0

178
.Llast_fixup:
L
Linus Torvalds 已提交
179 180
	jr		ra
	 andi		v1, a2, LONGMASK