6 void perf_read_values_init(struct perf_read_values *values)
8 values->threads_max = 16;
9 values->pid = malloc(values->threads_max * sizeof(*values->pid));
10 values->tid = malloc(values->threads_max * sizeof(*values->tid));
11 values->value = malloc(values->threads_max * sizeof(*values->value));
12 if (!values->pid || !values->tid || !values->value)
13 die("failed to allocate read_values threads arrays");
16 values->counters_max = 16;
17 values->counterrawid = malloc(values->counters_max
18 * sizeof(*values->counterrawid));
19 values->countername = malloc(values->counters_max
20 * sizeof(*values->countername));
21 if (!values->counterrawid || !values->countername)
22 die("failed to allocate read_values counters arrays");
26 void perf_read_values_destroy(struct perf_read_values *values)
30 if (!values->threads_max || !values->counters_max)
33 for (i = 0; i < values->threads; i++)
34 zfree(&values->value[i]);
35 zfree(&values->value);
38 zfree(&values->counterrawid);
39 for (i = 0; i < values->counters; i++)
40 zfree(&values->countername[i]);
41 zfree(&values->countername);
44 static void perf_read_values__enlarge_threads(struct perf_read_values *values)
46 values->threads_max *= 2;
47 values->pid = realloc(values->pid,
48 values->threads_max * sizeof(*values->pid));
49 values->tid = realloc(values->tid,
50 values->threads_max * sizeof(*values->tid));
51 values->value = realloc(values->value,
52 values->threads_max * sizeof(*values->value));
53 if (!values->pid || !values->tid || !values->value)
54 die("failed to enlarge read_values threads arrays");
57 static int perf_read_values__findnew_thread(struct perf_read_values *values,
62 for (i = 0; i < values->threads; i++)
63 if (values->pid[i] == pid && values->tid[i] == tid)
66 if (values->threads == values->threads_max)
67 perf_read_values__enlarge_threads(values);
69 i = values->threads++;
72 values->value[i] = malloc(values->counters_max * sizeof(**values->value));
73 if (!values->value[i])
74 die("failed to allocate read_values counters array");
79 static void perf_read_values__enlarge_counters(struct perf_read_values *values)
83 values->counters_max *= 2;
84 values->counterrawid = realloc(values->counterrawid,
85 values->counters_max * sizeof(*values->counterrawid));
86 values->countername = realloc(values->countername,
87 values->counters_max * sizeof(*values->countername));
88 if (!values->counterrawid || !values->countername)
89 die("failed to enlarge read_values counters arrays");
91 for (i = 0; i < values->threads; i++) {
92 values->value[i] = realloc(values->value[i],
93 values->counters_max * sizeof(**values->value));
94 if (!values->value[i])
95 die("failed to enlarge read_values counters arrays");
99 static int perf_read_values__findnew_counter(struct perf_read_values *values,
100 u64 rawid, const char *name)
104 for (i = 0; i < values->counters; i++)
105 if (values->counterrawid[i] == rawid)
108 if (values->counters == values->counters_max)
109 perf_read_values__enlarge_counters(values);
111 i = values->counters++;
112 values->counterrawid[i] = rawid;
113 values->countername[i] = strdup(name);
118 void perf_read_values_add_value(struct perf_read_values *values,
120 u64 rawid, const char *name, u64 value)
124 tindex = perf_read_values__findnew_thread(values, pid, tid);
125 cindex = perf_read_values__findnew_counter(values, rawid, name);
127 values->value[tindex][cindex] = value;
130 static void perf_read_values__display_pretty(FILE *fp,
131 struct perf_read_values *values)
134 int pidwidth, tidwidth;
137 counterwidth = malloc(values->counters * sizeof(*counterwidth));
139 die("failed to allocate counterwidth array");
142 for (j = 0; j < values->counters; j++)
143 counterwidth[j] = strlen(values->countername[j]);
144 for (i = 0; i < values->threads; i++) {
147 width = snprintf(NULL, 0, "%d", values->pid[i]);
148 if (width > pidwidth)
150 width = snprintf(NULL, 0, "%d", values->tid[i]);
151 if (width > tidwidth)
153 for (j = 0; j < values->counters; j++) {
154 width = snprintf(NULL, 0, "%" PRIu64, values->value[i][j]);
155 if (width > counterwidth[j])
156 counterwidth[j] = width;
160 fprintf(fp, "# %*s %*s", pidwidth, "PID", tidwidth, "TID");
161 for (j = 0; j < values->counters; j++)
162 fprintf(fp, " %*s", counterwidth[j], values->countername[j]);
165 for (i = 0; i < values->threads; i++) {
166 fprintf(fp, " %*d %*d", pidwidth, values->pid[i],
167 tidwidth, values->tid[i]);
168 for (j = 0; j < values->counters; j++)
169 fprintf(fp, " %*" PRIu64,
170 counterwidth[j], values->value[i][j]);
176 static void perf_read_values__display_raw(FILE *fp,
177 struct perf_read_values *values)
179 int width, pidwidth, tidwidth, namewidth, rawwidth, countwidth;
182 tidwidth = 3; /* TID */
183 pidwidth = 3; /* PID */
184 namewidth = 4; /* "Name" */
185 rawwidth = 3; /* "Raw" */
186 countwidth = 5; /* "Count" */
188 for (i = 0; i < values->threads; i++) {
189 width = snprintf(NULL, 0, "%d", values->pid[i]);
190 if (width > pidwidth)
192 width = snprintf(NULL, 0, "%d", values->tid[i]);
193 if (width > tidwidth)
196 for (j = 0; j < values->counters; j++) {
197 width = strlen(values->countername[j]);
198 if (width > namewidth)
200 width = snprintf(NULL, 0, "%" PRIx64, values->counterrawid[j]);
201 if (width > rawwidth)
204 for (i = 0; i < values->threads; i++) {
205 for (j = 0; j < values->counters; j++) {
206 width = snprintf(NULL, 0, "%" PRIu64, values->value[i][j]);
207 if (width > countwidth)
212 fprintf(fp, "# %*s %*s %*s %*s %*s\n",
213 pidwidth, "PID", tidwidth, "TID",
214 namewidth, "Name", rawwidth, "Raw",
215 countwidth, "Count");
216 for (i = 0; i < values->threads; i++)
217 for (j = 0; j < values->counters; j++)
218 fprintf(fp, " %*d %*d %*s %*" PRIx64 " %*" PRIu64,
219 pidwidth, values->pid[i],
220 tidwidth, values->tid[i],
221 namewidth, values->countername[j],
222 rawwidth, values->counterrawid[j],
223 countwidth, values->value[i][j]);
226 void perf_read_values_display(FILE *fp, struct perf_read_values *values, int raw)
229 perf_read_values__display_raw(fp, values);
231 perf_read_values__display_pretty(fp, values);