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