]> git.cworth.org Git - fips/blob - metrics.c
fips-dispatch: Completely separate fips-dispatch GL prototypes from GL/gl.h
[fips] / metrics.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #include <sys/time.h>
26
27 #include "fips-dispatch-gl.h"
28
29 #include "metrics.h"
30
31 typedef struct counter
32 {
33         unsigned id;
34         unsigned program;
35         struct counter *next;
36 } counter_t;
37
38 typedef struct program_metrics
39 {
40         unsigned id;
41         double ticks;
42 } program_metrics_t;
43
44 typedef struct context
45 {
46         unsigned int program;
47
48         counter_t *counter_head;
49         counter_t *counter_tail;
50
51         unsigned num_program_metrics;
52         program_metrics_t *program_metrics;
53 } context_t;
54
55 /* FIXME: Need a map from integers to context objects and track the
56  * current context with glXMakeContextCurrent, eglMakeCurrent, etc. */
57
58 context_t current_context;
59
60 unsigned
61 metrics_add_counter (void)
62 {
63         counter_t *counter;
64
65         counter = malloc (sizeof(counter_t));
66         if (counter == NULL) {
67                 fprintf (stderr, "Out of memory\n");
68                 exit (1);
69         }
70
71         glGenQueries (1, &counter->id);
72
73         counter->program = current_context.program;
74         counter->next = NULL;
75
76         if (current_context.counter_tail) {
77                 current_context.counter_tail->next = counter;
78                 current_context.counter_tail = counter;
79         } else {
80                 current_context.counter_tail = counter;
81                 current_context.counter_head = counter;
82         }
83
84         return counter->id;
85 }
86
87 void
88 metrics_set_current_program (unsigned program)
89 {
90         current_context.program = program;
91 }
92
93 static void
94 accumulate_program_ticks (unsigned program_id, unsigned ticks)
95 {
96         context_t *ctx = &current_context;
97         unsigned i;
98
99         if (program_id >= ctx->num_program_metrics) {
100                 ctx->program_metrics = realloc (ctx->program_metrics,
101                                                 (program_id + 1) * sizeof (program_metrics_t));
102                 for (i = ctx->num_program_metrics; i < program_id + 1; i++) {
103                         ctx->program_metrics[i].id = i;
104                         ctx->program_metrics[i].ticks = 0.0;
105                 }
106
107                 ctx->num_program_metrics = program_id + 1;
108         }
109
110         ctx->program_metrics[program_id].ticks += ticks;
111 }
112
113 /* FIXME: Should sort the metrics, print out percentages, etc. */
114 static void
115 print_program_metrics (void)
116 {
117         context_t *ctx = &current_context;
118         unsigned i;
119
120         for (i = 0; i < ctx->num_program_metrics; i++) {
121                 if (ctx->program_metrics[i].ticks == 0.0)
122                         continue;
123                 printf ("Program %d:\t%7.2f mega-ticks\n",
124                         i, ctx->program_metrics[i].ticks / 1e6);
125         }
126 }
127
128 void
129 metrics_end_frame (void)
130 {
131         static int initialized = 0;
132         static int frames;
133         static struct timeval tv_start, tv_now;
134
135         if (! initialized) {
136                 frames = 0;
137                 gettimeofday (&tv_start, NULL);
138                 initialized = 1;
139         }
140
141
142         frames++;
143         gettimeofday (&tv_now, NULL);
144
145         /* Consume all counters that are ready. */
146         counter_t *counter = current_context.counter_head;
147
148         while (counter) {
149                 GLuint available, elapsed;
150
151                 glGetQueryObjectuiv (counter->id, GL_QUERY_RESULT_AVAILABLE,
152                                      &available);
153                 if (! available)
154                         break;
155
156                 glGetQueryObjectuiv (counter->id, GL_QUERY_RESULT, &elapsed);
157
158                 accumulate_program_ticks (counter->program, elapsed);
159
160                 current_context.counter_head = counter->next;
161                 if (current_context.counter_head == NULL)
162                         current_context.counter_tail = NULL;
163
164                 glDeleteQueries (1, &counter->id);
165
166                 free (counter);
167                 counter = current_context.counter_head;
168         }
169
170         if (frames % 60 == 0) {
171                 double fps;
172
173                 fps = (double) frames / (tv_now.tv_sec - tv_start.tv_sec +
174                                          (tv_now.tv_usec - tv_start.tv_usec) / 1.0e6);
175
176                 printf("FPS: %.3f\n", fps);
177
178                 print_program_metrics ();
179         }
180 }