forked from OpenCloudOS/perf-prof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
two-event.h
178 lines (149 loc) · 4.13 KB
/
two-event.h
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
#ifndef __TWO_EVENT_H
#define __TWO_EVENT_H
#include <stack_helpers.h>
struct two_event_class;
struct two_event_impl;
enum keytype {
K_CPU,
K_THREAD,
K_CUSTOM,
};
struct two_event_options {
enum keytype keytype;
bool perins;
unsigned long greater_than;
char *heatmap;
unsigned int first_n;
bool sort_print;
};
struct event_info {
struct tp *tp1;
struct tp *tp2;
u64 key;
};
struct event_iter {
void *start;
void *event1;
void *curr;
union perf_event *event;
struct tp *tp;
};
struct two_event {
/* object */
struct two_event_class *class;
struct rb_node rbnode;
struct tp *tp1;
struct tp *tp2;
struct rb_node rbnode_byid;
unsigned int id;
bool deleting;
};
struct two_event_class {
/* class object */
struct two_event_impl *impl;
struct two_event_options opts;
struct rblist two_events;
struct rblist two_events_byid;
unsigned int ids;
/* object function */
/*
* iter, On the timeline, the events between event1 and event2 can be iterated through iter.
*/
void (*two)(struct two_event *two, union perf_event *event1, union perf_event *event2, struct event_info *info, struct event_iter *iter);
void (*remaining)(struct two_event *two, union perf_event *event, u64 key);
int (*print_header)(struct two_event *two);
void (*print)(struct two_event *two);
};
struct two_event_impl {
/* impl object */
const char *name;
int class_size;
struct two_event_class *(*class_new)(struct two_event_impl *impl, struct two_event_options *options);
void (*class_delete)(struct two_event_class *class);
/* class function */
int instance_size;
struct two_event *(*object_new)(struct two_event_class *class, struct tp *tp1, struct tp *tp2);
void (*object_delete)(struct two_event_class *class, struct two_event *two);
struct two_event *(*object_find)(struct two_event_class *class, struct tp *tp1, struct tp *tp2);
};
/* delay analysis:
* syscall delay
* kvm_exit to kvm_entry delay
* hrtimer_start to hrtimer_expire_entry delay
* and many more
*/
#define TWO_EVENT_DELAY_IMPL "delay"
/*
* event pair:
* kmemleak, alloc and free
* fdleak, open and close
*/
#define TWO_EVENT_PAIR_IMPL "pair"
/*
* mem profile:
* mem-profile, alloc and free bytes
*/
#define TWO_EVENT_MEM_PROFILE "kmemprof"
#define TWO_EVENT_SYSCALLS_IMPL "syscalls"
extern const char *syscalls_table[];
/*
* Analyze function calls.
*/
#define TWO_EVENT_CALL_IMPL "call"
/*
* Analyze function calls. Also analyze function time.
* Print function calls and time statistics.
*/
#define TWO_EVENT_CALL_DELAY_IMPL "call-delay"
struct two_event_impl *impl_get(const char *name);
bool impl_based_on_call(const char *name);
// in linux/perf_event.h
// PERF_SAMPLE_TID | PERF_SAMPLE_TIME | PERF_SAMPLE_STREAM_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD | PERF_SAMPLE_RAW
struct multi_trace_type_header {
struct {
__u32 pid;
__u32 tid;
} tid_entry;
__u64 time;
__u64 stream_id;
struct {
__u32 cpu;
__u32 reserved;
} cpu_entry;
__u64 period;
};
struct multi_trace_type_callchain {
struct multi_trace_type_header h;
struct callchain callchain;
};
struct multi_trace_type_raw {
struct multi_trace_type_header h;
struct {
__u32 size;
__u8 data[0];
} raw;
};
void multi_trace_raw_size(union perf_event *event, void **praw, int *psize, struct tp *tp);
void multi_trace_print_title(union perf_event *event, struct tp *tp, const char *title);
static inline void multi_trace_print(union perf_event *event, struct tp *tp)
{
multi_trace_print_title(event, tp, NULL);
}
bool event_need_to_print(union perf_event *event, union perf_event *event1, union perf_event *event2);
/*
* while (event_iter_cmd(iter, CMD_NEXT)) {
* multi_trace_print_title(iter->event, iter->tp, title);
* }
*/
enum event_iter_cmd {
// locate to start
CMD_RESET,
// locate to event1
CMD_EVENT1,
// prev and next
CMD_PREV,
CMD_NEXT,
CMD_MAX,
};
int event_iter_cmd(struct event_iter *iter, enum event_iter_cmd cmd);
#endif