gallium/hud: use #ifdef to test for macro existence
[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 /**
684 * Record queries and draw the HUD. The "cso" parameter acts as a filter.
685 * If "cso" is not the recording context, recording is skipped.
686 * If "cso" is not the drawing context, drawing is skipped.
687 * cso == NULL ignores the filter.
688 */
689 void
690 hud_run(struct hud_context *hud, struct cso_context *cso,
691 struct pipe_resource *tex)
692 {
693 struct pipe_context *pipe = cso ? cso_get_pipe_context(cso) : NULL;
694
695 /* If "cso" is the recording or drawing context or NULL, execute
696 * the operation. Otherwise, don't do anything.
697 */
698 if (hud->record_pipe && (!pipe || pipe == hud->record_pipe))
699 hud_stop_queries(hud, hud->record_pipe);
700
701 if (hud->cso && (!cso || cso == hud->cso))
702 hud_draw_results(hud, tex);
703
704 if (hud->record_pipe && (!pipe || pipe == hud->record_pipe))
705 hud_start_queries(hud, hud->record_pipe);
706 }
707
708 /**
709 * Record query results and assemble vertices if "pipe" is a recording but
710 * not drawing context.
711 */
712 void
713 hud_record_only(struct hud_context *hud, struct pipe_context *pipe)
714 {
715 assert(pipe);
716
717 /* If it's a drawing context, only hud_run() records query results. */
718 if (pipe == hud->pipe || pipe != hud->record_pipe)
719 return;
720
721 hud_stop_queries(hud, hud->record_pipe);
722 hud_start_queries(hud, hud->record_pipe);
723 }
724
725 static void
726 fixup_bytes(enum pipe_driver_query_type type, int position, uint64_t *exp10)
727 {
728 if (type == PIPE_DRIVER_QUERY_TYPE_BYTES && position % 3 == 0)
729 *exp10 = (*exp10 / 1000) * 1024;
730 }
731
732 /**
733 * Set the maximum value for the Y axis of the graph.
734 * This scales the graph accordingly.
735 */
736 void
737 hud_pane_set_max_value(struct hud_pane *pane, uint64_t value)
738 {
739 double leftmost_digit;
740 uint64_t exp10;
741 int i;
742
743 /* The following code determines the max_value in the graph as well as
744 * how many describing lines are drawn. The max_value is rounded up,
745 * so that all drawn numbers are rounded for readability.
746 * We want to print multiples of a simple number instead of multiples of
747 * hard-to-read numbers like 1.753.
748 */
749
750 /* Find the left-most digit. Make sure exp10 * 10 and fixup_bytes doesn't
751 * overflow. (11 is safe) */
752 exp10 = 1;
753 for (i = 0; exp10 <= UINT64_MAX / 11 && exp10 * 9 < value; i++) {
754 exp10 *= 10;
755 fixup_bytes(pane->type, i + 1, &exp10);
756 }
757
758 leftmost_digit = DIV_ROUND_UP(value, exp10);
759
760 /* Round 9 to 10. */
761 if (leftmost_digit == 9) {
762 leftmost_digit = 1;
763 exp10 *= 10;
764 fixup_bytes(pane->type, i + 1, &exp10);
765 }
766
767 switch ((unsigned)leftmost_digit) {
768 case 1:
769 pane->last_line = 5; /* lines in +1/5 increments */
770 break;
771 case 2:
772 pane->last_line = 8; /* lines in +1/4 increments. */
773 break;
774 case 3:
775 case 4:
776 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments */
777 break;
778 case 5:
779 case 6:
780 case 7:
781 case 8:
782 pane->last_line = leftmost_digit; /* lines in +1 increments */
783 break;
784 default:
785 assert(0);
786 }
787
788 /* Truncate {3,4} to {2.5, 3.5} if possible. */
789 for (i = 3; i <= 4; i++) {
790 if (leftmost_digit == i && value <= (i - 0.5) * exp10) {
791 leftmost_digit = i - 0.5;
792 pane->last_line = leftmost_digit * 2; /* lines in +1/2 increments. */
793 }
794 }
795
796 /* Truncate 2 to a multiple of 0.2 in (1, 1.6] if possible. */
797 if (leftmost_digit == 2) {
798 for (i = 1; i <= 3; i++) {
799 if (value <= (1 + i*0.2) * exp10) {
800 leftmost_digit = 1 + i*0.2;
801 pane->last_line = 5 + i; /* lines in +1/5 increments. */
802 break;
803 }
804 }
805 }
806
807 pane->max_value = leftmost_digit * exp10;
808 pane->yscale = -(int)pane->inner_height / (float)pane->max_value;
809 }
810
811 static void
812 hud_pane_update_dyn_ceiling(struct hud_graph *gr, struct hud_pane *pane)
813 {
814 unsigned i;
815 float tmp = 0.0f;
816
817 if (pane->dyn_ceil_last_ran != gr->index) {
818 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
819 for (i = 0; i < gr->num_vertices; ++i) {
820 tmp = gr->vertices[i * 2 + 1] > tmp ?
821 gr->vertices[i * 2 + 1] : tmp;
822 }
823 }
824
825 /* Avoid setting it lower than the initial starting height. */
826 tmp = tmp > pane->initial_max_value ? tmp : pane->initial_max_value;
827 hud_pane_set_max_value(pane, tmp);
828 }
829
830 /*
831 * Mark this adjustment run so we could avoid repeating a full update
832 * again needlessly in case the pane has more than one graph.
833 */
834 pane->dyn_ceil_last_ran = gr->index;
835 }
836
837 static struct hud_pane *
838 hud_pane_create(struct hud_context *hud,
839 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
840 unsigned period, uint64_t max_value, uint64_t ceiling,
841 boolean dyn_ceiling, boolean sort_items)
842 {
843 struct hud_pane *pane = CALLOC_STRUCT(hud_pane);
844
845 if (!pane)
846 return NULL;
847
848 pane->hud = hud;
849 pane->x1 = x1;
850 pane->y1 = y1;
851 pane->x2 = x2;
852 pane->y2 = y2;
853 pane->inner_x1 = x1 + 1;
854 pane->inner_x2 = x2 - 1;
855 pane->inner_y1 = y1 + 1;
856 pane->inner_y2 = y2 - 1;
857 pane->inner_width = pane->inner_x2 - pane->inner_x1;
858 pane->inner_height = pane->inner_y2 - pane->inner_y1;
859 pane->period = period;
860 pane->max_num_vertices = (x2 - x1 + 2) / 2;
861 pane->ceiling = ceiling;
862 pane->dyn_ceiling = dyn_ceiling;
863 pane->dyn_ceil_last_ran = 0;
864 pane->sort_items = sort_items;
865 pane->initial_max_value = max_value;
866 hud_pane_set_max_value(pane, max_value);
867 LIST_INITHEAD(&pane->graph_list);
868 return pane;
869 }
870
871 /* replace '-' with a space */
872 static void
873 strip_hyphens(char *s)
874 {
875 while (*s) {
876 if (*s == '-')
877 *s = ' ';
878 s++;
879 }
880 }
881
882 /**
883 * Add a graph to an existing pane.
884 * One pane can contain multiple graphs over each other.
885 */
886 void
887 hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr)
888 {
889 static const float colors[][3] = {
890 {0, 1, 0},
891 {1, 0, 0},
892 {0, 1, 1},
893 {1, 0, 1},
894 {1, 1, 0},
895 {0.5, 1, 0.5},
896 {1, 0.5, 0.5},
897 {0.5, 1, 1},
898 {1, 0.5, 1},
899 {1, 1, 0.5},
900 {0, 0.5, 0},
901 {0.5, 0, 0},
902 {0, 0.5, 0.5},
903 {0.5, 0, 0.5},
904 {0.5, 0.5, 0},
905 };
906 unsigned color = pane->next_color % ARRAY_SIZE(colors);
907
908 strip_hyphens(gr->name);
909
910 gr->vertices = MALLOC(pane->max_num_vertices * sizeof(float) * 2);
911 gr->color[0] = colors[color][0];
912 gr->color[1] = colors[color][1];
913 gr->color[2] = colors[color][2];
914 gr->pane = pane;
915 LIST_ADDTAIL(&gr->head, &pane->graph_list);
916 pane->num_graphs++;
917 pane->next_color++;
918 }
919
920 void
921 hud_graph_add_value(struct hud_graph *gr, double value)
922 {
923 gr->current_value = value;
924 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
925
926 if (gr->fd) {
927 if (fabs(value - lround(value)) > FLT_EPSILON) {
928 fprintf(gr->fd, "%f\n", value);
929 }
930 else {
931 fprintf(gr->fd, "%" PRIu64 "\n", (uint64_t) lround(value));
932 }
933 }
934
935 if (gr->index == gr->pane->max_num_vertices) {
936 gr->vertices[0] = 0;
937 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
938 gr->index = 1;
939 }
940 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
941 gr->vertices[(gr->index)*2+1] = (float) value;
942 gr->index++;
943
944 if (gr->num_vertices < gr->pane->max_num_vertices) {
945 gr->num_vertices++;
946 }
947
948 if (gr->pane->dyn_ceiling == true) {
949 hud_pane_update_dyn_ceiling(gr, gr->pane);
950 }
951 if (value > gr->pane->max_value) {
952 hud_pane_set_max_value(gr->pane, value);
953 }
954 }
955
956 static void
957 hud_graph_destroy(struct hud_graph *graph, struct pipe_context *pipe)
958 {
959 FREE(graph->vertices);
960 if (graph->free_query_data)
961 graph->free_query_data(graph->query_data, pipe);
962 if (graph->fd)
963 fclose(graph->fd);
964 FREE(graph);
965 }
966
967 static void strcat_without_spaces(char *dst, const char *src)
968 {
969 dst += strlen(dst);
970 while (*src) {
971 if (*src == ' ')
972 *dst++ = '_';
973 else
974 *dst++ = *src;
975 src++;
976 }
977 *dst = 0;
978 }
979
980
981 #ifdef PIPE_OS_WINDOWS
982 #define W_OK 0
983 static int
984 access(const char *pathname, int mode)
985 {
986 /* no-op */
987 return 0;
988 }
989
990 #define PATH_SEP "\\"
991
992 #else
993
994 #define PATH_SEP "/"
995
996 #endif
997
998
999 /**
1000 * If the GALLIUM_HUD_DUMP_DIR env var is set, we'll write the raw
1001 * HUD values to files at ${GALLIUM_HUD_DUMP_DIR}/<stat> where <stat>
1002 * is a HUD variable such as "fps", or "cpu"
1003 */
1004 static void
1005 hud_graph_set_dump_file(struct hud_graph *gr)
1006 {
1007 const char *hud_dump_dir = getenv("GALLIUM_HUD_DUMP_DIR");
1008
1009 if (hud_dump_dir && access(hud_dump_dir, W_OK) == 0) {
1010 char *dump_file = malloc(strlen(hud_dump_dir) + sizeof(PATH_SEP)
1011 + sizeof(gr->name));
1012 if (dump_file) {
1013 strcpy(dump_file, hud_dump_dir);
1014 strcat(dump_file, PATH_SEP);
1015 strcat_without_spaces(dump_file, gr->name);
1016 gr->fd = fopen(dump_file, "w+");
1017 if (gr->fd) {
1018 /* flush output after each line is written */
1019 setvbuf(gr->fd, NULL, _IOLBF, 0);
1020 }
1021 free(dump_file);
1022 }
1023 }
1024 }
1025
1026 /**
1027 * Read a string from the environment variable.
1028 * The separators "+", ",", ":", and ";" terminate the string.
1029 * Return the number of read characters.
1030 */
1031 static int
1032 parse_string(const char *s, char *out)
1033 {
1034 int i;
1035
1036 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';' && *s != '=';
1037 s++, out++, i++)
1038 *out = *s;
1039
1040 *out = 0;
1041
1042 if (*s && !i) {
1043 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
1044 "parsing a string\n", *s, *s);
1045 fflush(stderr);
1046 }
1047
1048 return i;
1049 }
1050
1051 static char *
1052 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
1053 unsigned * const width, unsigned * const height,
1054 uint64_t * const ceiling, boolean * const dyn_ceiling,
1055 boolean *reset_colors, boolean *sort_items)
1056 {
1057 char *ret = str;
1058 unsigned tmp;
1059
1060 while (*str == '.') {
1061 ++str;
1062 switch (*str) {
1063 case 'x':
1064 ++str;
1065 *x = strtoul(str, &ret, 10);
1066 str = ret;
1067 break;
1068
1069 case 'y':
1070 ++str;
1071 *y = strtoul(str, &ret, 10);
1072 str = ret;
1073 break;
1074
1075 case 'w':
1076 ++str;
1077 tmp = strtoul(str, &ret, 10);
1078 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
1079 str = ret;
1080 break;
1081
1082 /*
1083 * Prevent setting height to less than 50. If the height is set to less,
1084 * the text of the Y axis labels on the graph will start overlapping.
1085 */
1086 case 'h':
1087 ++str;
1088 tmp = strtoul(str, &ret, 10);
1089 *height = tmp > 50 ? tmp : 50;
1090 str = ret;
1091 break;
1092
1093 case 'c':
1094 ++str;
1095 tmp = strtoul(str, &ret, 10);
1096 *ceiling = tmp > 10 ? tmp : 10;
1097 str = ret;
1098 break;
1099
1100 case 'd':
1101 ++str;
1102 ret = str;
1103 *dyn_ceiling = true;
1104 break;
1105
1106 case 'r':
1107 ++str;
1108 ret = str;
1109 *reset_colors = true;
1110 break;
1111
1112 case 's':
1113 ++str;
1114 ret = str;
1115 *sort_items = true;
1116 break;
1117
1118 default:
1119 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
1120 fflush(stderr);
1121 }
1122
1123 }
1124
1125 return ret;
1126 }
1127
1128 static boolean
1129 has_occlusion_query(struct pipe_screen *screen)
1130 {
1131 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
1132 }
1133
1134 static boolean
1135 has_streamout(struct pipe_screen *screen)
1136 {
1137 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
1138 }
1139
1140 static boolean
1141 has_pipeline_stats_query(struct pipe_screen *screen)
1142 {
1143 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
1144 }
1145
1146 static void
1147 hud_parse_env_var(struct hud_context *hud, struct pipe_screen *screen,
1148 const char *env)
1149 {
1150 unsigned num, i;
1151 char name_a[256], s[256];
1152 char *name;
1153 struct hud_pane *pane = NULL;
1154 unsigned x = 10, y = 10;
1155 unsigned width = 251, height = 100;
1156 unsigned period = 500 * 1000; /* default period (1/2 second) */
1157 uint64_t ceiling = UINT64_MAX;
1158 unsigned column_width = 251;
1159 boolean dyn_ceiling = false;
1160 boolean reset_colors = false;
1161 boolean sort_items = false;
1162 const char *period_env;
1163
1164 /*
1165 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1166 * The env var is in seconds (a float).
1167 * Zero means update after every frame.
1168 */
1169 period_env = getenv("GALLIUM_HUD_PERIOD");
1170 if (period_env) {
1171 float p = (float) atof(period_env);
1172 if (p >= 0.0f) {
1173 period = (unsigned) (p * 1000 * 1000);
1174 }
1175 }
1176
1177 while ((num = parse_string(env, name_a)) != 0) {
1178 env += num;
1179
1180 /* check for explicit location, size and etc. settings */
1181 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
1182 &dyn_ceiling, &reset_colors, &sort_items);
1183
1184 /*
1185 * Keep track of overall column width to avoid pane overlapping in case
1186 * later we create a new column while the bottom pane in the current
1187 * column is less wide than the rest of the panes in it.
1188 */
1189 column_width = width > column_width ? width : column_width;
1190
1191 if (!pane) {
1192 pane = hud_pane_create(hud, x, y, x + width, y + height, period, 10,
1193 ceiling, dyn_ceiling, sort_items);
1194 if (!pane)
1195 return;
1196 }
1197
1198 if (reset_colors) {
1199 pane->next_color = 0;
1200 reset_colors = false;
1201 }
1202
1203 /* Add a graph. */
1204 #if defined(HAVE_GALLIUM_EXTRA_HUD) || defined(HAVE_LIBSENSORS)
1205 char arg_name[64];
1206 #endif
1207 /* IF YOU CHANGE THIS, UPDATE print_help! */
1208 if (strcmp(name, "fps") == 0) {
1209 hud_fps_graph_install(pane);
1210 }
1211 else if (strcmp(name, "cpu") == 0) {
1212 hud_cpu_graph_install(pane, ALL_CPUS);
1213 }
1214 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
1215 hud_cpu_graph_install(pane, i);
1216 }
1217 else if (strcmp(name, "API-thread-busy") == 0) {
1218 hud_thread_busy_install(pane, name, false);
1219 }
1220 else if (strcmp(name, "API-thread-offloaded-slots") == 0) {
1221 hud_thread_counter_install(pane, name, HUD_COUNTER_OFFLOADED);
1222 }
1223 else if (strcmp(name, "API-thread-direct-slots") == 0) {
1224 hud_thread_counter_install(pane, name, HUD_COUNTER_DIRECT);
1225 }
1226 else if (strcmp(name, "API-thread-num-syncs") == 0) {
1227 hud_thread_counter_install(pane, name, HUD_COUNTER_SYNCS);
1228 }
1229 else if (strcmp(name, "main-thread-busy") == 0) {
1230 hud_thread_busy_install(pane, name, true);
1231 }
1232 #ifdef HAVE_GALLIUM_EXTRA_HUD
1233 else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {
1234 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_RX);
1235 }
1236 else if (sscanf(name, "nic-tx-%s", arg_name) == 1) {
1237 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_TX);
1238 }
1239 else if (sscanf(name, "nic-rssi-%s", arg_name) == 1) {
1240 hud_nic_graph_install(pane, arg_name, NIC_RSSI_DBM);
1241 pane->type = PIPE_DRIVER_QUERY_TYPE_DBM;
1242 }
1243 else if (sscanf(name, "diskstat-rd-%s", arg_name) == 1) {
1244 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_RD);
1245 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1246 }
1247 else if (sscanf(name, "diskstat-wr-%s", arg_name) == 1) {
1248 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_WR);
1249 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1250 }
1251 else if (sscanf(name, "cpufreq-min-cpu%u", &i) == 1) {
1252 hud_cpufreq_graph_install(pane, i, CPUFREQ_MINIMUM);
1253 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1254 }
1255 else if (sscanf(name, "cpufreq-cur-cpu%u", &i) == 1) {
1256 hud_cpufreq_graph_install(pane, i, CPUFREQ_CURRENT);
1257 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1258 }
1259 else if (sscanf(name, "cpufreq-max-cpu%u", &i) == 1) {
1260 hud_cpufreq_graph_install(pane, i, CPUFREQ_MAXIMUM);
1261 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1262 }
1263 #endif
1264 #ifdef HAVE_LIBSENSORS
1265 else if (sscanf(name, "sensors_temp_cu-%s", arg_name) == 1) {
1266 hud_sensors_temp_graph_install(pane, arg_name,
1267 SENSORS_TEMP_CURRENT);
1268 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1269 }
1270 else if (sscanf(name, "sensors_temp_cr-%s", arg_name) == 1) {
1271 hud_sensors_temp_graph_install(pane, arg_name,
1272 SENSORS_TEMP_CRITICAL);
1273 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1274 }
1275 else if (sscanf(name, "sensors_volt_cu-%s", arg_name) == 1) {
1276 hud_sensors_temp_graph_install(pane, arg_name,
1277 SENSORS_VOLTAGE_CURRENT);
1278 pane->type = PIPE_DRIVER_QUERY_TYPE_VOLTS;
1279 }
1280 else if (sscanf(name, "sensors_curr_cu-%s", arg_name) == 1) {
1281 hud_sensors_temp_graph_install(pane, arg_name,
1282 SENSORS_CURRENT_CURRENT);
1283 pane->type = PIPE_DRIVER_QUERY_TYPE_AMPS;
1284 }
1285 else if (sscanf(name, "sensors_pow_cu-%s", arg_name) == 1) {
1286 hud_sensors_temp_graph_install(pane, arg_name,
1287 SENSORS_POWER_CURRENT);
1288 pane->type = PIPE_DRIVER_QUERY_TYPE_WATTS;
1289 }
1290 #endif
1291 else if (strcmp(name, "samples-passed") == 0 &&
1292 has_occlusion_query(screen)) {
1293 hud_pipe_query_install(&hud->batch_query, pane,
1294 "samples-passed",
1295 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
1296 PIPE_DRIVER_QUERY_TYPE_UINT64,
1297 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1298 0);
1299 }
1300 else if (strcmp(name, "primitives-generated") == 0 &&
1301 has_streamout(screen)) {
1302 hud_pipe_query_install(&hud->batch_query, pane,
1303 "primitives-generated",
1304 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
1305 PIPE_DRIVER_QUERY_TYPE_UINT64,
1306 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1307 0);
1308 }
1309 else {
1310 boolean processed = FALSE;
1311
1312 /* pipeline statistics queries */
1313 if (has_pipeline_stats_query(screen)) {
1314 static const char *pipeline_statistics_names[] =
1315 {
1316 "ia-vertices",
1317 "ia-primitives",
1318 "vs-invocations",
1319 "gs-invocations",
1320 "gs-primitives",
1321 "clipper-invocations",
1322 "clipper-primitives-generated",
1323 "ps-invocations",
1324 "hs-invocations",
1325 "ds-invocations",
1326 "cs-invocations"
1327 };
1328 for (i = 0; i < ARRAY_SIZE(pipeline_statistics_names); ++i)
1329 if (strcmp(name, pipeline_statistics_names[i]) == 0)
1330 break;
1331 if (i < ARRAY_SIZE(pipeline_statistics_names)) {
1332 hud_pipe_query_install(&hud->batch_query, pane, name,
1333 PIPE_QUERY_PIPELINE_STATISTICS, i,
1334 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
1335 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1336 0);
1337 processed = TRUE;
1338 }
1339 }
1340
1341 /* driver queries */
1342 if (!processed) {
1343 if (!hud_driver_query_install(&hud->batch_query, pane,
1344 screen, name)) {
1345 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
1346 fflush(stderr);
1347 }
1348 }
1349 }
1350
1351 if (*env == ':') {
1352 env++;
1353
1354 if (!pane) {
1355 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
1356 "expected a name\n");
1357 fflush(stderr);
1358 break;
1359 }
1360
1361 num = parse_string(env, s);
1362 env += num;
1363
1364 if (num && sscanf(s, "%u", &i) == 1) {
1365 hud_pane_set_max_value(pane, i);
1366 pane->initial_max_value = i;
1367 }
1368 else {
1369 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
1370 "after ':'\n", *env, *env);
1371 fflush(stderr);
1372 }
1373 }
1374
1375 if (*env == '=') {
1376 env++;
1377
1378 if (!pane) {
1379 fprintf(stderr, "gallium_hud: syntax error: unexpected '=', "
1380 "expected a name\n");
1381 fflush(stderr);
1382 break;
1383 }
1384
1385 num = parse_string(env, s);
1386 env += num;
1387
1388 strip_hyphens(s);
1389 if (!LIST_IS_EMPTY(&pane->graph_list)) {
1390 struct hud_graph *graph;
1391 graph = LIST_ENTRY(struct hud_graph, pane->graph_list.prev, head);
1392 strncpy(graph->name, s, sizeof(graph->name)-1);
1393 graph->name[sizeof(graph->name)-1] = 0;
1394 }
1395 }
1396
1397 if (*env == 0)
1398 break;
1399
1400 /* parse a separator */
1401 switch (*env) {
1402 case '+':
1403 env++;
1404 break;
1405
1406 case ',':
1407 env++;
1408 if (!pane)
1409 break;
1410
1411 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
1412 height = 100;
1413
1414 if (pane && pane->num_graphs) {
1415 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1416 pane = NULL;
1417 }
1418 break;
1419
1420 case ';':
1421 env++;
1422 y = 10;
1423 x += column_width + hud->font.glyph_width * 9;
1424 height = 100;
1425
1426 if (pane && pane->num_graphs) {
1427 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1428 pane = NULL;
1429 }
1430
1431 /* Starting a new column; reset column width. */
1432 column_width = 251;
1433 break;
1434
1435 default:
1436 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1437 fflush(stderr);
1438 }
1439
1440 /* Reset to defaults for the next pane in case these were modified. */
1441 width = 251;
1442 ceiling = UINT64_MAX;
1443 dyn_ceiling = false;
1444 sort_items = false;
1445
1446 }
1447
1448 if (pane) {
1449 if (pane->num_graphs) {
1450 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1451 }
1452 else {
1453 FREE(pane);
1454 }
1455 }
1456
1457 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
1458 struct hud_graph *gr;
1459
1460 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
1461 hud_graph_set_dump_file(gr);
1462 }
1463 }
1464 }
1465
1466 static void
1467 print_help(struct pipe_screen *screen)
1468 {
1469 int i, num_queries, num_cpus = hud_get_num_cpus();
1470
1471 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1472 puts("");
1473 puts(" Names are identifiers of data sources which will be drawn as graphs");
1474 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1475 puts(" There can be multiple panes placed in rows and columns.");
1476 puts("");
1477 puts(" '+' separates names which will share a pane.");
1478 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1479 puts(" for the given pane.");
1480 puts(" ',' creates a new pane below the last one.");
1481 puts(" ';' creates a new pane at the top of the next column.");
1482 puts(" '=' followed by a string, changes the name of the last data source");
1483 puts(" to that string");
1484 puts("");
1485 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1486 puts("");
1487 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1488 puts(" a name, it is possible to explicitly set the location and size");
1489 puts(" of a pane, along with limiting overall maximum value of the");
1490 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1491 puts(" Several modifiers may be applied to the same pane simultaneously.");
1492 puts("");
1493 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1494 puts(" to the upper-left corner of the viewport, in pixels.");
1495 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1496 puts(" to the upper-left corner of the viewport, in pixels.");
1497 puts(" 'w[value]' sets width of the graph pixels.");
1498 puts(" 'h[value]' sets height of the graph in pixels.");
1499 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1500 puts(" If the graph needs to draw values higher than");
1501 puts(" the ceiling allows, the value is clamped.");
1502 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1503 puts(" the Y axis to match the highest value still visible in the graph.");
1504 puts(" 'r' resets the color counter (the next color will be green)");
1505 puts(" 's' sort items below graphs in descending order");
1506 puts("");
1507 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1508 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1509 puts(" still adjusting the value of the Y axis down when appropriate.");
1510 puts("");
1511 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1512 puts("");
1513 puts(" Available names:");
1514 puts(" fps");
1515 puts(" cpu");
1516
1517 for (i = 0; i < num_cpus; i++)
1518 printf(" cpu%i\n", i);
1519
1520 if (has_occlusion_query(screen))
1521 puts(" samples-passed");
1522 if (has_streamout(screen))
1523 puts(" primitives-generated");
1524
1525 if (has_pipeline_stats_query(screen)) {
1526 puts(" ia-vertices");
1527 puts(" ia-primitives");
1528 puts(" vs-invocations");
1529 puts(" gs-invocations");
1530 puts(" gs-primitives");
1531 puts(" clipper-invocations");
1532 puts(" clipper-primitives-generated");
1533 puts(" ps-invocations");
1534 puts(" hs-invocations");
1535 puts(" ds-invocations");
1536 puts(" cs-invocations");
1537 }
1538
1539 #ifdef HAVE_GALLIUM_EXTRA_HUD
1540 hud_get_num_disks(1);
1541 hud_get_num_nics(1);
1542 hud_get_num_cpufreq(1);
1543 #endif
1544 #ifdef HAVE_LIBSENSORS
1545 hud_get_num_sensors(1);
1546 #endif
1547
1548 if (screen->get_driver_query_info){
1549 boolean skipping = false;
1550 struct pipe_driver_query_info info;
1551 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1552
1553 for (i = 0; i < num_queries; i++){
1554 screen->get_driver_query_info(screen, i, &info);
1555 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1556 if (!skipping)
1557 puts(" ...");
1558 skipping = true;
1559 } else {
1560 printf(" %s\n", info.name);
1561 skipping = false;
1562 }
1563 }
1564 }
1565
1566 puts("");
1567 fflush(stdout);
1568 }
1569
1570 static void
1571 hud_unset_draw_context(struct hud_context *hud)
1572 {
1573 struct pipe_context *pipe = hud->pipe;
1574
1575 if (!pipe)
1576 return;
1577
1578 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1579
1580 if (hud->fs_color) {
1581 pipe->delete_fs_state(pipe, hud->fs_color);
1582 hud->fs_color = NULL;
1583 }
1584 if (hud->fs_text) {
1585 pipe->delete_fs_state(pipe, hud->fs_text);
1586 hud->fs_text = NULL;
1587 }
1588 if (hud->vs) {
1589 pipe->delete_vs_state(pipe, hud->vs);
1590 hud->vs = NULL;
1591 }
1592
1593 hud->cso = NULL;
1594 hud->pipe = NULL;
1595 }
1596
1597 static bool
1598 hud_set_draw_context(struct hud_context *hud, struct cso_context *cso)
1599 {
1600 struct pipe_context *pipe = cso_get_pipe_context(cso);
1601
1602 assert(!hud->pipe);
1603 hud->pipe = pipe;
1604 hud->cso = cso;
1605
1606 struct pipe_sampler_view view_templ;
1607 u_sampler_view_default_template(
1608 &view_templ, hud->font.texture, hud->font.texture->format);
1609 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1610 &view_templ);
1611 if (!hud->font_sampler_view)
1612 goto fail;
1613
1614 /* fragment shader */
1615 hud->fs_color =
1616 util_make_fragment_passthrough_shader(pipe,
1617 TGSI_SEMANTIC_COLOR,
1618 TGSI_INTERPOLATE_CONSTANT,
1619 TRUE);
1620
1621 {
1622 /* Read a texture and do .xxxx swizzling. */
1623 static const char *fragment_shader_text = {
1624 "FRAG\n"
1625 "DCL IN[0], GENERIC[0], LINEAR\n"
1626 "DCL SAMP[0]\n"
1627 "DCL SVIEW[0], RECT, FLOAT\n"
1628 "DCL OUT[0], COLOR[0]\n"
1629 "DCL TEMP[0]\n"
1630
1631 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1632 "MOV OUT[0], TEMP[0].xxxx\n"
1633 "END\n"
1634 };
1635
1636 struct tgsi_token tokens[1000];
1637 struct pipe_shader_state state;
1638
1639 if (!tgsi_text_translate(fragment_shader_text, tokens, ARRAY_SIZE(tokens))) {
1640 assert(0);
1641 goto fail;
1642 }
1643 pipe_shader_state_from_tgsi(&state, tokens);
1644 hud->fs_text = pipe->create_fs_state(pipe, &state);
1645 }
1646
1647 /* vertex shader */
1648 {
1649 static const char *vertex_shader_text = {
1650 "VERT\n"
1651 "DCL IN[0..1]\n"
1652 "DCL OUT[0], POSITION\n"
1653 "DCL OUT[1], COLOR[0]\n" /* color */
1654 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1655 /* [0] = color,
1656 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1657 * [2] = (xscale, yscale, 0, 0) */
1658 "DCL CONST[0][0..2]\n"
1659 "DCL TEMP[0]\n"
1660 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1661
1662 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1663 "MAD TEMP[0].xy, IN[0], CONST[0][2].xyyy, CONST[0][1].zwww\n"
1664 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1665 "MAD OUT[0].xy, TEMP[0], CONST[0][1].xyyy, IMM[0].xxxx\n"
1666 "MOV OUT[0].zw, IMM[0]\n"
1667
1668 "MOV OUT[1], CONST[0][0]\n"
1669 "MOV OUT[2], IN[1]\n"
1670 "END\n"
1671 };
1672
1673 struct tgsi_token tokens[1000];
1674 struct pipe_shader_state state;
1675 if (!tgsi_text_translate(vertex_shader_text, tokens, ARRAY_SIZE(tokens))) {
1676 assert(0);
1677 goto fail;
1678 }
1679 pipe_shader_state_from_tgsi(&state, tokens);
1680 hud->vs = pipe->create_vs_state(pipe, &state);
1681 }
1682
1683 return true;
1684
1685 fail:
1686 hud_unset_draw_context(hud);
1687 fprintf(stderr, "hud: failed to set a draw context");
1688 return false;
1689 }
1690
1691 static void
1692 hud_unset_record_context(struct hud_context *hud)
1693 {
1694 struct pipe_context *pipe = hud->record_pipe;
1695 struct hud_pane *pane, *pane_tmp;
1696 struct hud_graph *graph, *graph_tmp;
1697
1698 if (!pipe)
1699 return;
1700
1701 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1702 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1703 LIST_DEL(&graph->head);
1704 hud_graph_destroy(graph, pipe);
1705 }
1706 LIST_DEL(&pane->head);
1707 FREE(pane);
1708 }
1709
1710 hud_batch_query_cleanup(&hud->batch_query, pipe);
1711 hud->record_pipe = NULL;
1712 }
1713
1714 static void
1715 hud_set_record_context(struct hud_context *hud, struct pipe_context *pipe)
1716 {
1717 hud->record_pipe = pipe;
1718 }
1719
1720 /**
1721 * Create the HUD.
1722 *
1723 * If "share" is non-NULL and GALLIUM_HUD_SHARE=x,y is set, increment the
1724 * reference counter of "share", set "cso" as the recording or drawing context
1725 * according to the environment variable, and return "share".
1726 * This allows sharing the HUD instance within a multi-context share group,
1727 * record queries in one context and draw them in another.
1728 */
1729 struct hud_context *
1730 hud_create(struct cso_context *cso, struct hud_context *share)
1731 {
1732 const char *share_env = debug_get_option("GALLIUM_HUD_SHARE", NULL);
1733 unsigned record_ctx = 0, draw_ctx = 0;
1734
1735 if (share_env && sscanf(share_env, "%u,%u", &record_ctx, &draw_ctx) != 2)
1736 share_env = NULL;
1737
1738 if (share && share_env) {
1739 /* All contexts in a share group share the HUD instance.
1740 * Only one context can record queries and only one context
1741 * can draw the HUD.
1742 *
1743 * GALLIUM_HUD_SHARE=x,y determines the context indices.
1744 */
1745 int context_id = p_atomic_inc_return(&share->refcount) - 1;
1746
1747 if (context_id == record_ctx) {
1748 assert(!share->record_pipe);
1749 hud_set_record_context(share, cso_get_pipe_context(cso));
1750 }
1751
1752 if (context_id == draw_ctx) {
1753 assert(!share->pipe);
1754 hud_set_draw_context(share, cso);
1755 }
1756
1757 return share;
1758 }
1759
1760 struct pipe_screen *screen = cso_get_pipe_context(cso)->screen;
1761 struct hud_context *hud;
1762 unsigned i;
1763 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1764 #ifdef PIPE_OS_UNIX
1765 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1766 static boolean sig_handled = FALSE;
1767 struct sigaction action = {};
1768 #endif
1769 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1770
1771 if (!env || !*env)
1772 return NULL;
1773
1774 if (strcmp(env, "help") == 0) {
1775 print_help(screen);
1776 return NULL;
1777 }
1778
1779 hud = CALLOC_STRUCT(hud_context);
1780 if (!hud)
1781 return NULL;
1782
1783 /* font (the context is only used for the texture upload) */
1784 if (!util_font_create(cso_get_pipe_context(cso),
1785 UTIL_FONT_FIXED_8X13, &hud->font)) {
1786 FREE(hud);
1787 return NULL;
1788 }
1789
1790 hud->refcount = 1;
1791 hud->has_srgb = screen->is_format_supported(screen,
1792 PIPE_FORMAT_B8G8R8A8_SRGB,
1793 PIPE_TEXTURE_2D, 0,
1794 PIPE_BIND_RENDER_TARGET) != 0;
1795
1796 /* blend state */
1797 hud->no_blend.rt[0].colormask = PIPE_MASK_RGBA;
1798
1799 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1800 hud->alpha_blend.rt[0].blend_enable = 1;
1801 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1802 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1803 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1804 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1805 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1806 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1807
1808 /* rasterizer */
1809 hud->rasterizer.half_pixel_center = 1;
1810 hud->rasterizer.bottom_edge_rule = 1;
1811 hud->rasterizer.depth_clip = 1;
1812 hud->rasterizer.line_width = 1;
1813 hud->rasterizer.line_last_pixel = 1;
1814
1815 hud->rasterizer_aa_lines = hud->rasterizer;
1816 hud->rasterizer_aa_lines.line_smooth = 1;
1817
1818 /* vertex elements */
1819 for (i = 0; i < 2; i++) {
1820 hud->velems[i].src_offset = i * 2 * sizeof(float);
1821 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1822 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1823 }
1824
1825 /* sampler state (for font drawing) */
1826 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1827 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1828 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1829 hud->font_sampler_state.normalized_coords = 0;
1830
1831 /* constants */
1832 hud->constbuf.buffer_size = sizeof(hud->constants);
1833 hud->constbuf.user_buffer = &hud->constants;
1834
1835 LIST_INITHEAD(&hud->pane_list);
1836
1837 /* setup sig handler once for all hud contexts */
1838 #ifdef PIPE_OS_UNIX
1839 if (!sig_handled && signo != 0) {
1840 action.sa_sigaction = &signal_visible_handler;
1841 action.sa_flags = SA_SIGINFO;
1842
1843 if (signo >= NSIG)
1844 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1845 else if (sigaction(signo, &action, NULL) < 0)
1846 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1847 fflush(stderr);
1848
1849 sig_handled = TRUE;
1850 }
1851 #endif
1852
1853 if (record_ctx == 0)
1854 hud_set_record_context(hud, cso_get_pipe_context(cso));
1855 if (draw_ctx == 0)
1856 hud_set_draw_context(hud, cso);
1857
1858 hud_parse_env_var(hud, screen, env);
1859 return hud;
1860 }
1861
1862 /**
1863 * Destroy a HUD. If the HUD has several users, decrease the reference counter
1864 * and detach the context from the HUD.
1865 */
1866 void
1867 hud_destroy(struct hud_context *hud, struct cso_context *cso)
1868 {
1869 if (!cso || hud->record_pipe == cso_get_pipe_context(cso))
1870 hud_unset_record_context(hud);
1871
1872 if (!cso || hud->cso == cso)
1873 hud_unset_draw_context(hud);
1874
1875 if (p_atomic_dec_zero(&hud->refcount)) {
1876 pipe_resource_reference(&hud->font.texture, NULL);
1877 FREE(hud);
1878 }
1879 }
1880
1881 void
1882 hud_add_queue_for_monitoring(struct hud_context *hud,
1883 struct util_queue_monitoring *queue_info)
1884 {
1885 assert(!hud->monitored_queue);
1886 hud->monitored_queue = queue_info;
1887 }