Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191205
b: refs/heads/master
c: 2c46dbb
h: refs/heads/master
i:
  191203: 91115d9
v: v3
  • Loading branch information
Tom Zanussi authored and Ingo Molnar committed Apr 14, 2010
1 parent cdac62a commit 2b17a70
Show file tree
Hide file tree
Showing 9 changed files with 137 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c239da3b4b55dbb8f30bcb8d1a0d63fc44a567c3
refs/heads/master: 2c46dbb517a10b18d459e6ceffefde5bfb290cf6
10 changes: 10 additions & 0 deletions trunk/tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,16 @@ static int __cmd_record(int argc, const char **argv)

post_processing_offset = lseek(output, 0, SEEK_CUR);

if (pipe_output) {
err = event__synthesize_attrs(&session->header,
process_synthesized_event,
session);
if (err < 0) {
pr_err("Couldn't synthesize attrs.\n");
return err;
}
}

err = event__synthesize_kernel_mmap(process_synthesized_event,
session, "_text");
if (err < 0)
Expand Down
1 change: 1 addition & 0 deletions trunk/tools/perf/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ static struct perf_event_ops event_ops = {
.fork = event__process_task,
.lost = event__process_lost,
.read = process_read_event,
.attr = event__process_attr,
};

extern volatile int session_done;
Expand Down
1 change: 1 addition & 0 deletions trunk/tools/perf/builtin-trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ static int process_sample_event(event_t *event, struct perf_session *session)
static struct perf_event_ops event_ops = {
.sample = process_sample_event,
.comm = event__process_comm,
.attr = event__process_attr,
};

extern volatile int session_done;
Expand Down
10 changes: 9 additions & 1 deletion trunk/tools/perf/util/event.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,14 @@ struct build_id_event {
};

enum perf_header_event_type { /* above any possible kernel type */
PERF_RECORD_HEADER_MAX = 64,
PERF_RECORD_HEADER_ATTR = 64,
PERF_RECORD_HEADER_MAX
};

struct attr_event {
struct perf_event_header header;
struct perf_event_attr attr;
u64 id[];
};

typedef union event_union {
Expand All @@ -96,6 +103,7 @@ typedef union event_union {
struct lost_event lost;
struct read_event read;
struct sample_event sample;
struct attr_event attr;
} event_t;

struct events_stats {
Expand Down
79 changes: 79 additions & 0 deletions trunk/tools/perf/util/header.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,3 +807,82 @@ perf_header__find_attr(u64 id, struct perf_header *header)

return NULL;
}

int event__synthesize_attr(struct perf_event_attr *attr, u16 ids, u64 *id,
event__handler_t process,
struct perf_session *session)
{
event_t *ev;
size_t size;
int err;

size = sizeof(struct perf_event_attr);
size = ALIGN(size, sizeof(u64));
size += sizeof(struct perf_event_header);
size += ids * sizeof(u64);

ev = malloc(size);

ev->attr.attr = *attr;
memcpy(ev->attr.id, id, ids * sizeof(u64));

ev->attr.header.type = PERF_RECORD_HEADER_ATTR;
ev->attr.header.size = size;

err = process(ev, session);

free(ev);

return err;
}

int event__synthesize_attrs(struct perf_header *self,
event__handler_t process,
struct perf_session *session)
{
struct perf_header_attr *attr;
int i, err = 0;

for (i = 0; i < self->attrs; i++) {
attr = self->attr[i];

err = event__synthesize_attr(&attr->attr, attr->ids, attr->id,
process, session);
if (err) {
pr_debug("failed to create perf header attribute\n");
return err;
}
}

return err;
}

int event__process_attr(event_t *self, struct perf_session *session)
{
struct perf_header_attr *attr;
unsigned int i, ids, n_ids;

attr = perf_header_attr__new(&self->attr.attr);
if (attr == NULL)
return -ENOMEM;

ids = self->header.size;
ids -= (void *)&self->attr.id - (void *)self;
n_ids = ids / sizeof(u64);

for (i = 0; i < n_ids; i++) {
if (perf_header_attr__add_id(attr, self->attr.id[i]) < 0) {
perf_header_attr__delete(attr);
return -ENOMEM;
}
}

if (perf_header__add_attr(&session->header, attr) < 0) {
perf_header_attr__delete(attr);
return -ENOMEM;
}

perf_session__update_sample_type(session);

return 0;
}
8 changes: 8 additions & 0 deletions trunk/tools/perf/util/header.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,12 @@ int build_id_cache__add_s(const char *sbuild_id, const char *debugdir,
const char *name, bool is_kallsyms);
int build_id_cache__remove_s(const char *sbuild_id, const char *debugdir);

int event__synthesize_attr(struct perf_event_attr *attr, u16 ids, u64 *id,
event__handler_t process,
struct perf_session *session);
int event__synthesize_attrs(struct perf_header *self,
event__handler_t process,
struct perf_session *session);
int event__process_attr(event_t *self, struct perf_session *session);

#endif /* __PERF_HEADER_H */
26 changes: 26 additions & 0 deletions trunk/tools/perf/util/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ static void perf_event_ops__fill_defaults(struct perf_event_ops *handler)
handler->throttle = process_event_stub;
if (handler->unthrottle == NULL)
handler->unthrottle = process_event_stub;
if (handler->attr == NULL)
handler->attr = process_event_stub;
}

static const char *event__name[] = {
Expand All @@ -213,6 +215,7 @@ static const char *event__name[] = {
[PERF_RECORD_FORK] = "FORK",
[PERF_RECORD_READ] = "READ",
[PERF_RECORD_SAMPLE] = "SAMPLE",
[PERF_RECORD_HEADER_ATTR] = "ATTR",
};

unsigned long event__total[PERF_RECORD_HEADER_MAX];
Expand Down Expand Up @@ -279,6 +282,26 @@ static void event__read_swap(event_t *self)
self->read.id = bswap_64(self->read.id);
}

static void event__attr_swap(event_t *self)
{
size_t size;

self->attr.attr.type = bswap_32(self->attr.attr.type);
self->attr.attr.size = bswap_32(self->attr.attr.size);
self->attr.attr.config = bswap_64(self->attr.attr.config);
self->attr.attr.sample_period = bswap_64(self->attr.attr.sample_period);
self->attr.attr.sample_type = bswap_64(self->attr.attr.sample_type);
self->attr.attr.read_format = bswap_64(self->attr.attr.read_format);
self->attr.attr.wakeup_events = bswap_32(self->attr.attr.wakeup_events);
self->attr.attr.bp_type = bswap_32(self->attr.attr.bp_type);
self->attr.attr.bp_addr = bswap_64(self->attr.attr.bp_addr);
self->attr.attr.bp_len = bswap_64(self->attr.attr.bp_len);

size = self->header.size;
size -= (void *)&self->attr.id - (void *)self;
mem_bswap_64(self->attr.id, size);
}

typedef void (*event__swap_op)(event_t *self);

static event__swap_op event__swap_ops[] = {
Expand All @@ -289,6 +312,7 @@ static event__swap_op event__swap_ops[] = {
[PERF_RECORD_LOST] = event__all64_swap,
[PERF_RECORD_READ] = event__read_swap,
[PERF_RECORD_SAMPLE] = event__all64_swap,
[PERF_RECORD_HEADER_ATTR] = event__attr_swap,
[PERF_RECORD_HEADER_MAX] = NULL,
};

Expand Down Expand Up @@ -329,6 +353,8 @@ static int perf_session__process_event(struct perf_session *self,
return ops->throttle(event, self);
case PERF_RECORD_UNTHROTTLE:
return ops->unthrottle(event, self);
case PERF_RECORD_HEADER_ATTR:
return ops->attr(event, self);
default:
self->unknown_events++;
return -1;
Expand Down
3 changes: 2 additions & 1 deletion trunk/tools/perf/util/session.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ struct perf_event_ops {
lost,
read,
throttle,
unthrottle;
unthrottle,
attr;
};

struct perf_session *perf_session__new(const char *filename, int mode, bool force);
Expand Down

0 comments on commit 2b17a70

Please sign in to comment.