mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Namhyung Kim <namhyung@kernel.org>
To: Tengda Wu <wutengda@huaweicloud.com>
Cc: Shuai Xue <xueshuai@linux.alibaba.com>,
	james.clark@linaro.org, Li Huafei <lihuafei1@huawei.com>,
	Peter Zijlstra <peterz@infradead.org>,
	leo.yan@linux.dev, Ian Rogers <irogers@google.com>,
	Kim Phillips <kim.phillips@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Arnaldo Carvalho de Melo <acme@kernel.org>,
	Ingo Molnar <mingo@redhat.com>, Bill Wendling <morbo@google.com>,
	Nick Desaulniers <nick.desaulniers+lkml@gmail.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Zecheng Li <zli94@ncsu.edu>,
	linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
	llvm@lists.linux.dev
Subject: Re: [PATCH v4 16/23] perf annotate-data: Expand type_state_reg imm_value to u64
Date: Mon, 24 Aug 2026 14:48:43 -0700	[thread overview]
Message-ID: <aoy8OwogQGsGR0_j@google.com> (raw)
In-Reply-To: <793c2b7c-dac8-4565-9d4a-5be7e9ebea3c@huaweicloud.com>

On Fri, Aug 14, 2026 at 03:58:12PM +0800, Tengda Wu wrote:
> 
> 
> On 2026/8/11 16:10, Shuai Xue wrote:
> > 
> > 
> > On 8/8/26 8:23 PM, Tengda Wu wrote:
> >> The imm_value in struct type_state_reg is defined as u32, which limits
> >> the size of values it can pass.
> >>
> >> Promote imm_value from u32 to u64 and adjust the print format specifier
> >> in pr_debug_dtp() accordingly.
> >>
> >> Signed-off-by: Tengda Wu <wutengda@huaweicloud.com>
> >> ---
> >>   tools/perf/util/annotate-arch/annotate-x86.c | 2 +-
> >>   tools/perf/util/annotate-data.h              | 2 +-
> >>   2 files changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/tools/perf/util/annotate-arch/annotate-x86.c b/tools/perf/util/annotate-arch/annotate-x86.c
> >> index ee4e3e7f3209..eec3d8ce00b8 100644
> >> --- a/tools/perf/util/annotate-arch/annotate-x86.c
> >> +++ b/tools/perf/util/annotate-arch/annotate-x86.c
> >> @@ -540,7 +540,7 @@ static void update_insn_state_x86(struct type_state *state,
> >>               tsr->offset = 0;
> >>               tsr->ok = true;
> >>   -            pr_debug_dtp("mov [%x] imm=%#x -> reg%d\n",
> >> +            pr_debug_dtp("mov [%x] imm=%#"PRIx64" -> reg%d\n",
> >>                        insn_offset, tsr->imm_value, dst->reg1);
> >>               return;
> >>           }
> >> diff --git a/tools/perf/util/annotate-data.h b/tools/perf/util/annotate-data.h
> >> index 453e13bbe3e2..91b83e94c51b 100644
> >> --- a/tools/perf/util/annotate-data.h
> >> +++ b/tools/perf/util/annotate-data.h
> >> @@ -173,7 +173,7 @@ extern struct annotated_data_stat ann_data_stat;
> >>    */
> >>   struct type_state_reg {
> >>       Dwarf_Die type;
> >> -    u32 imm_value;
> >> +    u64 imm_value;
> >>       /*
> > One subtlety this introduces: annotated_op_loc.offset is an int, and
> > immediates are parsed into it via strtol(), so assignments like
> > tsr->imm_value = src->offset now sign-extend instead of preserving
> > the 32-bit bit pattern. mov $0xdeadbeef used to track 0xdeadbeef,
> > now it tracks 0xffffffffdeadbeef, while the register actually holds
> > the zero-extended value. (Canonical kernel addresses happen to
> > sign-extend back to the right value, which masks this in the common
> > case.)
> > 
> 
> It appears that assignments from offset to imm_value occur in only a few places:
> 
> add/sub: (already existing)
>   u64 imm_value = -1ULL;
>   imm_value = src->offset;  // int to u64
> 
> mov immediate: (newly introduced)
>   tsr->imm_value = src->offset;  // int to u64
> 
> 
> > Relatedly, this widening doesn't actually help 64-bit immediates on
> > the strtol() path - movabs is still truncated to int at parse time.
> 
> Indeed, for movabs instructions, the immediate value is truncated due to
> the width of offset and strtol() as well.
> 
> > The real consumers that need u64 are the arm64 adrp and stack paths,
> > which feed imm_value from ops.source.addr / stack state directly, so
> > the change is justified. But maybe worth spelling that out, and
> > considering a follow-up that parses immediates with strtoull() into a
> > dedicated u64 field instead of overloading the signed offset field.
> > 
> > Thanks,
> 
> To summarize, there are three issues:
> 
> 1. Sign-extension issue in add/sub (pre-existing)
> 2. Sign-extension issue in mov immediate (newly introduced)
> 3. Truncation issue in movabs (pre-existing)
> 
> In this patch, I'd like to fix issue #2 first by adding a type cast to
> avoid the sign-extension problem:
> 
>   tsr->imm_value = (s64)src->offset;
> 
> As for issues #1 and #3, which are pre-existing, a possible solution would
> be to promote offset to 64-bit as well. I'm thinking of addressing those in
> a separate patch series, since it involves multiple architectures and would
> need careful review.

Sounds good.

Thanks,
Namhyung


  reply	other threads:[~2026-08-24 21:48 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-08 12:23 [PATCH v4 00/23] perf arm64: Support data type profiling Tengda Wu
2026-08-08 12:23 ` [PATCH v4 01/23] perf capstone: Fix arm64 jump/adrp disassembly mismatch with objdump Tengda Wu
2026-08-10 13:08   ` Shuai Xue
2026-08-11  2:27     ` Tengda Wu
2026-08-11  3:25       ` Shuai Xue
2026-08-08 12:23 ` [PATCH v4 02/23] perf llvm: Fix arm64 adrp instruction " Tengda Wu
2026-08-08 12:23 ` [PATCH v4 03/23] perf annotate-arm64: Generalize arm64_mov__parse to support more instructions Tengda Wu
2026-08-08 12:23 ` [PATCH v4 04/23] perf annotate-arm64: Handle load and store instructions Tengda Wu
2026-08-08 12:23 ` [PATCH v4 05/23] perf dwarf-regs: Adapt get_dwarf_regnum() for arm64 Tengda Wu
2026-08-08 12:23 ` [PATCH v4 06/23] perf annotate: Adapt arch__dwarf_regnum() " Tengda Wu
2026-08-11  6:33   ` Shuai Xue
2026-08-11  8:16     ` Tengda Wu
2026-08-24 21:39       ` Namhyung Kim
2026-08-08 12:23 ` [PATCH v4 07/23] perf annotate: Introduce extract_op_location callback for arch-specific parsing Tengda Wu
2026-08-08 12:23 ` [PATCH v4 08/23] perf annotate-arm64: Implement extract_op_location() callback Tengda Wu
2026-08-11  6:50   ` Shuai Xue
2026-08-08 12:23 ` [PATCH v4 09/23] perf annotate: Deduplicate overlapping ARM SPE events for data type profiling Tengda Wu
2026-08-10  6:57   ` Adrian Hunter
2026-08-12  2:28     ` Tengda Wu
2026-08-12  6:07       ` Adrian Hunter
2026-08-12  8:53         ` Tengda Wu
2026-08-08 12:23 ` [PATCH v4 10/23] perf arm-spe: Set default synthesized event period to 1 Tengda Wu
2026-08-08 12:23 ` [PATCH v4 11/23] perf annotate-data: Extract invalidate_reg_state() as a common helper Tengda Wu
2026-08-11  7:09   ` Shuai Xue
2026-08-08 12:23 ` [PATCH v4 12/23] perf annotate-arm64: Enable instruction tracking support Tengda Wu
2026-08-08 12:23 ` [PATCH v4 13/23] perf annotate-arm64: Track return type after call instructions Tengda Wu
2026-08-08 12:23 ` [PATCH v4 14/23] perf annotate-arm64: Support load instruction tracking Tengda Wu
2026-08-11  7:36   ` Shuai Xue
2026-08-13 14:54     ` Tengda Wu
2026-08-24 21:44       ` Namhyung Kim
2026-08-08 12:23 ` [PATCH v4 15/23] perf annotate-arm64: Support store " Tengda Wu
2026-08-11  8:00   ` Shuai Xue
2026-08-14  1:26     ` Tengda Wu
2026-08-08 12:23 ` [PATCH v4 16/23] perf annotate-data: Expand type_state_reg imm_value to u64 Tengda Wu
2026-08-11  8:10   ` Shuai Xue
2026-08-14  7:58     ` Tengda Wu
2026-08-24 21:48       ` Namhyung Kim [this message]
2026-08-08 12:23 ` [PATCH v4 17/23] perf annotate-data: Track imm_value for stack variables Tengda Wu
2026-08-11  8:16   ` Shuai Xue
2026-08-08 12:23 ` [PATCH v4 18/23] perf annotate-arm64: Support stack variable tracking Tengda Wu
2026-08-11  8:24   ` Shuai Xue
2026-08-14 11:44     ` Tengda Wu
2026-08-08 12:23 ` [PATCH v4 19/23] perf annotate-arm64: Support 'mov' instruction tracking Tengda Wu
2026-08-11  8:37   ` Shuai Xue
2026-08-18  8:59     ` Tengda Wu
2026-08-08 12:23 ` [PATCH v4 20/23] perf annotate-arm64: Support 'add' " Tengda Wu
2026-08-11  8:45   ` Shuai Xue
2026-08-19  3:04     ` Tengda Wu
2026-08-24 21:58       ` Namhyung Kim
2026-08-28  7:41         ` Tengda Wu
2026-08-08 12:23 ` [PATCH v4 21/23] perf annotate-arm64: Support 'adrp' instruction to track global variables Tengda Wu
2026-08-11  8:50   ` Shuai Xue
2026-08-08 12:23 ` [PATCH v4 22/23] perf annotate-arm64: Support per-cpu variable access tracking Tengda Wu
2026-08-08 12:24 ` [PATCH v4 23/23] perf annotate-arm64: Support 'mrs' instruction to track 'current' pointer Tengda Wu

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=aoy8OwogQGsGR0_j@google.com \
    --to=namhyung@kernel.org \
    --cc=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=kim.phillips@arm.com \
    --cc=leo.yan@linux.dev \
    --cc=lihuafei1@huawei.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=morbo@google.com \
    --cc=nick.desaulniers+lkml@gmail.com \
    --cc=peterz@infradead.org \
    --cc=wutengda@huaweicloud.com \
    --cc=xueshuai@linux.alibaba.com \
    --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®