gallium/hud: use double values for all graphs
[mesa.git] / src / gallium / auxiliary / hud / hud_context.c
1 /**************************************************************************
2 *
3 * Copyright 2013 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /* This head-up display module can draw transparent graphs on top of what
29 * the app is rendering, visualizing various data like framerate, cpu load,
30 * performance counters, etc. It can be hook up into any state tracker.
31 *
32 * The HUD is controlled with the GALLIUM_HUD environment variable.
33 * Set GALLIUM_HUD=help for more info.
34 */
35
36 #include <inttypes.h>
37 #include <signal.h>
38 #include <stdio.h>
39
40 #include "hud/hud_context.h"
41 #include "hud/hud_private.h"
42
43 #include "cso_cache/cso_context.h"
44 #include "util/u_draw_quad.h"
45 #include "util/u_format.h"
46 #include "util/u_inlines.h"
47 #include "util/u_memory.h"
48 #include "util/u_math.h"
49 #include "util/u_sampler.h"
50 #include "util/u_simple_shaders.h"
51 #include "util/u_string.h"
52 #include "util/u_upload_mgr.h"
53 #include "tgsi/tgsi_text.h"
54 #include "tgsi/tgsi_dump.h"
55
56 /* Control the visibility of all HUD contexts */
57 static boolean huds_visible = TRUE;
58
59
60 #ifdef PIPE_OS_UNIX
61 static void
62 signal_visible_handler(int sig, siginfo_t *siginfo, void *context)
63 {
64 huds_visible = !huds_visible;
65 }
66 #endif
67
68 static void
69 hud_draw_colored_prims(struct hud_context *hud, unsigned prim,
70 float *buffer, unsigned num_vertices,
71 float r, float g, float b, float a,
72 int xoffset, int yoffset, float yscale)
73 {
74 struct cso_context *cso = hud->cso;
75 unsigned size = num_vertices * hud->color_prims.vbuf.stride;
76
77 assert(size <= hud->color_prims.buffer_size);
78 memcpy(hud->color_prims.vertices, buffer, size);
79
80 hud->constants.color[0] = r;
81 hud->constants.color[1] = g;
82 hud->constants.color[2] = b;
83 hud->constants.color[3] = a;
84 hud->constants.translate[0] = (float) xoffset;
85 hud->constants.translate[1] = (float) yoffset;
86 hud->constants.scale[0] = 1;
87 hud->constants.scale[1] = yscale;
88 cso_set_constant_buffer(cso, PIPE_SHADER_VERTEX, 0, &hud->constbuf);
89
90 cso_set_vertex_buffers(cso, cso_get_aux_vertex_buffer_slot(cso),
91 1, &hud->color_prims.vbuf);
92 cso_set_fragment_shader_handle(hud->cso, hud->fs_color);
93 cso_draw_arrays(cso, prim, 0, num_vertices);
94
95 hud->color_prims.vertices += size / sizeof(float);
96 hud->color_prims.vbuf.buffer_offset += size;
97 hud->color_prims.buffer_size -= size;
98 }
99
100 static void
101 hud_draw_colored_quad(struct hud_context *hud, unsigned prim,
102 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
103 float r, float g, float b, float a)
104 {
105 float buffer[] = {
106 (float) x1, (float) y1,
107 (float) x1, (float) y2,
108 (float) x2, (float) y2,
109 (float) x2, (float) y1,
110 };
111
112 hud_draw_colored_prims(hud, prim, buffer, 4, r, g, b, a, 0, 0, 1);
113 }
114
115 static void
116 hud_draw_background_quad(struct hud_context *hud,
117 unsigned x1, unsigned y1, unsigned x2, unsigned y2)
118 {
119 float *vertices = hud->bg.vertices + hud->bg.num_vertices*2;
120 unsigned num = 0;
121
122 assert(hud->bg.num_vertices + 4 <= hud->bg.max_num_vertices);
123
124 vertices[num++] = (float) x1;
125 vertices[num++] = (float) y1;
126
127 vertices[num++] = (float) x1;
128 vertices[num++] = (float) y2;
129
130 vertices[num++] = (float) x2;
131 vertices[num++] = (float) y2;
132
133 vertices[num++] = (float) x2;
134 vertices[num++] = (float) y1;
135
136 hud->bg.num_vertices += num/2;
137 }
138
139 static void
140 hud_draw_string(struct hud_context *hud, unsigned x, unsigned y,
141 const char *str, ...)
142 {
143 char buf[256];
144 char *s = buf;
145 float *vertices = hud->text.vertices + hud->text.num_vertices*4;
146 unsigned num = 0;
147
148 va_list ap;
149 va_start(ap, str);
150 util_vsnprintf(buf, sizeof(buf), str, ap);
151 va_end(ap);
152
153 if (!*s)
154 return;
155
156 hud_draw_background_quad(hud,
157 x, y,
158 x + strlen(buf)*hud->font.glyph_width,
159 y + hud->font.glyph_height);
160
161 while (*s) {
162 unsigned x1 = x;
163 unsigned y1 = y;
164 unsigned x2 = x + hud->font.glyph_width;
165 unsigned y2 = y + hud->font.glyph_height;
166 unsigned tx1 = (*s % 16) * hud->font.glyph_width;
167 unsigned ty1 = (*s / 16) * hud->font.glyph_height;
168 unsigned tx2 = tx1 + hud->font.glyph_width;
169 unsigned ty2 = ty1 + hud->font.glyph_height;
170
171 if (*s == ' ') {
172 x += hud->font.glyph_width;
173 s++;
174 continue;
175 }
176
177 assert(hud->text.num_vertices + num/4 + 4 <= hud->text.max_num_vertices);
178
179 vertices[num++] = (float) x1;
180 vertices[num++] = (float) y1;
181 vertices[num++] = (float) tx1;
182 vertices[num++] = (float) ty1;
183
184 vertices[num++] = (float) x1;
185 vertices[num++] = (float) y2;
186 vertices[num++] = (float) tx1;
187 vertices[num++] = (float) ty2;
188
189 vertices[num++] = (float) x2;
190 vertices[num++] = (float) y2;
191 vertices[num++] = (float) tx2;
192 vertices[num++] = (float) ty2;
193
194 vertices[num++] = (float) x2;
195 vertices[num++] = (float) y1;
196 vertices[num++] = (float) tx2;
197 vertices[num++] = (float) ty1;
198
199 x += hud->font.glyph_width;
200 s++;
201 }
202
203 hud->text.num_vertices += num/4;
204 }
205
206 static void
207 number_to_human_readable(double num, enum pipe_driver_query_type type,
208 char *out)
209 {
210 static const char *byte_units[] =
211 {" B", " KB", " MB", " GB", " TB", " PB", " EB"};
212 static const char *metric_units[] =
213 {"", " k", " M", " G", " T", " P", " E"};
214 static const char *time_units[] =
215 {" us", " ms", " s"}; /* based on microseconds */
216 static const char *hz_units[] =
217 {" Hz", " KHz", " MHz", " GHz"};
218 static const char *percent_units[] = {"%"};
219 static const char *dbm_units[] = {" (-dBm)"};
220 static const char *temperature_units[] = {" C"};
221 static const char *volt_units[] = {" mV", " V"};
222 static const char *amp_units[] = {" mA", " A"};
223 static const char *watt_units[] = {" mW", " W"};
224
225 const char **units;
226 unsigned max_unit;
227 double divisor = (type == PIPE_DRIVER_QUERY_TYPE_BYTES) ? 1024 : 1000;
228 unsigned unit = 0;
229 double d = num;
230
231 switch (type) {
232 case PIPE_DRIVER_QUERY_TYPE_MICROSECONDS:
233 max_unit = ARRAY_SIZE(time_units)-1;
234 units = time_units;
235 break;
236 case PIPE_DRIVER_QUERY_TYPE_VOLTS:
237 max_unit = ARRAY_SIZE(volt_units)-1;
238 units = volt_units;
239 break;
240 case PIPE_DRIVER_QUERY_TYPE_AMPS:
241 max_unit = ARRAY_SIZE(amp_units)-1;
242 units = amp_units;
243 break;
244 case PIPE_DRIVER_QUERY_TYPE_DBM:
245 max_unit = ARRAY_SIZE(dbm_units)-1;
246 units = dbm_units;
247 break;
248 case PIPE_DRIVER_QUERY_TYPE_TEMPERATURE:
249 max_unit = ARRAY_SIZE(temperature_units)-1;
250 units = temperature_units;
251 break;
252 case PIPE_DRIVER_QUERY_TYPE_PERCENTAGE:
253 max_unit = ARRAY_SIZE(percent_units)-1;
254 units = percent_units;
255 break;
256 case PIPE_DRIVER_QUERY_TYPE_BYTES:
257 max_unit = ARRAY_SIZE(byte_units)-1;
258 units = byte_units;
259 break;
260 case PIPE_DRIVER_QUERY_TYPE_HZ:
261 max_unit = ARRAY_SIZE(hz_units)-1;
262 units = hz_units;
263 break;
264 case PIPE_DRIVER_QUERY_TYPE_WATTS:
265 max_unit = ARRAY_SIZE(watt_units)-1;
266 units = watt_units;
267 break;
268 default:
269 max_unit = ARRAY_SIZE(metric_units)-1;
270 units = metric_units;
271 }
272
273 while (d > divisor && unit < max_unit) {
274 d /= divisor;
275 unit++;
276 }
277
278 /* Round to 3 decimal places so as not to print trailing zeros. */
279 if (d*1000 != (int)(d*1000))
280 d = round(d * 1000) / 1000;
281
282 /* Show at least 4 digits with at most 3 decimal places, but not zeros. */
283 if (d >= 1000 || d == (int)d)
284 sprintf(out, "%.0f%s", d, units[unit]);
285 else if (d >= 100 || d*10 == (int)(d*10))
286 sprintf(out, "%.1f%s", d, units[unit]);
287 else if (d >= 10 || d*100 == (int)(d*100))
288 sprintf(out, "%.2f%s", d, units[unit]);
289 else
290 sprintf(out, "%.3f%s", d, units[unit]);
291 }
292
293 static void
294 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
295 unsigned xoffset, unsigned yoffset, float yscale)
296 {
297 if (gr->num_vertices <= 1)
298 return;
299
300 assert(gr->index <= gr->num_vertices);
301
302 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
303 gr->vertices, gr->index,
304 gr->color[0], gr->color[1], gr->color[2], 1,
305 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
306 yoffset, yscale);
307
308 if (gr->num_vertices <= gr->index)
309 return;
310
311 hud_draw_colored_prims(hud, PIPE_PRIM_LINE_STRIP,
312 gr->vertices + gr->index*2,
313 gr->num_vertices - gr->index,
314 gr->color[0], gr->color[1], gr->color[2], 1,
315 xoffset - gr->index*2 - 1, yoffset, yscale);
316 }
317
318 static void
319 hud_pane_accumulate_vertices(struct hud_context *hud,
320 const struct hud_pane *pane)
321 {
322 struct hud_graph *gr;
323 float *line_verts = hud->whitelines.vertices + hud->whitelines.num_vertices*2;
324 unsigned i, num = 0;
325 char str[32];
326 const unsigned last_line = pane->last_line;
327
328 /* draw background */
329 hud_draw_background_quad(hud,
330 pane->x1, pane->y1,
331 pane->x2, pane->y2);
332
333 /* draw numbers on the right-hand side */
334 for (i = 0; i <= last_line; i++) {
335 unsigned x = pane->x2 + 2;
336 unsigned y = pane->inner_y1 +
337 pane->inner_height * (last_line - i) / last_line -
338 hud->font.glyph_height / 2;
339
340 number_to_human_readable(pane->max_value * i / last_line,
341 pane->type, str);
342 hud_draw_string(hud, x, y, "%s", str);
343 }
344
345 /* draw info below the pane */
346 i = 0;
347 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
348 unsigned x = pane->x1 + 2;
349 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
350
351 number_to_human_readable(gr->current_value, pane->type, str);
352 hud_draw_string(hud, x, y, " %s: %s", gr->name, str);
353 i++;
354 }
355
356 /* draw border */
357 assert(hud->whitelines.num_vertices + num/2 + 8 <= hud->whitelines.max_num_vertices);
358 line_verts[num++] = (float) pane->x1;
359 line_verts[num++] = (float) pane->y1;
360 line_verts[num++] = (float) pane->x2;
361 line_verts[num++] = (float) pane->y1;
362
363 line_verts[num++] = (float) pane->x2;
364 line_verts[num++] = (float) pane->y1;
365 line_verts[num++] = (float) pane->x2;
366 line_verts[num++] = (float) pane->y2;
367
368 line_verts[num++] = (float) pane->x1;
369 line_verts[num++] = (float) pane->y2;
370 line_verts[num++] = (float) pane->x2;
371 line_verts[num++] = (float) pane->y2;
372
373 line_verts[num++] = (float) pane->x1;
374 line_verts[num++] = (float) pane->y1;
375 line_verts[num++] = (float) pane->x1;
376 line_verts[num++] = (float) pane->y2;
377
378 /* draw horizontal lines inside the graph */
379 for (i = 0; i <= last_line; i++) {
380 float y = round((pane->max_value * i / (double)last_line) *
381 pane->yscale + pane->inner_y2);
382
383 assert(hud->whitelines.num_vertices + num/2 + 2 <= hud->whitelines.max_num_vertices);
384 line_verts[num++] = pane->x1;
385 line_verts[num++] = y;
386 line_verts[num++] = pane->x2;
387 line_verts[num++] = y;
388 }
389
390 hud->whitelines.num_vertices += num/2;
391 }
392
393 static void
394 hud_pane_draw_colored_objects(struct hud_context *hud,
395 const struct hud_pane *pane)
396 {
397 struct hud_graph *gr;
398 unsigned i;
399
400 /* draw colored quads below the pane */
401 i = 0;
402 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
403 unsigned x = pane->x1 + 2;
404 unsigned y = pane->y2 + 2 + i*hud->font.glyph_height;
405
406 hud_draw_colored_quad(hud, PIPE_PRIM_QUADS, x + 1, y + 1, x + 12, y + 13,
407 gr->color[0], gr->color[1], gr->color[2], 1);
408 i++;
409 }
410
411 /* draw the line strips */
412 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
413 hud_draw_graph_line_strip(hud, gr, pane->inner_x1, pane->inner_y2, pane->yscale);
414 }
415 }
416
417 static void
418 hud_prepare_vertices(struct hud_context *hud, struct vertex_queue *v,
419 unsigned num_vertices, unsigned stride)
420 {
421 v->num_vertices = 0;
422 v->max_num_vertices = num_vertices;
423 v->vbuf.stride = stride;
424 v->buffer_size = stride * num_vertices;
425 }
426
427 /**
428 * Draw the HUD to the texture \p tex.
429 * The texture is usually the back buffer being displayed.
430 */
431 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, double value)
865 {
866 gr->current_value = value;
867 value = value > gr->pane->ceiling ? gr->pane->ceiling : value;
868
869 if (gr->fd) {
870 if (fabs(value - lround(value)) > FLT_EPSILON) {
871 fprintf(gr->fd, "%f\n", value);
872 }
873 else {
874 fprintf(gr->fd, "%" PRIu64 "\n", (uint64_t) lround(value));
875 }
876 }
877
878 if (gr->index == gr->pane->max_num_vertices) {
879 gr->vertices[0] = 0;
880 gr->vertices[1] = gr->vertices[(gr->index-1)*2+1];
881 gr->index = 1;
882 }
883 gr->vertices[(gr->index)*2+0] = (float) (gr->index * 2);
884 gr->vertices[(gr->index)*2+1] = (float) value;
885 gr->index++;
886
887 if (gr->num_vertices < gr->pane->max_num_vertices) {
888 gr->num_vertices++;
889 }
890
891 if (gr->pane->dyn_ceiling == true) {
892 hud_pane_update_dyn_ceiling(gr, gr->pane);
893 }
894 if (value > gr->pane->max_value) {
895 hud_pane_set_max_value(gr->pane, value);
896 }
897 }
898
899 static void
900 hud_graph_destroy(struct hud_graph *graph)
901 {
902 FREE(graph->vertices);
903 if (graph->free_query_data)
904 graph->free_query_data(graph->query_data);
905 if (graph->fd)
906 fclose(graph->fd);
907 FREE(graph);
908 }
909
910 static void strcat_without_spaces(char *dst, const char *src)
911 {
912 dst += strlen(dst);
913 while (*src) {
914 if (*src == ' ')
915 *dst++ = '_';
916 else
917 *dst++ = *src;
918 src++;
919 }
920 *dst = 0;
921 }
922
923
924 #ifdef PIPE_OS_WINDOWS
925 #define W_OK 0
926 static int
927 access(const char *pathname, int mode)
928 {
929 /* no-op */
930 return 0;
931 }
932
933 #define PATH_SEP "\\"
934
935 #else
936
937 #define PATH_SEP "/"
938
939 #endif
940
941
942 /**
943 * If the GALLIUM_HUD_DUMP_DIR env var is set, we'll write the raw
944 * HUD values to files at ${GALLIUM_HUD_DUMP_DIR}/<stat> where <stat>
945 * is a HUD variable such as "fps", or "cpu"
946 */
947 static void
948 hud_graph_set_dump_file(struct hud_graph *gr)
949 {
950 const char *hud_dump_dir = getenv("GALLIUM_HUD_DUMP_DIR");
951
952 if (hud_dump_dir && access(hud_dump_dir, W_OK) == 0) {
953 char *dump_file = malloc(strlen(hud_dump_dir) + sizeof(PATH_SEP)
954 + sizeof(gr->name));
955 if (dump_file) {
956 strcpy(dump_file, hud_dump_dir);
957 strcat(dump_file, PATH_SEP);
958 strcat_without_spaces(dump_file, gr->name);
959 gr->fd = fopen(dump_file, "w+");
960 if (gr->fd) {
961 /* flush output after each line is written */
962 setvbuf(gr->fd, NULL, _IOLBF, 0);
963 }
964 free(dump_file);
965 }
966 }
967 }
968
969 /**
970 * Read a string from the environment variable.
971 * The separators "+", ",", ":", and ";" terminate the string.
972 * Return the number of read characters.
973 */
974 static int
975 parse_string(const char *s, char *out)
976 {
977 int i;
978
979 for (i = 0; *s && *s != '+' && *s != ',' && *s != ':' && *s != ';' && *s != '=';
980 s++, out++, i++)
981 *out = *s;
982
983 *out = 0;
984
985 if (*s && !i) {
986 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) while "
987 "parsing a string\n", *s, *s);
988 fflush(stderr);
989 }
990
991 return i;
992 }
993
994 static char *
995 read_pane_settings(char *str, unsigned * const x, unsigned * const y,
996 unsigned * const width, unsigned * const height,
997 uint64_t * const ceiling, boolean * const dyn_ceiling,
998 boolean *reset_colors, boolean *sort_items)
999 {
1000 char *ret = str;
1001 unsigned tmp;
1002
1003 while (*str == '.') {
1004 ++str;
1005 switch (*str) {
1006 case 'x':
1007 ++str;
1008 *x = strtoul(str, &ret, 10);
1009 str = ret;
1010 break;
1011
1012 case 'y':
1013 ++str;
1014 *y = strtoul(str, &ret, 10);
1015 str = ret;
1016 break;
1017
1018 case 'w':
1019 ++str;
1020 tmp = strtoul(str, &ret, 10);
1021 *width = tmp > 80 ? tmp : 80; /* 80 is chosen arbitrarily */
1022 str = ret;
1023 break;
1024
1025 /*
1026 * Prevent setting height to less than 50. If the height is set to less,
1027 * the text of the Y axis labels on the graph will start overlapping.
1028 */
1029 case 'h':
1030 ++str;
1031 tmp = strtoul(str, &ret, 10);
1032 *height = tmp > 50 ? tmp : 50;
1033 str = ret;
1034 break;
1035
1036 case 'c':
1037 ++str;
1038 tmp = strtoul(str, &ret, 10);
1039 *ceiling = tmp > 10 ? tmp : 10;
1040 str = ret;
1041 break;
1042
1043 case 'd':
1044 ++str;
1045 ret = str;
1046 *dyn_ceiling = true;
1047 break;
1048
1049 case 'r':
1050 ++str;
1051 ret = str;
1052 *reset_colors = true;
1053 break;
1054
1055 case 's':
1056 ++str;
1057 ret = str;
1058 *sort_items = true;
1059 break;
1060
1061 default:
1062 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *str);
1063 fflush(stderr);
1064 }
1065
1066 }
1067
1068 return ret;
1069 }
1070
1071 static boolean
1072 has_occlusion_query(struct pipe_screen *screen)
1073 {
1074 return screen->get_param(screen, PIPE_CAP_OCCLUSION_QUERY) != 0;
1075 }
1076
1077 static boolean
1078 has_streamout(struct pipe_screen *screen)
1079 {
1080 return screen->get_param(screen, PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS) != 0;
1081 }
1082
1083 static boolean
1084 has_pipeline_stats_query(struct pipe_screen *screen)
1085 {
1086 return screen->get_param(screen, PIPE_CAP_QUERY_PIPELINE_STATISTICS) != 0;
1087 }
1088
1089 static void
1090 hud_parse_env_var(struct hud_context *hud, const char *env)
1091 {
1092 unsigned num, i;
1093 char name_a[256], s[256];
1094 char *name;
1095 struct hud_pane *pane = NULL;
1096 unsigned x = 10, y = 10;
1097 unsigned width = 251, height = 100;
1098 unsigned period = 500 * 1000; /* default period (1/2 second) */
1099 uint64_t ceiling = UINT64_MAX;
1100 unsigned column_width = 251;
1101 boolean dyn_ceiling = false;
1102 boolean reset_colors = false;
1103 boolean sort_items = false;
1104 const char *period_env;
1105
1106 /*
1107 * The GALLIUM_HUD_PERIOD env var sets the graph update rate.
1108 * The env var is in seconds (a float).
1109 * Zero means update after every frame.
1110 */
1111 period_env = getenv("GALLIUM_HUD_PERIOD");
1112 if (period_env) {
1113 float p = (float) atof(period_env);
1114 if (p >= 0.0f) {
1115 period = (unsigned) (p * 1000 * 1000);
1116 }
1117 }
1118
1119 while ((num = parse_string(env, name_a)) != 0) {
1120 env += num;
1121
1122 /* check for explicit location, size and etc. settings */
1123 name = read_pane_settings(name_a, &x, &y, &width, &height, &ceiling,
1124 &dyn_ceiling, &reset_colors, &sort_items);
1125
1126 /*
1127 * Keep track of overall column width to avoid pane overlapping in case
1128 * later we create a new column while the bottom pane in the current
1129 * column is less wide than the rest of the panes in it.
1130 */
1131 column_width = width > column_width ? width : column_width;
1132
1133 if (!pane) {
1134 pane = hud_pane_create(hud, x, y, x + width, y + height, period, 10,
1135 ceiling, dyn_ceiling, sort_items);
1136 if (!pane)
1137 return;
1138 }
1139
1140 if (reset_colors) {
1141 pane->next_color = 0;
1142 reset_colors = false;
1143 }
1144
1145 /* Add a graph. */
1146 #if HAVE_GALLIUM_EXTRA_HUD || HAVE_LIBSENSORS
1147 char arg_name[64];
1148 #endif
1149 /* IF YOU CHANGE THIS, UPDATE print_help! */
1150 if (strcmp(name, "fps") == 0) {
1151 hud_fps_graph_install(pane);
1152 }
1153 else if (strcmp(name, "cpu") == 0) {
1154 hud_cpu_graph_install(pane, ALL_CPUS);
1155 }
1156 else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
1157 hud_cpu_graph_install(pane, i);
1158 }
1159 else if (strcmp(name, "API-thread-busy") == 0) {
1160 hud_thread_busy_install(pane, name, false);
1161 }
1162 else if (strcmp(name, "API-thread-offloaded-slots") == 0) {
1163 hud_thread_counter_install(pane, name, HUD_COUNTER_OFFLOADED);
1164 }
1165 else if (strcmp(name, "API-thread-direct-slots") == 0) {
1166 hud_thread_counter_install(pane, name, HUD_COUNTER_DIRECT);
1167 }
1168 else if (strcmp(name, "API-thread-num-syncs") == 0) {
1169 hud_thread_counter_install(pane, name, HUD_COUNTER_SYNCS);
1170 }
1171 else if (strcmp(name, "main-thread-busy") == 0) {
1172 hud_thread_busy_install(pane, name, true);
1173 }
1174 #if HAVE_GALLIUM_EXTRA_HUD
1175 else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {
1176 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_RX);
1177 }
1178 else if (sscanf(name, "nic-tx-%s", arg_name) == 1) {
1179 hud_nic_graph_install(pane, arg_name, NIC_DIRECTION_TX);
1180 }
1181 else if (sscanf(name, "nic-rssi-%s", arg_name) == 1) {
1182 hud_nic_graph_install(pane, arg_name, NIC_RSSI_DBM);
1183 pane->type = PIPE_DRIVER_QUERY_TYPE_DBM;
1184 }
1185 else if (sscanf(name, "diskstat-rd-%s", arg_name) == 1) {
1186 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_RD);
1187 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1188 }
1189 else if (sscanf(name, "diskstat-wr-%s", arg_name) == 1) {
1190 hud_diskstat_graph_install(pane, arg_name, DISKSTAT_WR);
1191 pane->type = PIPE_DRIVER_QUERY_TYPE_BYTES;
1192 }
1193 else if (sscanf(name, "cpufreq-min-cpu%u", &i) == 1) {
1194 hud_cpufreq_graph_install(pane, i, CPUFREQ_MINIMUM);
1195 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1196 }
1197 else if (sscanf(name, "cpufreq-cur-cpu%u", &i) == 1) {
1198 hud_cpufreq_graph_install(pane, i, CPUFREQ_CURRENT);
1199 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1200 }
1201 else if (sscanf(name, "cpufreq-max-cpu%u", &i) == 1) {
1202 hud_cpufreq_graph_install(pane, i, CPUFREQ_MAXIMUM);
1203 pane->type = PIPE_DRIVER_QUERY_TYPE_HZ;
1204 }
1205 #endif
1206 #if HAVE_LIBSENSORS
1207 else if (sscanf(name, "sensors_temp_cu-%s", arg_name) == 1) {
1208 hud_sensors_temp_graph_install(pane, arg_name,
1209 SENSORS_TEMP_CURRENT);
1210 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1211 }
1212 else if (sscanf(name, "sensors_temp_cr-%s", arg_name) == 1) {
1213 hud_sensors_temp_graph_install(pane, arg_name,
1214 SENSORS_TEMP_CRITICAL);
1215 pane->type = PIPE_DRIVER_QUERY_TYPE_TEMPERATURE;
1216 }
1217 else if (sscanf(name, "sensors_volt_cu-%s", arg_name) == 1) {
1218 hud_sensors_temp_graph_install(pane, arg_name,
1219 SENSORS_VOLTAGE_CURRENT);
1220 pane->type = PIPE_DRIVER_QUERY_TYPE_VOLTS;
1221 }
1222 else if (sscanf(name, "sensors_curr_cu-%s", arg_name) == 1) {
1223 hud_sensors_temp_graph_install(pane, arg_name,
1224 SENSORS_CURRENT_CURRENT);
1225 pane->type = PIPE_DRIVER_QUERY_TYPE_AMPS;
1226 }
1227 else if (sscanf(name, "sensors_pow_cu-%s", arg_name) == 1) {
1228 hud_sensors_temp_graph_install(pane, arg_name,
1229 SENSORS_POWER_CURRENT);
1230 pane->type = PIPE_DRIVER_QUERY_TYPE_WATTS;
1231 }
1232 #endif
1233 else if (strcmp(name, "samples-passed") == 0 &&
1234 has_occlusion_query(hud->pipe->screen)) {
1235 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
1236 "samples-passed",
1237 PIPE_QUERY_OCCLUSION_COUNTER, 0, 0,
1238 PIPE_DRIVER_QUERY_TYPE_UINT64,
1239 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1240 0);
1241 }
1242 else if (strcmp(name, "primitives-generated") == 0 &&
1243 has_streamout(hud->pipe->screen)) {
1244 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe,
1245 "primitives-generated",
1246 PIPE_QUERY_PRIMITIVES_GENERATED, 0, 0,
1247 PIPE_DRIVER_QUERY_TYPE_UINT64,
1248 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1249 0);
1250 }
1251 else {
1252 boolean processed = FALSE;
1253
1254 /* pipeline statistics queries */
1255 if (has_pipeline_stats_query(hud->pipe->screen)) {
1256 static const char *pipeline_statistics_names[] =
1257 {
1258 "ia-vertices",
1259 "ia-primitives",
1260 "vs-invocations",
1261 "gs-invocations",
1262 "gs-primitives",
1263 "clipper-invocations",
1264 "clipper-primitives-generated",
1265 "ps-invocations",
1266 "hs-invocations",
1267 "ds-invocations",
1268 "cs-invocations"
1269 };
1270 for (i = 0; i < ARRAY_SIZE(pipeline_statistics_names); ++i)
1271 if (strcmp(name, pipeline_statistics_names[i]) == 0)
1272 break;
1273 if (i < ARRAY_SIZE(pipeline_statistics_names)) {
1274 hud_pipe_query_install(&hud->batch_query, pane, hud->pipe, name,
1275 PIPE_QUERY_PIPELINE_STATISTICS, i,
1276 0, PIPE_DRIVER_QUERY_TYPE_UINT64,
1277 PIPE_DRIVER_QUERY_RESULT_TYPE_AVERAGE,
1278 0);
1279 processed = TRUE;
1280 }
1281 }
1282
1283 /* driver queries */
1284 if (!processed) {
1285 if (!hud_driver_query_install(&hud->batch_query, pane, hud->pipe,
1286 name)) {
1287 fprintf(stderr, "gallium_hud: unknown driver query '%s'\n", name);
1288 fflush(stderr);
1289 }
1290 }
1291 }
1292
1293 if (*env == ':') {
1294 env++;
1295
1296 if (!pane) {
1297 fprintf(stderr, "gallium_hud: syntax error: unexpected ':', "
1298 "expected a name\n");
1299 fflush(stderr);
1300 break;
1301 }
1302
1303 num = parse_string(env, s);
1304 env += num;
1305
1306 if (num && sscanf(s, "%u", &i) == 1) {
1307 hud_pane_set_max_value(pane, i);
1308 pane->initial_max_value = i;
1309 }
1310 else {
1311 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c' (%i) "
1312 "after ':'\n", *env, *env);
1313 fflush(stderr);
1314 }
1315 }
1316
1317 if (*env == '=') {
1318 env++;
1319
1320 if (!pane) {
1321 fprintf(stderr, "gallium_hud: syntax error: unexpected '=', "
1322 "expected a name\n");
1323 fflush(stderr);
1324 break;
1325 }
1326
1327 num = parse_string(env, s);
1328 env += num;
1329
1330 strip_hyphens(s);
1331 if (!LIST_IS_EMPTY(&pane->graph_list)) {
1332 struct hud_graph *graph;
1333 graph = LIST_ENTRY(struct hud_graph, pane->graph_list.prev, head);
1334 strncpy(graph->name, s, sizeof(graph->name)-1);
1335 graph->name[sizeof(graph->name)-1] = 0;
1336 }
1337 }
1338
1339 if (*env == 0)
1340 break;
1341
1342 /* parse a separator */
1343 switch (*env) {
1344 case '+':
1345 env++;
1346 break;
1347
1348 case ',':
1349 env++;
1350 if (!pane)
1351 break;
1352
1353 y += height + hud->font.glyph_height * (pane->num_graphs + 2);
1354 height = 100;
1355
1356 if (pane && pane->num_graphs) {
1357 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1358 pane = NULL;
1359 }
1360 break;
1361
1362 case ';':
1363 env++;
1364 y = 10;
1365 x += column_width + hud->font.glyph_width * 9;
1366 height = 100;
1367
1368 if (pane && pane->num_graphs) {
1369 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1370 pane = NULL;
1371 }
1372
1373 /* Starting a new column; reset column width. */
1374 column_width = 251;
1375 break;
1376
1377 default:
1378 fprintf(stderr, "gallium_hud: syntax error: unexpected '%c'\n", *env);
1379 fflush(stderr);
1380 }
1381
1382 /* Reset to defaults for the next pane in case these were modified. */
1383 width = 251;
1384 ceiling = UINT64_MAX;
1385 dyn_ceiling = false;
1386 sort_items = false;
1387
1388 }
1389
1390 if (pane) {
1391 if (pane->num_graphs) {
1392 LIST_ADDTAIL(&pane->head, &hud->pane_list);
1393 }
1394 else {
1395 FREE(pane);
1396 }
1397 }
1398
1399 LIST_FOR_EACH_ENTRY(pane, &hud->pane_list, head) {
1400 struct hud_graph *gr;
1401
1402 LIST_FOR_EACH_ENTRY(gr, &pane->graph_list, head) {
1403 hud_graph_set_dump_file(gr);
1404 }
1405 }
1406 }
1407
1408 static void
1409 print_help(struct pipe_screen *screen)
1410 {
1411 int i, num_queries, num_cpus = hud_get_num_cpus();
1412
1413 puts("Syntax: GALLIUM_HUD=name1[+name2][...][:value1][,nameI...][;nameJ...]");
1414 puts("");
1415 puts(" Names are identifiers of data sources which will be drawn as graphs");
1416 puts(" in panes. Multiple graphs can be drawn in the same pane.");
1417 puts(" There can be multiple panes placed in rows and columns.");
1418 puts("");
1419 puts(" '+' separates names which will share a pane.");
1420 puts(" ':[value]' specifies the initial maximum value of the Y axis");
1421 puts(" for the given pane.");
1422 puts(" ',' creates a new pane below the last one.");
1423 puts(" ';' creates a new pane at the top of the next column.");
1424 puts(" '=' followed by a string, changes the name of the last data source");
1425 puts(" to that string");
1426 puts("");
1427 puts(" Example: GALLIUM_HUD=\"cpu,fps;primitives-generated\"");
1428 puts("");
1429 puts(" Additionally, by prepending '.[identifier][value]' modifiers to");
1430 puts(" a name, it is possible to explicitly set the location and size");
1431 puts(" of a pane, along with limiting overall maximum value of the");
1432 puts(" Y axis and activating dynamic readjustment of the Y axis.");
1433 puts(" Several modifiers may be applied to the same pane simultaneously.");
1434 puts("");
1435 puts(" 'x[value]' sets the location of the pane on the x axis relative");
1436 puts(" to the upper-left corner of the viewport, in pixels.");
1437 puts(" 'y[value]' sets the location of the pane on the y axis relative");
1438 puts(" to the upper-left corner of the viewport, in pixels.");
1439 puts(" 'w[value]' sets width of the graph pixels.");
1440 puts(" 'h[value]' sets height of the graph in pixels.");
1441 puts(" 'c[value]' sets the ceiling of the value of the Y axis.");
1442 puts(" If the graph needs to draw values higher than");
1443 puts(" the ceiling allows, the value is clamped.");
1444 puts(" 'd' activates dynamic Y axis readjustment to set the value of");
1445 puts(" the Y axis to match the highest value still visible in the graph.");
1446 puts(" 'r' resets the color counter (the next color will be green)");
1447 puts(" 's' sort items below graphs in descending order");
1448 puts("");
1449 puts(" If 'c' and 'd' modifiers are used simultaneously, both are in effect:");
1450 puts(" the Y axis does not go above the restriction imposed by 'c' while");
1451 puts(" still adjusting the value of the Y axis down when appropriate.");
1452 puts("");
1453 puts(" Example: GALLIUM_HUD=\".w256.h64.x1600.y520.d.c1000fps+cpu,.datom-count\"");
1454 puts("");
1455 puts(" Available names:");
1456 puts(" fps");
1457 puts(" cpu");
1458
1459 for (i = 0; i < num_cpus; i++)
1460 printf(" cpu%i\n", i);
1461
1462 if (has_occlusion_query(screen))
1463 puts(" samples-passed");
1464 if (has_streamout(screen))
1465 puts(" primitives-generated");
1466
1467 if (has_pipeline_stats_query(screen)) {
1468 puts(" ia-vertices");
1469 puts(" ia-primitives");
1470 puts(" vs-invocations");
1471 puts(" gs-invocations");
1472 puts(" gs-primitives");
1473 puts(" clipper-invocations");
1474 puts(" clipper-primitives-generated");
1475 puts(" ps-invocations");
1476 puts(" hs-invocations");
1477 puts(" ds-invocations");
1478 puts(" cs-invocations");
1479 }
1480
1481 #if HAVE_GALLIUM_EXTRA_HUD
1482 hud_get_num_disks(1);
1483 hud_get_num_nics(1);
1484 hud_get_num_cpufreq(1);
1485 #endif
1486 #if HAVE_LIBSENSORS
1487 hud_get_num_sensors(1);
1488 #endif
1489
1490 if (screen->get_driver_query_info){
1491 boolean skipping = false;
1492 struct pipe_driver_query_info info;
1493 num_queries = screen->get_driver_query_info(screen, 0, NULL);
1494
1495 for (i = 0; i < num_queries; i++){
1496 screen->get_driver_query_info(screen, i, &info);
1497 if (info.flags & PIPE_DRIVER_QUERY_FLAG_DONT_LIST) {
1498 if (!skipping)
1499 puts(" ...");
1500 skipping = true;
1501 } else {
1502 printf(" %s\n", info.name);
1503 skipping = false;
1504 }
1505 }
1506 }
1507
1508 puts("");
1509 fflush(stdout);
1510 }
1511
1512 struct hud_context *
1513 hud_create(struct pipe_context *pipe, struct cso_context *cso)
1514 {
1515 struct pipe_screen *screen = pipe->screen;
1516 struct hud_context *hud;
1517 struct pipe_sampler_view view_templ;
1518 unsigned i;
1519 const char *env = debug_get_option("GALLIUM_HUD", NULL);
1520 #ifdef PIPE_OS_UNIX
1521 unsigned signo = debug_get_num_option("GALLIUM_HUD_TOGGLE_SIGNAL", 0);
1522 static boolean sig_handled = FALSE;
1523 struct sigaction action = {};
1524 #endif
1525 huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE);
1526
1527 if (!env || !*env)
1528 return NULL;
1529
1530 if (strcmp(env, "help") == 0) {
1531 print_help(pipe->screen);
1532 return NULL;
1533 }
1534
1535 hud = CALLOC_STRUCT(hud_context);
1536 if (!hud)
1537 return NULL;
1538
1539 hud->pipe = pipe;
1540 hud->cso = cso;
1541
1542 /* font */
1543 if (!util_font_create(pipe, UTIL_FONT_FIXED_8X13, &hud->font)) {
1544 FREE(hud);
1545 return NULL;
1546 }
1547
1548 hud->has_srgb = screen->is_format_supported(screen,
1549 PIPE_FORMAT_B8G8R8A8_SRGB,
1550 PIPE_TEXTURE_2D, 0,
1551 PIPE_BIND_RENDER_TARGET) != 0;
1552
1553 /* blend state */
1554 hud->no_blend.rt[0].colormask = PIPE_MASK_RGBA;
1555
1556 hud->alpha_blend.rt[0].colormask = PIPE_MASK_RGBA;
1557 hud->alpha_blend.rt[0].blend_enable = 1;
1558 hud->alpha_blend.rt[0].rgb_func = PIPE_BLEND_ADD;
1559 hud->alpha_blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_SRC_ALPHA;
1560 hud->alpha_blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_INV_SRC_ALPHA;
1561 hud->alpha_blend.rt[0].alpha_func = PIPE_BLEND_ADD;
1562 hud->alpha_blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ZERO;
1563 hud->alpha_blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
1564
1565 /* fragment shader */
1566 hud->fs_color =
1567 util_make_fragment_passthrough_shader(pipe,
1568 TGSI_SEMANTIC_COLOR,
1569 TGSI_INTERPOLATE_CONSTANT,
1570 TRUE);
1571
1572 {
1573 /* Read a texture and do .xxxx swizzling. */
1574 static const char *fragment_shader_text = {
1575 "FRAG\n"
1576 "DCL IN[0], GENERIC[0], LINEAR\n"
1577 "DCL SAMP[0]\n"
1578 "DCL SVIEW[0], RECT, FLOAT\n"
1579 "DCL OUT[0], COLOR[0]\n"
1580 "DCL TEMP[0]\n"
1581
1582 "TEX TEMP[0], IN[0], SAMP[0], RECT\n"
1583 "MOV OUT[0], TEMP[0].xxxx\n"
1584 "END\n"
1585 };
1586
1587 struct tgsi_token tokens[1000];
1588 struct pipe_shader_state state;
1589
1590 if (!tgsi_text_translate(fragment_shader_text, tokens, ARRAY_SIZE(tokens))) {
1591 assert(0);
1592 pipe_resource_reference(&hud->font.texture, NULL);
1593 FREE(hud);
1594 return NULL;
1595 }
1596 pipe_shader_state_from_tgsi(&state, tokens);
1597 hud->fs_text = pipe->create_fs_state(pipe, &state);
1598 }
1599
1600 /* rasterizer */
1601 hud->rasterizer.half_pixel_center = 1;
1602 hud->rasterizer.bottom_edge_rule = 1;
1603 hud->rasterizer.depth_clip = 1;
1604 hud->rasterizer.line_width = 1;
1605 hud->rasterizer.line_last_pixel = 1;
1606
1607 hud->rasterizer_aa_lines = hud->rasterizer;
1608 hud->rasterizer_aa_lines.line_smooth = 1;
1609
1610 /* vertex shader */
1611 {
1612 static const char *vertex_shader_text = {
1613 "VERT\n"
1614 "DCL IN[0..1]\n"
1615 "DCL OUT[0], POSITION\n"
1616 "DCL OUT[1], COLOR[0]\n" /* color */
1617 "DCL OUT[2], GENERIC[0]\n" /* texcoord */
1618 /* [0] = color,
1619 * [1] = (2/fb_width, 2/fb_height, xoffset, yoffset)
1620 * [2] = (xscale, yscale, 0, 0) */
1621 "DCL CONST[0..2]\n"
1622 "DCL TEMP[0]\n"
1623 "IMM[0] FLT32 { -1, 0, 0, 1 }\n"
1624
1625 /* v = in * (xscale, yscale) + (xoffset, yoffset) */
1626 "MAD TEMP[0].xy, IN[0], CONST[2].xyyy, CONST[1].zwww\n"
1627 /* pos = v * (2 / fb_width, 2 / fb_height) - (1, 1) */
1628 "MAD OUT[0].xy, TEMP[0], CONST[1].xyyy, IMM[0].xxxx\n"
1629 "MOV OUT[0].zw, IMM[0]\n"
1630
1631 "MOV OUT[1], CONST[0]\n"
1632 "MOV OUT[2], IN[1]\n"
1633 "END\n"
1634 };
1635
1636 struct tgsi_token tokens[1000];
1637 struct pipe_shader_state state;
1638 if (!tgsi_text_translate(vertex_shader_text, tokens, ARRAY_SIZE(tokens))) {
1639 assert(0);
1640 pipe_resource_reference(&hud->font.texture, NULL);
1641 FREE(hud);
1642 return NULL;
1643 }
1644 pipe_shader_state_from_tgsi(&state, tokens);
1645 hud->vs = pipe->create_vs_state(pipe, &state);
1646 }
1647
1648 /* vertex elements */
1649 for (i = 0; i < 2; i++) {
1650 hud->velems[i].src_offset = i * 2 * sizeof(float);
1651 hud->velems[i].src_format = PIPE_FORMAT_R32G32_FLOAT;
1652 hud->velems[i].vertex_buffer_index = cso_get_aux_vertex_buffer_slot(cso);
1653 }
1654
1655 /* sampler view */
1656 u_sampler_view_default_template(
1657 &view_templ, hud->font.texture, hud->font.texture->format);
1658 hud->font_sampler_view = pipe->create_sampler_view(pipe, hud->font.texture,
1659 &view_templ);
1660
1661 /* sampler state (for font drawing) */
1662 hud->font_sampler_state.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1663 hud->font_sampler_state.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1664 hud->font_sampler_state.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
1665 hud->font_sampler_state.normalized_coords = 0;
1666
1667 /* constants */
1668 hud->constbuf.buffer_size = sizeof(hud->constants);
1669 hud->constbuf.user_buffer = &hud->constants;
1670
1671 LIST_INITHEAD(&hud->pane_list);
1672
1673 /* setup sig handler once for all hud contexts */
1674 #ifdef PIPE_OS_UNIX
1675 if (!sig_handled && signo != 0) {
1676 action.sa_sigaction = &signal_visible_handler;
1677 action.sa_flags = SA_SIGINFO;
1678
1679 if (signo >= NSIG)
1680 fprintf(stderr, "gallium_hud: invalid signal %u\n", signo);
1681 else if (sigaction(signo, &action, NULL) < 0)
1682 fprintf(stderr, "gallium_hud: unable to set handler for signal %u\n", signo);
1683 fflush(stderr);
1684
1685 sig_handled = TRUE;
1686 }
1687 #endif
1688
1689 hud_parse_env_var(hud, env);
1690 return hud;
1691 }
1692
1693 void
1694 hud_destroy(struct hud_context *hud)
1695 {
1696 struct pipe_context *pipe = hud->pipe;
1697 struct hud_pane *pane, *pane_tmp;
1698 struct hud_graph *graph, *graph_tmp;
1699
1700 LIST_FOR_EACH_ENTRY_SAFE(pane, pane_tmp, &hud->pane_list, head) {
1701 LIST_FOR_EACH_ENTRY_SAFE(graph, graph_tmp, &pane->graph_list, head) {
1702 LIST_DEL(&graph->head);
1703 hud_graph_destroy(graph);
1704 }
1705 LIST_DEL(&pane->head);
1706 FREE(pane);
1707 }
1708
1709 hud_batch_query_cleanup(&hud->batch_query);
1710 pipe->delete_fs_state(pipe, hud->fs_color);
1711 pipe->delete_fs_state(pipe, hud->fs_text);
1712 pipe->delete_vs_state(pipe, hud->vs);
1713 pipe_sampler_view_reference(&hud->font_sampler_view, NULL);
1714 pipe_resource_reference(&hud->font.texture, NULL);
1715 FREE(hud);
1716 }
1717
1718 void
1719 hud_add_queue_for_monitoring(struct hud_context *hud,
1720 struct util_queue_monitoring *queue_info)
1721 {
1722 assert(!hud->monitored_queue);
1723 hud->monitored_queue = queue_info;
1724 }