gallium/hud: update the HUD interface for multiple contexts
[mesa.git] / src / gallium / auxiliary / hud / hud_context.c
1 /**************************************************************************
2 *
3 * Copyright 2013 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
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:
13 *
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.
17 *
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 THE AUTHORS 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.
25 *
26 **************************************************************************/
27
28 /* This head-up display module can draw transparent graphs on top of what
29 * the app is rendering, visualizing various data like framerate, cpu load,
30 * performance counters, etc. It can be hook up into any state tracker.
31 *
32 * The HUD is controlled with the GALLIUM_HUD environment variable.
33 * Set GALLIUM_HUD=help for more info.
34 */
35
36 #include <inttypes.h>
37 #include <signal.h>
38 #include <stdio.h>
39
40 #include "hud/hud_context.h"
41 #include "hud/hud_private.h"
42
43 #include "cso_cache/cso_context.h"
44 #include "util/u_draw_quad.h"
45 #include "util/u_format.h"
46 #include "util/u_inlines.h"
47 #include "util/u_memory.h"
48 #include "util/u_math.h"
49 #include "util/u_sampler.h"
50 #include "util/u_simple_shaders.h"
51 #include "util/u_string.h"
52 #include "util/u_upload_mgr.h"
53 #include "tgsi/tgsi_text.h"
54 #include "tgsi/tgsi_dump.h"
55
56 /* Control the visibility of all HUD contexts */
57 static boolean huds_visible = TRUE;
58
59
60 #ifdef PIPE_OS_UNIX
61 static void
62 signal_visible_handler(int sig, siginfo_t *siginfo, void *context)
63 {
64 huds_visible = !huds_visible;
65 }
66 #endif
67
68 static void
69 hud_draw_colored_prims(struct hud_context *hud, unsigned prim,
70 float *buffer, unsigned num_vertices,
71 float r, float g, float b, float a,
72 int xoffset, int yoffset, float yscale)
73 {
74 struct cso_context *cso = hud->cso;
75 unsigned size = num_vertices * hud->color_prims.vbuf.stride;
76
77 /* If a recording context is inactive, don't draw anything. */
78 if (size > hud->color_prims.buffer_size)
79 return;
80
81 memcpy(hud->color_prims.vertices, buffer, size);
82
83 hud->constants.color[0] = r;
84 hud->constants.color[1] = g;
85 hud->constants.color[2] = b;
86 hud->constants.color[3] = a;
87 hud->constants.translate[0] = (float) xoffset;
88 hud->constants.translate[1] = (float) yoffset;
89 hud->constants.scale[0] = 1;
90 hud->constants.scale[1] = yscale;
91 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
92
93 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso),
94 1, &hud->color_prims.vbuf);
95 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
96 cso_draw_arrays(cso, prim, 0, num_vertices);
97
98 hud->color_prims.vertices += size / sizeof(float);
99 hud->color_prims.vbuf.buffer_offset += size;
100 hud->color_prims.buffer_size -= size;
101 }
102
103 static void
104 hud_draw_colored_quad(struct hud_context *hud, unsigned prim,
105 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
106 float r, float g, float b, float a)
107 {
108 float buffer[] = {
109 (float) x1, (float) y1,
110 (float) x1, (float) y2,
111 (float) x2, (float) y2,
112 (float) x2, (float) y1,
113 };
114
115 hud_draw_colored_prims(hud, prim, buffer, 4, r, g, b, a, 0, 0, 1);
116 }
117
118 static void
119 hud_draw_background_quad(struct hud_context *hud,
120 unsigned x1, unsigned y1, unsigned x2, unsigned y2)
121 {
122 float *vertices = hud->bg.vertices + hud->bg.num_vertices*2;
123 unsigned num = 0;
124
125 assert(hud->bg.num_vertices + 4 <= hud->bg.max_num_vertices);
126
127 vertices[num++] = (float) x1;
128 vertices[num++] = (float) y1;
129
130 vertices[num++] = (float) x1;
131 vertices[num++] = (float) y2;
132
133 vertices[num++] = (float) x2;
134 vertices[num++] = (float) y2;
135
136 vertices[num++] = (float) x2;
137 vertices[num++] = (float) y1;
138
139 hud->bg.num_vertices += num/2;
140 }
141
142 static void
143 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y,
144 const char *str, ...)
145 {
146 char buf[256];
147 char *s = buf;
148 float *vertices = hud->text.vertices + hud->text.num_vertices*4;
149 unsigned num = 0;
150
151 va_list ap;
152 va_start(ap, str);
153 util_vsnprintf(buf, sizeof(buf), str, ap);
154 va_end(ap);
155
156 if (!*s)
157 return;
158
159 hud_draw_background_quad(hud,
160 x, y,
161 x + strlen(buf)*hud->font.glyph_width,
162 y + hud->font.glyph_height);
163
164 while (*s) {
165 unsigned x1 = x;
166 unsigned y1 = y;
167 unsigned x2 = x + hud->font.glyph_width;
168 unsigned y2 = y + hud->font.glyph_height;
169 unsigned tx1 = (*s % 16) * hud->font.glyph_width;
170 unsigned ty1 = (*s / 16) * hud->font.glyph_height;
171 unsigned tx2 = tx1 + hud->font.glyph_width;
172 unsigned ty2 = ty1 + hud->font.glyph_height;
173
174 if (*s == ' ') {
175 x += hud->font.glyph_width;
176 s++;
177 continue;
178 }
179
180 assert(hud->text.num_vertices + num/4 + 4 <= hud->text.max_num_vertices);
181
182 vertices[num++] = (float) x1;
183 vertices[num++] = (float) y1;
184 vertices[num++] = (float) tx1;
185 vertices[num++] = (float) ty1;
186
187 vertices[num++] = (float) x1;
188 vertices[num++] = (float) y2;
189 vertices[num++] = (float) tx1;
190 vertices[num++] = (float) ty2;
191
192 vertices[num++] = (float) x2;
193 vertices[num++] = (float) y2;
194 vertices[num++] = (float) tx2;
195 vertices[num++] = (float) ty2;
196
197 vertices[num++] = (float) x2;
198 vertices[num++] = (float) y1;
199 vertices[num++] = (float) tx2;
200 vertices[num++] = (float) ty1;
201
202 x += hud->font.glyph_width;
203 s++;
204 }
205
206 hud->text.num_vertices += num/4;
207 }
208
209 static void
210 number_to_human_readable(double num, enum pipe_driver_query_type type,
211 char *out)
212 {
213 static const char *byte_units[] =
214 {" B", " KB", " MB", " GB", " TB", " PB", " EB"};
215 static const char *metric_units[] =
216 {"", " k", " M", " G", " T", " P", " E"};
217 static const char *time_units[] =
218 {" us", " ms", " s"}; /* based on microseconds */
219 static const char *hz_units[] =
220 {" Hz", " KHz", " MHz", " GHz"};
221 static const char *percent_units[] = {"%"};
222 static const char *dbm_units[] = {" (-dBm)"};
223 static const char *temperature_units[] = {" C"};
224 static const char *volt_units[] = {" mV", " V"};
225 static const char *amp_units[] = {" mA", " A"};
226 static const char *watt_units[] = {" mW", " W"};
227
228 const char **units;
229 unsigned max_unit;
230 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000;
231 unsigned unit = 0;
232 double d = num;
233
234 switch (type) {
235 case PIPE_DRIVER_QUERY_TYPE_MICROSECONDS:
236 max_unit = ARRAY_SIZE(time_units)-1;
237 units = time_units;
238 break;
239 case PIPE_DRIVER_QUERY_TYPE_VOLTS:
240 max_unit = ARRAY_SIZE(volt_units)-1;
241 units = volt_units;
242 break;
243 case PIPE_DRIVER_QUERY_TYPE_AMPS:
244 max_unit = ARRAY_SIZE(amp_units)-1;
245 units = amp_units;
246 break;
247 case PIPE_DRIVER_QUERY_TYPE_DBM:
248 max_unit = ARRAY_SIZE(dbm_units)-1;
249 units = dbm_units;
250 break;
251 case PIPE_DRIVER_QUERY_TYPE_TEMPERATURE:
252 max_unit = ARRAY_SIZE(temperature_units)-1;
253 units = temperature_units;
254 break;
255 case PIPE_DRIVER_QUERY_TYPE_PERCENTAGE:
256 max_unit = ARRAY_SIZE(percent_units)-1;
257 units = percent_units;
258 break;
259 case PIPE_DRIVER_QUERY_TYPE_BYTES:
260 max_unit = ARRAY_SIZE(byte_units)-1;
261 units = byte_units;
262 break;
263 case PIPE_DRIVER_QUERY_TYPE_HZ:
264 max_unit = ARRAY_SIZE(hz_units)-1;
265 units = hz_units;
266 break;
267 case PIPE_DRIVER_QUERY_TYPE_WATTS:
268 max_unit = ARRAY_SIZE(watt_units)-1;
269 units = watt_units;
270 break;
271 default:
272 max_unit = ARRAY_SIZE(metric_units)-1;
273 units = metric_units;
274 }
275
276 while (d > divisor && unit < max_unit) {
277 d /= divisor;
278 unit++;
279 }
280
281 /* Round to 3 decimal places so as not to print trailing zeros. */
282 if (d*1000 != (int)(d*1000))
283 d = round(d * 1000) / 1000;
284
285 /* Show at least 4 digits with at most 3 decimal places, but not zeros. */
286 if (d >= 1000 || d == (int)d)
287 sprintf(out, "%.0f%s", d, units[unit]);
288 else if (d >= 100 || d*10 == (int)(d*10))
289 sprintf(out, "%.1f%s", d, units[unit]);
290 else if (d >= 10 || d*100 == (int)(d*100))
291 sprintf(out, "%.2f%s", d, units[unit]);
292 else
293 sprintf(out, "%.3f%s", d, units[unit]);
294 }
295
296 static void
297 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
298 unsigned xoffset, unsigned yoffset, float yscale)
299 {
300 if (gr->num_vertices <= 1)
301 return;
302
303 assert(gr->index <= gr->num_vertices);
304
305 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
306 gr->vertices, gr->index,
307 gr->color[0], gr->color[1], gr->color[2], 1,
308 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
309 yoffset, yscale);
310
311 if (gr->num_vertices <= gr->index)
312 return;
313
314 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
315 gr->vertices + gr->index*2,
316 gr->num_vertices - gr->index,
317 gr->color[0], gr->color[1], gr->color[2], 1,
318 xoffset - gr->index*2 - 1, yoffset, yscale);
319 }
320
321 static void
322 hud_pane_accumulate_vertices(struct hud_context *hud,
323 const struct hud_pane *pane)
324 {
325 struct hud_graph *gr;
326 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
327 unsigned i, num = 0;
328 char str[32];
329 const unsigned last_line = pane->last_line;
330
331 /* draw background */
332 hud_draw_background_quad(hud,
333 pane->x1, pane->y1,
334 pane->x2, pane->y2);
335
336 /* draw numbers on the right-hand side */
337 for (i = 0; i <= last_line; i++) {
338 unsigned x = pane->x2 + 2;
339 unsigned y = pane->inner_y1 +
340 pane->inner_height * (last_line - i) / last_line -
341 hud->font.glyph_height / 2;
342
343 number_to_human_readable(pane->max_value * i / last_line,
344 pane->type, str);
345 hud_draw_string(hud, x, y, "%s", str);
346 }
347
348 /* draw info below the pane */
349 i = 0;
350 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
351 unsigned x = pane->x1 + 2;
352 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
353
354 number_to_human_readable(gr->current_value, pane->type, str);
355 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
356 i++;
357 }
358
359 /* draw border */
360 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
361 line_verts[num++] = (float) pane->x1;
362 line_verts[num++] = (float) pane->y1;
363 line_verts[num++] = (float) pane->x2;
364 line_verts[num++] = (float) pane->y1;
365
366 line_verts[num++] = (float) pane->x2;
367 line_verts[num++] = (float) pane->y1;
368 line_verts[num++] = (float) pane->x2;
369 line_verts[num++] = (float) pane->y2;
370
371 line_verts[num++] = (float) pane->x1;
372 line_verts[num++] = (float) pane->y2;
373 line_verts[num++] = (float) pane->x2;
374 line_verts[num++] = (float) pane->y2;
375
376 line_verts[num++] = (float) pane->x1;
377 line_verts[num++] = (float) pane->y1;
378 line_verts[num++] = (float) pane->x1;
379 line_verts[num++] = (float) pane->y2;
380
381 /* draw horizontal lines inside the graph */
382 for (i = 0; i <= last_line; i++) {
383 float y = round((pane->max_value * i / (double)last_line) *
384 pane->yscale + pane->inner_y2);
385
386 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
387 line_verts[num++] = pane->x1;
388 line_verts[num++] = y;
389 line_verts[num++] = pane->x2;
390 line_verts[num++] = y;
391 }
392
393 hud->whitelines.num_vertices += num/2;
394 }
395
396 static void
397 hud_pane_draw_colored_objects(struct hud_context *hud,
398 const struct hud_pane *pane)
399 {
400 struct hud_graph *gr;
401 unsigned i;
402
403 /* draw colored quads below the pane */
404 i = 0;
405 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
406 unsigned x = pane->x1 + 2;
407 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
408
409 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
410 gr->color[0], gr->color[1], gr->color[2], 1);
411 i++;
412 }
413
414 /* draw the line strips */
415 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
416 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
417 }
418 }
419
420 static void
421 hud_prepare_vertices(struct hud_context *hud, struct vertex_queue *v,
422 unsigned num_vertices, unsigned stride)
423 {
424 v->num_vertices = 0;
425 v->max_num_vertices = num_vertices;
426 v->vbuf.stride = stride;
427 v->buffer_size = stride * num_vertices;
428 }
429
430 /**
431 * Draw the HUD to the texture \p tex.
432 * The texture is usually the back buffer being displayed.
433 */
434 static void
435 hud_draw_results(struct hud_context *hud, struct pipe_resource *tex)
436 {
437 struct cso_context *cso = hud->cso;
438 struct pipe_context *pipe = hud->pipe;
439 struct pipe_framebuffer_state fb;
440 struct pipe_surface surf_templ, *surf;
441 struct pipe_viewport_state viewport;
442 const struct pipe_sampler_state *sampler_states[] =
443 { &hud->font_sampler_state };
444 struct hud_pane *pane;
445
446 if (!huds_visible)
447 return;
448
449 hud->fb_width = tex->width0;
450 hud->fb_height = tex->height0;
451 hud->constants.two_div_fb_width = 2.0f / hud->fb_width;
452 hud->constants.two_div_fb_height = 2.0f / hud->fb_height;
453
454 cso_save_state(cso, (CSO_BIT_FRAMEBUFFER |
455 CSO_BIT_SAMPLE_MASK |
456 CSO_BIT_MIN_SAMPLES |
457 CSO_BIT_BLEND |
458 CSO_BIT_DEPTH_STENCIL_ALPHA |
459 CSO_BIT_FRAGMENT_SHADER |
460 CSO_BIT_FRAGMENT_SAMPLER_VIEWS |
461 CSO_BIT_FRAGMENT_SAMPLERS |
462 CSO_BIT_RASTERIZER |
463 CSO_BIT_VIEWPORT |
464 CSO_BIT_STREAM_OUTPUTS |
465 CSO_BIT_GEOMETRY_SHADER |
466 CSO_BIT_TESSCTRL_SHADER |
467 CSO_BIT_TESSEVAL_SHADER |
468 CSO_BIT_VERTEX_SHADER |
469 CSO_BIT_VERTEX_ELEMENTS |
470 CSO_BIT_AUX_VERTEX_BUFFER_SLOT |
471 CSO_BIT_PAUSE_QUERIES |
472 CSO_BIT_RENDER_CONDITION));
473 cso_save_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
474
475 /* set states */
476 memset(&surf_templ, 0, sizeof(surf_templ));
477 surf_templ.format = tex->format;
478
479 /* Without this, AA lines look thinner if they are between 2 pixels
480 * because the alpha is 0.5 on both pixels. (it's ugly)
481 *
482 * sRGB makes the width of all AA lines look the same.
483 */
484 if (hud->has_srgb) {
485 enum pipe_format srgb_format = util_format_srgb(tex->format);
486
487 if (srgb_format != PIPE_FORMAT_NONE)
488 surf_templ.format = srgb_format;
489 }
490 surf = pipe->create_surface(pipe, tex, &surf_templ);
491
492 memset(&fb, 0, sizeof(fb));
493 fb.nr_cbufs = 1;
494 fb.cbufs[0] = surf;
495 fb.zsbuf = NULL;
496 fb.width = hud->fb_width;
497 fb.height = hud->fb_height;
498
499 viewport.scale[0] = 0.5f * hud->fb_width;
500 viewport.scale[1] = 0.5f * hud->fb_height;
501 viewport.scale[2] = 1.0f;
502 viewport.translate[0] = 0.5f * hud->fb_width;
503 viewport.translate[1] = 0.5f * hud->fb_height;
504 viewport.translate[2] = 0.0f;
505
506 cso_set_framebuffer(cso, &fb);
507 cso_set_sample_mask(cso, ~0);
508 cso_set_min_samples(cso, 1);
509 cso_set_depth_stencil_alpha(cso, &hud->dsa);
510 cso_set_rasterizer(cso, &hud->rasterizer);
511 cso_set_viewport(cso, &viewport);
512 cso_set_stream_outputs(cso, 0, NULL, NULL);
513 cso_set_tessctrl_shader_handle(cso, NULL);
514 cso_set_tesseval_shader_handle(cso, NULL);
515 cso_set_geometry_shader_handle(cso, NULL);
516 cso_set_vertex_shader_handle(cso, hud->vs);
517 cso_set_vertex_elements(cso, 2, hud->velems);
518 cso_set_render_condition(cso, NULL, FALSE, 0);
519 cso_set_sampler_views(cso, PIPE_SHADER_FRAGMENT, 1,
520 &hud->font_sampler_view);
521 cso_set_samplers(cso, PIPE_SHADER_FRAGMENT, 1, sampler_states);
522 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
523
524 /* draw accumulated vertices for background quads */
525 cso_set_blend(cso, &hud->alpha_blend);
526 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
527
528 if (hud->bg.num_vertices) {
529 hud->constants.color[0] = 0;
530 hud->constants.color[1] = 0;
531 hud->constants.color[2] = 0;
532 hud->constants.color[3] = 0.666f;
533 hud->constants.translate[0] = 0;
534 hud->constants.translate[1] = 0;
535 hud->constants.scale[0] = 1;
536 hud->constants.scale[1] = 1;
537
538 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
539 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
540 &hud->bg.vbuf);
541 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->bg.num_vertices);
542 }
543 pipe_resource_reference(&hud->bg.vbuf.buffer.resource, NULL);
544
545 /* draw accumulated vertices for white lines */
546 cso_set_blend(cso, &hud->no_blend);
547
548 hud->constants.color[0] = 1;
549 hud->constants.color[1] = 1;
550 hud->constants.color[2] = 1;
551 hud->constants.color[3] = 1;
552 hud->constants.translate[0] = 0;
553 hud->constants.translate[1] = 0;
554 hud->constants.scale[0] = 1;
555 hud->constants.scale[1] = 1;
556 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
557
558 if (hud->whitelines.num_vertices) {
559 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
560 &hud->whitelines.vbuf);
561 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
562 cso_draw_arrays(cso, PIPE_PRIM_LINES, 0, hud->whitelines.num_vertices);
563 }
564 pipe_resource_reference(&hud->whitelines.vbuf.buffer.resource, NULL);
565
566 /* draw accumulated vertices for text */
567 cso_set_blend(cso, &hud->alpha_blend);
568 if (hud->text.num_vertices) {
569 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso), 1,
570 &hud->text.vbuf);
571 cso_set_fragment_shader_handle(hud->cso, hud->fs_text);
572 cso_draw_arrays(cso, PIPE_PRIM_QUADS, 0, hud->text.num_vertices);
573 }
574 pipe_resource_reference(&hud->text.vbuf.buffer.resource, NULL);
575
576 /* draw the rest */
577 cso_set_rasterizer(cso, &hud->rasterizer_aa_lines);
578 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
579 if (pane)
580 hud_pane_draw_colored_objects(hud, pane);
581 }
582
583 cso_restore_state(cso);
584 cso_restore_constant_buffer_slot0(cso, PIPE_SHADER_VERTEX);
585
586 pipe_surface_reference(&surf, NULL);
587 }
588
589 static void
590 hud_start_queries(struct hud_context *hud, struct pipe_context *pipe)
591 {
592 struct hud_pane *pane;
593 struct hud_graph *gr;
594
595 /* Start queries. */
596 hud_batch_query_begin(hud->batch_query, pipe);
597
598 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
599 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
600 if (gr->begin_query)
601 gr->begin_query(gr, pipe);
602 }
603 }
604 }
605
606 /* Stop queries, query results, and record vertices for charts. */
607 static void
608 hud_stop_queries(struct hud_context *hud, struct pipe_context *pipe)
609 {
610 struct hud_pane *pane;
611 struct hud_graph *gr, *next;
612
613 /* prepare vertex buffers */
614 hud_prepare_vertices(hud, &hud->bg, 16 * 256, 2 * sizeof(float));
615 hud_prepare_vertices(hud, &hud->whitelines, 4 * 256, 2 * sizeof(float));
616 hud_prepare_vertices(hud, &hud->text, 16 * 1024, 4 * sizeof(float));
617 hud_prepare_vertices(hud, &hud->color_prims, 32 * 1024, 2 * sizeof(float));
618
619 /* Allocate everything once and divide the storage into 3 portions
620 * manually, because u_upload_alloc can unmap memory from previous calls.
621 */
622 u_upload_alloc(pipe->stream_uploader, 0,
623 hud->bg.buffer_size +
624 hud->whitelines.buffer_size +
625 hud->text.buffer_size +
626 hud->color_prims.buffer_size,
627 16, &hud->bg.vbuf.buffer_offset, &hud->bg.vbuf.buffer.resource,
628 (void**)&hud->bg.vertices);
629 if (!hud->bg.vertices)
630 return;
631
632 pipe_resource_reference(&hud->whitelines.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
633 pipe_resource_reference(&hud->text.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
634 pipe_resource_reference(&hud->color_prims.vbuf.buffer.resource, hud->bg.vbuf.buffer.resource);
635
636 hud->whitelines.vbuf.buffer_offset = hud->bg.vbuf.buffer_offset +
637 hud->bg.buffer_size;
638 hud->whitelines.vertices = hud->bg.vertices +
639 hud->bg.buffer_size / sizeof(float);
640
641 hud->text.vbuf.buffer_offset = hud->whitelines.vbuf.buffer_offset +
642 hud->whitelines.buffer_size;
643 hud->text.vertices = hud->whitelines.vertices +
644 hud->whitelines.buffer_size / sizeof(float);
645
646 hud->color_prims.vbuf.buffer_offset = hud->text.vbuf.buffer_offset +
647 hud->text.buffer_size;
648 hud->color_prims.vertices = hud->text.vertices +
649 hud->text.buffer_size / sizeof(float);
650
651 /* prepare all graphs */
652 hud_batch_query_update(hud->batch_query, pipe);
653
654 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
655 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
656 gr->query_new_value(gr, pipe);
657 }
658
659 if (pane->sort_items) {
660 LIST_FOR_EACH_ENTRY_SAFE(gr, next, &pane->graph_list, head) {
661 /* ignore the last one */
662 if (&gr->head == pane->graph_list.prev)
663 continue;
664
665 /* This is an incremental bubble sort, because we only do one pass
666 * per frame. It will eventually reach an equilibrium.
667 */
668 if (gr->current_value <
669 LIST_ENTRY(struct hud_graph, next, head)->current_value) {
670 LIST_DEL(&gr->head);
671 LIST_ADD(&gr->head, &next->head);
672 }
673 }
674 }
675
676 hud_pane_accumulate_vertices(hud, pane);
677 }
678
679 /* unmap the uploader's vertex buffer before drawing */
680 u_upload_unmap(pipe->stream_uploader);
681 }
682
683 void
684 hud_run(struct hud_context *hud, struct cso_context *cso,
685 struct pipe_resource *tex)
686 {
687 hud_stop_queries(hud, hud->record_pipe);
688 hud_draw_results(hud, tex);
689 hud_start_queries(hud, hud->record_pipe);
690 }
691
692 static void
693 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
694 {
695 if (type == PIPE_DRIVER_QUERY_TYPE_BYTES && position % 3 == 0)
696 *exp10 = (*exp10 / 1000) * 1024;
697 }
698
699 /**
700 * Set the maximum value for the Y axis of the graph.
701 * This scales the graph accordingly.
702 */
703 void
704 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
705 {
706 double leftmost_digit;
707 uint64_t exp10;
708 int i;
709
710 /* The following code determines the max_value in the graph as well as
711 * how many describing lines are drawn. The max_value is rounded up,
712 * so that all drawn numbers are rounded for readability.
713 * We want to print multiples of a simple number instead of multiples of
714 * hard-to-read numbers like 1.753.
715 */
716
717 /* Find the left-most digit. Make sure exp10 * 10 and fixup_bytes doesn't
718 * overflow. (11 is safe) */
719 exp10 = 1;
720 for (i = 0; exp10 <= UINT64_MAX / 11 && exp10 * 9 < value; i++) {
721 exp10 *= 10;
722 fixup_bytes(pane->type, i + 1, &exp10);
723 }
724
725 leftmost_digit = DIV_ROUND_UP(value, exp10);
726
727 /* Round 9 to 10. */
728 if (leftmost_digit == 9) {
729 leftmost_digit = 1;
730 exp10 *= 10;
731 fixup_bytes(pane->type, i + 1, &exp10);
732 }
733
734 switch ((unsigned)leftmost_digit) {
735 case 1:
736 pane->last_line = 5; /* lines in +1/5 increments */
737 break;
738 case 2:
739 pane->last_line = 8; /* lines in +1/4 increments. */
740 break;
741 case 3:
742 case 4:
743 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
744 break;
745 case 5:
746 case 6:
747 case 7:
748 case 8:
749 pane->last_line = leftmost_digit; /* lines in +1 increments */
750 break;
751 default:
752 assert(0);
753 }
754
755 /* Truncate {3,4} to {2.5, 3.5} if possible. */
756 for (i = 3; i <= 4; i++) {
757 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
758 leftmost_digit = i - 0.5;
759 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments. */
760 }
761 }
762
763 /* Truncate 2 to a multiple of 0.2 in (1, 1.6] if possible. */
764 if (leftmost_digit == 2) {
765 for (i = 1; i <= 3; i++) {
766 if (value <= (1 + i*0.2) * exp10) {
767 leftmost_digit = 1 + i*0.2;
768 pane->last_line = 5 + i; /* lines in +1/5 increments. */
769 break;
770 }
771 }
772 }
773
774 pane->max_value = leftmost_digit * exp10;
775 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
776 }
777
778 static void
779 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
780 {
781 unsigned i;
782 float tmp = 0.0f;
783
784 if (pane->dyn_ceil_last_ran != gr->index) {
785 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
786 for (i = 0; i < gr->num_vertices; ++i) {
787 tmp = gr->vertices[i * 2 + 1] > tmp ?
788 gr->vertices[i * 2 + 1] : tmp;
789 }
790 }
791
792 /* Avoid setting it lower than the initial starting height. */
793 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
794 hud_pane_set_max_value(pane, tmp);
795 }
796
797 /*
798 * Mark this adjustment run so we could avoid repeating a full update
799 * again needlessly in case the pane has more than one graph.
800 */
801 pane->dyn_ceil_last_ran = gr->index;
802 }
803
804 static struct hud_pane *
805 hud_pane_create(struct hud_context *hud,
806 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
807 unsigned period, uint64_t max_value, uint64_t ceiling,
808 boolean dyn_ceiling, boolean sort_items)
809 {
810 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
811
812 if (!pane)
813 return NULL;
814
815 pane->hud = hud;
816 pane->x1 = x1;
817 pane->y1 = y1;
818 pane->x2 = x2;
819 pane->y2 = y2;
820 pane->inner_x1 = x1 + 1;
821 pane->inner_x2 = x2 - 1;
822 pane->inner_y1 = y1 + 1;
823 pane->inner_y2 = y2 - 1;
824 pane->inner_width = pane->inner_x2 - pane->inner_x1;
825 pane->inner_height = pane->inner_y2 - pane->inner_y1;
826 pane->period = period;
827 pane->max_num_vertices = (x2 - x1 + 2) / 2;
828 pane->ceiling = ceiling;
829 pane->dyn_ceiling = dyn_ceiling;
830 pane->dyn_ceil_last_ran = 0;
831 pane->sort_items = sort_items;
832 pane->initial_max_value = max_value;
833 hud_pane_set_max_value(pane, max_value);
834 LIST_INITHEAD(&pane->graph_list);
835 return pane;
836 }
837
838 /* replace '-' with a space */
839 static void
840 strip_hyphens(char *s)
841 {
842 while (*s) {
843 if (*s == '-')
844 *s = ' ';
845 s++;
846 }
847 }
848
849 /**
850 * Add a graph to an existing pane.
851 * One pane can contain multiple graphs over each other.
852 */
853 void
854 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
855 {
856 static const float colors[][3] = {
857 {0, 1, 0},
858 {1, 0, 0},
859 {0, 1, 1},
860 {1, 0, 1},
861 {1, 1, 0},
862 {0.5, 1, 0.5},
863 {1, 0.5, 0.5},
864 {0.5, 1, 1},
865 {1, 0.5, 1},
866 {1, 1, 0.5},
867 {0, 0.5, 0},
868 {0.5, 0, 0},
869 {0, 0.5, 0.5},
870 {0.5, 0, 0.5},
871 {0.5, 0.5, 0},
872 };
873 unsigned color = pane->next_color % ARRAY_SIZE(colors);
874
875 strip_hyphens(gr->name);
876
877 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
878 gr->color[0] = colors[color][0];
879 gr->color[1] = colors[color][1];
880 gr->color[2] = colors[color][2];
881 gr->pane = pane;
882 LIST_ADDTAIL(&gr->head, &pane->graph_list);
883 pane->num_graphs++;
884 pane->next_color++;
885 }
886
887 void
888 hud_graph_add_value(struct hud_graph *gr, double value)
889 {
890 gr->current_value = value;
891 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
892
893 if (gr->fd) {
894 if (fabs(value - lround(value)) > FLT_EPSILON) {
895 fprintf(gr->fd, "%f\n", value);
896 }
897 else {
898 fprintf(gr->fd, "%" PRIu64 "\n", (uint64_t) lround(value));
899 }
900 }
901
902 if (gr->index == gr->pane->max_num_vertices) {
903 gr->vertices[0] = 0;
904 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
905 gr->index = 1;
906 }
907 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
908 gr->vertices[(gr->index)*2+1] = (float) value;
909 gr->index++;
910
911 if (gr->num_vertices < gr->pane->max_num_vertices) {
912 gr->num_vertices++;
913 }
914
915 if (gr->pane->dyn_ceiling == true) {
916 hud_pane_update_dyn_ceiling(gr, gr->pane);
917 }
918 if (value > gr->pane->max_value) {
919 hud_pane_set_max_value(gr->pane, value);
920 }
921 }
922
923 static void
924 hud_graph_destroy(struct hud_graph *graph, struct pipe_context *pipe)
925 {
926 FREE(graph->vertices);
927 if (graph->free_query_data)
928 graph->free_query_data(graph->query_data, pipe);
929 if (graph->fd)
930 fclose(graph->fd);
931 FREE(graph);
932 }
933
934 static void strcat_without_spaces(char *dst, const char *src)
935 {
936 dst += strlen(dst);
937 while (*src) {
938 if (*src == ' ')
939 *dst++ = '_';
940 else
941 *dst++ = *src;
942 src++;
943 }
944 *dst = 0;
945 }
946
947
948 #ifdef PIPE_OS_WINDOWS
949 #define W_OK 0
950 static int
951 access(const char *pathname, int mode)
952 {
953 /* no-op */
954 return 0;
955 }
956
957 #define PATH_SEP "\\"
958
959 #else
960
961 #define PATH_SEP "/"
962
963 #endif
964
965
966 /**
967 * If the GALLIUM_HUD_DUMP_DIR env var is set, we'll write the raw
968 * HUD values to files at ${GALLIUM_HUD_DUMP_DIR}/<stat> where <stat>
969 * is a HUD variable such as "fps", or "cpu"
970 */
971 static void
972 hud_graph_set_dump_file(struct hud_graph *gr)
973 {
974 const char *hud_dump_dir = getenv("GALLIUM_HUD_DUMP_DIR");
975
976 if (hud_dump_dir && access(hud_dump_dir, W_OK) == 0) {
977 char *dump_file = malloc(strlen(hud_dump_dir) + sizeof(PATH_SEP)
978 + sizeof(gr->name));
979 if (dump_file) {
980 strcpy(dump_file, hud_dump_dir);
981 strcat(dump_file, PATH_SEP);
982 strcat_without_spaces(dump_file, gr->name);
983 gr->fd = fopen(dump_file, "w+");
984 if (gr->fd) {
985 /* flush output after each line is written */
986 setvbuf(gr->fd, NULL, _IOLBF, 0);
987 }
988 free(dump_file);
989 }
990 }
991 }
992
993 /**
994 * Read a string from the environment variable.
995 * The separators "+", ",", ":", and ";" terminate the string.
996 * Return the number of read characters.
997 */
998 static int
999 parse_string(const char *s, char *out)
1000 {
1001 int i;
1002
1003 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';' && *s != '=';
1004 s++, out++, i++)
1005 *out = *s;
1006
1007 *out = 0;
1008
1009 if (*s && !i) {
1010 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
1011 "parsing a string\n", *s, *s);
1012 fflush(stderr);
1013 }
1014
1015 return i;
1016 }
1017
1018 static char *
1019 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
1020 unsigned * const width, unsigned * const height,
1021 uint64_t * const ceiling, boolean * const dyn_ceiling,
1022 boolean *reset_colors, boolean *sort_items)
1023 {
1024 char *ret = str;
1025 unsigned tmp;
1026
1027 while (*str == '.') {
1028 ++str;
1029 switch (*str) {
1030 case 'x':
1031 ++str;
1032 *x = strtoul(str, &ret, 10);
1033 str = ret;
1034 break;
1035
1036 case 'y':
1037 ++str;
1038 *y = strtoul(str, &ret, 10);
1039 str = ret;
1040 break;
1041
1042 case 'w':
1043 ++str;
1044 tmp = strtoul(str, &ret, 10);
1045 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
1046 str = ret;
1047 break;
1048
1049 /*
1050 * Prevent setting height to less than 50. If the height is set to less,
1051 * the text of the Y axis labels on the graph will start overlapping.
1052 */
1053 case 'h':
1054 ++str;
1055 tmp = strtoul(str, &ret, 10);
1056 *height = tmp > 50 ? tmp : 50;
1057 str = ret;
1058 break;
1059
1060 case 'c':
1061 ++str;
1062 tmp = strtoul(str, &ret, 10);
1063 *ceiling = tmp > 10 ? tmp : 10;
1064 str = ret;
1065 break;
1066
1067 case 'd':
1068 ++str;
1069 ret = str;
1070 *dyn_ceiling = true;
1071 break;
1072
1073 case 'r':
1074 ++str;
1075 ret = str;
1076 *reset_colors = true;
1077 break;
1078
1079 case 's':
1080 ++str;
1081 ret = str;
1082 *sort_items = true;
1083 break;
1084
1085 default:
1086 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
1087 fflush(stderr);
1088 }
1089
1090 }
1091
1092 return ret;
1093 }
1094
1095 static boolean
1096 has_occlusion_query(struct pipe_screen *screen)
1097 {
1098 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
1099 }
1100
1101 static boolean
1102 has_streamout(struct pipe_screen *screen)
1103 {
1104 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
1105 }
1106
1107 static boolean
1108 has_pipeline_stats_query(struct pipe_screen *screen)
1109 {
1110 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
1111 }
1112
1113 static void
1114 hud_parse_env_var(struct hud_context *hud, struct pipe_screen *screen,
1115 const char *env)
1116 {
1117 unsigned num, i;
1118 char name_a[256], s[256];
1119 char *name;
1120 struct hud_pane *pane = NULL;
1121 unsigned x = 10, y = 10;
1122 unsigned width = 251, height = 100;
1123 unsigned period = 500 * 1000; /* default period (1/2 second) */
1124 uint64_t ceiling = UINT64_MAX;
1125 unsigned column_width = 251;
1126 boolean dyn_ceiling = false;
1127 boolean reset_colors = false;
1128 boolean sort_items = false;
1129 const char *period_env;
1130
1131 /*
1132 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1133 * The env var is in seconds (a float).
1134 * Zero means update after every frame.
1135 */
1136 period_env = getenv("GALLIUM_HUD_PERIOD");
1137 if (period_env) {
1138 float p = (float) atof(period_env);
1139 if (p >= 0.0f) {
1140 period = (unsigned) (p * 1000 * 1000);
1141 }
1142 }
1143
1144 while ((num = parse_string(env, name_a)) != 0) {
1145 env += num;
1146
1147 /* check for explicit location, size and etc. settings */
1148 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
1149 &dyn_ceiling, &reset_colors, &sort_items);
1150
1151 /*
1152 * Keep track of overall column width to avoid pane overlapping in case
1153 * later we create a new column while the bottom pane in the current
1154 * column is less wide than the rest of the panes in it.
1155 */
1156 column_width = width > column_width ? width : column_width;
1157
1158 if (!pane) {
1159 pane = hud_pane_create(hud, x, y, x + width, y + height, period, 10,
1160 ceiling, dyn_ceiling, sort_items);
1161 if (!pane)
1162 return;
1163 }
1164
1165 if (reset_colors) {
1166 pane->next_color = 0;
1167 reset_colors = false;
1168 }
1169
1170 /* Add a graph. */
1171 #if HAVE_GALLIUM_EXTRA_HUD || HAVE_LIBSENSORS
1172 char arg_name[64];
1173 #endif
1174 /* IF YOU CHANGE THIS, UPDATE print_help! */
1175 if (strcmp(name, "fps") == 0) {
1176 hud_fps_graph_install(pane);
1177 }
1178 else if (strcmp(name, "cpu") == 0) {
1179 hud_cpu_graph_install(pane, ALL_CPUS);
1180 }
1181 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
1182 hud_cpu_graph_install(pane, i);
1183 }
1184 else if (strcmp(name, "API-thread-busy") == 0) {
1185 hud_thread_busy_install(pane, name, false);
1186 }
1187 else if (strcmp(name, "API-thread-offloaded-slots") == 0) {
1188 hud_thread_counter_install(pane, name, HUD_COUNTER_OFFLOADED);
1189 }
1190 else if (strcmp(name, "API-thread-direct-slots") == 0) {
1191 hud_thread_counter_install(pane, name, HUD_COUNTER_DIRECT);
1192 }
1193 else if (strcmp(name, "API-thread-num-syncs") == 0) {
1194 hud_thread_counter_install(pane, name, HUD_COUNTER_SYNCS);
1195 }
1196 else if (strcmp(name, "main-thread-busy") == 0) {
1197 hud_thread_busy_install(pane, name, true);
1198 }
1199 #if HAVE_GALLIUM_EXTRA_HUD
1200 else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {
1201 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_RX);
1202 }
1203 else if (sscanf(name, "nic-tx-%s", arg_name) == 1) {
1204 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_TX);
1205 }
1206 else if (sscanf(name, "nic-rssi-%s", arg_name) == 1) {
1207 hud_nic_graph_install(pane, arg_name, NIC_RSSI_DBM);
1208 pane->type = PIPE_DRIVER_QUERY_TYPE_DBM;
1209 }
1210 else if (sscanf(name, "diskstat-rd-%s", arg_name) == 1) {
1211 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_RD);
1212 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1213 }
1214 else if (sscanf(name, "diskstat-wr-%s", arg_name) == 1) {
1215 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_WR);
1216 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1217 }
1218 else if (sscanf(name, "cpufreq-min-cpu%u", &i) == 1) {
1219 hud_cpufreq_graph_install(pane, i, CPUFREQ_MINIMUM);
1220 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1221 }
1222 else if (sscanf(name, "cpufreq-cur-cpu%u", &i) == 1) {
1223 hud_cpufreq_graph_install(pane, i, CPUFREQ_CURRENT);
1224 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1225 }
1226 else if (sscanf(name, "cpufreq-max-cpu%u", &i) == 1) {
1227 hud_cpufreq_graph_install(pane, i, CPUFREQ_MAXIMUM);
1228 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1229 }
1230 #endif
1231 #if HAVE_LIBSENSORS
1232 else if (sscanf(name, "sensors_temp_cu-%s", arg_name) == 1) {
1233 hud_sensors_temp_graph_install(pane, arg_name,
1234 SENSORS_TEMP_CURRENT);
1235 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1236 }
1237 else if (sscanf(name, "sensors_temp_cr-%s", arg_name) == 1) {
1238 hud_sensors_temp_graph_install(pane, arg_name,
1239 SENSORS_TEMP_CRITICAL);
1240 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1241 }
1242 else if (sscanf(name, "sensors_volt_cu-%s", arg_name) == 1) {
1243 hud_sensors_temp_graph_install(pane, arg_name,
1244 SENSORS_VOLTAGE_CURRENT);
1245 pane->type = PIPE_DRIVER_QUERY_TYPE_VOLTS;
1246 }
1247 else if (sscanf(name, "sensors_curr_cu-%s", arg_name) == 1) {
1248 hud_sensors_temp_graph_install(pane, arg_name,
1249 SENSORS_CURRENT_CURRENT);
1250 pane->type = PIPE_DRIVER_QUERY_TYPE_AMPS;
1251 }
1252 else if (sscanf(name, "sensors_pow_cu-%s", arg_name) == 1) {
1253 hud_sensors_temp_graph_install(pane, arg_name,
1254 SENSORS_POWER_CURRENT);
1255 pane->type = PIPE_DRIVER_QUERY_TYPE_WATTS;
1256 }
1257 #endif
1258 else if (strcmp(name, "samples-passed") == 0 &&
1259 has_occlusion_query(screen)) {
1260 hud_pipe_query_install(&hud->batch_query, pane,
1261 "samples-passed",
1262 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
1263 PIPE_DRIVER_QUERY_TYPE_UINT64,
1264 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1265 0);
1266 }
1267 else if (strcmp(name, "primitives-generated") == 0 &&
1268 has_streamout(screen)) {
1269 hud_pipe_query_install(&hud->batch_query, pane,
1270 "primitives-generated",
1271 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
1272 PIPE_DRIVER_QUERY_TYPE_UINT64,
1273 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1274 0);
1275 }
1276 else {
1277 boolean processed = FALSE;
1278
1279 /* pipeline statistics queries */
1280 if (has_pipeline_stats_query(screen)) {
1281 static const char *pipeline_statistics_names[] =
1282 {
1283 "ia-vertices",
1284 "ia-primitives",
1285 "vs-invocations",
1286 "gs-invocations",
1287 "gs-primitives",
1288 "clipper-invocations",
1289 "clipper-primitives-generated",
1290 "ps-invocations",
1291 "hs-invocations",
1292 "ds-invocations",
1293 "cs-invocations"
1294 };
1295 for (i = 0; i < ARRAY_SIZE(pipeline_statistics_names); ++i)
1296 if (strcmp(name, pipeline_statistics_names[i]) == 0)
1297 break;
1298 if (i < ARRAY_SIZE(pipeline_statistics_names)) {
1299 hud_pipe_query_install(&hud->batch_query, pane, name,
1300 PIPE_QUERY_PIPELINE_STATISTICS, i,
1301 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
1302 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1303 0);
1304 processed = TRUE;
1305 }
1306 }
1307
1308 /* driver queries */
1309 if (!processed) {
1310 if (!hud_driver_query_install(&hud->batch_query, pane,
1311 screen, name)) {
1312 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
1313 fflush(stderr);
1314 }
1315 }
1316 }
1317
1318 if (*env == ':') {
1319 env++;
1320
1321 if (!pane) {
1322 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
1323 "expected a name\n");
1324 fflush(stderr);
1325 break;
1326 }
1327
1328 num = parse_string(env, s);
1329 env += num;
1330
1331 if (num && sscanf(s, "%u", &i) == 1) {
1332 hud_pane_set_max_value(pane, i);
1333 pane->initial_max_value = i;
1334 }
1335 else {
1336 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
1337 "after ':'\n", *env, *env);
1338 fflush(stderr);
1339 }
1340 }
1341
1342 if (*env == '=') {
1343 env++;
1344
1345 if (!pane) {
1346 fprintf(stderr, "gallium_hud: syntax error: unexpected '=', "
1347 "expected a name\n");
1348 fflush(stderr);
1349 break;
1350 }
1351
1352 num = parse_string(env, s);
1353 env += num;
1354
1355 strip_hyphens(s);
1356 if (!LIST_IS_EMPTY(&pane->graph_list)) {
1357 struct hud_graph *graph;
1358 graph = LIST_ENTRY(struct hud_graph, pane->graph_list.prev, head);
1359 strncpy(graph->name, s, sizeof(graph->name)-1);
1360 graph->name[sizeof(graph->name)-1] = 0;
1361 }
1362 }
1363
1364 if (*env == 0)
1365 break;
1366
1367 /* parse a separator */
1368 switch (*env) {
1369 case '+':
1370 env++;
1371 break;
1372
1373 case ',':
1374 env++;
1375 if (!pane)
1376 break;
1377
1378 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
1379 height = 100;
1380
1381 if (pane && pane->num_graphs) {
1382 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1383 pane = NULL;
1384 }
1385 break;
1386
1387 case ';':
1388 env++;
1389 y = 10;
1390 x += column_width + hud->font.glyph_width * 9;
1391 height = 100;
1392
1393 if (pane && pane->num_graphs) {
1394 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1395 pane = NULL;
1396 }
1397
1398 /* Starting a new column; reset column width. */
1399 column_width = 251;
1400 break;
1401
1402 default:
1403 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1404 fflush(stderr);
1405 }
1406
1407 /* Reset to defaults for the next pane in case these were modified. */
1408 width = 251;
1409 ceiling = UINT64_MAX;
1410 dyn_ceiling = false;
1411 sort_items = false;
1412
1413 }
1414
1415 if (pane) {
1416 if (pane->num_graphs) {
1417 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1418 }
1419 else {
1420 FREE(pane);
1421 }
1422 }
1423
1424 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
1425 struct hud_graph *gr;
1426
1427 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
1428 hud_graph_set_dump_file(gr);
1429 }
1430 }
1431 }
1432
1433 static void
1434 print_help(struct pipe_screen *screen)
1435 {
1436 int i, num_queries, num_cpus = hud_get_num_cpus();
1437
1438 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1439 puts("");
1440 puts(" Names are identifiers of data sources which will be drawn as graphs");
1441 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1442 puts(" There can be multiple panes placed in rows and columns.");
1443 puts("");
1444 puts(" '+' separates names which will share a pane.");
1445 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1446 puts(" for the given pane.");
1447 puts(" ',' creates a new pane below the last one.");
1448 puts(" ';' creates a new pane at the top of the next column.");
1449 puts(" '=' followed by a string, changes the name of the last data source");
1450 puts(" to that string");
1451 puts("");
1452 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1453 puts("");
1454 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1455 puts(" a name, it is possible to explicitly set the location and size");
1456 puts(" of a pane, along with limiting overall maximum value of the");
1457 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1458 puts(" Several modifiers may be applied to the same pane simultaneously.");
1459 puts("");
1460 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1461 puts(" to the upper-left corner of the viewport, in pixels.");
1462 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1463 puts(" to the upper-left corner of the viewport, in pixels.");
1464 puts(" 'w[value]' sets width of the graph pixels.");
1465 puts(" 'h[value]' sets height of the graph in pixels.");
1466 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1467 puts(" If the graph needs to draw values higher than");
1468 puts(" the ceiling allows, the value is clamped.");
1469 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1470 puts(" the Y axis to match the highest value still visible in the graph.");
1471 puts(" 'r' resets the color counter (the next color will be green)");
1472 puts(" 's' sort items below graphs in descending order");
1473 puts("");
1474 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1475 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1476 puts(" still adjusting the value of the Y axis down when appropriate.");
1477 puts("");
1478 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1479 puts("");
1480 puts(" Available names:");
1481 puts(" fps");
1482 puts(" cpu");
1483
1484 for (i = 0; i < num_cpus; i++)
1485 printf(" cpu%i\n", i);
1486
1487 if (has_occlusion_query(screen))
1488 puts(" samples-passed");
1489 if (has_streamout(screen))
1490 puts(" primitives-generated");
1491
1492 if (has_pipeline_stats_query(screen)) {
1493 puts(" ia-vertices");
1494 puts(" ia-primitives");
1495 puts(" vs-invocations");
1496 puts(" gs-invocations");
1497 puts(" gs-primitives");
1498 puts(" clipper-invocations");
1499 puts(" clipper-primitives-generated");
1500 puts(" ps-invocations");
1501 puts(" hs-invocations");
1502 puts(" ds-invocations");
1503 puts(" cs-invocations");
1504 }
1505
1506 #if HAVE_GALLIUM_EXTRA_HUD
1507 hud_get_num_disks(1);
1508 hud_get_num_nics(1);
1509 hud_get_num_cpufreq(1);
1510 #endif
1511 #if HAVE_LIBSENSORS
1512 hud_get_num_sensors(1);
1513 #endif
1514
1515 if (screen->get_driver_query_info){
1516 boolean skipping = false;
1517 struct pipe_driver_query_info info;
1518 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1519
1520 for (i = 0; i < num_queries; i++){
1521 screen->get_driver_query_info(screen, i, &info);
1522 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1523 if (!skipping)
1524 puts(" ...");
1525 skipping = true;
1526 } else {
1527 printf(" %s\n", info.name);
1528 skipping = false;
1529 }
1530 }
1531 }
1532
1533 puts("");
1534 fflush(stdout);
1535 }
1536
1537 static void
1538 hud_unset_draw_context(struct hud_context *hud)
1539 {
1540 struct pipe_context *pipe = hud->pipe;
1541
1542 if (!pipe)
1543 return;
1544
1545 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1546
1547 if (hud->fs_color) {
1548 pipe->delete_fs_state(pipe, hud->fs_color);
1549 hud->fs_color = NULL;
1550 }
1551 if (hud->fs_text) {
1552 pipe->delete_fs_state(pipe, hud->fs_text);
1553 hud->fs_text = NULL;
1554 }
1555 if (hud->vs) {
1556 pipe->delete_vs_state(pipe, hud->vs);
1557 hud->vs = NULL;
1558 }
1559
1560 hud->cso = NULL;
1561 hud->pipe = NULL;
1562 }
1563
1564 static bool
1565 hud_set_draw_context(struct hud_context *hud, struct cso_context *cso)
1566 {
1567 struct pipe_context *pipe = cso_get_pipe_context(cso);
1568
1569 assert(!hud->pipe);
1570 hud->pipe = pipe;
1571 hud->cso = cso;
1572
1573 struct pipe_sampler_view view_templ;
1574 u_sampler_view_default_template(
1575 &view_templ, hud->font.texture, hud->font.texture->format);
1576 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1577 &view_templ);
1578 if (!hud->font_sampler_view)
1579 goto fail;
1580
1581 /* fragment shader */
1582 hud->fs_color =
1583 util_make_fragment_passthrough_shader(pipe,
1584 TGSI_SEMANTIC_COLOR,
1585 TGSI_INTERPOLATE_CONSTANT,
1586 TRUE);
1587
1588 {
1589 /* Read a texture and do .xxxx swizzling. */
1590 static const char *fragment_shader_text = {
1591 "FRAG\n"
1592 "DCL IN[0], GENERIC[0], LINEAR\n"
1593 "DCL SAMP[0]\n"
1594 "DCL SVIEW[0], RECT, FLOAT\n"
1595 "DCL OUT[0], COLOR[0]\n"
1596 "DCL TEMP[0]\n"
1597
1598 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1599 "MOV OUT[0], TEMP[0].xxxx\n"
1600 "END\n"
1601 };
1602
1603 struct tgsi_token tokens[1000];
1604 struct pipe_shader_state state;
1605
1606 if (!tgsi_text_translate(fragment_shader_text, tokens, ARRAY_SIZE(tokens))) {
1607 assert(0);
1608 goto fail;
1609 }
1610 pipe_shader_state_from_tgsi(&state, tokens);
1611 hud->fs_text = pipe->create_fs_state(pipe, &state);
1612 }
1613
1614 /* vertex shader */
1615 {
1616 static const char *vertex_shader_text = {
1617 "VERT\n"
1618 "DCL IN[0..1]\n"
1619 "DCL OUT[0], POSITION\n"
1620 "DCL OUT[1], COLOR[0]\n" /* color */
1621 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1622 /* [0] = color,
1623 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1624 * [2] = (xscale, yscale, 0, 0) */
1625 "DCL CONST[0][0..2]\n"
1626 "DCL TEMP[0]\n"
1627 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1628
1629 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1630 "MAD TEMP[0].xy, IN[0], CONST[0][2].xyyy, CONST[0][1].zwww\n"
1631 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1632 "MAD OUT[0].xy, TEMP[0], CONST[0][1].xyyy, IMM[0].xxxx\n"
1633 "MOV OUT[0].zw, IMM[0]\n"
1634
1635 "MOV OUT[1], CONST[0][0]\n"
1636 "MOV OUT[2], IN[1]\n"
1637 "END\n"
1638 };
1639
1640 struct tgsi_token tokens[1000];
1641 struct pipe_shader_state state;
1642 if (!tgsi_text_translate(vertex_shader_text, tokens, ARRAY_SIZE(tokens))) {
1643 assert(0);
1644 goto fail;
1645 }
1646 pipe_shader_state_from_tgsi(&state, tokens);
1647 hud->vs = pipe->create_vs_state(pipe, &state);
1648 }
1649
1650 return true;
1651
1652 fail:
1653 hud_unset_draw_context(hud);
1654 fprintf(stderr, "hud: failed to set a draw context");
1655 return false;
1656 }
1657
1658 static void
1659 hud_unset_record_context(struct hud_context *hud)
1660 {
1661 struct pipe_context *pipe = hud->record_pipe;
1662 struct hud_pane *pane, *pane_tmp;
1663 struct hud_graph *graph, *graph_tmp;
1664
1665 if (!pipe)
1666 return;
1667
1668 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1669 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1670 LIST_DEL(&graph->head);
1671 hud_graph_destroy(graph, pipe);
1672 }
1673 LIST_DEL(&pane->head);
1674 FREE(pane);
1675 }
1676
1677 hud_batch_query_cleanup(&hud->batch_query, pipe);
1678 hud->record_pipe = NULL;
1679 }
1680
1681 static void
1682 hud_set_record_context(struct hud_context *hud, struct pipe_context *pipe)
1683 {
1684 hud->record_pipe = pipe;
1685 }
1686
1687 struct hud_context *
1688 hud_create(struct cso_context *cso, struct hud_context *share)
1689 {
1690 struct pipe_screen *screen = cso_get_pipe_context(cso)->screen;
1691 struct hud_context *hud;
1692 unsigned i;
1693 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1694 #ifdef PIPE_OS_UNIX
1695 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1696 static boolean sig_handled = FALSE;
1697 struct sigaction action = {};
1698 #endif
1699 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1700
1701 if (!env || !*env)
1702 return NULL;
1703
1704 if (strcmp(env, "help") == 0) {
1705 print_help(screen);
1706 return NULL;
1707 }
1708
1709 hud = CALLOC_STRUCT(hud_context);
1710 if (!hud)
1711 return NULL;
1712
1713 /* font (the context is only used for the texture upload) */
1714 if (!util_font_create(cso_get_pipe_context(cso),
1715 UTIL_FONT_FIXED_8X13, &hud->font)) {
1716 FREE(hud);
1717 return NULL;
1718 }
1719
1720 hud->has_srgb = screen->is_format_supported(screen,
1721 PIPE_FORMAT_B8G8R8A8_SRGB,
1722 PIPE_TEXTURE_2D, 0,
1723 PIPE_BIND_RENDER_TARGET) != 0;
1724
1725 /* blend state */
1726 hud->no_blend.rt[0].colormask = PIPE_MASK_RGBA;
1727
1728 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1729 hud->alpha_blend.rt[0].blend_enable = 1;
1730 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1731 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1732 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1733 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1734 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1735 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1736
1737 /* rasterizer */
1738 hud->rasterizer.half_pixel_center = 1;
1739 hud->rasterizer.bottom_edge_rule = 1;
1740 hud->rasterizer.depth_clip = 1;
1741 hud->rasterizer.line_width = 1;
1742 hud->rasterizer.line_last_pixel = 1;
1743
1744 hud->rasterizer_aa_lines = hud->rasterizer;
1745 hud->rasterizer_aa_lines.line_smooth = 1;
1746
1747 /* vertex elements */
1748 for (i = 0; i < 2; i++) {
1749 hud->velems[i].src_offset = i * 2 * sizeof(float);
1750 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1751 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1752 }
1753
1754 /* sampler state (for font drawing) */
1755 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1756 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1757 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1758 hud->font_sampler_state.normalized_coords = 0;
1759
1760 /* constants */
1761 hud->constbuf.buffer_size = sizeof(hud->constants);
1762 hud->constbuf.user_buffer = &hud->constants;
1763
1764 LIST_INITHEAD(&hud->pane_list);
1765
1766 if (!hud_set_draw_context(hud, cso)) {
1767 pipe_resource_reference(&hud->font.texture, NULL);
1768 FREE(hud);
1769 return NULL;
1770 }
1771
1772 /* setup sig handler once for all hud contexts */
1773 #ifdef PIPE_OS_UNIX
1774 if (!sig_handled && signo != 0) {
1775 action.sa_sigaction = &signal_visible_handler;
1776 action.sa_flags = SA_SIGINFO;
1777
1778 if (signo >= NSIG)
1779 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1780 else if (sigaction(signo, &action, NULL) < 0)
1781 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1782 fflush(stderr);
1783
1784 sig_handled = TRUE;
1785 }
1786 #endif
1787
1788 hud_set_record_context(hud, cso_get_pipe_context(cso));
1789 hud_parse_env_var(hud, screen, env);
1790 return hud;
1791 }
1792
1793 void
1794 hud_destroy(struct hud_context *hud, struct cso_context *cso)
1795 {
1796 hud_unset_record_context(hud);
1797 hud_unset_draw_context(hud);
1798 pipe_resource_reference(&hud->font.texture, NULL);
1799 FREE(hud);
1800 }
1801
1802 void
1803 hud_add_queue_for_monitoring(struct hud_context *hud,
1804 struct util_queue_monitoring *queue_info)
1805 {
1806 assert(!hud->monitored_queue);
1807 hud->monitored_queue = queue_info;
1808 }