linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Liang, Kan" <kan.liang@linux.intel.com>
To: weilin.wang@intel.com, Ian Rogers <irogers@google.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Ingo Molnar <mingo@redhat.com>,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@kernel.org>, Namhyung Kim <namhyung@kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>
Cc: linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
	Perry Taylor <perry.taylor@intel.com>,
	Samantha Alt <samantha.alt@intel.com>,
	Caleb Biggers <caleb.biggers@intel.com>,
	Mark Rutland <mark.rutland@arm.com>
Subject: Re: [RFC PATCH 11/25] perf stat: Add utility functions to hardware-grouping method
Date: Tue, 26 Sep 2023 12:02:26 -0400	[thread overview]
Message-ID: <cad87493-6d21-f8eb-e316-ab0db958ca3d@linux.intel.com> (raw)
In-Reply-To: <20230925061824.3818631-12-weilin.wang@intel.com>



On 2023-09-25 2:18 a.m., weilin.wang@intel.com wrote:
> From: Weilin Wang <weilin.wang@intel.com>
> 
> Add functions to handle counter bitmaps. Add functions do find and insert
> operations to handle inserting event into groups.
> 
> Signed-off-by: Weilin Wang <weilin.wang@intel.com>
> ---
>  tools/lib/bitmap.c            |  20 ++++++
>  tools/perf/util/metricgroup.c | 115 +++++++++++++++++++++++++++++++++-
>  2 files changed, 133 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/lib/bitmap.c b/tools/lib/bitmap.c
> index c3e487196..a96dbf001 100644
> --- a/tools/lib/bitmap.c
> +++ b/tools/lib/bitmap.c
> @@ -100,3 +100,23 @@ bool __bitmap_intersects(const unsigned long *bitmap1,
>  			return true;
>  	return false;
>  }
> +
> +void bitmap_clear(unsigned long *map, unsigned int start, int len)
> +{
> +	unsigned long *p = map + BIT_WORD(start);
> +	const unsigned int size = start + len;
> +	int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG);
> +	unsigned long mask_to_clear = BITMAP_FIRST_WORD_MASK(start);
> +
> +	while (len - bits_to_clear >= 0) {
> +		*p &= ~mask_to_clear;
> +		len -= bits_to_clear;
> +		bits_to_clear = BITS_PER_LONG;
> +		mask_to_clear = ~0UL;
> +		p++;
> +	}
> +	if (len) {
> +		mask_to_clear &= BITMAP_LAST_WORD_MASK(size);
> +		*p &= ~mask_to_clear;
> +	}
> +}
> diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
> index de6a6a1d7..68d56087b 100644
> --- a/tools/perf/util/metricgroup.c
> +++ b/tools/perf/util/metricgroup.c
> @@ -1450,6 +1450,27 @@ static int set_counter_bitmap(int pos, unsigned long *bitmap)
>  	return 0;
>  }
>  
> +static int find_counter_bitmap(unsigned long *addr1,
> +			      unsigned long *addr2,
> +			      unsigned long *bit)
> +{
> +	unsigned long find_bit = find_next_and_bit(addr1, addr2, NR_COUNTERS, 0);
> +
> +	if (find_bit == NR_COUNTERS)
> +		return -ERANGE;
> +	*bit = find_bit;
> +	return 0;
> +}
> +
> +static int use_counter_bitmap(unsigned long *bitmap,
> +			     unsigned long find_bit)
> +{
> +	if (find_bit >= NR_COUNTERS)
> +		return -EINVAL;
> +	bitmap_clear(bitmap, find_bit, 1);
> +	return 0;
> +}
> +
>  static int parse_fixed_counter(const char *counter,
>  			      unsigned long *bitmap,
>  			      bool *fixed)
> @@ -1681,12 +1702,102 @@ static int get_pmu_counter_layouts(struct list_head *pmu_info_list,
>  	return ret;
>  }
>  
> +/**
> + * Find if there is a counter available for event e in current_group. If a
> + * counter is available, use this counter by fill the bit in the correct counter
> + * bitmap. Otherwise, return error (-ERANGE).
> + */
> +static int find_and_set_counters(struct metricgroup__event_info *e,
> +				struct metricgroup__group *current_group)
> +{
> +	int ret;
> +	unsigned long find_bit = 0;
> +
> +	if (e->free_counter)
> +		return 0;
> +	if (e->fixed_counter) {
> +		ret = find_counter_bitmap(current_group->fixed_counters, e->counters,
> +					 &find_bit);
> +		if (ret)
> +			return ret;
> +		pr_debug("found counter for [event]=%s [e->fixed_counters]=%lu\n",
> +			e->name, *current_group->fixed_counters);
> +		ret = use_counter_bitmap(current_group->fixed_counters, find_bit);
> +	} else {
> +		ret = find_counter_bitmap(current_group->gp_counters, e->counters,
> +					 &find_bit);
> +		if (ret)
> +			return ret;
> +		pr_debug("found counter for [event]=%s [e->gp_counters]=%lu\n",
> +			e->name, *current_group->gp_counters);
> +		ret = use_counter_bitmap(current_group->gp_counters, find_bit);
> +	}
> +	return ret;
> +}
> +
> +static int _insert_event(struct metricgroup__event_info *e,
> +			struct metricgroup__group *group)
> +{
> +	struct metricgroup__group_events *event = malloc(sizeof(struct metricgroup__group_events));
> +
> +	if (!event)
> +		return -ENOMEM;
> +	event->event_name = e->name;
> +	if (e->fixed_counter)
> +		list_add(&event->nd, &group->event_head);
> +	else
> +		list_add_tail(&event->nd, &group->event_head);
> +	return 0;
> +}
> +
> +/**
> + * Insert event e into a group capable to include it
> + *
> + */
> +static int insert_event_to_group(struct metricgroup__event_info *e,
> +				struct metricgroup__pmu_group_list *pmu_group_head)
> +{
> +	struct metricgroup__group *g;
> +	int ret;
> +	//struct list_head *head;
> +
> +	list_for_each_entry(g, &pmu_group_head->group_head, nd) {
> +		ret = find_and_set_counters(e, g);
> +		if (!ret) { /* return if successfully find and set counter*/
> +			ret = _insert_event(e, g);
> +			return ret;
> +		}
> +	}
> +	/*
> +	 * We were not able to find an existing group to insert this event.
> +	 * Continue to create a new group and insert the event in it.
> +	 */
> +	{

What's the {} for?

> +		struct metricgroup__group *current_group = malloc(sizeof(struct metricgroup__group));
> +		if (!current_group)
> +			return -ENOMEM;
> +		pr_debug("create_new_group for [event] %s\n", e->name);
> +
> +		//head = &pmu_group_head->group_head;
> +		//ret = create_new_group(head, current_group, pmu_group_head->size,
> +		//			pmu_group_head->fixed_size);
> +		if (ret)
> +			return ret;

Please completely delete the useless code.

> +		ret = find_and_set_counters(e, current_group);
> +		if (ret)
> +			return ret;
> +		ret = _insert_event(e, current_group);
> +	}
> +
> +	return ret;
> +}
> +
>  /**
>   * assign_event_grouping - Assign an event into a group. If existing group
>   * cannot include it, create a new group and insert the event to it.
>   */
>  static int assign_event_grouping(struct metricgroup__event_info *e,
> -				struct list_head *pmu_info_list __maybe_unused,
> +				struct list_head *pmu_info_list,
>  				struct list_head *groups)
>  {
>  	int ret = 0;
> @@ -1717,7 +1828,7 @@ static int assign_event_grouping(struct metricgroup__event_info *e,
>  		list_add_tail(&pmu_group_head->nd, groups);
>  	}
>  
> -	//ret = insert_event_to_group(e, pmu_group_head, pmu_info_list);
> +	ret = insert_event_to_group(e, pmu_group_head);

It's better re-organize the whole series. You cannot just uncomments the
line to introduce a new function.

Thanks,
Kan

>  	return ret;
>  }
>  

  reply	other threads:[~2023-09-26 16:02 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-25  6:17 [RFC PATCH 00/25] Perf stat metric grouping with hardware information weilin.wang
2023-09-25  6:18 ` [RFC PATCH 01/25] perf stat: Add hardware-grouping cmd option to perf stat weilin.wang
2023-09-26 14:50   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 02/25] perf stat: Add basic functions for the hardware-grouping stat cmd option weilin.wang
2023-09-26 15:10   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 03/25] perf pmu-events: Add functions in jevent.py weilin.wang
2023-09-26 15:17   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 04/25] perf pmu-events: Add counter info into JSON files for SapphireRapids weilin.wang
2023-09-26 15:20   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 05/25] perf pmu-events: Add event counter data for Cascadelakex weilin.wang
2023-09-25  6:18 ` [RFC PATCH 06/25] perf pmu-events: Add event counter data for Icelakex weilin.wang
2023-09-25  6:18 ` [RFC PATCH 07/25] perf stat: Add helper functions for hardware-grouping method weilin.wang
2023-09-26 15:28   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 08/25] perf stat: Add functions to get counter info weilin.wang
2023-09-26 15:37   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 09/25] perf stat: Add helper functions for hardware-grouping method weilin.wang
2023-09-26  3:37   ` Yang Jihong
2023-09-26 20:51     ` Wang, Weilin
2023-09-25  6:18 ` [RFC PATCH 10/25] perf stat: Add helper functions to " weilin.wang
2023-09-26  3:44   ` Yang Jihong
2023-09-26 15:55   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 11/25] perf stat: Add utility " weilin.wang
2023-09-26 16:02   ` Liang, Kan [this message]
2023-09-25  6:18 ` [RFC PATCH 12/25] perf stat: Add more functions for " weilin.wang
2023-09-25  6:18 ` [RFC PATCH 13/25] perf stat: Add functions to " weilin.wang
2023-09-26 16:18   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 14/25] perf stat: Add build string function and topdown events handling in hardware-grouping weilin.wang
2023-09-26 16:21   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 15/25] perf stat: Add function to combine metrics for hardware-grouping weilin.wang
2023-09-25  6:18 ` [RFC PATCH 16/25] perf stat: Update keyword core to default_core to adjust to the changes for events with no unit weilin.wang
2023-09-26 16:25   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 17/25] perf stat: Handle taken alone in hardware-grouping weilin.wang
2023-09-25  6:18 ` [RFC PATCH 18/25] perf stat: Handle NMI " weilin.wang
2023-09-25  6:18 ` [RFC PATCH 19/25] perf stat: Handle grouping method fall back " weilin.wang
2023-09-25  6:18 ` [RFC PATCH 20/25] perf stat: Code refactoring " weilin.wang
2023-09-25  6:18 ` [RFC PATCH 21/25] perf stat: Add tool events support " weilin.wang
2023-09-25  6:18 ` [RFC PATCH 22/25] perf stat: Add TSC " weilin.wang
2023-09-26 16:35   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 23/25] perf stat: Fix a return error issue " weilin.wang
2023-09-26 16:36   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 24/25] perf stat: Add check to ensure correctness in platform that does not support hardware-grouping weilin.wang
2023-09-26 16:38   ` Liang, Kan
2023-09-25  6:18 ` [RFC PATCH 25/25] perf pmu-events: Add event counter data for Tigerlake weilin.wang
2023-09-26 16:41   ` Liang, Kan
2023-09-25 18:29 ` [RFC PATCH 00/25] Perf stat metric grouping with hardware information Ian Rogers
2023-09-26 20:40   ` Wang, Weilin
2023-09-26 14:43 ` Liang, Kan
2023-09-26 16:48   ` Liang, Kan
2023-09-26 20:40     ` Wang, Weilin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cad87493-6d21-f8eb-e316-ab0db958ca3d@linux.intel.com \
    --to=kan.liang@linux.intel.com \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=caleb.biggers@intel.com \
    --cc=irogers@google.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=perry.taylor@intel.com \
    --cc=peterz@infradead.org \
    --cc=samantha.alt@intel.com \
    --cc=weilin.wang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).