gallium: add target-helpers/wrap_screen.c to C_SOURCES
[mesa/mesa-lb.git] / src / gallium / auxiliary / pipebuffer / pb_bufmgr_cache.c
blob86f9266c95ff2490362debf12fda1f5b1672ca6d
1 /**************************************************************************
3 * Copyright 2007-2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * 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, sub license, 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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 /**
29 * \file
30 * Buffer cache.
32 * \author Jose Fonseca <jrfonseca-at-tungstengraphics-dot-com>
33 * \author Thomas Hellström <thomas-at-tungstengraphics-dot-com>
37 #include "pipe/p_compiler.h"
38 #include "util/u_debug.h"
39 #include "os/os_thread.h"
40 #include "util/u_memory.h"
41 #include "util/u_double_list.h"
42 #include "util/u_time.h"
44 #include "pb_buffer.h"
45 #include "pb_bufmgr.h"
48 /**
49 * Convenience macro (type safe).
51 #define SUPER(__derived) (&(__derived)->base)
54 struct pb_cache_manager;
57 /**
58 * Wrapper around a pipe buffer which adds delayed destruction.
60 struct pb_cache_buffer
62 struct pb_buffer base;
64 struct pb_buffer *buffer;
65 struct pb_cache_manager *mgr;
67 /** Caching time interval */
68 int64_t start, end;
70 struct list_head head;
74 struct pb_cache_manager
76 struct pb_manager base;
78 struct pb_manager *provider;
79 unsigned usecs;
81 pipe_mutex mutex;
83 struct list_head delayed;
84 pb_size numDelayed;
88 static INLINE struct pb_cache_buffer *
89 pb_cache_buffer(struct pb_buffer *buf)
91 assert(buf);
92 return (struct pb_cache_buffer *)buf;
96 static INLINE struct pb_cache_manager *
97 pb_cache_manager(struct pb_manager *mgr)
99 assert(mgr);
100 return (struct pb_cache_manager *)mgr;
105 * Actually destroy the buffer.
107 static INLINE void
108 _pb_cache_buffer_destroy(struct pb_cache_buffer *buf)
110 struct pb_cache_manager *mgr = buf->mgr;
112 LIST_DEL(&buf->head);
113 assert(mgr->numDelayed);
114 --mgr->numDelayed;
115 assert(!pipe_is_referenced(&buf->base.base.reference));
116 pb_reference(&buf->buffer, NULL);
117 FREE(buf);
122 * Free as many cache buffers from the list head as possible.
124 static void
125 _pb_cache_buffer_list_check_free(struct pb_cache_manager *mgr)
127 struct list_head *curr, *next;
128 struct pb_cache_buffer *buf;
129 int64_t now;
131 now = os_time_get();
133 curr = mgr->delayed.next;
134 next = curr->next;
135 while(curr != &mgr->delayed) {
136 buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
138 if(!os_time_timeout(buf->start, buf->end, now))
139 break;
141 _pb_cache_buffer_destroy(buf);
143 curr = next;
144 next = curr->next;
149 static void
150 pb_cache_buffer_destroy(struct pb_buffer *_buf)
152 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
153 struct pb_cache_manager *mgr = buf->mgr;
155 pipe_mutex_lock(mgr->mutex);
156 assert(!pipe_is_referenced(&buf->base.base.reference));
158 _pb_cache_buffer_list_check_free(mgr);
160 buf->start = os_time_get();
161 buf->end = buf->start + mgr->usecs;
162 LIST_ADDTAIL(&buf->head, &mgr->delayed);
163 ++mgr->numDelayed;
164 pipe_mutex_unlock(mgr->mutex);
168 static void *
169 pb_cache_buffer_map(struct pb_buffer *_buf,
170 unsigned flags)
172 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
173 return pb_map(buf->buffer, flags);
177 static void
178 pb_cache_buffer_unmap(struct pb_buffer *_buf)
180 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
181 pb_unmap(buf->buffer);
185 static enum pipe_error
186 pb_cache_buffer_validate(struct pb_buffer *_buf,
187 struct pb_validate *vl,
188 unsigned flags)
190 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
191 return pb_validate(buf->buffer, vl, flags);
195 static void
196 pb_cache_buffer_fence(struct pb_buffer *_buf,
197 struct pipe_fence_handle *fence)
199 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
200 pb_fence(buf->buffer, fence);
204 static void
205 pb_cache_buffer_get_base_buffer(struct pb_buffer *_buf,
206 struct pb_buffer **base_buf,
207 pb_size *offset)
209 struct pb_cache_buffer *buf = pb_cache_buffer(_buf);
210 pb_get_base_buffer(buf->buffer, base_buf, offset);
214 const struct pb_vtbl
215 pb_cache_buffer_vtbl = {
216 pb_cache_buffer_destroy,
217 pb_cache_buffer_map,
218 pb_cache_buffer_unmap,
219 pb_cache_buffer_validate,
220 pb_cache_buffer_fence,
221 pb_cache_buffer_get_base_buffer
225 static INLINE boolean
226 pb_cache_is_buffer_compat(struct pb_cache_buffer *buf,
227 pb_size size,
228 const struct pb_desc *desc)
230 if(buf->base.base.size < size)
231 return FALSE;
233 /* be lenient with size */
234 if(buf->base.base.size >= 2*size)
235 return FALSE;
237 if(!pb_check_alignment(desc->alignment, buf->base.base.alignment))
238 return FALSE;
240 if(!pb_check_usage(desc->usage, buf->base.base.usage))
241 return FALSE;
243 return TRUE;
247 static struct pb_buffer *
248 pb_cache_manager_create_buffer(struct pb_manager *_mgr,
249 pb_size size,
250 const struct pb_desc *desc)
252 struct pb_cache_manager *mgr = pb_cache_manager(_mgr);
253 struct pb_cache_buffer *buf;
254 struct pb_cache_buffer *curr_buf;
255 struct list_head *curr, *next;
256 int64_t now;
258 pipe_mutex_lock(mgr->mutex);
260 buf = NULL;
261 curr = mgr->delayed.next;
262 next = curr->next;
264 /* search in the expired buffers, freeing them in the process */
265 now = os_time_get();
266 while(curr != &mgr->delayed) {
267 curr_buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
268 if(!buf && pb_cache_is_buffer_compat(curr_buf, size, desc))
269 buf = curr_buf;
270 else if(os_time_timeout(curr_buf->start, curr_buf->end, now))
271 _pb_cache_buffer_destroy(curr_buf);
272 else
273 /* This buffer (and all hereafter) are still hot in cache */
274 break;
275 curr = next;
276 next = curr->next;
279 /* keep searching in the hot buffers */
280 if(!buf) {
281 while(curr != &mgr->delayed) {
282 curr_buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
283 if(pb_cache_is_buffer_compat(curr_buf, size, desc)) {
284 buf = curr_buf;
285 break;
287 /* no need to check the timeout here */
288 curr = next;
289 next = curr->next;
293 if(buf) {
294 LIST_DEL(&buf->head);
295 pipe_mutex_unlock(mgr->mutex);
296 /* Increase refcount */
297 pipe_reference_init(&buf->base.base.reference, 1);
298 return &buf->base;
301 pipe_mutex_unlock(mgr->mutex);
303 buf = CALLOC_STRUCT(pb_cache_buffer);
304 if(!buf)
305 return NULL;
307 buf->buffer = mgr->provider->create_buffer(mgr->provider, size, desc);
308 if(!buf->buffer) {
309 FREE(buf);
310 return NULL;
313 assert(pipe_is_referenced(&buf->buffer->base.reference));
314 assert(pb_check_alignment(desc->alignment, buf->buffer->base.alignment));
315 assert(pb_check_usage(desc->usage, buf->buffer->base.usage));
316 assert(buf->buffer->base.size >= size);
318 pipe_reference_init(&buf->base.base.reference, 1);
319 buf->base.base.alignment = buf->buffer->base.alignment;
320 buf->base.base.usage = buf->buffer->base.usage;
321 buf->base.base.size = buf->buffer->base.size;
323 buf->base.vtbl = &pb_cache_buffer_vtbl;
324 buf->mgr = mgr;
326 return &buf->base;
330 static void
331 pb_cache_manager_flush(struct pb_manager *_mgr)
333 struct pb_cache_manager *mgr = pb_cache_manager(_mgr);
334 struct list_head *curr, *next;
335 struct pb_cache_buffer *buf;
337 pipe_mutex_lock(mgr->mutex);
338 curr = mgr->delayed.next;
339 next = curr->next;
340 while(curr != &mgr->delayed) {
341 buf = LIST_ENTRY(struct pb_cache_buffer, curr, head);
342 _pb_cache_buffer_destroy(buf);
343 curr = next;
344 next = curr->next;
346 pipe_mutex_unlock(mgr->mutex);
348 assert(mgr->provider->flush);
349 if(mgr->provider->flush)
350 mgr->provider->flush(mgr->provider);
354 static void
355 pb_cache_manager_destroy(struct pb_manager *mgr)
357 pb_cache_manager_flush(mgr);
358 FREE(mgr);
362 struct pb_manager *
363 pb_cache_manager_create(struct pb_manager *provider,
364 unsigned usecs)
366 struct pb_cache_manager *mgr;
368 if(!provider)
369 return NULL;
371 mgr = CALLOC_STRUCT(pb_cache_manager);
372 if (!mgr)
373 return NULL;
375 mgr->base.destroy = pb_cache_manager_destroy;
376 mgr->base.create_buffer = pb_cache_manager_create_buffer;
377 mgr->base.flush = pb_cache_manager_flush;
378 mgr->provider = provider;
379 mgr->usecs = usecs;
380 LIST_INITHEAD(&mgr->delayed);
381 mgr->numDelayed = 0;
382 pipe_mutex_init(mgr->mutex);
384 return &mgr->base;