i965: Allow for variable-sized auxdata in the state cache.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_state_cache.c
1 /*
2 Copyright (C) Intel Corp. 2006. All Rights Reserved.
3 Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
4 develop this 3D driver.
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial
16 portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
26 **********************************************************************/
27 /*
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32 /** @file brw_state_cache.c
33 *
34 * This file implements a simple static state cache for 965. The consumers
35 * can query the hash table of state using a cache_id, opaque key data,
36 * and list of buffers that will be used in relocations, and receive the
37 * corresponding state buffer object of state (plus associated auxiliary
38 * data) in return.
39 *
40 * The inner workings are a simple hash table based on a CRC of the key data.
41 * The cache_id and relocation target buffers associated with the state
42 * buffer are included as auxiliary key data, but are not part of the hash
43 * value (this should be fixed, but will likely be fixed instead by making
44 * consumers use structured keys).
45 *
46 * Replacement is not implemented. Instead, when the cache gets too big, at
47 * a safe point (unlock) we throw out all of the cache data and let it
48 * regenerate for the next rendering operation.
49 *
50 * The reloc_buf pointers need to be included as key data, otherwise the
51 * non-unique values stuffed in the offset in key data through
52 * brw_cache_data() may result in successful probe for state buffers
53 * even when the buffer being referenced doesn't match. The result would be
54 * that the same state cache entry is used twice for different buffers,
55 * only one of the two buffers referenced gets put into the offset, and the
56 * incorrect program is run for the other instance.
57 */
58
59 #include "main/imports.h"
60 #include "brw_state.h"
61 #include "intel_batchbuffer.h"
62
63 /* XXX: Fixme - have to include these to get the sizes of the prog_key
64 * structs:
65 */
66 #include "brw_wm.h"
67 #include "brw_vs.h"
68 #include "brw_clip.h"
69 #include "brw_sf.h"
70 #include "brw_gs.h"
71
72
73 static GLuint
74 hash_key(const void *key, GLuint key_size,
75 dri_bo **reloc_bufs, GLuint nr_reloc_bufs)
76 {
77 GLuint *ikey = (GLuint *)key;
78 GLuint hash = 0, i;
79
80 assert(key_size % 4 == 0);
81
82 /* I'm sure this can be improved on:
83 */
84 for (i = 0; i < key_size/4; i++) {
85 hash ^= ikey[i];
86 hash = (hash << 5) | (hash >> 27);
87 }
88
89 /* Include the BO pointers as key data as well */
90 ikey = (GLuint *)reloc_bufs;
91 key_size = nr_reloc_bufs * sizeof(dri_bo *);
92 for (i = 0; i < key_size/4; i++) {
93 hash ^= ikey[i];
94 hash = (hash << 5) | (hash >> 27);
95 }
96
97 return hash;
98 }
99
100
101 /**
102 * Marks a new buffer as being chosen for the given cache id.
103 */
104 static void
105 update_cache_last(struct brw_cache *cache, enum brw_cache_id cache_id,
106 dri_bo *bo)
107 {
108 if (bo == cache->last_bo[cache_id])
109 return; /* no change */
110
111 dri_bo_unreference(cache->last_bo[cache_id]);
112 cache->last_bo[cache_id] = bo;
113 dri_bo_reference(cache->last_bo[cache_id]);
114 cache->brw->state.dirty.cache |= 1 << cache_id;
115 }
116
117
118 static struct brw_cache_item *
119 search_cache(struct brw_cache *cache, enum brw_cache_id cache_id,
120 GLuint hash, const void *key, GLuint key_size,
121 dri_bo **reloc_bufs, GLuint nr_reloc_bufs)
122 {
123 struct brw_cache_item *c;
124
125 #if 0
126 int bucketcount = 0;
127
128 for (c = cache->items[hash % cache->size]; c; c = c->next)
129 bucketcount++;
130
131 fprintf(stderr, "bucket %d/%d = %d/%d items\n", hash % cache->size,
132 cache->size, bucketcount, cache->n_items);
133 #endif
134
135 for (c = cache->items[hash % cache->size]; c; c = c->next) {
136 if (c->cache_id == cache_id &&
137 c->hash == hash &&
138 c->key_size == key_size &&
139 memcmp(c->key, key, key_size) == 0 &&
140 c->nr_reloc_bufs == nr_reloc_bufs &&
141 memcmp(c->reloc_bufs, reloc_bufs,
142 nr_reloc_bufs * sizeof(dri_bo *)) == 0)
143 return c;
144 }
145
146 return NULL;
147 }
148
149
150 static void
151 rehash(struct brw_cache *cache)
152 {
153 struct brw_cache_item **items;
154 struct brw_cache_item *c, *next;
155 GLuint size, i;
156
157 size = cache->size * 3;
158 items = (struct brw_cache_item**) _mesa_calloc(size * sizeof(*items));
159
160 for (i = 0; i < cache->size; i++)
161 for (c = cache->items[i]; c; c = next) {
162 next = c->next;
163 c->next = items[c->hash % size];
164 items[c->hash % size] = c;
165 }
166
167 FREE(cache->items);
168 cache->items = items;
169 cache->size = size;
170 }
171
172
173 /**
174 * Returns the buffer object matching cache_id and key, or NULL.
175 */
176 dri_bo *
177 brw_search_cache(struct brw_cache *cache,
178 enum brw_cache_id cache_id,
179 const void *key,
180 GLuint key_size,
181 dri_bo **reloc_bufs, GLuint nr_reloc_bufs,
182 void *aux_return)
183 {
184 struct brw_cache_item *item;
185 GLuint hash = hash_key(key, key_size, reloc_bufs, nr_reloc_bufs);
186
187 item = search_cache(cache, cache_id, hash, key, key_size,
188 reloc_bufs, nr_reloc_bufs);
189
190 if (item == NULL)
191 return NULL;
192
193 if (aux_return)
194 *(void **)aux_return = (void *)((char *)item->key + item->key_size);
195
196 update_cache_last(cache, cache_id, item->bo);
197
198 dri_bo_reference(item->bo);
199 return item->bo;
200 }
201
202
203 drm_intel_bo *
204 brw_upload_cache_with_auxdata(struct brw_cache *cache,
205 enum brw_cache_id cache_id,
206 const void *key,
207 GLuint key_size,
208 dri_bo **reloc_bufs,
209 GLuint nr_reloc_bufs,
210 const void *data,
211 GLuint data_size,
212 const void *aux,
213 GLuint aux_size,
214 void *aux_return)
215 {
216 struct brw_cache_item *item = CALLOC_STRUCT(brw_cache_item);
217 GLuint hash = hash_key(key, key_size, reloc_bufs, nr_reloc_bufs);
218 GLuint relocs_size = nr_reloc_bufs * sizeof(dri_bo *);
219 void *tmp;
220 dri_bo *bo;
221 int i;
222
223 /* Create the buffer object to contain the data */
224 bo = dri_bo_alloc(cache->brw->intel.bufmgr,
225 cache->name[cache_id], data_size, 1 << 6);
226
227
228 /* Set up the memory containing the key, aux_data, and reloc_bufs */
229 tmp = _mesa_malloc(key_size + aux_size + relocs_size);
230
231 memcpy(tmp, key, key_size);
232 memcpy(tmp + key_size, aux, aux_size);
233 memcpy(tmp + key_size + aux_size, reloc_bufs, relocs_size);
234 for (i = 0; i < nr_reloc_bufs; i++) {
235 if (reloc_bufs[i] != NULL)
236 dri_bo_reference(reloc_bufs[i]);
237 }
238
239 item->cache_id = cache_id;
240 item->key = tmp;
241 item->hash = hash;
242 item->key_size = key_size;
243 item->reloc_bufs = tmp + key_size + aux_size;
244 item->nr_reloc_bufs = nr_reloc_bufs;
245
246 item->bo = bo;
247 dri_bo_reference(bo);
248
249 if (cache->n_items > cache->size * 1.5)
250 rehash(cache);
251
252 hash %= cache->size;
253 item->next = cache->items[hash];
254 cache->items[hash] = item;
255 cache->n_items++;
256
257 if (aux_return) {
258 *(void **)aux_return = (void *)((char *)item->key + item->key_size);
259 }
260
261 if (INTEL_DEBUG & DEBUG_STATE)
262 _mesa_printf("upload %s: %d bytes to cache id %d\n",
263 cache->name[cache_id],
264 data_size, cache_id);
265
266 /* Copy data to the buffer */
267 dri_bo_subdata(bo, 0, data_size, data);
268
269 update_cache_last(cache, cache_id, bo);
270
271 return bo;
272 }
273
274 drm_intel_bo *
275 brw_upload_cache(struct brw_cache *cache,
276 enum brw_cache_id cache_id,
277 const void *key,
278 GLuint key_size,
279 dri_bo **reloc_bufs,
280 GLuint nr_reloc_bufs,
281 const void *data,
282 GLuint data_size)
283 {
284 return brw_upload_cache_with_auxdata(cache, cache_id,
285 key, key_size,
286 reloc_bufs, nr_reloc_bufs,
287 data, data_size,
288 NULL, 0,
289 NULL);
290 }
291
292 /**
293 * Wrapper around brw_cache_data_sz using the cache_id's canonical key size.
294 *
295 * If nr_reloc_bufs is nonzero, brw_search_cache()/brw_upload_cache() would be
296 * better to use, as the potentially changing offsets in the data-used-as-key
297 * will result in excessive cache misses.
298 *
299 * If aux data is involved, use search/upload instead.
300
301 */
302 dri_bo *
303 brw_cache_data(struct brw_cache *cache,
304 enum brw_cache_id cache_id,
305 const void *data,
306 GLuint data_size,
307 dri_bo **reloc_bufs,
308 GLuint nr_reloc_bufs)
309 {
310 dri_bo *bo;
311 struct brw_cache_item *item;
312 GLuint hash = hash_key(data, data_size, reloc_bufs, nr_reloc_bufs);
313
314 item = search_cache(cache, cache_id, hash, data, data_size,
315 reloc_bufs, nr_reloc_bufs);
316 if (item) {
317 update_cache_last(cache, cache_id, item->bo);
318 dri_bo_reference(item->bo);
319 return item->bo;
320 }
321
322 bo = brw_upload_cache(cache, cache_id,
323 data, data_size,
324 reloc_bufs, nr_reloc_bufs,
325 data, data_size);
326
327 return bo;
328 }
329
330 enum pool_type {
331 DW_SURFACE_STATE,
332 DW_GENERAL_STATE
333 };
334
335
336 static void
337 brw_init_cache_id(struct brw_cache *cache,
338 const char *name,
339 enum brw_cache_id id)
340 {
341 cache->name[id] = strdup(name);
342 }
343
344
345 static void
346 brw_init_non_surface_cache(struct brw_context *brw)
347 {
348 struct brw_cache *cache = &brw->cache;
349
350 cache->brw = brw;
351
352 cache->size = 7;
353 cache->n_items = 0;
354 cache->items = (struct brw_cache_item **)
355 _mesa_calloc(cache->size * sizeof(struct brw_cache_item));
356
357 brw_init_cache_id(cache, "CC_VP", BRW_CC_VP);
358 brw_init_cache_id(cache, "CC_UNIT", BRW_CC_UNIT);
359 brw_init_cache_id(cache, "WM_PROG", BRW_WM_PROG);
360 brw_init_cache_id(cache, "SAMPLER_DEFAULT_COLOR", BRW_SAMPLER_DEFAULT_COLOR);
361 brw_init_cache_id(cache, "SAMPLER", BRW_SAMPLER);
362 brw_init_cache_id(cache, "WM_UNIT", BRW_WM_UNIT);
363 brw_init_cache_id(cache, "SF_PROG", BRW_SF_PROG);
364 brw_init_cache_id(cache, "SF_VP", BRW_SF_VP);
365
366 brw_init_cache_id(cache, "SF_UNIT", BRW_SF_UNIT);
367
368 brw_init_cache_id(cache, "VS_UNIT", BRW_VS_UNIT);
369
370 brw_init_cache_id(cache, "VS_PROG", BRW_VS_PROG);
371
372 brw_init_cache_id(cache, "CLIP_UNIT", BRW_CLIP_UNIT);
373
374 brw_init_cache_id(cache, "CLIP_PROG", BRW_CLIP_PROG);
375
376 brw_init_cache_id(cache, "GS_UNIT", BRW_GS_UNIT);
377
378 brw_init_cache_id(cache, "GS_PROG", BRW_GS_PROG);
379 }
380
381
382 static void
383 brw_init_surface_cache(struct brw_context *brw)
384 {
385 struct brw_cache *cache = &brw->surface_cache;
386
387 cache->brw = brw;
388
389 cache->size = 7;
390 cache->n_items = 0;
391 cache->items = (struct brw_cache_item **)
392 _mesa_calloc(cache->size * sizeof(struct brw_cache_item));
393
394 brw_init_cache_id(cache, "SS_SURFACE", BRW_SS_SURFACE);
395 brw_init_cache_id(cache, "SS_SURF_BIND", BRW_SS_SURF_BIND);
396 }
397
398
399 void
400 brw_init_caches(struct brw_context *brw)
401 {
402 brw_init_non_surface_cache(brw);
403 brw_init_surface_cache(brw);
404 }
405
406
407 static void
408 brw_clear_cache(struct brw_context *brw, struct brw_cache *cache)
409 {
410 struct brw_cache_item *c, *next;
411 GLuint i;
412
413 if (INTEL_DEBUG & DEBUG_STATE)
414 _mesa_printf("%s\n", __FUNCTION__);
415
416 for (i = 0; i < cache->size; i++) {
417 for (c = cache->items[i]; c; c = next) {
418 int j;
419
420 next = c->next;
421 for (j = 0; j < c->nr_reloc_bufs; j++)
422 dri_bo_unreference(c->reloc_bufs[j]);
423 dri_bo_unreference(c->bo);
424 free((void *)c->key);
425 free(c);
426 }
427 cache->items[i] = NULL;
428 }
429
430 cache->n_items = 0;
431
432 if (brw->curbe.last_buf) {
433 _mesa_free(brw->curbe.last_buf);
434 brw->curbe.last_buf = NULL;
435 }
436
437 brw->state.dirty.mesa |= ~0;
438 brw->state.dirty.brw |= ~0;
439 brw->state.dirty.cache |= ~0;
440 }
441
442 /* Clear all entries from the cache that point to the given bo.
443 *
444 * This lets us release memory for reuse earlier for known-dead buffers,
445 * at the cost of walking the entire hash table.
446 */
447 void
448 brw_state_cache_bo_delete(struct brw_cache *cache, dri_bo *bo)
449 {
450 struct brw_cache_item **prev;
451 GLuint i;
452
453 if (INTEL_DEBUG & DEBUG_STATE)
454 _mesa_printf("%s\n", __FUNCTION__);
455
456 for (i = 0; i < cache->size; i++) {
457 for (prev = &cache->items[i]; *prev;) {
458 struct brw_cache_item *c = *prev;
459
460 if (drm_intel_bo_references(c->bo, bo)) {
461 int j;
462
463 *prev = c->next;
464
465 for (j = 0; j < c->nr_reloc_bufs; j++)
466 dri_bo_unreference(c->reloc_bufs[j]);
467 dri_bo_unreference(c->bo);
468 free((void *)c->key);
469 free(c);
470 cache->n_items--;
471 } else {
472 prev = &c->next;
473 }
474 }
475 }
476 }
477
478 void
479 brw_state_cache_check_size(struct brw_context *brw)
480 {
481 if (INTEL_DEBUG & DEBUG_STATE)
482 _mesa_printf("%s (n_items=%d)\n", __FUNCTION__, brw->cache.n_items);
483
484 /* un-tuned guess. We've got around 20 state objects for a total of around
485 * 32k, so 1000 of them is around 1.5MB.
486 */
487 if (brw->cache.n_items > 1000)
488 brw_clear_cache(brw, &brw->cache);
489
490 if (brw->surface_cache.n_items > 1000)
491 brw_clear_cache(brw, &brw->surface_cache);
492 }
493
494
495 static void
496 brw_destroy_cache(struct brw_context *brw, struct brw_cache *cache)
497 {
498 GLuint i;
499
500 if (INTEL_DEBUG & DEBUG_STATE)
501 _mesa_printf("%s\n", __FUNCTION__);
502
503 brw_clear_cache(brw, cache);
504 for (i = 0; i < BRW_MAX_CACHE; i++) {
505 dri_bo_unreference(cache->last_bo[i]);
506 free(cache->name[i]);
507 }
508 free(cache->items);
509 cache->items = NULL;
510 cache->size = 0;
511 }
512
513
514 void
515 brw_destroy_caches(struct brw_context *brw)
516 {
517 brw_destroy_cache(brw, &brw->cache);
518 brw_destroy_cache(brw, &brw->surface_cache);
519 }