Commit 8b536999 authored by Namhyung Kim's avatar Namhyung Kim Committed by Jiri Olsa

perf tools: Convert sort entries to hpp formats

This is a preparation of consolidating management of output field and
sort keys.
Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
Acked-by: default avatarIngo Molnar <mingo@kernel.org>
Link: http://lkml.kernel.org/r/1400480762-22852-3-git-send-email-namhyung@kernel.orgSigned-off-by: default avatarJiri Olsa <jolsa@kernel.org>
parent bc18b7f2
...@@ -284,6 +284,7 @@ struct perf_hpp_fmt perf_hpp__format[] = { ...@@ -284,6 +284,7 @@ struct perf_hpp_fmt perf_hpp__format[] = {
}; };
LIST_HEAD(perf_hpp__list); LIST_HEAD(perf_hpp__list);
LIST_HEAD(perf_hpp__sort_list);
#undef HPP__COLOR_PRINT_FNS #undef HPP__COLOR_PRINT_FNS
...@@ -325,6 +326,11 @@ void perf_hpp__column_register(struct perf_hpp_fmt *format) ...@@ -325,6 +326,11 @@ void perf_hpp__column_register(struct perf_hpp_fmt *format)
list_add_tail(&format->list, &perf_hpp__list); list_add_tail(&format->list, &perf_hpp__list);
} }
void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
{
list_add_tail(&format->sort_list, &perf_hpp__sort_list);
}
void perf_hpp__column_enable(unsigned col) void perf_hpp__column_enable(unsigned col)
{ {
BUG_ON(col >= PERF_HPP__MAX_INDEX); BUG_ON(col >= PERF_HPP__MAX_INDEX);
......
...@@ -165,13 +165,18 @@ struct perf_hpp_fmt { ...@@ -165,13 +165,18 @@ struct perf_hpp_fmt {
int64_t (*sort)(struct hist_entry *a, struct hist_entry *b); int64_t (*sort)(struct hist_entry *a, struct hist_entry *b);
struct list_head list; struct list_head list;
struct list_head sort_list;
}; };
extern struct list_head perf_hpp__list; extern struct list_head perf_hpp__list;
extern struct list_head perf_hpp__sort_list;
#define perf_hpp__for_each_format(format) \ #define perf_hpp__for_each_format(format) \
list_for_each_entry(format, &perf_hpp__list, list) list_for_each_entry(format, &perf_hpp__list, list)
#define perf_hpp__for_each_sort_list(format) \
list_for_each_entry(format, &perf_hpp__sort_list, sort_list)
extern struct perf_hpp_fmt perf_hpp__format[]; extern struct perf_hpp_fmt perf_hpp__format[];
enum { enum {
...@@ -190,6 +195,7 @@ enum { ...@@ -190,6 +195,7 @@ enum {
void perf_hpp__init(void); void perf_hpp__init(void);
void perf_hpp__column_register(struct perf_hpp_fmt *format); void perf_hpp__column_register(struct perf_hpp_fmt *format);
void perf_hpp__column_enable(unsigned col); void perf_hpp__column_enable(unsigned col);
void perf_hpp__register_sort_field(struct perf_hpp_fmt *format);
typedef u64 (*hpp_field_fn)(struct hist_entry *he); typedef u64 (*hpp_field_fn)(struct hist_entry *he);
typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front); typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include "hist.h" #include "hist.h"
#include "comm.h" #include "comm.h"
#include "symbol.h" #include "symbol.h"
#include "evsel.h"
regex_t parent_regex; regex_t parent_regex;
const char default_parent_pattern[] = "^sys_|^do_page_fault"; const char default_parent_pattern[] = "^sys_|^do_page_fault";
...@@ -1027,10 +1028,80 @@ static struct sort_dimension memory_sort_dimensions[] = { ...@@ -1027,10 +1028,80 @@ static struct sort_dimension memory_sort_dimensions[] = {
#undef DIM #undef DIM
static void __sort_dimension__add(struct sort_dimension *sd, enum sort_type idx) struct hpp_sort_entry {
struct perf_hpp_fmt hpp;
struct sort_entry *se;
};
static int __sort__hpp_header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
struct perf_evsel *evsel)
{
struct hpp_sort_entry *hse;
size_t len;
hse = container_of(fmt, struct hpp_sort_entry, hpp);
len = hists__col_len(&evsel->hists, hse->se->se_width_idx);
return scnprintf(hpp->buf, hpp->size, "%*s", len, hse->se->se_header);
}
static int __sort__hpp_width(struct perf_hpp_fmt *fmt,
struct perf_hpp *hpp __maybe_unused,
struct perf_evsel *evsel)
{
struct hpp_sort_entry *hse;
hse = container_of(fmt, struct hpp_sort_entry, hpp);
return hists__col_len(&evsel->hists, hse->se->se_width_idx);
}
static int __sort__hpp_entry(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
struct hist_entry *he)
{
struct hpp_sort_entry *hse;
size_t len;
hse = container_of(fmt, struct hpp_sort_entry, hpp);
len = hists__col_len(he->hists, hse->se->se_width_idx);
return hse->se->se_snprintf(he, hpp->buf, hpp->size, len);
}
static int __sort_dimension__add_hpp(struct sort_dimension *sd)
{
struct hpp_sort_entry *hse;
hse = malloc(sizeof(*hse));
if (hse == NULL) {
pr_err("Memory allocation failed\n");
return -1;
}
hse->se = sd->entry;
hse->hpp.header = __sort__hpp_header;
hse->hpp.width = __sort__hpp_width;
hse->hpp.entry = __sort__hpp_entry;
hse->hpp.color = NULL;
hse->hpp.cmp = sd->entry->se_cmp;
hse->hpp.collapse = sd->entry->se_collapse ? : sd->entry->se_cmp;
hse->hpp.sort = hse->hpp.collapse;
INIT_LIST_HEAD(&hse->hpp.list);
INIT_LIST_HEAD(&hse->hpp.sort_list);
perf_hpp__register_sort_field(&hse->hpp);
return 0;
}
static int __sort_dimension__add(struct sort_dimension *sd, enum sort_type idx)
{ {
if (sd->taken) if (sd->taken)
return; return 0;
if (__sort_dimension__add_hpp(sd) < 0)
return -1;
if (sd->entry->se_collapse) if (sd->entry->se_collapse)
sort__need_collapse = 1; sort__need_collapse = 1;
...@@ -1040,6 +1111,8 @@ static void __sort_dimension__add(struct sort_dimension *sd, enum sort_type idx) ...@@ -1040,6 +1111,8 @@ static void __sort_dimension__add(struct sort_dimension *sd, enum sort_type idx)
list_add_tail(&sd->entry->list, &hist_entry__sort_list); list_add_tail(&sd->entry->list, &hist_entry__sort_list);
sd->taken = 1; sd->taken = 1;
return 0;
} }
int sort_dimension__add(const char *tok) int sort_dimension__add(const char *tok)
...@@ -1068,8 +1141,7 @@ int sort_dimension__add(const char *tok) ...@@ -1068,8 +1141,7 @@ int sort_dimension__add(const char *tok)
sort__has_dso = 1; sort__has_dso = 1;
} }
__sort_dimension__add(sd, i); return __sort_dimension__add(sd, i);
return 0;
} }
for (i = 0; i < ARRAY_SIZE(bstack_sort_dimensions); i++) { for (i = 0; i < ARRAY_SIZE(bstack_sort_dimensions); i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment