blob: 66b8ecd22cfeae79f5987c7ac8105574e15034a4 [file] [log] [blame]
Ingo Molnarabaff322009-06-02 22:59:57 +02001/*
Ingo Molnarbf9e1872009-06-02 23:37:05 +02002 * builtin-record.c
3 *
4 * Builtin record command: Record the profile of a workload
5 * (or a CPU, or a PID) into the perf.data output file - for
6 * later analysis via perf report.
Ingo Molnarabaff322009-06-02 22:59:57 +02007 */
Xiao Guangrongb8f46c52010-02-03 11:53:14 +08008#define _FILE_OFFSET_BITS 64
9
Ingo Molnar16f762a2009-05-27 09:10:38 +020010#include "builtin.h"
Ingo Molnarbf9e1872009-06-02 23:37:05 +020011
12#include "perf.h"
13
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020014#include "util/build-id.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020015#include "util/util.h"
Ingo Molnar0e9b20b2009-05-26 09:17:18 +020016#include "util/parse-options.h"
Ingo Molnar8ad8db32009-05-26 11:10:09 +020017#include "util/parse-events.h"
Thomas Gleixner6eda5832009-05-01 18:29:57 +020018
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020019#include "util/header.h"
Frederic Weisbecker66e274f2009-08-12 11:07:25 +020020#include "util/event.h"
Frederic Weisbecker8f28827a2009-08-16 22:05:48 +020021#include "util/debug.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020022#include "util/session.h"
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020023#include "util/symbol.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110024#include "util/cpumap.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020025
Peter Zijlstra97124d52009-06-02 15:52:24 +020026#include <unistd.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020027#include <sched.h>
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -030028#include <sys/mman.h>
Peter Zijlstrade9ac072009-04-08 15:01:31 +020029
Frederic Weisbecker7865e812010-04-14 19:42:07 +020030enum write_mode_t {
31 WRITE_FORCE,
32 WRITE_APPEND
33};
34
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030035static int *fd[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020036
Stephane Eranian3de29ca2010-05-17 12:20:43 -030037static u64 user_interval = ULLONG_MAX;
38static u64 default_interval = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020039
Ingo Molnar42e59d72009-10-06 15:14:21 +020040static int nr_cpus = 0;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020041static unsigned int page_size;
Ingo Molnar42e59d72009-10-06 15:14:21 +020042static unsigned int mmap_pages = 128;
Frederic Weisbeckerf9212812010-04-14 22:09:02 +020043static unsigned int user_freq = UINT_MAX;
Ingo Molnar42e59d72009-10-06 15:14:21 +020044static int freq = 1000;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020045static int output;
Tom Zanussi529870e2010-04-01 23:59:16 -050046static int pipe_output = 0;
Ingo Molnar23ac9cb2009-05-27 09:33:18 +020047static const char *output_name = "perf.data";
Ingo Molnar42e59d72009-10-06 15:14:21 +020048static int group = 0;
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -030049static int realtime_prio = 0;
Ian Munsiec0555642010-04-13 18:37:33 +100050static bool raw_samples = false;
51static bool system_wide = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020052static int profile_cpu = -1;
53static pid_t target_pid = -1;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030054static pid_t target_tid = -1;
55static pid_t *all_tids = NULL;
56static int thread_num = 0;
Ingo Molnar42e59d72009-10-06 15:14:21 +020057static pid_t child_pid = -1;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +020058static bool no_inherit = false;
Frederic Weisbecker7865e812010-04-14 19:42:07 +020059static enum write_mode_t write_mode = WRITE_FORCE;
Ian Munsiec0555642010-04-13 18:37:33 +100060static bool call_graph = false;
61static bool inherit_stat = false;
62static bool no_samples = false;
63static bool sample_address = false;
64static bool multiplex = false;
Ingo Molnar42e59d72009-10-06 15:14:21 +020065static int multiplex_fd = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020066
Ingo Molnar42e59d72009-10-06 15:14:21 +020067static long samples = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020068static struct timeval last_read;
69static struct timeval this_read;
70
Ingo Molnar42e59d72009-10-06 15:14:21 +020071static u64 bytes_written = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020072
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030073static struct pollfd *event_array;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020074
Ingo Molnar42e59d72009-10-06 15:14:21 +020075static int nr_poll = 0;
76static int nr_cpu = 0;
Ingo Molnara21ca2c2009-06-06 09:58:57 +020077
Ingo Molnar42e59d72009-10-06 15:14:21 +020078static int file_new = 1;
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -020079static off_t post_processing_offset;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020080
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020081static struct perf_session *session;
Peter Zijlstraf5970552009-06-18 23:22:55 +020082
Ingo Molnara21ca2c2009-06-06 09:58:57 +020083struct mmap_data {
84 int counter;
85 void *base;
86 unsigned int mask;
87 unsigned int prev;
88};
89
Zhang, Yanmind6d901c2010-03-18 11:36:05 -030090static struct mmap_data *mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
Ingo Molnara21ca2c2009-06-06 09:58:57 +020091
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020092static unsigned long mmap_read_head(struct mmap_data *md)
Peter Zijlstrade9ac072009-04-08 15:01:31 +020093{
Ingo Molnarcdd6c482009-09-21 12:02:48 +020094 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +020095 long head;
Peter Zijlstrade9ac072009-04-08 15:01:31 +020096
97 head = pc->data_head;
98 rmb();
99
100 return head;
101}
102
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200103static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
104{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200105 struct perf_event_mmap_page *pc = md->base;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200106
107 /*
108 * ensure all reads are done before we write the tail out.
109 */
110 /* mb(); */
111 pc->data_tail = tail;
112}
113
Tom Zanussi92155452010-04-01 23:59:21 -0500114static void advance_output(size_t size)
115{
116 bytes_written += size;
117}
118
Peter Zijlstraf5970552009-06-18 23:22:55 +0200119static void write_output(void *buf, size_t size)
120{
121 while (size) {
122 int ret = write(output, buf, size);
123
124 if (ret < 0)
125 die("failed to write");
126
127 size -= ret;
128 buf += ret;
129
130 bytes_written += ret;
131 }
132}
133
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200134static int process_synthesized_event(event_t *event,
135 struct perf_session *self __used)
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200136{
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200137 write_output(event, event->header.size);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200138 return 0;
139}
140
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200141static void mmap_read(struct mmap_data *md)
142{
143 unsigned int head = mmap_read_head(md);
144 unsigned int old = md->prev;
145 unsigned char *data = md->base + page_size;
146 unsigned long size;
147 void *buf;
148 int diff;
149
150 gettimeofday(&this_read, NULL);
151
152 /*
153 * If we're further behind than half the buffer, there's a chance
Ingo Molnar2debbc82009-06-05 14:29:10 +0200154 * the writer will bite our tail and mess up the samples under us.
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200155 *
156 * If we somehow ended up ahead of the head, we got messed up.
157 *
158 * In either case, truncate and restart at head.
159 */
160 diff = head - old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200161 if (diff < 0) {
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200162 struct timeval iv;
163 unsigned long msecs;
164
165 timersub(&this_read, &last_read, &iv);
166 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
167
168 fprintf(stderr, "WARNING: failed to keep up with mmap data."
169 " Last read %lu msecs ago.\n", msecs);
170
171 /*
172 * head points to a known good entry, start there.
173 */
174 old = head;
175 }
176
177 last_read = this_read;
178
179 if (old != head)
Ingo Molnar2debbc82009-06-05 14:29:10 +0200180 samples++;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200181
182 size = head - old;
183
184 if ((old & md->mask) + size != (head & md->mask)) {
185 buf = &data[old & md->mask];
186 size = md->mask + 1 - (old & md->mask);
187 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200188
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200189 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200190 }
191
192 buf = &data[old & md->mask];
193 size = head - old;
194 old += size;
Ingo Molnar021e9f42009-06-03 19:27:19 +0200195
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200196 write_output(buf, size);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200197
198 md->prev = old;
Peter Zijlstra9d91a6f2009-06-18 11:40:28 +0200199 mmap_write_tail(md, old);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200200}
201
202static volatile int done = 0;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200203static volatile int signr = -1;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200204
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200205static void sig_handler(int sig)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200206{
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200207 done = 1;
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200208 signr = sig;
209}
210
211static void sig_atexit(void)
212{
Chris Wilson933da832009-10-04 01:35:01 +0100213 if (child_pid != -1)
214 kill(child_pid, SIGTERM);
215
Peter Zijlstraf7b7c262009-06-10 15:55:59 +0200216 if (signr == -1)
217 return;
218
219 signal(signr, SIG_DFL);
220 kill(getpid(), signr);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200221}
222
Ingo Molnarf250c0302009-06-05 13:18:41 +0200223static int group_fd;
224
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200225static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200226{
227 struct perf_header_attr *h_attr;
228
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200229 if (nr < session->header.attrs) {
230 h_attr = session->header.attr[nr];
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200231 } else {
232 h_attr = perf_header_attr__new(a);
Arnaldo Carvalho de Melodc79c0f2009-11-16 19:30:26 -0200233 if (h_attr != NULL)
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200234 if (perf_header__add_attr(&session->header, h_attr) < 0) {
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -0200235 perf_header_attr__delete(h_attr);
236 h_attr = NULL;
237 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200238 }
239
240 return h_attr;
241}
242
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300243static void create_counter(int counter, int cpu)
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200244{
Li Zefanc171b552009-10-15 11:22:07 +0800245 char *filter = filters[counter];
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200246 struct perf_event_attr *attr = attrs + counter;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200247 struct perf_header_attr *h_attr;
248 int track = !counter; /* only the first counter needs these */
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300249 int thread_index;
Li Zefanc171b552009-10-15 11:22:07 +0800250 int ret;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200251 struct {
252 u64 count;
253 u64 time_enabled;
254 u64 time_running;
255 u64 id;
256 } read_data;
257
258 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
259 PERF_FORMAT_TOTAL_TIME_RUNNING |
260 PERF_FORMAT_ID;
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200261
Frederic Weisbecker3a9f1312009-08-13 10:27:18 +0200262 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200263
Eric B Munson8907fd62010-03-05 12:51:05 -0300264 if (nr_counters > 1)
265 attr->sample_type |= PERF_SAMPLE_ID;
266
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200267 /*
268 * We default some events to a 1 default interval. But keep
269 * it a weak assumption overridable by the user.
270 */
271 if (!attr->sample_period || (user_freq != UINT_MAX &&
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300272 user_interval != ULLONG_MAX)) {
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200273 if (freq) {
274 attr->sample_type |= PERF_SAMPLE_PERIOD;
275 attr->freq = 1;
276 attr->sample_freq = freq;
277 } else {
278 attr->sample_period = default_interval;
279 }
Ingo Molnar1dba15e2009-06-05 18:37:22 +0200280 }
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200281
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200282 if (no_samples)
283 attr->sample_freq = 0;
284
285 if (inherit_stat)
286 attr->inherit_stat = 1;
287
Anton Blanchard4bba8282009-07-16 15:44:29 +0200288 if (sample_address)
289 attr->sample_type |= PERF_SAMPLE_ADDR;
290
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200291 if (call_graph)
292 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
293
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200294 if (raw_samples) {
Ingo Molnar6ddf2592009-09-03 12:00:22 +0200295 attr->sample_type |= PERF_SAMPLE_TIME;
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200296 attr->sample_type |= PERF_SAMPLE_RAW;
Ingo Molnarcd6feee2009-09-02 20:20:38 +0200297 attr->sample_type |= PERF_SAMPLE_CPU;
298 }
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +0200299
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200300 attr->mmap = track;
301 attr->comm = track;
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200302 attr->inherit = !no_inherit;
303 if (target_pid == -1 && target_tid == -1 && !system_wide) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300304 attr->disabled = 1;
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300305 attr->enable_on_exec = 1;
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300306 }
Eric B Munsonbedbfde2010-03-15 11:46:57 -0300307
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300308 for (thread_index = 0; thread_index < thread_num; thread_index++) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200309try_again:
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300310 fd[nr_cpu][counter][thread_index] = sys_perf_event_open(attr,
311 all_tids[thread_index], cpu, group_fd, 0);
Ingo Molnarf250c0302009-06-05 13:18:41 +0200312
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300313 if (fd[nr_cpu][counter][thread_index] < 0) {
314 int err = errno;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200315
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300316 if (err == EPERM || err == EACCES)
317 die("Permission error - are you root?\n"
318 "\t Consider tweaking"
319 " /proc/sys/kernel/perf_event_paranoid.\n");
320 else if (err == ENODEV && profile_cpu != -1) {
321 die("No such device - did you specify"
322 " an out-of-range profile CPU?\n");
323 }
Ingo Molnar3da297a2009-06-07 17:39:02 +0200324
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300325 /*
326 * If it's cycles then fall back to hrtimer
327 * based cpu-clock-tick sw counter, which
328 * is always available even if no PMU support:
329 */
330 if (attr->type == PERF_TYPE_HARDWARE
331 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
Ingo Molnar3da297a2009-06-07 17:39:02 +0200332
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300333 if (verbose)
334 warning(" ... trying to fall back to cpu-clock-ticks\n");
335 attr->type = PERF_TYPE_SOFTWARE;
336 attr->config = PERF_COUNT_SW_CPU_CLOCK;
337 goto try_again;
338 }
339 printf("\n");
340 error("perfcounter syscall returned with %d (%s)\n",
341 fd[nr_cpu][counter][thread_index], strerror(err));
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000342
343#if defined(__i386__) || defined(__x86_64__)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300344 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
345 die("No hardware sampling interrupt available."
346 " No APIC? If so then you can boot the kernel"
347 " with the \"lapic\" boot parameter to"
348 " force-enable it.\n");
Simon Kaempfleinbfd45112009-11-16 15:25:53 +1000349#endif
350
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300351 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200352 exit(-1);
353 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200354
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300355 h_attr = get_header_attr(attr, counter);
356 if (h_attr == NULL)
357 die("nomem\n");
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200358
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300359 if (!file_new) {
360 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
361 fprintf(stderr, "incompatible append\n");
362 exit(-1);
363 }
364 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200365
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300366 if (read(fd[nr_cpu][counter][thread_index], &read_data, sizeof(read_data)) == -1) {
367 perror("Unable to read perf file descriptor\n");
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200368 exit(-1);
369 }
Peter Zijlstra4502d772009-06-10 15:03:06 +0200370
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300371 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
372 pr_warning("Not enough memory to add id\n");
Li Zefanc171b552009-10-15 11:22:07 +0800373 exit(-1);
374 }
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300375
376 assert(fd[nr_cpu][counter][thread_index] >= 0);
377 fcntl(fd[nr_cpu][counter][thread_index], F_SETFL, O_NONBLOCK);
378
379 /*
380 * First counter acts as the group leader:
381 */
382 if (group && group_fd == -1)
383 group_fd = fd[nr_cpu][counter][thread_index];
384 if (multiplex && multiplex_fd == -1)
385 multiplex_fd = fd[nr_cpu][counter][thread_index];
386
387 if (multiplex && fd[nr_cpu][counter][thread_index] != multiplex_fd) {
388
389 ret = ioctl(fd[nr_cpu][counter][thread_index], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
390 assert(ret != -1);
391 } else {
392 event_array[nr_poll].fd = fd[nr_cpu][counter][thread_index];
393 event_array[nr_poll].events = POLLIN;
394 nr_poll++;
395
396 mmap_array[nr_cpu][counter][thread_index].counter = counter;
397 mmap_array[nr_cpu][counter][thread_index].prev = 0;
398 mmap_array[nr_cpu][counter][thread_index].mask = mmap_pages*page_size - 1;
399 mmap_array[nr_cpu][counter][thread_index].base = mmap(NULL, (mmap_pages+1)*page_size,
400 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter][thread_index], 0);
401 if (mmap_array[nr_cpu][counter][thread_index].base == MAP_FAILED) {
402 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
403 exit(-1);
404 }
405 }
406
407 if (filter != NULL) {
408 ret = ioctl(fd[nr_cpu][counter][thread_index],
409 PERF_EVENT_IOC_SET_FILTER, filter);
410 if (ret) {
411 error("failed to set filter with %d (%s)\n", errno,
412 strerror(errno));
413 exit(-1);
414 }
415 }
Li Zefanc171b552009-10-15 11:22:07 +0800416 }
Ingo Molnarf250c0302009-06-05 13:18:41 +0200417}
418
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300419static void open_counters(int cpu)
Ingo Molnarf250c0302009-06-05 13:18:41 +0200420{
421 int counter;
422
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200423 group_fd = -1;
Ingo Molnarf250c0302009-06-05 13:18:41 +0200424 for (counter = 0; counter < nr_counters; counter++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300425 create_counter(counter, cpu);
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200426
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200427 nr_cpu++;
428}
429
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200430static int process_buildids(void)
431{
432 u64 size = lseek(output, 0, SEEK_CUR);
433
Arnaldo Carvalho de Melo9f591fd2010-03-11 15:53:11 -0300434 if (size == 0)
435 return 0;
436
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200437 session->fd = output;
438 return __perf_session__process_events(session, post_processing_offset,
439 size - post_processing_offset,
440 size, &build_id__mark_dso_hit_ops);
441}
442
Peter Zijlstraf5970552009-06-18 23:22:55 +0200443static void atexit_header(void)
444{
Tom Zanussic7929e42010-04-01 23:59:22 -0500445 if (!pipe_output) {
446 session->header.data_size += bytes_written;
Peter Zijlstraf5970552009-06-18 23:22:55 +0200447
Tom Zanussic7929e42010-04-01 23:59:22 -0500448 process_buildids();
449 perf_header__write(&session->header, output, true);
Tom Zanussic7929e42010-04-01 23:59:22 -0500450 }
Peter Zijlstraf5970552009-06-18 23:22:55 +0200451}
452
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300453static void event__synthesize_guest_os(struct machine *machine, void *data)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800454{
455 int err;
456 char *guest_kallsyms;
457 char path[PATH_MAX];
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300458 struct perf_session *psession = data;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800459
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300460 if (machine__is_host(machine))
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800461 return;
462
463 /*
464 *As for guest kernel when processing subcommand record&report,
465 *we arrange module mmap prior to guest kernel mmap and trigger
466 *a preload dso because default guest module symbols are loaded
467 *from guest kallsyms instead of /lib/modules/XXX/XXX. This
468 *method is used to avoid symbol missing when the first addr is
469 *in module instead of in guest kernel.
470 */
471 err = event__synthesize_modules(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300472 psession, machine);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800473 if (err < 0)
474 pr_err("Couldn't record guest kernel [%d]'s reference"
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300475 " relocation symbol.\n", machine->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800476
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300477 if (machine__is_default_guest(machine))
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800478 guest_kallsyms = (char *) symbol_conf.default_guest_kallsyms;
479 else {
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300480 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800481 guest_kallsyms = path;
482 }
483
484 /*
485 * We use _stext for guest kernel because guest kernel's /proc/kallsyms
486 * have no _text sometimes.
487 */
488 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300489 psession, machine, "_text");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800490 if (err < 0)
491 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300492 psession, machine, "_stext");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800493 if (err < 0)
494 pr_err("Couldn't record guest kernel [%d]'s reference"
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300495 " relocation symbol.\n", machine->pid);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800496}
497
Frederic Weisbecker98402802010-05-02 22:05:29 +0200498static struct perf_event_header finished_round_event = {
499 .size = sizeof(struct perf_event_header),
500 .type = PERF_RECORD_FINISHED_ROUND,
501};
502
503static void mmap_read_all(void)
504{
505 int i, counter, thread;
506
507 for (i = 0; i < nr_cpu; i++) {
508 for (counter = 0; counter < nr_counters; counter++) {
509 for (thread = 0; thread < thread_num; thread++) {
510 if (mmap_array[i][counter][thread].base)
511 mmap_read(&mmap_array[i][counter][thread]);
512 }
513
514 }
515 }
516
517 if (perf_header__has_feat(&session->header, HEADER_TRACE_INFO))
518 write_output(&finished_round_event, sizeof(finished_round_event));
519}
520
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200521static int __cmd_record(int argc, const char **argv)
Peter Zijlstra16c8a102009-05-05 17:50:27 +0200522{
523 int i, counter;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200524 struct stat st;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200525 pid_t pid = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200526 int flags;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200527 int err;
Peter Zijlstra8b412662009-09-17 19:59:05 +0200528 unsigned long waking = 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100529 int child_ready_pipe[2], go_pipe[2];
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300530 const bool forks = argc > 0;
Peter Zijlstra856e9662009-12-16 17:55:55 +0100531 char buf;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300532 struct machine *machine;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200533
534 page_size = sysconf(_SC_PAGE_SIZE);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200535
Peter Zijlstraf5970552009-06-18 23:22:55 +0200536 atexit(sig_atexit);
537 signal(SIGCHLD, sig_handler);
538 signal(SIGINT, sig_handler);
539
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200540 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
Peter Zijlstra856e9662009-12-16 17:55:55 +0100541 perror("failed to create pipes");
542 exit(-1);
543 }
544
Tom Zanussi529870e2010-04-01 23:59:16 -0500545 if (!strcmp(output_name, "-"))
546 pipe_output = 1;
547 else if (!stat(output_name, &st) && st.st_size) {
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200548 if (write_mode == WRITE_FORCE) {
Arnaldo Carvalho de Melob38d3462009-12-14 20:09:30 -0200549 char oldname[PATH_MAX];
550 snprintf(oldname, sizeof(oldname), "%s.old",
551 output_name);
552 unlink(oldname);
553 rename(output_name, oldname);
Pierre Habouzit266e0e22009-08-07 14:16:01 +0200554 }
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200555 } else if (write_mode == WRITE_APPEND) {
556 write_mode = WRITE_FORCE;
Peter Zijlstra97124d52009-06-02 15:52:24 +0200557 }
558
Xiao Guangrongf887f302010-02-04 16:46:42 +0800559 flags = O_CREAT|O_RDWR;
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200560 if (write_mode == WRITE_APPEND)
Peter Zijlstraf5970552009-06-18 23:22:55 +0200561 file_new = 0;
Ingo Molnarabaff322009-06-02 22:59:57 +0200562 else
563 flags |= O_TRUNC;
564
Tom Zanussi529870e2010-04-01 23:59:16 -0500565 if (pipe_output)
566 output = STDOUT_FILENO;
567 else
568 output = open(output_name, flags, S_IRUSR | S_IWUSR);
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200569 if (output < 0) {
570 perror("failed to create output file");
571 exit(-1);
572 }
573
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200574 session = perf_session__new(output_name, O_WRONLY,
Tom Zanussi454c4072010-05-01 01:41:20 -0500575 write_mode == WRITE_FORCE, false);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200576 if (session == NULL) {
Arnaldo Carvalho de Meloa9a70bb2009-11-17 01:18:11 -0200577 pr_err("Not enough memory for reading perf file header\n");
578 return -1;
579 }
580
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200581 if (!file_new) {
Tom Zanussi8dc58102010-04-01 23:59:15 -0500582 err = perf_header__read(session, output);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200583 if (err < 0)
584 return err;
585 }
586
Tom Zanussidb620b12010-05-04 22:20:16 -0500587 if (have_tracepoints(attrs, nr_counters))
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200588 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
Frederic Weisbecker03456a12009-10-06 23:36:47 +0200589
Peter Zijlstraf5970552009-06-18 23:22:55 +0200590 atexit(atexit_header);
591
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200592 if (forks) {
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300593 child_pid = fork();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100594 if (pid < 0) {
595 perror("failed to fork");
596 exit(-1);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200597 }
Peter Zijlstra856e9662009-12-16 17:55:55 +0100598
Zhang, Yanmin46be6042010-03-18 11:36:04 -0300599 if (!child_pid) {
Tom Zanussi529870e2010-04-01 23:59:16 -0500600 if (pipe_output)
601 dup2(2, 1);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100602 close(child_ready_pipe[0]);
603 close(go_pipe[1]);
604 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
605
606 /*
607 * Do a dummy execvp to get the PLT entry resolved,
608 * so we avoid the resolver overhead on the real
609 * execvp call.
610 */
611 execvp("", (char **)argv);
612
613 /*
614 * Tell the parent we're ready to go
615 */
616 close(child_ready_pipe[1]);
617
618 /*
619 * Wait until the parent tells us to go.
620 */
621 if (read(go_pipe[0], &buf, 1) == -1)
622 perror("unable to read pipe");
623
624 execvp(argv[0], (char **)argv);
625
626 perror(argv[0]);
627 exit(-1);
628 }
629
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300630 if (!system_wide && target_tid == -1 && target_pid == -1)
631 all_tids[0] = child_pid;
632
Peter Zijlstra856e9662009-12-16 17:55:55 +0100633 close(child_ready_pipe[1]);
634 close(go_pipe[0]);
635 /*
636 * wait for child to settle
637 */
638 if (read(child_ready_pipe[0], &buf, 1) == -1) {
639 perror("unable to read pipe");
640 exit(-1);
641 }
642 close(child_ready_pipe[0]);
643 }
644
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200645 if ((!system_wide && no_inherit) || profile_cpu != -1) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300646 open_counters(profile_cpu);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100647 } else {
Paul Mackerrasa12b51c2010-03-10 20:36:09 +1100648 nr_cpus = read_cpu_map();
Peter Zijlstra856e9662009-12-16 17:55:55 +0100649 for (i = 0; i < nr_cpus; i++)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300650 open_counters(cpumap[i]);
Jens Axboe0a5ac842009-08-12 11:18:01 +0200651 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200652
Tom Zanussi529870e2010-04-01 23:59:16 -0500653 if (pipe_output) {
654 err = perf_header__write_pipe(output);
655 if (err < 0)
656 return err;
657 } else if (file_new) {
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -0200658 err = perf_header__write(&session->header, output, false);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -0200659 if (err < 0)
660 return err;
661 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200662
Arnaldo Carvalho de Melo6122e4e2010-02-03 16:52:05 -0200663 post_processing_offset = lseek(output, 0, SEEK_CUR);
664
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500665 if (pipe_output) {
666 err = event__synthesize_attrs(&session->header,
667 process_synthesized_event,
668 session);
669 if (err < 0) {
670 pr_err("Couldn't synthesize attrs.\n");
671 return err;
672 }
Tom Zanussicd19a032010-04-01 23:59:20 -0500673
674 err = event__synthesize_event_types(process_synthesized_event,
675 session);
676 if (err < 0) {
677 pr_err("Couldn't synthesize event_types.\n");
678 return err;
679 }
Tom Zanussi92155452010-04-01 23:59:21 -0500680
Tom Zanussi63e0c772010-05-03 00:14:48 -0500681 if (have_tracepoints(attrs, nr_counters)) {
682 /*
683 * FIXME err <= 0 here actually means that
684 * there were no tracepoints so its not really
685 * an error, just that we don't need to
686 * synthesize anything. We really have to
687 * return this more properly and also
688 * propagate errors that now are calling die()
689 */
690 err = event__synthesize_tracing_data(output, attrs,
691 nr_counters,
692 process_synthesized_event,
693 session);
694 if (err <= 0) {
695 pr_err("Couldn't record tracing data.\n");
696 return err;
697 }
Arnaldo Carvalho de Melo2c9faa02010-05-02 13:37:24 -0300698 advance_output(err);
Tom Zanussi63e0c772010-05-03 00:14:48 -0500699 }
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500700 }
701
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300702 machine = perf_session__find_host_machine(session);
703 if (!machine) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800704 pr_err("Couldn't find native kernel information.\n");
705 return -1;
706 }
707
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200708 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300709 session, machine, "_text");
Arnaldo Carvalho de Melo70162132010-03-30 18:27:39 -0300710 if (err < 0)
711 err = event__synthesize_kernel_mmap(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300712 session, machine, "_stext");
Arnaldo Carvalho de Melo56b03f32010-01-05 16:50:31 -0200713 if (err < 0) {
714 pr_err("Couldn't record kernel reference relocation symbol.\n");
715 return err;
716 }
717
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800718 err = event__synthesize_modules(process_synthesized_event,
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300719 session, machine);
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200720 if (err < 0) {
721 pr_err("Couldn't record kernel reference relocation symbol.\n");
722 return err;
723 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800724 if (perf_guest)
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -0300725 perf_session__process_machines(session, event__synthesize_guest_os);
Arnaldo Carvalho de Melob7cece72010-01-13 13:22:17 -0200726
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200727 if (!system_wide && profile_cpu == -1)
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300728 event__synthesize_thread(target_tid, process_synthesized_event,
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200729 session);
Arnaldo Carvalho de Melo234fbbf2009-10-26 19:23:18 -0200730 else
Arnaldo Carvalho de Melod8f66242009-12-13 19:50:24 -0200731 event__synthesize_threads(process_synthesized_event, session);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200732
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200733 if (realtime_prio) {
734 struct sched_param param;
735
736 param.sched_priority = realtime_prio;
737 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200738 pr_err("Could not set realtime priority.\n");
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200739 exit(-1);
740 }
741 }
742
Peter Zijlstra856e9662009-12-16 17:55:55 +0100743 /*
744 * Let the child rip
745 */
Arnaldo Carvalho de Melod4db3f12009-12-27 21:36:57 -0200746 if (forks)
747 close(go_pipe[1]);
Peter Zijlstra856e9662009-12-16 17:55:55 +0100748
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200749 for (;;) {
Ingo Molnar2debbc82009-06-05 14:29:10 +0200750 int hits = samples;
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300751 int thread;
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200752
Frederic Weisbecker98402802010-05-02 22:05:29 +0200753 mmap_read_all();
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200754
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200755 if (hits == samples) {
756 if (done)
757 break;
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -0200758 err = poll(event_array, nr_poll, -1);
Peter Zijlstra8b412662009-09-17 19:59:05 +0200759 waking++;
760 }
761
762 if (done) {
763 for (i = 0; i < nr_cpu; i++) {
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300764 for (counter = 0;
765 counter < nr_counters;
766 counter++) {
767 for (thread = 0;
768 thread < thread_num;
769 thread++)
770 ioctl(fd[i][counter][thread],
771 PERF_EVENT_IOC_DISABLE);
772 }
Peter Zijlstra8b412662009-09-17 19:59:05 +0200773 }
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200774 }
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200775 }
776
Peter Zijlstra8b412662009-09-17 19:59:05 +0200777 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
778
Ingo Molnar021e9f42009-06-03 19:27:19 +0200779 /*
780 * Approximate RIP event size: 24 bytes.
781 */
782 fprintf(stderr,
Ingo Molnar2debbc82009-06-05 14:29:10 +0200783 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
Ingo Molnar021e9f42009-06-03 19:27:19 +0200784 (double)bytes_written / 1024.0 / 1024.0,
785 output_name,
786 bytes_written / 24);
Ingo Molnaraddc2782009-06-02 23:43:11 +0200787
Peter Zijlstrade9ac072009-04-08 15:01:31 +0200788 return 0;
789}
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200790
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200791static const char * const record_usage[] = {
Mike Galbraith9e0967532009-05-28 16:25:34 +0200792 "perf record [<options>] [<command>]",
793 "perf record [<options>] -- <command> [<options>]",
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200794 NULL
795};
796
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200797static bool force, append_file;
798
Ingo Molnar52425192009-05-26 09:17:18 +0200799static const struct option options[] = {
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200800 OPT_CALLBACK('e', "event", NULL, "event",
Thomas Gleixner86847b62009-06-06 12:24:17 +0200801 "event selector. use 'perf list' to list available events",
802 parse_events),
Li Zefanc171b552009-10-15 11:22:07 +0800803 OPT_CALLBACK(0, "filter", NULL, "filter",
804 "event filter", parse_filter),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200805 OPT_INTEGER('p', "pid", &target_pid,
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300806 "record events on existing process id"),
807 OPT_INTEGER('t', "tid", &target_tid,
808 "record events on existing thread id"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200809 OPT_INTEGER('r', "realtime", &realtime_prio,
810 "collect data with this RT SCHED_FIFO priority"),
Frederic Weisbeckerdaac07b2009-08-13 10:27:19 +0200811 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
812 "collect raw sample records from all opened counters"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200813 OPT_BOOLEAN('a', "all-cpus", &system_wide,
814 "system-wide collection from all CPUs"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200815 OPT_BOOLEAN('A', "append", &append_file,
816 "append to the output file to do incremental profiling"),
Jens Axboe0a5ac842009-08-12 11:18:01 +0200817 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
818 "CPU to profile on"),
Peter Zijlstra97124d52009-06-02 15:52:24 +0200819 OPT_BOOLEAN('f', "force", &force,
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200820 "overwrite existing data file (deprecated)"),
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300821 OPT_U64('c', "count", &user_interval, "event period to sample"),
Ingo Molnarabaff322009-06-02 22:59:57 +0200822 OPT_STRING('o', "output", &output_name, "file",
823 "output file name"),
Stephane Eranian2e6cdf92010-05-12 10:40:01 +0200824 OPT_BOOLEAN('i', "no-inherit", &no_inherit,
825 "child tasks do not inherit counters"),
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -0300826 OPT_UINTEGER('F', "freq", &user_freq, "profile at this frequency"),
827 OPT_UINTEGER('m', "mmap-pages", &mmap_pages, "number of mmap data pages"),
Ingo Molnar3efa1cc92009-06-14 15:04:15 +0200828 OPT_BOOLEAN('g', "call-graph", &call_graph,
829 "do call-graph (stack chain/backtrace) recording"),
Ian Munsiec0555642010-04-13 18:37:33 +1000830 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar3da297a2009-06-07 17:39:02 +0200831 "be more verbose (show counter open errors, etc)"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200832 OPT_BOOLEAN('s', "stat", &inherit_stat,
833 "per thread counts"),
Anton Blanchard4bba8282009-07-16 15:44:29 +0200834 OPT_BOOLEAN('d', "data", &sample_address,
835 "Sample addresses"),
Peter Zijlstra649c48a2009-06-24 21:12:48 +0200836 OPT_BOOLEAN('n', "no-samples", &no_samples,
837 "don't sample"),
Frederic Weisbeckerd1302522009-09-14 08:57:15 +0200838 OPT_BOOLEAN('M', "multiplex", &multiplex,
839 "multiplex counter output in a single channel"),
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200840 OPT_END()
841};
842
Ingo Molnarf37a2912009-07-01 12:37:06 +0200843int cmd_record(int argc, const char **argv, const char *prefix __used)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200844{
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300845 int i,j;
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200846
Anton Blancharda0541232009-07-22 23:04:12 +1000847 argc = parse_options(argc, argv, options, record_usage,
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200848 PARSE_OPT_STOP_AT_NON_OPTION);
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300849 if (!argc && target_pid == -1 && target_tid == -1 &&
850 !system_wide && profile_cpu == -1)
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200851 usage_with_options(record_usage, options);
852
Frederic Weisbecker7865e812010-04-14 19:42:07 +0200853 if (force && append_file) {
854 fprintf(stderr, "Can't overwrite and append at the same time."
855 " You need to choose between -f and -A");
856 usage_with_options(record_usage, options);
857 } else if (append_file) {
858 write_mode = WRITE_APPEND;
859 } else {
860 write_mode = WRITE_FORCE;
861 }
862
Arnaldo Carvalho de Melo655000e2009-12-15 20:04:40 -0200863 symbol__init();
864
Peter Zijlstrabbd36e52009-06-11 23:11:50 +0200865 if (!nr_counters) {
866 nr_counters = 1;
867 attrs[0].type = PERF_TYPE_HARDWARE;
868 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
869 }
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200870
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300871 if (target_pid != -1) {
872 target_tid = target_pid;
873 thread_num = find_all_tid(target_pid, &all_tids);
874 if (thread_num <= 0) {
875 fprintf(stderr, "Can't find all threads of pid %d\n",
876 target_pid);
877 usage_with_options(record_usage, options);
878 }
879 } else {
880 all_tids=malloc(sizeof(pid_t));
881 if (!all_tids)
882 return -ENOMEM;
883
884 all_tids[0] = target_tid;
885 thread_num = 1;
886 }
887
888 for (i = 0; i < MAX_NR_CPUS; i++) {
889 for (j = 0; j < MAX_COUNTERS; j++) {
890 fd[i][j] = malloc(sizeof(int)*thread_num);
Zhang, Yanmin5a103172010-03-25 19:59:01 -0300891 mmap_array[i][j] = zalloc(
Zhang, Yanmind6d901c2010-03-18 11:36:05 -0300892 sizeof(struct mmap_data)*thread_num);
893 if (!fd[i][j] || !mmap_array[i][j])
894 return -ENOMEM;
895 }
896 }
897 event_array = malloc(
898 sizeof(struct pollfd)*MAX_NR_CPUS*MAX_COUNTERS*thread_num);
899 if (!event_array)
900 return -ENOMEM;
901
Stephane Eranian3de29ca2010-05-17 12:20:43 -0300902 if (user_interval != ULLONG_MAX)
Frederic Weisbeckerf9212812010-04-14 22:09:02 +0200903 default_interval = user_interval;
904 if (user_freq != UINT_MAX)
905 freq = user_freq;
906
Mike Galbraith7e4ff9e2009-10-12 07:56:03 +0200907 /*
908 * User specified count overrides default frequency.
909 */
910 if (default_interval)
911 freq = 0;
912 else if (freq) {
913 default_interval = freq;
914 } else {
915 fprintf(stderr, "frequency and count are zero, aborting\n");
916 exit(EXIT_FAILURE);
917 }
918
Ingo Molnar0e9b20b2009-05-26 09:17:18 +0200919 return __cmd_record(argc, argv);
920}