forked from OpenCloudOS/perf-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sched-migrate.c
318 lines (280 loc) · 8.85 KB
/
sched-migrate.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <linux/compiler.h>
#include <api/fs/fs.h>
#include <monitor.h>
#include <dlfcn.h>
#include <tep.h>
#include <trace_helpers.h>
#include <stack_helpers.h>
static profiler sched_migrate;
struct sched_migrate_stat {
unsigned long same_l2;
unsigned long same_llc;
unsigned long total;
};
static struct monitor_ctx {
int nr_cpus;
struct perf_cpu_map **l2_cpumap;
struct perf_cpu_map **llc_cpumap;
struct callchain_ctx *cc;
struct flame_graph *flame;
struct sched_migrate_stat stat;
struct env *env;
} ctx;
// in linux/perf_event.h
// PERF_SAMPLE_TID | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU | PERF_SAMPLE_RAW
struct sample_type_header {
struct {
__u32 pid;
__u32 tid;
} tid_entry;
__u64 time;
struct {
__u32 cpu;
__u32 reserved;
} cpu_entry;
};
struct sample_type_callchain {
struct sample_type_header h;
struct callchain callchain;
};
struct sample_type_raw {
struct sample_type_header h;
struct {
__u32 size;
__u8 data[0];
} raw;
};
struct sched_migrate_task {
unsigned short common_type;// offset:0; size:2; signed:0;
unsigned char common_flags;// offset:2; size:1; signed:0;
unsigned char common_preempt_count;// offset:3; size:1; signed:0;
int common_pid;// offset:4; size:4; signed:1;
char comm[16];// offset:8; size:16; signed:1;
pid_t pid;// offset:24; size:4; signed:1;
int prio;// offset:28; size:4; signed:1;
int orig_cpu;// offset:32; size:4; signed:1;
int dest_cpu;// offset:36; size:4; signed:1;
};
static int read_cpumap(struct perf_cpu_map **cpumaps, int cpu, int level)
{
struct perf_cpu_map *cpumap;
char buff[PATH_MAX];
char *cpu_list;
size_t len = 0;
int err, idx;
if (cpu >= ctx.nr_cpus)
return -1;
snprintf(buff, sizeof(buff), "devices/system/cpu/cpu%d/cache/index%d/shared_cpu_list", cpu, level);
if ((err = sysfs__read_str(buff, &cpu_list, &len)) < 0 ||
len == 0) {
fprintf(stderr, "failed to read %s, %d Not Supported.\n", buff, err);
return -1;
}
cpu_list[len] = '\0';
cpumap = perf_cpu_map__new(cpu_list);
perf_cpu_map__for_each_cpu(cpu, idx, cpumap) {
if (cpu < 0) {
fprintf(stderr, "cpu < 0 %s, Not Supported.\n", cpu_list);
free(cpu_list);
return -1;
}
cpumaps[cpu] = perf_cpu_map__get(cpumap);
}
perf_cpu_map__put(cpumap);
free(cpu_list);
return 0;
}
static int monitor_ctx_init(struct env *env)
{
int i;
tep__ref();
ctx.nr_cpus = get_present_cpus();
ctx.l2_cpumap = calloc(ctx.nr_cpus, sizeof(*ctx.l2_cpumap));
ctx.llc_cpumap = calloc(ctx.nr_cpus, sizeof(*ctx.llc_cpumap));
if (!ctx.l2_cpumap || !ctx.llc_cpumap)
return -1;
for (i = 0; i < ctx.nr_cpus; i++) {
if (!ctx.l2_cpumap[i]) {
if (read_cpumap(ctx.l2_cpumap, i, 2) < 0)
return -1;
}
if (!ctx.llc_cpumap[i]) {
if (read_cpumap(ctx.llc_cpumap, i, 3) < 0)
return -1;
}
}
if (env->callchain) {
if (!env->flame_graph)
ctx.cc = callchain_ctx_new(callchain_flags(CALLCHAIN_KERNEL), stdout);
else {
ctx.flame = flame_graph_open(callchain_flags(CALLCHAIN_KERNEL), env->flame_graph);
}
sched_migrate.pages *= 2;
}
memset(&ctx.stat, 0 , sizeof(ctx.stat));
ctx.env = env;
return 0;
}
static void monitor_ctx_exit(void)
{
int i;
for (i = 0; i < ctx.nr_cpus; i++) {
perf_cpu_map__put(ctx.l2_cpumap[i]);
perf_cpu_map__put(ctx.llc_cpumap[i]);
}
free(ctx.llc_cpumap);
if (ctx.env->callchain) {
if (!ctx.env->flame_graph)
callchain_ctx_free(ctx.cc);
else {
flame_graph_output(ctx.flame);
flame_graph_close(ctx.flame);
}
}
tep__unref();
}
static int sched_migrate_init(struct perf_evlist *evlist, struct env *env)
{
struct perf_event_attr attr = {
.type = PERF_TYPE_TRACEPOINT,
.config = 0,
.size = sizeof(struct perf_event_attr),
.sample_period = 1,
.sample_type = PERF_SAMPLE_TID | PERF_SAMPLE_TIME | PERF_SAMPLE_CPU | PERF_SAMPLE_RAW |
(env->callchain ? PERF_SAMPLE_CALLCHAIN : 0),
.read_format = 0,
.pinned = 1,
.disabled = 1,
.exclude_callchain_user = exclude_callchain_user(CALLCHAIN_KERNEL),
.exclude_callchain_kernel = exclude_callchain_kernel(CALLCHAIN_KERNEL),
.watermark = 1,
.wakeup_watermark = (sched_migrate.pages << 12) / 2,
};
struct perf_evsel *evsel;
if (monitor_ctx_init(env) < 0)
return -1;
attr.config = tep__event_id("sched", "sched_migrate_task");
evsel = perf_evsel__new(&attr);
if (!evsel) {
return -1;
}
perf_evlist__add(evlist, evsel);
return 0;
}
static int sched_migrate_filter(struct perf_evlist *evlist, struct env *env)
{
struct perf_evsel *evsel;
int err;
if (env->filter && env->filter[0]) {
perf_evlist__for_each_evsel(evlist, evsel) {
err = perf_evsel__apply_filter(evsel, env->filter);
if (err < 0)
return err;
}
}
return 0;
}
static void sched_migrate_interval(void)
{
print_time(stdout);
printf("sched-migrate total %lu, same LLC %lu hit %lu%%, same L2 %lu hit %lu%%\n", ctx.stat.total,
ctx.stat.same_llc,ctx.stat.total ? ctx.stat.same_llc*100/ctx.stat.total : 0,
ctx.stat.same_l2, ctx.stat.total ? ctx.stat.same_l2*100/ctx.stat.total : 0);
memset(&ctx.stat, 0 , sizeof(ctx.stat));
}
static void sched_migrate_exit(struct perf_evlist *evlist)
{
sched_migrate_interval();
monitor_ctx_exit();
}
static void __raw_size(union perf_event *event, void **praw, int *psize)
{
if (ctx.env->callchain) {
struct sample_type_callchain *data = (void *)event->sample.array;
struct {
__u32 size;
__u8 data[0];
} *raw = (void *)data->callchain.ips + data->callchain.nr * sizeof(__u64);
*praw = raw->data;
*psize = raw->size;
} else {
struct sample_type_raw *raw = (void *)event->sample.array;
*praw = raw->raw.data;
*psize = raw->raw.size;
}
}
static inline void __print_callchain(union perf_event *event)
{
struct sample_type_callchain *data = (void *)event->sample.array;
if (ctx.env->callchain) {
if (!ctx.env->flame_graph)
print_callchain_common(ctx.cc, &data->callchain, data->h.tid_entry.pid);
else
flame_graph_add_callchain(ctx.flame, &data->callchain, data->h.tid_entry.pid, NULL);
}
}
static bool same_l2(int orig_cpu, int dest_cpu)
{
return ctx.l2_cpumap[orig_cpu] == ctx.l2_cpumap[dest_cpu];
}
static bool same_llc(int orig_cpu, int dest_cpu)
{
return ctx.llc_cpumap[orig_cpu] == ctx.llc_cpumap[dest_cpu];
}
static void sched_migrate_sample(union perf_event *event, int instance)
{
struct sample_type_header *data = (void *)event->sample.array;
void *raw;
int size;
struct sched_migrate_task *migrate;
int print = 0;
__raw_size(event, &raw, &size);
migrate = raw;
if (same_l2(migrate->orig_cpu, migrate->dest_cpu))
ctx.stat.same_l2 ++;
if (!same_llc(migrate->orig_cpu, migrate->dest_cpu)) {
if (ctx.env->detail) {
print = 1;
}
} else
ctx.stat.same_llc ++;
ctx.stat.total ++;
if (print || ctx.env->verbose >= VERBOSE_EVENT) {
tep__update_comm(NULL, data->tid_entry.tid);
print_time(stdout);
tep__print_event(data->time/1000, data->cpu_entry.cpu, raw, size);
__print_callchain(event);
}
}
static const char *sched_migrate_desc[] = PROFILER_DESC("sched-migrate",
"[OPTION...] [--detail] [--filter filter] [-g [--flame-graph file]]",
"Monitor system process migrations.", "",
"SYNOPSIS", "",
" Monitor system process migrations. Determine if source and destination cpu belong",
" to the same LLC, L2 cache", "",
"TRACEPOINT", "",
" sched:sched_migrate_task", "",
"EXAMPLES", "",
" "PROGRAME" sched-migrate --detail");
static const char *sched_migrate_argv[] = PROFILER_ARGV("sched-migrate",
PROFILER_ARGV_OPTION,
PROFILER_ARGV_CALLCHAIN_FILTER,
PROFILER_ARGV_PROFILER, "detail", "filter", "call-graph", "flame-graph");
static profiler sched_migrate = {
.name = "sched-migrate",
.desc = sched_migrate_desc,
.argv = sched_migrate_argv,
.pages = 2,
.init = sched_migrate_init,
.filter = sched_migrate_filter,
.deinit = sched_migrate_exit,
.interval = sched_migrate_interval,
.sample = sched_migrate_sample,
};
PROFILER_REGISTER(sched_migrate)