forked from andysan/perf_tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
perf_common.h
150 lines (135 loc) · 4.93 KB
/
perf_common.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
/*
* Copyright (C) 2010-2011, Andreas Sandberg
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef PERF_COMMON_H
#define PERF_COMMON_H
#include "perf_compat.h"
typedef struct ctr {
struct perf_event_attr attr;
int fd;
struct ctr *next;
} ctr_t;
/**
* Create a counter structure and initialize the attributes structure with base_attr.
*
* @param base_attr Base attributes for counter or NULL for to initialize to all 0.
* @return Pointer to ctr_t structure or NULL on error.
*/
ctr_t *ctr_create(const struct perf_event_attr *base_attr);
/**
* Attach a counter to a running process and cpu combination.
*
* @param ctr Counter to attach
* @param pid PID of process to attach to. Special values: 0 for
* current process, -1 for all processes
* @param cpu Restrict counters to a CPU, -1 to allow all CPUs.
* @param group_fd fd of perfromance counter group leader, -1 to
* create a new group.
* @param flags Perf event flags, see kernel docs/sources
*
* @return -1 on error, counter fd on success
*/
int ctr_attach(ctr_t *ctr, pid_t pid, int cpu, int group_fd, int flags);
typedef struct {
struct ctr *head;
struct ctr *tail;
} ctr_list_t;
/**
* Close all counters in a list. Counters with fd == -1 are ignored.
*/
void ctrs_close(ctr_list_t *list);
/**
* Add a counter to a counter list
*/
ctr_t *ctrs_add(ctr_list_t *list, ctr_t *ctr);
/**
* Count the number of counters in a list
*/
int ctrs_len(ctr_list_t *list);
/**
* Attach all counters in a list to a process/cpu combination.
*
* @param list List of counters to attach
* @param pid PID of process to attach to. Special values: 0 for
* current process, -1 for all processes
* @param cpu Restrict counters to a CPU, -1 to allow all CPUs.
* @param group_fd fd of perfromance counter group leader, -1 to
* create a new group.
* @param flags Perf event flags, see kernel docs/sources
*
* @return >= 0 on success, -1 on error
*/
int ctrs_attach(ctr_list_t *list, pid_t pid, int cpu, int flags);
/**
* Execute a process and attach the counter list to the child process.
* See exec(3).
*
* @param ctr Counter to attach
* @param cpu Restrict counters to a CPU, -1 to allow all CPUs.
* @param group_fd fd of perfromance counter group leader, -1 to
* create a new group.
* @param flags Perf event flags, see kernel docs/sources
* @param file Binary to execute.
* @param argv Argument vector
*
* @return >= 0 on success, -1 on error
*/
pid_t ctrs_execvp(ctr_list_t *list, int cpu, int flags,
const char *file, char *const argv[]);
/**
* Execute a process and attach the counter list to the child process.
* See exec(3). Allows the user to specify a callback to be called
* from the child process before calling execv to start the new
* binary.
*
* @param ctr Counter to attach
* @param cpu Restrict counters to a CPU, -1 to allow all CPUs.
* @param group_fd fd of perfromance counter group leader, -1 to
* create a new group.
* @param flags Perf event flags, see kernel docs/sources
* @param child_callback Function to call before calling exec in the
* child process.
* @param callback_data Data to pass to the child callback function.
* @param file Binary to execute.
* @param argv Argument vector
*
* @return >= 0 on success, -1 on error
*/
pid_t ctrs_execvp_cb(ctr_list_t *list, int cpu, int flags,
void (*child_callback)(void *data), void *callback_data,
const char *file, char *const argv[]);
#endif
/*
* Local Variables:
* mode: c
* c-basic-offset: 4
* indent-tabs-mode: nil
* c-file-style: "k&r"
* End:
*/