Merge remote-tracking branch 'sound-asoc/for-next'
[deliverable/linux.git] / arch / arm / lib / memzero.S
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/lib/memzero.S
3 *
4 * Copyright (C) 1995-2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/linkage.h>
11#include <asm/assembler.h>
20cb6abf 12#include <asm/unwind.h>
4dd1837d 13#include <asm/export.h>
1da177e4
LT
14
15 .text
16 .align 5
17 .word 0
18/*
19 * Align the pointer in r0. r3 contains the number of bytes that we are
20 * mis-aligned by, and r1 is the number of bytes. If r1 < 4, then we
21 * don't bother; we use byte stores instead.
22 */
20cb6abf 23UNWIND( .fnstart )
1da177e4
LT
241: subs r1, r1, #4 @ 1 do we have enough
25 blt 5f @ 1 bytes to align with?
26 cmp r3, #2 @ 1
27 strltb r2, [r0], #1 @ 1
28 strleb r2, [r0], #1 @ 1
29 strb r2, [r0], #1 @ 1
30 add r1, r1, r3 @ 1 (r1 = r1 - (4 - r3))
31/*
32 * The pointer is now aligned and the length is adjusted. Try doing the
33 * memzero again.
34 */
35
36ENTRY(__memzero)
37 mov r2, #0 @ 1
38 ands r3, r0, #3 @ 1 unaligned?
39 bne 1b @ 1
40/*
41 * r3 = 0, and we know that the pointer in r0 is aligned to a word boundary.
42 */
43 cmp r1, #16 @ 1 we can skip this chunk if we
44 blt 4f @ 1 have < 16 bytes
f91a8dcc
NP
45
46#if ! CALGN(1)+0
47
1da177e4
LT
48/*
49 * We need an extra register for this loop - save the return address and
50 * use the LR
51 */
52 str lr, [sp, #-4]! @ 1
20cb6abf
LY
53UNWIND( .fnend )
54UNWIND( .fnstart )
55UNWIND( .save {lr} )
1da177e4
LT
56 mov ip, r2 @ 1
57 mov lr, r2 @ 1
58
593: subs r1, r1, #64 @ 1 write 32 bytes out per loop
60 stmgeia r0!, {r2, r3, ip, lr} @ 4
61 stmgeia r0!, {r2, r3, ip, lr} @ 4
62 stmgeia r0!, {r2, r3, ip, lr} @ 4
63 stmgeia r0!, {r2, r3, ip, lr} @ 4
64 bgt 3b @ 1
1b93a717 65 ldmeqfd sp!, {pc} @ 1/2 quick exit
1da177e4
LT
66/*
67 * No need to correct the count; we're only testing bits from now on
68 */
69 tst r1, #32 @ 1
70 stmneia r0!, {r2, r3, ip, lr} @ 4
71 stmneia r0!, {r2, r3, ip, lr} @ 4
72 tst r1, #16 @ 1 16 bytes or more?
73 stmneia r0!, {r2, r3, ip, lr} @ 4
74 ldr lr, [sp], #4 @ 1
20cb6abf 75UNWIND( .fnend )
1da177e4 76
f91a8dcc
NP
77#else
78
79/*
80 * This version aligns the destination pointer in order to write
81 * whole cache lines at once.
82 */
83
84 stmfd sp!, {r4-r7, lr}
20cb6abf
LY
85UNWIND( .fnend )
86UNWIND( .fnstart )
87UNWIND( .save {r4-r7, lr} )
f91a8dcc
NP
88 mov r4, r2
89 mov r5, r2
90 mov r6, r2
91 mov r7, r2
92 mov ip, r2
93 mov lr, r2
94
95 cmp r1, #96
96 andgts ip, r0, #31
97 ble 3f
98
99 rsb ip, ip, #32
100 sub r1, r1, ip
101 movs ip, ip, lsl #(32 - 4)
102 stmcsia r0!, {r4, r5, r6, r7}
103 stmmiia r0!, {r4, r5}
104 movs ip, ip, lsl #2
105 strcs r2, [r0], #4
106
1073: subs r1, r1, #64
108 stmgeia r0!, {r2-r7, ip, lr}
109 stmgeia r0!, {r2-r7, ip, lr}
110 bgt 3b
111 ldmeqfd sp!, {r4-r7, pc}
112
113 tst r1, #32
114 stmneia r0!, {r2-r7, ip, lr}
115 tst r1, #16
116 stmneia r0!, {r4-r7}
117 ldmfd sp!, {r4-r7, lr}
20cb6abf 118UNWIND( .fnend )
f91a8dcc
NP
119
120#endif
121
20cb6abf 122UNWIND( .fnstart )
1da177e4
LT
1234: tst r1, #8 @ 1 8 bytes or more?
124 stmneia r0!, {r2, r3} @ 2
125 tst r1, #4 @ 1 4 bytes or more?
126 strne r2, [r0], #4 @ 1
127/*
128 * When we get here, we've got less than 4 bytes to zero. We
129 * may have an unaligned pointer as well.
130 */
1315: tst r1, #2 @ 1 2 bytes or more?
132 strneb r2, [r0], #1 @ 1
133 strneb r2, [r0], #1 @ 1
134 tst r1, #1 @ 1 a byte left over
135 strneb r2, [r0], #1 @ 1
6ebbf2ce 136 ret lr @ 1
20cb6abf 137UNWIND( .fnend )
93ed3970 138ENDPROC(__memzero)
4dd1837d 139EXPORT_SYMBOL(__memzero)
This page took 0.827681 seconds and 5 git commands to generate.