From: Namhyung Kim <namhyung@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Ian Rogers <irogers@google.com>, Jiri Olsa <jolsa@kernel.org>,
Adrian Hunter <adrian.hunter@intel.com>,
James Clark <james.clark@linaro.org>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
linux-perf-users@vger.kernel.org, Zecheng Li <zli94@ncsu.edu>,
Yanbo Zhao <yzhao62@ncsu.edu>,
Tengda Wu <wutengda@huaweicloud.com>,
Shuai Xue <xueshuai@linux.alibaba.com>
Subject: [PATCH v2 4/4] perf annotate-data: Adjust type offset for flex-array
Date: Sun, 13 Sep 2026 23:45:35 -0700 [thread overview]
Message-ID: <20260914064535.1671939-5-namhyung@kernel.org> (raw)
In-Reply-To: <20260914064535.1671939-1-namhyung@kernel.org>
The flex array members are located beyond the original type size. Also
it needs to adjust the offset in an array to find a corresponding
element using module operation. Note that we focus on access to type and
field, so array index is not important.
Make sure to find a field name for flex arrays.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
tools/perf/util/annotate-data.c | 74 ++++++++++++++++++++++++++++++---
1 file changed, 68 insertions(+), 6 deletions(-)
diff --git a/tools/perf/util/annotate-data.c b/tools/perf/util/annotate-data.c
index e8aff6a916c0afe0..a66b72feb6e2f227 100644
--- a/tools/perf/util/annotate-data.c
+++ b/tools/perf/util/annotate-data.c
@@ -333,19 +333,40 @@ static void delete_members(struct annotated_member *member)
}
static int fill_member_name(char *buf, size_t sz, struct annotated_member *m,
- int offset, bool first)
+ int offset, bool first, bool has_flex_array)
{
struct annotated_member *child;
+ bool found = false;
+ int len;
if (list_empty(&m->children))
return 0;
list_for_each_entry(child, &m->children, node) {
- int len;
-
if (offset < child->offset || offset >= child->offset + child->size)
continue;
+ found = true;
+ break;
+ }
+
+ if (!found && has_flex_array) {
+ /*
+ * It may have an intermediate struct that has another struct that
+ * contains a flex array. In that case, the outer struct itself is
+ * has no array and the size is less than the offset so the above
+ * logic won't find the outer struct at the offset. Let's use the
+ * last struct if it couldn't find a member for the flex array.
+ */
+ child = list_last_entry(&m->children, struct annotated_member, node);
+
+ if (offset < child->offset)
+ return 0;
+
+ found = true;
+ }
+
+ if (found) {
/* It can have anonymous struct/union members */
if (child->var_name) {
len = scnprintf(buf, sz, "%s%s",
@@ -355,15 +376,37 @@ static int fill_member_name(char *buf, size_t sz, struct annotated_member *m,
len = 0;
}
- return fill_member_name(buf + len, sz - len, child, offset, first) + len;
+ return fill_member_name(buf + len, sz - len, child, offset, first,
+ has_flex_array) + len;
}
+
return 0;
}
int annotated_data_type__get_member_name(struct annotated_data_type *adt,
char *buf, size_t sz, int member_offset)
{
- return fill_member_name(buf, sz, &adt->self, member_offset, /*first=*/true);
+ return fill_member_name(buf, sz, &adt->self, member_offset, /*first=*/true,
+ adt->flex_array);
+}
+
+static struct annotated_member *find_flex_array(struct annotated_member *m)
+{
+ struct annotated_member *child;
+
+ if (list_empty(&m->children))
+ return NULL;
+
+ child = list_last_entry(&m->children, struct annotated_member, node);
+ if (strstr(child->type_name, "[]"))
+ return child;
+
+ return find_flex_array(child);
+}
+
+static struct annotated_member *get_flex_array_member(struct annotated_data_type *adt)
+{
+ return find_flex_array(&adt->self);
}
static struct annotated_data_type *dso__findnew_data_type(struct dso *dso,
@@ -1740,6 +1783,7 @@ struct annotated_data_type *find_data_type(struct data_loc_info *dloc)
{
struct dso *dso = map__dso(dloc->ms->map);
Dwarf_Die type_die;
+ struct annotated_data_type *result;
/*
* The type offset is the same as instruction offset by default.
@@ -1752,7 +1796,25 @@ struct annotated_data_type *find_data_type(struct data_loc_info *dloc)
if (find_data_type_die(dloc, &type_die) < 0)
return NULL;
- return dso__findnew_data_type(dso, &type_die);
+ result = dso__findnew_data_type(dso, &type_die);
+ if (result == NULL)
+ return NULL;
+
+ if (result->flex_array && dloc->type_offset > result->self.size) {
+ struct annotated_member *flex_array = get_flex_array_member(result);
+
+ if (flex_array && flex_array->size > 0) {
+ int offset = dloc->type_offset;
+
+ /* adjust offset in the flex array */
+ offset -= flex_array->offset;
+ offset %= flex_array->size;
+ offset += flex_array->offset;
+
+ dloc->type_offset = offset;
+ }
+ }
+ return result;
}
static size_t data_type_hash(long key, void *ctx __maybe_unused)
--
2.55.0.1032.g73a4cd73de-goog
prev parent reply other threads:[~2026-09-14 6:45 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-14 6:45 [PATCH v2 0/4] perf annotate-data: Support flexible array types Namhyung Kim
2026-09-14 6:45 ` [PATCH v2 1/4] perf annotate-data: Convert type histogram to hashmap Namhyung Kim
2026-09-14 12:22 ` Tengda Wu
2026-09-14 18:56 ` Arnaldo Carvalho de Melo
2026-09-14 19:22 ` Arnaldo Carvalho de Melo
2026-09-14 20:42 ` Namhyung Kim
2026-09-14 6:45 ` [PATCH v2 2/4] perf dwarf-aux: Add die_has_flex_array() helper Namhyung Kim
2026-09-14 12:14 ` Tengda Wu
2026-09-14 20:28 ` Namhyung Kim
2026-09-14 23:40 ` Masami Hiramatsu
2026-09-15 5:54 ` Namhyung Kim
2026-09-14 6:45 ` [PATCH v2 3/4] perf annotate-date: Allow out-of-size access for flex-array types Namhyung Kim
2026-09-14 12:19 ` Tengda Wu
2026-09-14 20:39 ` Namhyung Kim
2026-09-14 6:45 ` 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=20260914064535.1671939-5-namhyung@kernel.org \
--to=namhyung@kernel.org \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=peterz@infradead.org \
--cc=wutengda@huaweicloud.com \
--cc=xueshuai@linux.alibaba.com \
--cc=yzhao62@ncsu.edu \
--cc=zli94@ncsu.edu \
/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
all inboxes | Powered by JetHome®