llvmpipe: Drop PIPE_QUERY_TIME_ELAPSED support.
[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_state.h"
42
43
44 static struct llvmpipe_query *llvmpipe_query( struct pipe_query *p )
45 {
46 return (struct llvmpipe_query *)p;
47 }
48
49 static struct pipe_query *
50 llvmpipe_create_query(struct pipe_context *pipe,
51 unsigned type)
52 {
53 struct llvmpipe_query *pq;
54
55 assert(type < PIPE_QUERY_TYPES);
56
57 pq = CALLOC_STRUCT( llvmpipe_query );
58
59 if (pq) {
60 pq->type = type;
61 }
62
63 return (struct pipe_query *) pq;
64 }
65
66
67 static void
68 llvmpipe_destroy_query(struct pipe_context *pipe, struct pipe_query *q)
69 {
70 struct llvmpipe_query *pq = llvmpipe_query(q);
71
72 /* Ideally we would refcount queries & not get destroyed until the
73 * last scene had finished with us.
74 */
75 if (pq->fence) {
76 if (!lp_fence_issued(pq->fence))
77 llvmpipe_flush(pipe, NULL, __FUNCTION__);
78
79 if (!lp_fence_signalled(pq->fence))
80 lp_fence_wait(pq->fence);
81
82 lp_fence_reference(&pq->fence, NULL);
83 }
84
85 FREE(pq);
86 }
87
88
89 static boolean
90 llvmpipe_get_query_result(struct pipe_context *pipe,
91 struct pipe_query *q,
92 boolean wait,
93 union pipe_query_result *vresult)
94 {
95 struct llvmpipe_query *pq = llvmpipe_query(q);
96 uint64_t *result = (uint64_t *)vresult;
97 int i;
98
99 if (!pq->fence) {
100 /* no fence because there was no scene, so results is zero */
101 *result = 0;
102 return TRUE;
103 }
104
105 if (!lp_fence_signalled(pq->fence)) {
106 if (!lp_fence_issued(pq->fence))
107 llvmpipe_flush(pipe, NULL, __FUNCTION__);
108
109 if (!wait)
110 return FALSE;
111
112 lp_fence_wait(pq->fence);
113 }
114
115 /* Sum the results from each of the threads:
116 */
117 *result = 0;
118
119 switch (pq->type) {
120 case PIPE_QUERY_OCCLUSION_COUNTER:
121 for (i = 0; i < LP_MAX_THREADS; i++) {
122 *result += pq->count[i];
123 }
124 break;
125 case PIPE_QUERY_TIMESTAMP:
126 for (i = 0; i < LP_MAX_THREADS; i++) {
127 if (pq->count[i] > *result) {
128 *result = pq->count[i];
129 }
130 if (*result == 0)
131 *result = os_time_get_nano();
132 }
133 break;
134 case PIPE_QUERY_PRIMITIVES_GENERATED:
135 *result = pq->num_primitives_generated;
136 break;
137 case PIPE_QUERY_PRIMITIVES_EMITTED:
138 *result = pq->num_primitives_written;
139 break;
140 default:
141 assert(0);
142 break;
143 }
144
145 return TRUE;
146 }
147
148
149 static void
150 llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
151 {
152 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
153 struct llvmpipe_query *pq = llvmpipe_query(q);
154
155 /* Check if the query is already in the scene. If so, we need to
156 * flush the scene now. Real apps shouldn't re-use a query in a
157 * frame of rendering.
158 */
159 if (pq->fence && !lp_fence_issued(pq->fence)) {
160 llvmpipe_finish(pipe, __FUNCTION__);
161 }
162
163
164 memset(pq->count, 0, sizeof(pq->count));
165 lp_setup_begin_query(llvmpipe->setup, pq);
166
167 if (pq->type == PIPE_QUERY_PRIMITIVES_EMITTED) {
168 pq->num_primitives_written = 0;
169 llvmpipe->so_stats.num_primitives_written = 0;
170 }
171
172 if (pq->type == PIPE_QUERY_PRIMITIVES_GENERATED) {
173 pq->num_primitives_generated = 0;
174 llvmpipe->num_primitives_generated = 0;
175 }
176
177 if (pq->type == PIPE_QUERY_OCCLUSION_COUNTER) {
178 llvmpipe->active_occlusion_query = TRUE;
179 llvmpipe->dirty |= LP_NEW_OCCLUSION_QUERY;
180 }
181 }
182
183
184 static void
185 llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
186 {
187 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
188 struct llvmpipe_query *pq = llvmpipe_query(q);
189
190 lp_setup_end_query(llvmpipe->setup, pq);
191
192 if (pq->type == PIPE_QUERY_PRIMITIVES_EMITTED) {
193 pq->num_primitives_written = llvmpipe->so_stats.num_primitives_written;
194 }
195
196 if (pq->type == PIPE_QUERY_PRIMITIVES_GENERATED) {
197 pq->num_primitives_generated = llvmpipe->num_primitives_generated;
198 }
199
200 if (pq->type == PIPE_QUERY_OCCLUSION_COUNTER) {
201 assert(llvmpipe->active_occlusion_query);
202 llvmpipe->active_occlusion_query = FALSE;
203 llvmpipe->dirty |= LP_NEW_OCCLUSION_QUERY;
204 }
205 }
206
207 boolean
208 llvmpipe_check_render_cond(struct llvmpipe_context *lp)
209 {
210 struct pipe_context *pipe = &lp->pipe;
211 boolean b, wait;
212 uint64_t result;
213
214 if (!lp->render_cond_query)
215 return TRUE; /* no query predicate, draw normally */
216 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT ||
217 lp->render_cond_mode == PIPE_RENDER_COND_BY_REGION_WAIT);
218
219 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result);
220 if (b)
221 return result > 0;
222 else
223 return TRUE;
224 }
225
226 void llvmpipe_init_query_funcs(struct llvmpipe_context *llvmpipe )
227 {
228 llvmpipe->pipe.create_query = llvmpipe_create_query;
229 llvmpipe->pipe.destroy_query = llvmpipe_destroy_query;
230 llvmpipe->pipe.begin_query = llvmpipe_begin_query;
231 llvmpipe->pipe.end_query = llvmpipe_end_query;
232 llvmpipe->pipe.get_query_result = llvmpipe_get_query_result;
233 }
234
235