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