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