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