From: Namhyung Kim <namhyung@kernel.org>
To: Jiebin Sun <jiebin.sun@intel.com>
Cc: acme@kernel.org, mingo@redhat.com, peterz@infradead.org,
mark.rutland@arm.com, alexander.shishkin@linux.intel.com,
jolsa@kernel.org, irogers@google.com, adrian.hunter@intel.com,
james.clark@linaro.org, tianyou.li@intel.com,
wangyang.guo@intel.com, dapeng1.mi@linux.intel.com,
thomas.falcon@intel.com, linux-perf-users@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 00/14] perf c2c: add a function view
Date: Fri, 17 Jul 2026 21:58:28 -0700 [thread overview]
Message-ID: <alsH9PFMljK5eUEJ@z2> (raw)
In-Reply-To: <20260717020530.1645123-1-jiebin.sun@intel.com>
On Fri, Jul 17, 2026 at 10:05:16AM +0800, Jiebin Sun wrote:
> This series adds a new "function view" to perf c2c report, on top of the
> existing cacheline view. It does not change the cacheline view; it adds a
> second, complementary way to look at the same cache-to-cache (C2C) data.
>
> v1: https://lore.kernel.org/linux-perf-users/20260626070355.1556721-1-jiebin.sun@intel.com/
> v2: https://lore.kernel.org/linux-perf-users/20260710084247.3576706-1-jiebin.sun@intel.com/
>
> Changes since v2
> ================
>
> - perf c2c: add a c2c_ prefix to the functions exported from
> builtin-c2c.c for the function view, so the shared symbols do not
> pollute the global namespace: fmt_free() -> c2c_fmt_free() and
> fmt_equal() -> c2c_fmt_equal(). Suggested by Namhyung.
>
> - perf c2c: free the two top-level function-view hists with
> hists__delete_all_entries() as well, so entries left in the
> input/collapsed trees are not leaked.
>
> - perf c2c: drop a redundant reset_dimensions() call, free the
> registered formats on a mid-parse failure in the function-view HPP
> list parser, and add a missing newline to a pr_err() message.
>
> - Rebased onto the latest perf-tools-next.
>
> Changes since v1
> ================
>
> - Add the worked example (the cpupri_set/pull_rt_task walk-through) to
> the perf-c2c man page, as suggested by Namhyung.
>
> - Rebased onto the latest perf-tools-next.
>
> - perf c2c: cache the level-1 total-stores sum (new child_stores field)
> instead of walking the children on every comparison. total_stores_cmp()
> is called during collapse/sort, so the previous O(children) walk was an
> O(N*M log N) bottleneck on large profiles.
>
> - perf c2c: free the function-view sub-hists with
> hists__delete_all_entries() instead of hists__delete_entries(), so
> entries still in the input/collapsed trees are not leaked, matching the
> cleanup in builtin-c2c.c.
>
> - perf c2c: distinguish -ENOMEM from "unknown dimension" in
> get_function_format(), so an allocation failure is no longer
> misreported as an "Invalid c2c function-view field".
>
> - perf c2c: reword the iaddr_symbol_cmp() sort-order comment to drop the
> ambiguous ascending/descending wording.
>
> What it does
> ============
>
> In the perf c2c TUI, press TAB in the cacheline view to switch to the
> function view. It presents a 3-level hierarchy:
>
> Level 1: primary functions, sorted by Cycles % (estimated load cycles:
> HITM, peer-snoop and other-load cycles -- on systems whose
> default display mode is peer, such as Arm64, the peer-snoop
> component dominates)
> Level 2: other functions that share cachelines with the level-1 function
> Level 3: the specific shared cachelines for each function pair
>
> Keys in the function view:
> TAB/ESC/q return to the cacheline view
> d show cacheline details for the selected entry
> e / + expand / collapse the selected entry
> ? help
>
> The cacheline view and the --stdio output are unchanged.
>
> Example
> =======
>
> A level-1 function is expanded (press 'e') to reveal the functions it
> shares cachelines with, and one of those is expanded again to reveal the
> specific shared cachelines:
>
> Shared Data Functions Table (27 entries, sorted on Cycles %)
> Cycles Store
> % count Code address Symbol Cacheline
> ----------------------------------------------------------------------
> - 39.03% 541 - 0xffffffffa2fc5b08 - [k] cpupri_set
> 450 - 0xffffffffa2fa28a5 - [k] pull_rt_task
> 450 0xff2d0082809da080
I think it's more like "code-address" view rather than "function" view.
How about organizing the output something like below?
L1: function
L2: cache line
L3: shared functions
or
L1: function
L2: code address
L3: cache line
L4: shared functions
A function can have multiple entries with different code addresses and
cache lines. They can be grouped together for better analysis.
Also, I think you'd better to indent output for lower level entries to
clearly separate entries from others like in the normal perf report
hierarchy view. Something like this.
Shared Data Functions Table (27 entries, sorted on Cycles %)
Cycles Store
% count Code address Symbol Cacheline
----------------------------------------------------------------------
- 39.03% 541 - 0xffffffffa2fc5b08 - [k] cpupri_set
450 - 0xffffffffa2fa28a5 - [k] pull_rt_task <<<-- here
450 0xff2d0082809da080
... + [k] other_func
Thanks,
Namhyung
>
> Reading the three levels:
>
> - Level 1: cpupri_set is the top contended function, accounting for
> 39.03% of the estimated load cycles. The table is sorted by this
> Cycles % column.
> - Level 2: expanding cpupri_set (press 'e') lists the functions it
> shares cachelines with, sorted by store count. Here pull_rt_task is
> the contending function, with 450 stores into the shared data.
> - Level 3: expanding pull_rt_task lists the specific cachelines the two
> functions contend over -- in this case the single cacheline at
> 0xff2d0082809da080.
>
> The view reads top-down as "cpupri_set is hottest; it shares data with
> pull_rt_task; the contention is on cacheline ...da080" -- the false-
> sharing chain that the cacheline view otherwise makes you reconstruct by
> hand.
>
> Implementation
> ==============
>
> The function view is built as a separate hist_browser in
> tools/perf/ui/browsers/c2c-function.c. Shared types and helpers used by
> both views are factored out of builtin-c2c.c into a new c2c.h. The
> hierarchy is constructed from the existing cacheline histograms into a
> dedicated set of hists, keyed by (symbol, instruction address), and
> rendered with custom column formatters.
>
> The series is split into 14 small, self-contained patches so each step
> can be reviewed and builds on its own.
>
> Testing
> =======
>
> - Each of the 14 commits builds individually and as a full series.
> - perf c2c report --stdio (cacheline view) output is unchanged versus
> the baseline: identical trace-event totals, shared-cacheline counts,
> and HITM tallies.
> - The function view was exercised on c2c recordings; the level-1
> ordering and the level-2/3 sharing breakdown match the underlying
> cacheline data.
>
> Jiebin Sun (14):
> perf c2c: extract shared data structures into c2c.h
> perf c2c: add function view browser skeleton
> perf c2c: add function view type definitions and helpers
> perf c2c: add column format infrastructure for function view
> perf c2c: add column entry functions for function view
> perf c2c: add comparison functions for function view sorting
> perf c2c: add dimension definitions and format creation
> perf c2c: add HPP list parsing for function view histograms
> perf c2c: add stats merging and memory management helpers
> perf c2c: add hierarchy entry creation and lookup functions
> perf c2c: add function view hierarchy builder
> perf c2c: add function view browser UI
> perf c2c: add TAB key to switch to function view
> perf c2c: document function view in perf-c2c man page
>
> tools/perf/Documentation/perf-c2c.txt | 33 +
> tools/perf/builtin-c2c.c | 132 +--
> tools/perf/c2c.h | 148 +++
> tools/perf/ui/browsers/Build | 1 +
> tools/perf/ui/browsers/c2c-function.c | 1562 +++++++++++++++++++++++++
> 5 files changed, 1756 insertions(+), 120 deletions(-)
> create mode 100644 tools/perf/c2c.h
> create mode 100644 tools/perf/ui/browsers/c2c-function.c
>
>
> base-commit: 3f7909fa921e38b7aba8566b03ca5e0754a8fa8b
> --
> 2.52.0
>
prev parent reply other threads:[~2026-07-18 4:58 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-26 7:03 [PATCH 00/14] perf c2c: add a function view Jiebin Sun
2026-06-26 7:03 ` [PATCH 01/14] perf c2c: extract shared data structures into c2c.h Jiebin Sun
2026-06-26 7:13 ` sashiko-bot
2026-07-16 17:51 ` Namhyung Kim
2026-07-17 1:43 ` Jiebin Sun
2026-06-26 7:03 ` [PATCH 02/14] perf c2c: add function view browser skeleton Jiebin Sun
2026-06-26 7:11 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 03/14] perf c2c: add function view type definitions and helpers Jiebin Sun
2026-06-26 7:14 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 04/14] perf c2c: add column format infrastructure for function view Jiebin Sun
2026-06-26 7:03 ` [PATCH 05/14] perf c2c: add column entry functions " Jiebin Sun
2026-06-26 7:03 ` [PATCH 06/14] perf c2c: add comparison functions for function view sorting Jiebin Sun
2026-06-26 7:22 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 07/14] perf c2c: add dimension definitions and format creation Jiebin Sun
2026-06-26 7:23 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 08/14] perf c2c: add HPP list parsing for function view histograms Jiebin Sun
2026-06-26 7:16 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 09/14] perf c2c: add stats merging and memory management helpers Jiebin Sun
2026-06-26 7:17 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 10/14] perf c2c: add hierarchy entry creation and lookup functions Jiebin Sun
2026-06-26 7:19 ` sashiko-bot
2026-06-26 7:03 ` [PATCH 11/14] perf c2c: add function view hierarchy builder Jiebin Sun
2026-06-26 7:03 ` [PATCH 12/14] perf c2c: add function view browser UI Jiebin Sun
2026-06-26 7:03 ` [PATCH 13/14] perf c2c: add TAB key to switch to function view Jiebin Sun
2026-06-26 7:03 ` [PATCH 14/14] perf c2c: document function view in perf-c2c man page Jiebin Sun
2026-07-07 0:41 ` [PATCH 00/14] perf c2c: add a function view Namhyung Kim
2026-07-10 8:49 ` Jiebin Sun
2026-07-10 21:54 ` Namhyung Kim
2026-07-13 9:22 ` Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 " Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 01/14] perf c2c: extract shared data structures into c2c.h Jiebin Sun
2026-07-10 8:54 ` sashiko-bot
2026-07-10 8:42 ` [PATCH v2 02/14] perf c2c: add function view browser skeleton Jiebin Sun
2026-07-10 8:50 ` sashiko-bot
2026-07-10 8:42 ` [PATCH v2 03/14] perf c2c: add function view type definitions and helpers Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 04/14] perf c2c: add column format infrastructure for function view Jiebin Sun
2026-07-10 9:00 ` sashiko-bot
2026-07-10 8:42 ` [PATCH v2 05/14] perf c2c: add column entry functions " Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 06/14] perf c2c: add comparison functions for function view sorting Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 07/14] perf c2c: add dimension definitions and format creation Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 08/14] perf c2c: add HPP list parsing for function view histograms Jiebin Sun
2026-07-10 9:01 ` sashiko-bot
2026-07-10 8:42 ` [PATCH v2 09/14] perf c2c: add stats merging and memory management helpers Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 10/14] perf c2c: add hierarchy entry creation and lookup functions Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 11/14] perf c2c: add function view hierarchy builder Jiebin Sun
2026-07-10 9:01 ` sashiko-bot
2026-07-10 8:42 ` [PATCH v2 12/14] perf c2c: add function view browser UI Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 13/14] perf c2c: add TAB key to switch to function view Jiebin Sun
2026-07-10 8:42 ` [PATCH v2 14/14] perf c2c: document function view in perf-c2c man page Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 00/14] perf c2c: add a function view Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 01/14] perf c2c: extract shared data structures into c2c.h Jiebin Sun
2026-07-17 2:14 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 02/14] perf c2c: add function view browser skeleton Jiebin Sun
2026-07-17 2:15 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 03/14] perf c2c: add function view type definitions and helpers Jiebin Sun
2026-07-17 2:15 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 04/14] perf c2c: add column format infrastructure for function view Jiebin Sun
2026-07-17 2:21 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 05/14] perf c2c: add column entry functions " Jiebin Sun
2026-07-17 2:19 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 06/14] perf c2c: add comparison functions for function view sorting Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 07/14] perf c2c: add dimension definitions and format creation Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 08/14] perf c2c: add HPP list parsing for function view histograms Jiebin Sun
2026-07-17 2:22 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 09/14] perf c2c: add stats merging and memory management helpers Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 10/14] perf c2c: add hierarchy entry creation and lookup functions Jiebin Sun
2026-07-17 2:20 ` sashiko-bot
2026-07-17 2:05 ` [PATCH v3 11/14] perf c2c: add function view hierarchy builder Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 12/14] perf c2c: add function view browser UI Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 13/14] perf c2c: add TAB key to switch to function view Jiebin Sun
2026-07-17 2:05 ` [PATCH v3 14/14] perf c2c: document function view in perf-c2c man page Jiebin Sun
2026-07-18 4:58 ` Namhyung Kim [this message]
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=alsH9PFMljK5eUEJ@z2 \
--to=namhyung@kernel.org \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=dapeng1.mi@linux.intel.com \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=jiebin.sun@intel.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=peterz@infradead.org \
--cc=thomas.falcon@intel.com \
--cc=tianyou.li@intel.com \
--cc=wangyang.guo@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