]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
perf stat: Add branch performance events to default output
authorTim Blechmann <tim@klingt.org>
Mon, 19 Oct 2009 10:03:33 +0000 (12:03 +0200)
committerIngo Molnar <mingo@elte.hu>
Mon, 19 Oct 2009 11:26:42 +0000 (13:26 +0200)
Adds performance event information about branches
and branch misses to the default output of perf stat.

Signed-off-by: Tim Blechmann <tim@klingt.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4ADC3975.8050109@klingt.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
tools/perf/builtin-stat.c

index c37368343fffa44c53e02d515f65f8a06c0d1976..95a55eaf72f5ed26d6ac318bd6d45ee74a38aaea 100644 (file)
@@ -59,6 +59,8 @@ static struct perf_event_attr default_attrs[] = {
   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS   },
   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES},
   { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES   },
+  { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS},
+  { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES  },
 
 };