2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #include <arch/chip.h>
17 #include <linux/types.h>
18 #include <linux/string.h>
19 #include <linux/module.h>
23 void *memset(void *s
, int c
, size_t n
)
35 /* Experimentation shows that a trivial tight loop is a win up until
36 * around a size of 20, where writing a word at a time starts to win.
38 #define BYTE_CUTOFF 20
41 /* This must be at least at least this big, or some code later
44 #error "BYTE_CUTOFF is too small"
47 if (n
< BYTE_CUTOFF
) {
48 /* Strangely, this turns out to be the tightest way to
53 /* Strangely, combining these into one line
65 /* Use a spare issue slot to start prefetching the first cache
66 * line early. This instruction is free as the store can be buried
67 * in otherwise idle issue slots doing ALU ops.
69 __insn_prefetch(out8
);
71 /* We prefetch the end so that a short memset that spans two cache
72 * lines gets some prefetching benefit. Again we believe this is free
75 __insn_prefetch(&out8
[n
- 1]);
76 #endif /* !CHIP_HAS_WH64() */
79 /* Align 'out8'. We know n >= 3 so this won't write past the end. */
80 while (((uintptr_t) out8
& 3) != 0) {
89 out32
= (uint32_t *) out8
;
92 /* Tile input byte out to 32 bits. */
93 v16
= __insn_intlb(c
, c
);
94 v32
= __insn_intlh(v16
, v16
);
96 /* This must be at least 8 or the following loop doesn't work. */
97 #define CACHE_LINE_SIZE_IN_WORDS (CHIP_L2_LINE_SIZE() / 4)
101 ahead32
= CACHE_LINE_SIZE_IN_WORDS
;
103 /* We already prefetched the first and last cache lines, so
104 * we only need to do more prefetching if we are storing
105 * to more than two cache lines.
107 if (n32
> CACHE_LINE_SIZE_IN_WORDS
* 2) {
110 /* Prefetch the next several cache lines.
111 * This is the setup code for the software-pipelined
114 #define MAX_PREFETCH 5
115 ahead32
= n32
& -CACHE_LINE_SIZE_IN_WORDS
;
116 if (ahead32
> MAX_PREFETCH
* CACHE_LINE_SIZE_IN_WORDS
)
117 ahead32
= MAX_PREFETCH
* CACHE_LINE_SIZE_IN_WORDS
;
119 for (i
= CACHE_LINE_SIZE_IN_WORDS
;
120 i
< ahead32
; i
+= CACHE_LINE_SIZE_IN_WORDS
)
121 __insn_prefetch(&out32
[i
]);
128 /* Prefetch by reading one word several cache lines
129 * ahead. Since loads are non-blocking this will
130 * cause the full cache line to be read while we are
131 * finishing earlier cache lines. Using a store
132 * here causes microarchitectural performance
133 * problems where a victimizing store miss goes to
134 * the head of the retry FIFO and locks the pipe for
135 * a few cycles. So a few subsequent stores in this
136 * loop go into the retry FIFO, and then later
137 * stores see other stores to the same cache line
138 * are already in the retry FIFO and themselves go
139 * into the retry FIFO, filling it up and grinding
140 * to a halt waiting for the original miss to be
143 __insn_prefetch(&out32
[ahead32
]);
145 #if CACHE_LINE_SIZE_IN_WORDS % 4 != 0
146 #error "Unhandled CACHE_LINE_SIZE_IN_WORDS"
149 n32
-= CACHE_LINE_SIZE_IN_WORDS
;
151 /* Save icache space by only partially unrolling
154 for (j
= CACHE_LINE_SIZE_IN_WORDS
/ 4; j
> 0; j
--) {
161 /* To save compiled code size, reuse this loop even
162 * when we run out of prefetching to do by dropping
165 if (n32
<= ahead32
) {
166 /* Not even a full cache line left,
169 if (n32
< CACHE_LINE_SIZE_IN_WORDS
)
172 /* Choose a small enough value that we don't
173 * prefetch past the end. There's no sense
174 * in touching cache lines we don't have to.
176 ahead32
= CACHE_LINE_SIZE_IN_WORDS
- 1;
181 #else /* CHIP_HAS_WH64() */
183 /* Determine how many words we need to emit before the 'out32'
184 * pointer becomes aligned modulo the cache line size.
187 (-((uintptr_t)out32
>> 2)) & (CACHE_LINE_SIZE_IN_WORDS
- 1);
189 /* Only bother aligning and using wh64 if there is at least
190 * one full cache line to process. This check also prevents
191 * overrunning the end of the buffer with alignment words.
193 if (to_align32
<= n32
- CACHE_LINE_SIZE_IN_WORDS
) {
196 /* Align out32 mod the cache line size so we can use wh64. */
198 for (; to_align32
!= 0; to_align32
--) {
203 /* Use unsigned divide to turn this into a right shift. */
204 lines_left
= (unsigned)n32
/ CACHE_LINE_SIZE_IN_WORDS
;
207 /* Only wh64 a few lines at a time, so we don't
208 * exceed the maximum number of victim lines.
210 int x
= ((lines_left
< CHIP_MAX_OUTSTANDING_VICTIMS())
212 : CHIP_MAX_OUTSTANDING_VICTIMS());
213 uint32_t *wh
= out32
;
221 wh
+= CACHE_LINE_SIZE_IN_WORDS
;
224 for (j
= x
* (CACHE_LINE_SIZE_IN_WORDS
/ 4);
231 } while (lines_left
!= 0);
233 /* We processed all full lines above, so only this many
234 * words remain to be processed.
236 n32
&= CACHE_LINE_SIZE_IN_WORDS
- 1;
239 #endif /* CHIP_HAS_WH64() */
241 /* Now handle any leftover values. */
246 } while (--n32
!= 0);
251 EXPORT_SYMBOL(memset
);