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