|
@@ -2135,7 +2135,7 @@ static int hists__browser_title(struct hists *hists,
|
|
|
printed += snprintf(bf + printed, size - printed,
|
|
|
", UID: %s", hists->uid_filter_str);
|
|
|
if (thread) {
|
|
|
- if (sort__has_thread) {
|
|
|
+ if (hists__has(hists, thread)) {
|
|
|
printed += scnprintf(bf + printed, size - printed,
|
|
|
", Thread: %s(%d)",
|
|
|
(thread->comm_set ? thread__comm_str(thread) : ""),
|
|
@@ -2320,7 +2320,8 @@ do_zoom_thread(struct hist_browser *browser, struct popup_action *act)
|
|
|
{
|
|
|
struct thread *thread = act->thread;
|
|
|
|
|
|
- if ((!sort__has_thread && !sort__has_comm) || thread == NULL)
|
|
|
+ if ((!hists__has(browser->hists, thread) &&
|
|
|
+ !hists__has(browser->hists, comm)) || thread == NULL)
|
|
|
return 0;
|
|
|
|
|
|
if (browser->hists->thread_filter) {
|
|
@@ -2329,7 +2330,7 @@ do_zoom_thread(struct hist_browser *browser, struct popup_action *act)
|
|
|
thread__zput(browser->hists->thread_filter);
|
|
|
ui_helpline__pop();
|
|
|
} else {
|
|
|
- if (sort__has_thread) {
|
|
|
+ if (hists__has(browser->hists, thread)) {
|
|
|
ui_helpline__fpush("To zoom out press ESC or ENTER + \"Zoom out of %s(%d) thread\"",
|
|
|
thread->comm_set ? thread__comm_str(thread) : "",
|
|
|
thread->tid);
|
|
@@ -2354,10 +2355,11 @@ add_thread_opt(struct hist_browser *browser, struct popup_action *act,
|
|
|
{
|
|
|
int ret;
|
|
|
|
|
|
- if ((!sort__has_thread && !sort__has_comm) || thread == NULL)
|
|
|
+ if ((!hists__has(browser->hists, thread) &&
|
|
|
+ !hists__has(browser->hists, comm)) || thread == NULL)
|
|
|
return 0;
|
|
|
|
|
|
- if (sort__has_thread) {
|
|
|
+ if (hists__has(browser->hists, thread)) {
|
|
|
ret = asprintf(optstr, "Zoom %s %s(%d) thread",
|
|
|
browser->hists->thread_filter ? "out of" : "into",
|
|
|
thread->comm_set ? thread__comm_str(thread) : "",
|
|
@@ -2380,7 +2382,7 @@ do_zoom_dso(struct hist_browser *browser, struct popup_action *act)
|
|
|
{
|
|
|
struct map *map = act->ms.map;
|
|
|
|
|
|
- if (!sort__has_dso || map == NULL)
|
|
|
+ if (!hists__has(browser->hists, dso) || map == NULL)
|
|
|
return 0;
|
|
|
|
|
|
if (browser->hists->dso_filter) {
|
|
@@ -2407,7 +2409,7 @@ static int
|
|
|
add_dso_opt(struct hist_browser *browser, struct popup_action *act,
|
|
|
char **optstr, struct map *map)
|
|
|
{
|
|
|
- if (!sort__has_dso || map == NULL)
|
|
|
+ if (!hists__has(browser->hists, dso) || map == NULL)
|
|
|
return 0;
|
|
|
|
|
|
if (asprintf(optstr, "Zoom %s %s DSO",
|
|
@@ -2429,10 +2431,10 @@ do_browse_map(struct hist_browser *browser __maybe_unused,
|
|
|
}
|
|
|
|
|
|
static int
|
|
|
-add_map_opt(struct hist_browser *browser __maybe_unused,
|
|
|
+add_map_opt(struct hist_browser *browser,
|
|
|
struct popup_action *act, char **optstr, struct map *map)
|
|
|
{
|
|
|
- if (!sort__has_dso || map == NULL)
|
|
|
+ if (!hists__has(browser->hists, dso) || map == NULL)
|
|
|
return 0;
|
|
|
|
|
|
if (asprintf(optstr, "Browse map details") < 0)
|
|
@@ -2534,7 +2536,7 @@ add_exit_opt(struct hist_browser *browser __maybe_unused,
|
|
|
static int
|
|
|
do_zoom_socket(struct hist_browser *browser, struct popup_action *act)
|
|
|
{
|
|
|
- if (!sort__has_socket || act->socket < 0)
|
|
|
+ if (!hists__has(browser->hists, socket) || act->socket < 0)
|
|
|
return 0;
|
|
|
|
|
|
if (browser->hists->socket_filter > -1) {
|
|
@@ -2556,7 +2558,7 @@ static int
|
|
|
add_socket_opt(struct hist_browser *browser, struct popup_action *act,
|
|
|
char **optstr, int socket_id)
|
|
|
{
|
|
|
- if (!sort__has_socket || socket_id < 0)
|
|
|
+ if (!hists__has(browser->hists, socket) || socket_id < 0)
|
|
|
return 0;
|
|
|
|
|
|
if (asprintf(optstr, "Zoom %s Processor Socket %d",
|
|
@@ -2747,7 +2749,7 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
|
|
|
*/
|
|
|
goto out_free_stack;
|
|
|
case 'a':
|
|
|
- if (!sort__has_sym) {
|
|
|
+ if (!hists__has(hists, sym)) {
|
|
|
ui_browser__warning(&browser->b, delay_secs * 2,
|
|
|
"Annotation is only available for symbolic views, "
|
|
|
"include \"sym*\" in --sort to use it.");
|
|
@@ -2910,7 +2912,7 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if (!sort__has_sym || browser->selection == NULL)
|
|
|
+ if (!hists__has(hists, sym) || browser->selection == NULL)
|
|
|
goto skip_annotation;
|
|
|
|
|
|
if (sort__mode == SORT_MODE__BRANCH) {
|
|
@@ -2954,7 +2956,7 @@ skip_annotation:
|
|
|
goto skip_scripting;
|
|
|
|
|
|
if (browser->he_selection) {
|
|
|
- if (sort__has_thread && thread) {
|
|
|
+ if (hists__has(hists, thread) && thread) {
|
|
|
nr_options += add_script_opt(browser,
|
|
|
&actions[nr_options],
|
|
|
&options[nr_options],
|
|
@@ -2969,7 +2971,7 @@ skip_annotation:
|
|
|
*
|
|
|
* See hist_browser__show_entry.
|
|
|
*/
|
|
|
- if (sort__has_sym && browser->selection->sym) {
|
|
|
+ if (hists__has(hists, sym) && browser->selection->sym) {
|
|
|
nr_options += add_script_opt(browser,
|
|
|
&actions[nr_options],
|
|
|
&options[nr_options],
|