From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Rob Herring <robh@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>,
Mark Rutland <mark.rutland@arm.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Jiri Olsa <jolsa@kernel.org>, Namhyung Kim <namhyung@kernel.org>,
Leo Yan <leo.yan@linaro.org>,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] perf arm-spe: Add raw decoding for SPEv1.2 previous branch address
Date: Fri, 3 Feb 2023 16:55:35 -0300 [thread overview]
Message-ID: <Y91mt3JtQ8bcVx4g@kernel.org> (raw)
In-Reply-To: <20230203162401.132931-1-robh@kernel.org>
Em Fri, Feb 03, 2023 at 10:24:01AM -0600, Rob Herring escreveu:
> Arm SPEv1.2 adds a new optional address packet type: previous branch
> target. The recorded address is the target virtual address of the most
> recently taken branch in program order.
>
> Add support for decoding the address packet in raw dumps.
>
> Reviewed-by: Leo Yan <leo.yan@linaro.org>
> Signed-off-by: Rob Herring <robh@kernel.org>
> ---
> v2:
> - Use "PBT" instead of "LBR"
Thanks, applied.
- Arnaldo
> ---
> tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c | 4 +++-
> tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h | 1 +
> 2 files changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
> index 2f311189c6e8..fed4741f372e 100644
> --- a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
> +++ b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.c
> @@ -422,16 +422,18 @@ static int arm_spe_pkt_desc_addr(const struct arm_spe_pkt *packet,
> int ch, pat;
> u64 payload = packet->payload;
> int err = 0;
> + static const char *idx_name[] = {"PC", "TGT", "VA", "PA", "PBT"};
>
> switch (idx) {
> case SPE_ADDR_PKT_HDR_INDEX_INS:
> case SPE_ADDR_PKT_HDR_INDEX_BRANCH:
> + case SPE_ADDR_PKT_HDR_INDEX_PREV_BRANCH:
> ns = !!SPE_ADDR_PKT_GET_NS(payload);
> el = SPE_ADDR_PKT_GET_EL(payload);
> payload = SPE_ADDR_PKT_ADDR_GET_BYTES_0_6(payload);
> arm_spe_pkt_out_string(&err, &buf, &buf_len,
> "%s 0x%llx el%d ns=%d",
> - (idx == 1) ? "TGT" : "PC", payload, el, ns);
> + idx_name[idx], payload, el, ns);
> break;
> case SPE_ADDR_PKT_HDR_INDEX_DATA_VIRT:
> arm_spe_pkt_out_string(&err, &buf, &buf_len,
> diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
> index 9b970e7bf1e2..f75ed3a8a050 100644
> --- a/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
> +++ b/tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder.h
> @@ -65,6 +65,7 @@ struct arm_spe_pkt {
> #define SPE_ADDR_PKT_HDR_INDEX_BRANCH 0x1
> #define SPE_ADDR_PKT_HDR_INDEX_DATA_VIRT 0x2
> #define SPE_ADDR_PKT_HDR_INDEX_DATA_PHYS 0x3
> +#define SPE_ADDR_PKT_HDR_INDEX_PREV_BRANCH 0x4
>
> /* Address packet payload */
> #define SPE_ADDR_PKT_ADDR_BYTE7_SHIFT 56
> --
> 2.39.0
>
--
- Arnaldo
prev parent reply other threads:[~2023-02-03 19:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-03 16:24 [PATCH v2] perf arm-spe: Add raw decoding for SPEv1.2 previous branch address Rob Herring
2023-02-03 19:55 ` Arnaldo Carvalho de Melo [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=Y91mt3JtQ8bcVx4g@kernel.org \
--to=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=jolsa@kernel.org \
--cc=leo.yan@linaro.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=peterz@infradead.org \
--cc=robh@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.