perf annotate: Record the min/max cycles
[linux-2.6-microblaze.git] / tools / perf / util / annotate.h
index f28a9e4..d50363d 100644 (file)
@@ -105,6 +105,8 @@ struct annotation_line {
        int                      jump_sources;
        float                    ipc;
        u64                      cycles;
+       u64                      cycles_max;
+       u64                      cycles_min;
        size_t                   privsize;
        char                    *path;
        u32                      idx;
@@ -186,6 +188,8 @@ struct cyc_hist {
        u64     start;
        u64     cycles;
        u64     cycles_aggr;
+       u64     cycles_max;
+       u64     cycles_min;
        u32     num;
        u32     num_aggr;
        u8      have_start;