ilo: support and prefer compact array spacing
[mesa.git] / src / gallium / drivers / llvmpipe / lp_query.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright 2010 VMware, Inc.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29 /* Authors:
30 * Keith Whitwell, Qicheng Christopher Li, Brian Paul
31 */
32
33 #include "draw/draw_context.h"
34 #include "pipe/p_defines.h"
35 #include "util/u_memory.h"
36 #include "os/os_time.h"
37 #include "lp_context.h"
38 #include "lp_flush.h"
39 #include "lp_fence.h"
40 #include "lp_query.h"
41 #include "lp_screen.h"
42 #include "lp_state.h"
43
44
45 static struct llvmpipe_query *llvmpipe_query( struct pipe_query *p )
46 {
47 return (struct llvmpipe_query *)p;
48 }
49
50 static struct pipe_query *
51 llvmpipe_create_query(struct pipe_context *pipe,
52 unsigned type)
53 {
54 struct llvmpipe_query *pq;
55
56 assert(type < PIPE_QUERY_TYPES);
57
58 pq = CALLOC_STRUCT( llvmpipe_query );
59
60 if (pq) {
61 pq->type = type;
62 }
63
64 return (struct pipe_query *) pq;
65 }
66
67
68 static void
69 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
70 {
71 struct llvmpipe_query *pq = llvmpipe_query(q);
72
73 /* Ideally we would refcount queries & not get destroyed until the
74 * last scene had finished with us.
75 */
76 if (pq->fence) {
77 if (!lp_fence_issued(pq->fence))
78 llvmpipe_flush(pipe, NULL, __FUNCTION__);
79
80 if (!lp_fence_signalled(pq->fence))
81 lp_fence_wait(pq->fence);
82
83 lp_fence_reference(&pq->fence, NULL);
84 }
85
86 FREE(pq);
87 }
88
89
90 static boolean
91 llvmpipe_get_query_result(struct pipe_context *pipe,
92 struct pipe_query *q,
93 boolean wait,
94 union pipe_query_result *vresult)
95 {
96 struct llvmpipe_screen *screen = llvmpipe_screen(pipe->screen);
97 unsigned num_threads = MAX2(1, screen->num_threads);
98 struct llvmpipe_query *pq = llvmpipe_query(q);
99 uint64_t *result = (uint64_t *)vresult;
100 int i;
101
102 if (!pq->fence) {
103 /* no fence because there was no scene, so results is zero */
104 *result = 0;
105 return TRUE;
106 }
107
108 if (!lp_fence_signalled(pq->fence)) {
109 if (!lp_fence_issued(pq->fence))
110 llvmpipe_flush(pipe, NULL, __FUNCTION__);
111
112 if (!wait)
113 return FALSE;
114
115 lp_fence_wait(pq->fence);
116 }
117
118 /* Sum the results from each of the threads:
119 */
120 *result = 0;
121
122 switch (pq->type) {
123 case PIPE_QUERY_OCCLUSION_COUNTER:
124 for (i = 0; i < num_threads; i++) {
125 *result += pq->count[i];
126 }
127 break;
128 case PIPE_QUERY_TIMESTAMP:
129 for (i = 0; i < num_threads; i++) {
130 if (pq->count[i] > *result) {
131 *result = pq->count[i];
132 }
133 if (*result == 0)
134 *result = os_time_get_nano();
135 }
136 break;
137 case PIPE_QUERY_PRIMITIVES_GENERATED:
138 *result = pq->num_primitives_generated;
139 break;
140 case PIPE_QUERY_PRIMITIVES_EMITTED:
141 *result = pq->num_primitives_written;
142 break;
143 case PIPE_QUERY_SO_OVERFLOW_PREDICATE:
144 *result = pq->so_has_overflown;
145 break;
146 case PIPE_QUERY_SO_STATISTICS: {
147 struct pipe_query_data_so_statistics *stats =
148 (struct pipe_query_data_so_statistics *)vresult;
149 stats->num_primitives_written = pq->num_primitives_written;
150 stats->primitives_storage_needed = pq->num_primitives_generated;
151 }
152 break;
153 case PIPE_QUERY_PIPELINE_STATISTICS: {
154 struct pipe_query_data_pipeline_statistics *stats =
155 (struct pipe_query_data_pipeline_statistics *)vresult;
156 *stats = pq->stats;
157 }
158 break;
159 default:
160 assert(0);
161 break;
162 }
163
164 return TRUE;
165 }
166
167
168 static void
169 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
170 {
171 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
172 struct llvmpipe_query *pq = llvmpipe_query(q);
173
174 /* Check if the query is already in the scene. If so, we need to
175 * flush the scene now. Real apps shouldn't re-use a query in a
176 * frame of rendering.
177 */
178 if (pq->fence && !lp_fence_issued(pq->fence)) {
179 llvmpipe_finish(pipe, __FUNCTION__);
180 }
181
182
183 memset(pq->count, 0, sizeof(pq->count));
184 lp_setup_begin_query(llvmpipe->setup, pq);
185
186 if (pq->type == PIPE_QUERY_PRIMITIVES_EMITTED) {
187 pq->num_primitives_written = 0;
188 llvmpipe->so_stats.num_primitives_written = 0;
189 }
190
191 if (pq->type == PIPE_QUERY_PRIMITIVES_GENERATED) {
192 pq->num_primitives_generated = 0;
193 llvmpipe->num_primitives_generated = 0;
194 }
195
196 if (pq->type == PIPE_QUERY_SO_STATISTICS) {
197 pq->num_primitives_written = 0;
198 llvmpipe->so_stats.num_primitives_written = 0;
199 pq->num_primitives_generated = 0;
200 llvmpipe->num_primitives_generated = 0;
201 }
202
203 if (pq->type == PIPE_QUERY_SO_OVERFLOW_PREDICATE) {
204 pq->so_has_overflown = FALSE;
205 }
206
207 if (pq->type == PIPE_QUERY_PIPELINE_STATISTICS) {
208 /* reset our cache */
209 if (llvmpipe->active_statistics_queries == 0) {
210 memset(&llvmpipe->pipeline_statistics, 0,
211 sizeof(llvmpipe->pipeline_statistics));
212 }
213 memcpy(&pq->stats, &llvmpipe->pipeline_statistics, sizeof(pq->stats));
214 llvmpipe->active_statistics_queries++;
215 }
216
217 if (pq->type == PIPE_QUERY_OCCLUSION_COUNTER) {
218 llvmpipe->active_occlusion_query = TRUE;
219 llvmpipe->dirty |= LP_NEW_OCCLUSION_QUERY;
220 }
221 }
222
223
224 static void
225 llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
226 {
227 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
228 struct llvmpipe_query *pq = llvmpipe_query(q);
229
230 lp_setup_end_query(llvmpipe->setup, pq);
231
232 if (pq->type == PIPE_QUERY_PRIMITIVES_EMITTED) {
233 pq->num_primitives_written = llvmpipe->so_stats.num_primitives_written;
234 }
235
236 if (pq->type == PIPE_QUERY_PRIMITIVES_GENERATED) {
237 pq->num_primitives_generated = llvmpipe->num_primitives_generated;
238 }
239
240 if (pq->type == PIPE_QUERY_SO_STATISTICS) {
241 pq->num_primitives_written = llvmpipe->so_stats.num_primitives_written;
242 pq->num_primitives_generated = llvmpipe->num_primitives_generated;
243 }
244
245 if (pq->type == PIPE_QUERY_SO_OVERFLOW_PREDICATE) {
246 pq->so_has_overflown = (llvmpipe->num_primitives_generated >
247 llvmpipe->so_stats.num_primitives_written);
248 }
249
250 if (pq->type == PIPE_QUERY_PIPELINE_STATISTICS) {
251 pq->stats.ia_vertices =
252 llvmpipe->pipeline_statistics.ia_vertices - pq->stats.ia_vertices;
253 pq->stats.ia_primitives =
254 llvmpipe->pipeline_statistics.ia_primitives - pq->stats.ia_primitives;
255 pq->stats.vs_invocations =
256 llvmpipe->pipeline_statistics.vs_invocations - pq->stats.vs_invocations;
257 pq->stats.gs_invocations =
258 llvmpipe->pipeline_statistics.gs_invocations - pq->stats.gs_invocations;
259 pq->stats.gs_primitives =
260 llvmpipe->pipeline_statistics.gs_primitives - pq->stats.gs_primitives;
261 pq->stats.c_invocations =
262 llvmpipe->pipeline_statistics.c_invocations - pq->stats.c_invocations;
263 pq->stats.c_primitives =
264 llvmpipe->pipeline_statistics.c_primitives - pq->stats.c_primitives;
265 pq->stats.ps_invocations =
266 llvmpipe->pipeline_statistics.ps_invocations - pq->stats.ps_invocations;
267
268 llvmpipe->active_statistics_queries--;
269 }
270
271 if (pq->type == PIPE_QUERY_OCCLUSION_COUNTER) {
272 assert(llvmpipe->active_occlusion_query);
273 llvmpipe->active_occlusion_query = FALSE;
274 llvmpipe->dirty |= LP_NEW_OCCLUSION_QUERY;
275 }
276 }
277
278 boolean
279 llvmpipe_check_render_cond(struct llvmpipe_context *lp)
280 {
281 struct pipe_context *pipe = &lp->pipe;
282 boolean b, wait;
283 uint64_t result;
284
285 if (!lp->render_cond_query)
286 return TRUE; /* no query predicate, draw normally */
287 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT ||
288 lp->render_cond_mode == PIPE_RENDER_COND_BY_REGION_WAIT);
289
290 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result);
291 if (b)
292 return result > 0;
293 else
294 return TRUE;
295 }
296
297 void llvmpipe_init_query_funcs(struct llvmpipe_context *llvmpipe )
298 {
299 llvmpipe->pipe.create_query = llvmpipe_create_query;
300 llvmpipe->pipe.destroy_query = llvmpipe_destroy_query;
301 llvmpipe->pipe.begin_query = llvmpipe_begin_query;
302 llvmpipe->pipe.end_query = llvmpipe_end_query;
303 llvmpipe->pipe.get_query_result = llvmpipe_get_query_result;
304 }
305
306