1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
6 #include <linux/refcount.h>
18 s64 cycles_spark
[NUM_SPARKS
];
26 struct perf_hpp_fmt fmt
;
35 PERF_HPP_REPORT__BLOCK_TOTAL_CYCLES_PCT
,
36 PERF_HPP_REPORT__BLOCK_LBR_CYCLES
,
37 PERF_HPP_REPORT__BLOCK_CYCLES_PCT
,
38 PERF_HPP_REPORT__BLOCK_AVG_CYCLES
,
39 PERF_HPP_REPORT__BLOCK_RANGE
,
40 PERF_HPP_REPORT__BLOCK_DSO
,
41 PERF_HPP_REPORT__BLOCK_MAX_INDEX
45 struct block_hist hist
;
47 struct block_fmt fmts
[PERF_HPP_REPORT__BLOCK_MAX_INDEX
];
52 struct block_info
*block_info__new(void);
53 struct block_info
*block_info__get(struct block_info
*bi
);
54 void block_info__put(struct block_info
*bi
);
56 static inline void __block_info__zput(struct block_info
**bi
)
62 #define block_info__zput(bi) __block_info__zput(&bi)
64 int64_t block_info__cmp(struct perf_hpp_fmt
*fmt __maybe_unused
,
65 struct hist_entry
*left
, struct hist_entry
*right
);
67 int block_info__process_sym(struct hist_entry
*he
, struct block_hist
*bh
,
68 u64
*block_cycles_aggr
, u64 total_cycles
);
70 struct block_report
*block_info__create_report(struct evlist
*evlist
,
73 int report__browse_block_hists(struct block_hist
*bh
, float min_percent
,
74 struct evsel
*evsel
, struct perf_env
*env
,
75 struct annotation_options
*annotation_opts
);
77 float block_info__total_cycles_percent(struct hist_entry
*he
);
79 #endif /* __PERF_BLOCK_H */