ARM: S5PC100: gpio.h cleanup
[linux-2.6-block.git] / tools / perf / builtin-record.c
CommitLineData
abaff32a 1/*
bf9e1876
IM
2 * 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.
abaff32a 7 */
b8f46c5a
XG
8#define _FILE_OFFSET_BITS 64
9
16f762a2 10#include "builtin.h"
bf9e1876
IM
11
12#include "perf.h"
13
6122e4e4 14#include "util/build-id.h"
6eda5838 15#include "util/util.h"
0e9b20b8 16#include "util/parse-options.h"
8ad8db37 17#include "util/parse-events.h"
a0055ae2 18#include "util/string.h"
6eda5838 19
7c6a1c65 20#include "util/header.h"
66e274f3 21#include "util/event.h"
8f28827a 22#include "util/debug.h"
94c744b6 23#include "util/session.h"
8d06367f 24#include "util/symbol.h"
a12b51c4 25#include "util/cpumap.h"
7c6a1c65 26
97124d5e 27#include <unistd.h>
de9ac07b 28#include <sched.h>
de9ac07b 29
de9ac07b 30static int fd[MAX_NR_CPUS][MAX_COUNTERS];
a21ca2ca 31
7e4ff9e3 32static long default_interval = 0;
a21ca2ca 33
42e59d7d 34static int nr_cpus = 0;
de9ac07b 35static unsigned int page_size;
42e59d7d
IM
36static unsigned int mmap_pages = 128;
37static int freq = 1000;
de9ac07b 38static int output;
23ac9cbe 39static const char *output_name = "perf.data";
42e59d7d
IM
40static int group = 0;
41static unsigned int realtime_prio = 0;
42static int raw_samples = 0;
43static int system_wide = 0;
44static int profile_cpu = -1;
45static pid_t target_pid = -1;
46static pid_t child_pid = -1;
47static int inherit = 1;
48static int force = 0;
49static int append_file = 0;
50static int call_graph = 0;
51static int inherit_stat = 0;
52static int no_samples = 0;
53static int sample_address = 0;
54static int multiplex = 0;
55static int multiplex_fd = -1;
56
57static long samples = 0;
a21ca2ca
IM
58static struct timeval last_read;
59static struct timeval this_read;
60
42e59d7d 61static u64 bytes_written = 0;
a21ca2ca
IM
62
63static struct pollfd event_array[MAX_NR_CPUS * MAX_COUNTERS];
64
42e59d7d
IM
65static int nr_poll = 0;
66static int nr_cpu = 0;
a21ca2ca 67
42e59d7d 68static int file_new = 1;
6122e4e4 69static off_t post_processing_offset;
7c6a1c65 70
94c744b6 71static struct perf_session *session;
f5970550 72
de9ac07b 73struct mmap_data {
a21ca2ca
IM
74 int counter;
75 void *base;
76 unsigned int mask;
77 unsigned int prev;
de9ac07b
PZ
78};
79
a21ca2ca
IM
80static struct mmap_data mmap_array[MAX_NR_CPUS][MAX_COUNTERS];
81
9d91a6f7 82static unsigned long mmap_read_head(struct mmap_data *md)
de9ac07b 83{
cdd6c482 84 struct perf_event_mmap_page *pc = md->base;
9d91a6f7 85 long head;
de9ac07b
PZ
86
87 head = pc->data_head;
88 rmb();
89
90 return head;
91}
92
9d91a6f7
PZ
93static void mmap_write_tail(struct mmap_data *md, unsigned long tail)
94{
cdd6c482 95 struct perf_event_mmap_page *pc = md->base;
9d91a6f7
PZ
96
97 /*
98 * ensure all reads are done before we write the tail out.
99 */
100 /* mb(); */
101 pc->data_tail = tail;
102}
103
f5970550
PZ
104static void write_output(void *buf, size_t size)
105{
106 while (size) {
107 int ret = write(output, buf, size);
108
109 if (ret < 0)
110 die("failed to write");
111
112 size -= ret;
113 buf += ret;
114
115 bytes_written += ret;
116 }
117}
118
d8f66248
ACM
119static int process_synthesized_event(event_t *event,
120 struct perf_session *self __used)
234fbbf5 121{
6122e4e4 122 write_output(event, event->header.size);
234fbbf5
ACM
123 return 0;
124}
125
de9ac07b
PZ
126static void mmap_read(struct mmap_data *md)
127{
128 unsigned int head = mmap_read_head(md);
129 unsigned int old = md->prev;
130 unsigned char *data = md->base + page_size;
131 unsigned long size;
132 void *buf;
133 int diff;
134
135 gettimeofday(&this_read, NULL);
136
137 /*
138 * If we're further behind than half the buffer, there's a chance
2debbc83 139 * the writer will bite our tail and mess up the samples under us.
de9ac07b
PZ
140 *
141 * If we somehow ended up ahead of the head, we got messed up.
142 *
143 * In either case, truncate and restart at head.
144 */
145 diff = head - old;
9d91a6f7 146 if (diff < 0) {
de9ac07b
PZ
147 struct timeval iv;
148 unsigned long msecs;
149
150 timersub(&this_read, &last_read, &iv);
151 msecs = iv.tv_sec*1000 + iv.tv_usec/1000;
152
153 fprintf(stderr, "WARNING: failed to keep up with mmap data."
154 " Last read %lu msecs ago.\n", msecs);
155
156 /*
157 * head points to a known good entry, start there.
158 */
159 old = head;
160 }
161
162 last_read = this_read;
163
164 if (old != head)
2debbc83 165 samples++;
de9ac07b
PZ
166
167 size = head - old;
168
169 if ((old & md->mask) + size != (head & md->mask)) {
170 buf = &data[old & md->mask];
171 size = md->mask + 1 - (old & md->mask);
172 old += size;
021e9f47 173
6122e4e4 174 write_output(buf, size);
de9ac07b
PZ
175 }
176
177 buf = &data[old & md->mask];
178 size = head - old;
179 old += size;
021e9f47 180
6122e4e4 181 write_output(buf, size);
de9ac07b
PZ
182
183 md->prev = old;
9d91a6f7 184 mmap_write_tail(md, old);
de9ac07b
PZ
185}
186
187static volatile int done = 0;
f7b7c26e 188static volatile int signr = -1;
de9ac07b 189
16c8a109 190static void sig_handler(int sig)
de9ac07b 191{
16c8a109 192 done = 1;
f7b7c26e
PZ
193 signr = sig;
194}
195
196static void sig_atexit(void)
197{
933da83a
CW
198 if (child_pid != -1)
199 kill(child_pid, SIGTERM);
200
f7b7c26e
PZ
201 if (signr == -1)
202 return;
203
204 signal(signr, SIG_DFL);
205 kill(getpid(), signr);
de9ac07b
PZ
206}
207
f250c030
IM
208static int group_fd;
209
cdd6c482 210static struct perf_header_attr *get_header_attr(struct perf_event_attr *a, int nr)
7c6a1c65
PZ
211{
212 struct perf_header_attr *h_attr;
213
94c744b6
ACM
214 if (nr < session->header.attrs) {
215 h_attr = session->header.attr[nr];
7c6a1c65
PZ
216 } else {
217 h_attr = perf_header_attr__new(a);
dc79c0fc 218 if (h_attr != NULL)
94c744b6 219 if (perf_header__add_attr(&session->header, h_attr) < 0) {
11deb1f9
ACM
220 perf_header_attr__delete(h_attr);
221 h_attr = NULL;
222 }
7c6a1c65
PZ
223 }
224
225 return h_attr;
226}
227
f250c030 228static void create_counter(int counter, int cpu, pid_t pid)
de9ac07b 229{
c171b552 230 char *filter = filters[counter];
cdd6c482 231 struct perf_event_attr *attr = attrs + counter;
7c6a1c65
PZ
232 struct perf_header_attr *h_attr;
233 int track = !counter; /* only the first counter needs these */
c171b552 234 int ret;
7c6a1c65
PZ
235 struct {
236 u64 count;
237 u64 time_enabled;
238 u64 time_running;
239 u64 id;
240 } read_data;
241
242 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
243 PERF_FORMAT_TOTAL_TIME_RUNNING |
244 PERF_FORMAT_ID;
16c8a109 245
3a9f131f 246 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
3efa1cc9 247
8907fd60
EM
248 if (nr_counters > 1)
249 attr->sample_type |= PERF_SAMPLE_ID;
250
1dba15e7 251 if (freq) {
ea1900e5 252 attr->sample_type |= PERF_SAMPLE_PERIOD;
a21ca2ca
IM
253 attr->freq = 1;
254 attr->sample_freq = freq;
1dba15e7 255 }
3efa1cc9 256
649c48a9
PZ
257 if (no_samples)
258 attr->sample_freq = 0;
259
260 if (inherit_stat)
261 attr->inherit_stat = 1;
262
4bba828d
AB
263 if (sample_address)
264 attr->sample_type |= PERF_SAMPLE_ADDR;
265
3efa1cc9
IM
266 if (call_graph)
267 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
268
cd6feeea 269 if (raw_samples) {
6ddf259d 270 attr->sample_type |= PERF_SAMPLE_TIME;
daac07b2 271 attr->sample_type |= PERF_SAMPLE_RAW;
cd6feeea
IM
272 attr->sample_type |= PERF_SAMPLE_CPU;
273 }
f413cdb8 274
a21ca2ca
IM
275 attr->mmap = track;
276 attr->comm = track;
60ab2716 277 attr->inherit = inherit;
4502d77c 278 attr->disabled = 1;
16c8a109 279
3da297a6 280try_again:
cdd6c482 281 fd[nr_cpu][counter] = sys_perf_event_open(attr, pid, cpu, group_fd, 0);
16c8a109 282
f250c030
IM
283 if (fd[nr_cpu][counter] < 0) {
284 int err = errno;
16c8a109 285
c10edee2 286 if (err == EPERM || err == EACCES)
3da297a6 287 die("Permission error - are you root?\n");
0a5ac846
JA
288 else if (err == ENODEV && profile_cpu != -1)
289 die("No such device - did you specify an out-of-range profile CPU?\n");
3da297a6
IM
290
291 /*
292 * If it's cycles then fall back to hrtimer
293 * based cpu-clock-tick sw counter, which
294 * is always available even if no PMU support:
295 */
296 if (attr->type == PERF_TYPE_HARDWARE
f4dbfa8f 297 && attr->config == PERF_COUNT_HW_CPU_CYCLES) {
3da297a6
IM
298
299 if (verbose)
300 warning(" ... trying to fall back to cpu-clock-ticks\n");
301 attr->type = PERF_TYPE_SOFTWARE;
f4dbfa8f 302 attr->config = PERF_COUNT_SW_CPU_CLOCK;
3da297a6
IM
303 goto try_again;
304 }
30c806a0
IM
305 printf("\n");
306 error("perfcounter syscall returned with %d (%s)\n",
307 fd[nr_cpu][counter], strerror(err));
bfd45118
SK
308
309#if defined(__i386__) || defined(__x86_64__)
310 if (attr->type == PERF_TYPE_HARDWARE && err == EOPNOTSUPP)
311 die("No hardware sampling interrupt available. No APIC? If so then you can boot the kernel with the \"lapic\" boot parameter to force-enable it.\n");
312#endif
313
cdd6c482 314 die("No CONFIG_PERF_EVENTS=y kernel support configured?\n");
f250c030
IM
315 exit(-1);
316 }
3da297a6 317
7c6a1c65 318 h_attr = get_header_attr(attr, counter);
dc79c0fc
ACM
319 if (h_attr == NULL)
320 die("nomem\n");
7c6a1c65
PZ
321
322 if (!file_new) {
323 if (memcmp(&h_attr->attr, attr, sizeof(*attr))) {
324 fprintf(stderr, "incompatible append\n");
325 exit(-1);
326 }
327 }
328
3928ddbe
FW
329 if (read(fd[nr_cpu][counter], &read_data, sizeof(read_data)) == -1) {
330 perror("Unable to read perf file descriptor\n");
331 exit(-1);
332 }
7c6a1c65 333
58754121
ACM
334 if (perf_header_attr__add_id(h_attr, read_data.id) < 0) {
335 pr_warning("Not enough memory to add id\n");
336 exit(-1);
337 }
7c6a1c65 338
f250c030
IM
339 assert(fd[nr_cpu][counter] >= 0);
340 fcntl(fd[nr_cpu][counter], F_SETFL, O_NONBLOCK);
16c8a109 341
f250c030
IM
342 /*
343 * First counter acts as the group leader:
344 */
345 if (group && group_fd == -1)
346 group_fd = fd[nr_cpu][counter];
ea57c4f5
IM
347 if (multiplex && multiplex_fd == -1)
348 multiplex_fd = fd[nr_cpu][counter];
f250c030 349
ea57c4f5 350 if (multiplex && fd[nr_cpu][counter] != multiplex_fd) {
4502d77c 351
cdd6c482 352 ret = ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_SET_OUTPUT, multiplex_fd);
ea57c4f5
IM
353 assert(ret != -1);
354 } else {
355 event_array[nr_poll].fd = fd[nr_cpu][counter];
356 event_array[nr_poll].events = POLLIN;
357 nr_poll++;
358
359 mmap_array[nr_cpu][counter].counter = counter;
360 mmap_array[nr_cpu][counter].prev = 0;
361 mmap_array[nr_cpu][counter].mask = mmap_pages*page_size - 1;
362 mmap_array[nr_cpu][counter].base = mmap(NULL, (mmap_pages+1)*page_size,
363 PROT_READ|PROT_WRITE, MAP_SHARED, fd[nr_cpu][counter], 0);
364 if (mmap_array[nr_cpu][counter].base == MAP_FAILED) {
365 error("failed to mmap with %d (%s)\n", errno, strerror(errno));
366 exit(-1);
367 }
368 }
d1302522 369
c171b552
LZ
370 if (filter != NULL) {
371 ret = ioctl(fd[nr_cpu][counter],
372 PERF_EVENT_IOC_SET_FILTER, filter);
373 if (ret) {
374 error("failed to set filter with %d (%s)\n", errno,
375 strerror(errno));
376 exit(-1);
377 }
378 }
379
cdd6c482 380 ioctl(fd[nr_cpu][counter], PERF_EVENT_IOC_ENABLE);
f250c030 381}
f2521b6e 382
f250c030
IM
383static void open_counters(int cpu, pid_t pid)
384{
385 int counter;
16c8a109 386
f250c030
IM
387 group_fd = -1;
388 for (counter = 0; counter < nr_counters; counter++)
389 create_counter(counter, cpu, pid);
390
16c8a109
PZ
391 nr_cpu++;
392}
393
6122e4e4
ACM
394static int process_buildids(void)
395{
396 u64 size = lseek(output, 0, SEEK_CUR);
397
9f591fd7
ACM
398 if (size == 0)
399 return 0;
400
6122e4e4
ACM
401 session->fd = output;
402 return __perf_session__process_events(session, post_processing_offset,
403 size - post_processing_offset,
404 size, &build_id__mark_dso_hit_ops);
405}
406
f5970550
PZ
407static void atexit_header(void)
408{
94c744b6 409 session->header.data_size += bytes_written;
f5970550 410
6122e4e4 411 process_buildids();
94c744b6 412 perf_header__write(&session->header, output, true);
f5970550
PZ
413}
414
d4db3f16 415static int __cmd_record(int argc, const char **argv)
16c8a109
PZ
416{
417 int i, counter;
abaff32a 418 struct stat st;
7c6a1c65 419 pid_t pid = 0;
abaff32a 420 int flags;
4dc0a04b 421 int err;
8b412664 422 unsigned long waking = 0;
856e9660 423 int child_ready_pipe[2], go_pipe[2];
d4db3f16 424 const bool forks = target_pid == -1 && argc > 0;
856e9660 425 char buf;
de9ac07b
PZ
426
427 page_size = sysconf(_SC_PAGE_SIZE);
de9ac07b 428
f5970550
PZ
429 atexit(sig_atexit);
430 signal(SIGCHLD, sig_handler);
431 signal(SIGINT, sig_handler);
432
d4db3f16 433 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
856e9660
PZ
434 perror("failed to create pipes");
435 exit(-1);
436 }
437
266e0e21 438 if (!stat(output_name, &st) && st.st_size) {
b38d3464
ACM
439 if (!force) {
440 if (!append_file) {
441 pr_err("Error, output file %s exists, use -A "
442 "to append or -f to overwrite.\n",
443 output_name);
444 exit(-1);
445 }
446 } else {
447 char oldname[PATH_MAX];
448 snprintf(oldname, sizeof(oldname), "%s.old",
449 output_name);
450 unlink(oldname);
451 rename(output_name, oldname);
266e0e21
PH
452 }
453 } else {
454 append_file = 0;
97124d5e
PZ
455 }
456
f887f301 457 flags = O_CREAT|O_RDWR;
abaff32a 458 if (append_file)
f5970550 459 file_new = 0;
abaff32a
IM
460 else
461 flags |= O_TRUNC;
462
463 output = open(output_name, flags, S_IRUSR|S_IWUSR);
de9ac07b
PZ
464 if (output < 0) {
465 perror("failed to create output file");
466 exit(-1);
467 }
468
75be6cf4 469 session = perf_session__new(output_name, O_WRONLY, force);
94c744b6 470 if (session == NULL) {
a9a70bbc
ACM
471 pr_err("Not enough memory for reading perf file header\n");
472 return -1;
473 }
474
4dc0a04b 475 if (!file_new) {
94c744b6 476 err = perf_header__read(&session->header, output);
4dc0a04b
ACM
477 if (err < 0)
478 return err;
479 }
480
9df37ddd 481 if (raw_samples) {
94c744b6 482 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
9df37ddd
FW
483 } else {
484 for (i = 0; i < nr_counters; i++) {
485 if (attrs[i].sample_type & PERF_SAMPLE_RAW) {
94c744b6 486 perf_header__set_feat(&session->header, HEADER_TRACE_INFO);
9df37ddd
FW
487 break;
488 }
489 }
490 }
03456a15 491
f5970550
PZ
492 atexit(atexit_header);
493
d4db3f16 494 if (forks) {
856e9660
PZ
495 pid = fork();
496 if (pid < 0) {
497 perror("failed to fork");
498 exit(-1);
499 }
7c6a1c65 500
856e9660
PZ
501 if (!pid) {
502 close(child_ready_pipe[0]);
503 close(go_pipe[1]);
504 fcntl(go_pipe[0], F_SETFD, FD_CLOEXEC);
505
506 /*
507 * Do a dummy execvp to get the PLT entry resolved,
508 * so we avoid the resolver overhead on the real
509 * execvp call.
510 */
511 execvp("", (char **)argv);
512
513 /*
514 * Tell the parent we're ready to go
515 */
516 close(child_ready_pipe[1]);
517
518 /*
519 * Wait until the parent tells us to go.
520 */
521 if (read(go_pipe[0], &buf, 1) == -1)
522 perror("unable to read pipe");
523
524 execvp(argv[0], (char **)argv);
525
526 perror(argv[0]);
527 exit(-1);
0a5ac846 528 }
856e9660
PZ
529
530 child_pid = pid;
531
532 if (!system_wide)
533 target_pid = pid;
534
535 close(child_ready_pipe[1]);
536 close(go_pipe[0]);
537 /*
538 * wait for child to settle
539 */
540 if (read(child_ready_pipe[0], &buf, 1) == -1) {
541 perror("unable to read pipe");
542 exit(-1);
543 }
544 close(child_ready_pipe[0]);
545 }
546
547
60ab2716 548 if ((!system_wide && !inherit) || profile_cpu != -1) {
856e9660
PZ
549 open_counters(profile_cpu, target_pid);
550 } else {
a12b51c4 551 nr_cpus = read_cpu_map();
856e9660 552 for (i = 0; i < nr_cpus; i++)
a12b51c4 553 open_counters(cpumap[i], target_pid);
0a5ac846 554 }
de9ac07b 555
d5eed904 556 if (file_new) {
94c744b6 557 err = perf_header__write(&session->header, output, false);
d5eed904
ACM
558 if (err < 0)
559 return err;
56b03f3c
ACM
560 }
561
6122e4e4
ACM
562 post_processing_offset = lseek(output, 0, SEEK_CUR);
563
56b03f3c
ACM
564 err = event__synthesize_kernel_mmap(process_synthesized_event,
565 session, "_text");
566 if (err < 0) {
567 pr_err("Couldn't record kernel reference relocation symbol.\n");
568 return err;
b7cece76
ACM
569 }
570
571 err = event__synthesize_modules(process_synthesized_event, session);
572 if (err < 0) {
573 pr_err("Couldn't record kernel reference relocation symbol.\n");
574 return err;
d5eed904 575 }
7c6a1c65 576
d4db3f16 577 if (!system_wide && profile_cpu == -1)
f7e7ee36 578 event__synthesize_thread(target_pid, process_synthesized_event,
d8f66248 579 session);
234fbbf5 580 else
d8f66248 581 event__synthesize_threads(process_synthesized_event, session);
7c6a1c65 582
de9ac07b
PZ
583 if (realtime_prio) {
584 struct sched_param param;
585
586 param.sched_priority = realtime_prio;
587 if (sched_setscheduler(0, SCHED_FIFO, &param)) {
6beba7ad 588 pr_err("Could not set realtime priority.\n");
de9ac07b
PZ
589 exit(-1);
590 }
591 }
592
856e9660
PZ
593 /*
594 * Let the child rip
595 */
d4db3f16
ACM
596 if (forks)
597 close(go_pipe[1]);
856e9660 598
649c48a9 599 for (;;) {
2debbc83 600 int hits = samples;
de9ac07b 601
16c8a109 602 for (i = 0; i < nr_cpu; i++) {
ea57c4f5
IM
603 for (counter = 0; counter < nr_counters; counter++) {
604 if (mmap_array[i][counter].base)
605 mmap_read(&mmap_array[i][counter]);
606 }
de9ac07b
PZ
607 }
608
649c48a9
PZ
609 if (hits == samples) {
610 if (done)
611 break;
4dc0a04b 612 err = poll(event_array, nr_poll, -1);
8b412664
PZ
613 waking++;
614 }
615
616 if (done) {
617 for (i = 0; i < nr_cpu; i++) {
618 for (counter = 0; counter < nr_counters; counter++)
cdd6c482 619 ioctl(fd[i][counter], PERF_EVENT_IOC_DISABLE);
8b412664 620 }
649c48a9 621 }
de9ac07b
PZ
622 }
623
8b412664
PZ
624 fprintf(stderr, "[ perf record: Woken up %ld times to write data ]\n", waking);
625
021e9f47
IM
626 /*
627 * Approximate RIP event size: 24 bytes.
628 */
629 fprintf(stderr,
2debbc83 630 "[ perf record: Captured and wrote %.3f MB %s (~%lld samples) ]\n",
021e9f47
IM
631 (double)bytes_written / 1024.0 / 1024.0,
632 output_name,
633 bytes_written / 24);
addc2785 634
de9ac07b
PZ
635 return 0;
636}
0e9b20b8 637
0e9b20b8 638static const char * const record_usage[] = {
9e096753
MG
639 "perf record [<options>] [<command>]",
640 "perf record [<options>] -- <command> [<options>]",
0e9b20b8
IM
641 NULL
642};
643
5242519b 644static const struct option options[] = {
0e9b20b8 645 OPT_CALLBACK('e', "event", NULL, "event",
86847b62
TG
646 "event selector. use 'perf list' to list available events",
647 parse_events),
c171b552
LZ
648 OPT_CALLBACK(0, "filter", NULL, "filter",
649 "event filter", parse_filter),
0e9b20b8
IM
650 OPT_INTEGER('p', "pid", &target_pid,
651 "record events on existing pid"),
652 OPT_INTEGER('r', "realtime", &realtime_prio,
653 "collect data with this RT SCHED_FIFO priority"),
daac07b2
FW
654 OPT_BOOLEAN('R', "raw-samples", &raw_samples,
655 "collect raw sample records from all opened counters"),
0e9b20b8
IM
656 OPT_BOOLEAN('a', "all-cpus", &system_wide,
657 "system-wide collection from all CPUs"),
abaff32a
IM
658 OPT_BOOLEAN('A', "append", &append_file,
659 "append to the output file to do incremental profiling"),
0a5ac846
JA
660 OPT_INTEGER('C', "profile_cpu", &profile_cpu,
661 "CPU to profile on"),
97124d5e
PZ
662 OPT_BOOLEAN('f', "force", &force,
663 "overwrite existing data file"),
e61078a0 664 OPT_LONG('c', "count", &default_interval,
abaff32a
IM
665 "event period to sample"),
666 OPT_STRING('o', "output", &output_name, "file",
667 "output file name"),
668 OPT_BOOLEAN('i', "inherit", &inherit,
669 "child tasks inherit counters"),
cf1f4574
IM
670 OPT_INTEGER('F', "freq", &freq,
671 "profile at this frequency"),
abaff32a
IM
672 OPT_INTEGER('m', "mmap-pages", &mmap_pages,
673 "number of mmap data pages"),
3efa1cc9
IM
674 OPT_BOOLEAN('g', "call-graph", &call_graph,
675 "do call-graph (stack chain/backtrace) recording"),
3da297a6
IM
676 OPT_BOOLEAN('v', "verbose", &verbose,
677 "be more verbose (show counter open errors, etc)"),
649c48a9
PZ
678 OPT_BOOLEAN('s', "stat", &inherit_stat,
679 "per thread counts"),
4bba828d
AB
680 OPT_BOOLEAN('d', "data", &sample_address,
681 "Sample addresses"),
649c48a9
PZ
682 OPT_BOOLEAN('n', "no-samples", &no_samples,
683 "don't sample"),
d1302522
FW
684 OPT_BOOLEAN('M', "multiplex", &multiplex,
685 "multiplex counter output in a single channel"),
0e9b20b8
IM
686 OPT_END()
687};
688
f37a291c 689int cmd_record(int argc, const char **argv, const char *prefix __used)
0e9b20b8
IM
690{
691 int counter;
692
a0541234 693 argc = parse_options(argc, argv, options, record_usage,
655000e7 694 PARSE_OPT_STOP_AT_NON_OPTION);
d4db3f16 695 if (!argc && target_pid == -1 && !system_wide && profile_cpu == -1)
0e9b20b8
IM
696 usage_with_options(record_usage, options);
697
655000e7
ACM
698 symbol__init();
699
bbd36e5e
PZ
700 if (!nr_counters) {
701 nr_counters = 1;
702 attrs[0].type = PERF_TYPE_HARDWARE;
703 attrs[0].config = PERF_COUNT_HW_CPU_CYCLES;
704 }
0e9b20b8 705
7e4ff9e3
MG
706 /*
707 * User specified count overrides default frequency.
708 */
709 if (default_interval)
710 freq = 0;
711 else if (freq) {
712 default_interval = freq;
713 } else {
714 fprintf(stderr, "frequency and count are zero, aborting\n");
715 exit(EXIT_FAILURE);
716 }
717
0e9b20b8 718 for (counter = 0; counter < nr_counters; counter++) {
a21ca2ca 719 if (attrs[counter].sample_period)
0e9b20b8
IM
720 continue;
721
a21ca2ca 722 attrs[counter].sample_period = default_interval;
0e9b20b8
IM
723 }
724
725 return __cmd_record(argc, argv);
726}