From: James Clark <james.clark@linaro.org>
To: Leo Yan <leo.yan@arm.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>,
linux-perf-users@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Namhyung Kim <namhyung@kernel.org>, Jiri Olsa <jolsa@kernel.org>,
Ian Rogers <irogers@google.com>,
Adrian Hunter <adrian.hunter@intel.com>
Subject: Re: [PATCH 08/25] perf arm_spe: Consolidate operation types
Date: Thu, 9 Oct 2025 10:18:03 +0100 [thread overview]
Message-ID: <6cd67290-a673-4375-b8b5-a8ed68b0ee72@linaro.org> (raw)
In-Reply-To: <20250929-perf_support_arm_spev1-3-v1-8-1150b3c83857@arm.com>
On 29/09/2025 5:37 pm, Leo Yan wrote:
> Consolidate operation types in a way:
>
> (a) The second-level types for memory and SIMD operations are classified
> by modules. E.g., an operation may relate to general register,
> SIMD/FP, SVE, etc.
>
> (b) The associated information tells details. E.g., an operation is
> load or store, whether it is atomic operation, etc.
>
> Start the enum items for the second-level types from 8 to accommodate
> more entries within a 32-bit integer.
>
> Signed-off-by: Leo Yan <leo.yan@arm.com>
> ---
> tools/perf/util/arm-spe-decoder/arm-spe-decoder.h | 40 +++++++++++------------
> 1 file changed, 20 insertions(+), 20 deletions(-)
>
> diff --git a/tools/perf/util/arm-spe-decoder/arm-spe-decoder.h b/tools/perf/util/arm-spe-decoder/arm-spe-decoder.h
> index 1259cbadfdc8098019afcd4cf65e733475310392..8156aa04f82e59ce345fb44223d3d22ecbc149a7 100644
> --- a/tools/perf/util/arm-spe-decoder/arm-spe-decoder.h
> +++ b/tools/perf/util/arm-spe-decoder/arm-spe-decoder.h
> @@ -37,28 +37,28 @@ enum arm_spe_op_type {
> ARM_SPE_OP_LDST = 1 << 1,
> ARM_SPE_OP_BRANCH_ERET = 1 << 2,
>
> - /* Second level operation type for OTHER */
> - ARM_SPE_OP_SVE_OTHER = 1 << 16,
> -
> - /* Second level operation type for LDST */
> - ARM_SPE_OP_LD = 1 << 16,
> - ARM_SPE_OP_ST = 1 << 17,
> - ARM_SPE_OP_ATOMIC = 1 << 18,
> - ARM_SPE_OP_EXCL = 1 << 19,
> - ARM_SPE_OP_AR = 1 << 20,
> - ARM_SPE_OP_SIMD_FP = 1 << 21,
> - ARM_SPE_OP_GP_REG = 1 << 22,
> - ARM_SPE_OP_UNSPEC_REG = 1 << 23,
> - ARM_SPE_OP_NV_SYSREG = 1 << 24,
> - ARM_SPE_OP_SVE_LDST = 1 << 25,
> + /* Second level operation type for memory / SIMD */
> + ARM_SPE_OP_GP_REG = 1 << 8,
> + ARM_SPE_OP_UNSPEC_REG = 1 << 9,
> + ARM_SPE_OP_NV_SYSREG = 1 << 10,
> + ARM_SPE_OP_SIMD_FP = 1 << 11,
> + ARM_SPE_OP_SVE_OTHER = 1 << 12,
> + ARM_SPE_OP_SVE_LDST = 1 << 13,
> +
> + /* Assisted information for memory / SIMD */
> + ARM_SPE_OP_LD = 1 << 20,
> + ARM_SPE_OP_ST = 1 << 21,
> + ARM_SPE_OP_ATOMIC = 1 << 22,
> + ARM_SPE_OP_EXCL = 1 << 23,
> + ARM_SPE_OP_AR = 1 << 24,
>
> /* Second level operation type for BRANCH_ERET */
> - ARM_SPE_OP_BR_COND = 1 << 16,
> - ARM_SPE_OP_BR_INDIRECT = 1 << 17,
> - ARM_SPE_OP_BR_GCS = 1 << 18,
> - ARM_SPE_OP_BR_CR_BL = 1 << 19,
> - ARM_SPE_OP_BR_CR_RET = 1 << 20,
> - ARM_SPE_OP_BR_CR_NON_BL_RET = 1 << 21,
> + ARM_SPE_OP_BR_COND = 1 << 8,
I know it was already like this, but this should be multiple enums
stored in a union. Having an enum with duplicate values is a bit of an
abuse of the language. It takes more effort to understand it to
carefully make future modifications too.
With multiple enums you don't need to rely on a comment to describe
them, because that info would be in the name, like "enum
arm_spe_2nd_op_ldst", "enum arm_spe_2nd_op_mem" etc.
> + ARM_SPE_OP_BR_INDIRECT = 1 << 9,
> + ARM_SPE_OP_BR_GCS = 1 << 10,
> + ARM_SPE_OP_BR_CR_BL = 1 << 11,
> + ARM_SPE_OP_BR_CR_RET = 1 << 12,
> + ARM_SPE_OP_BR_CR_NON_BL_RET = 1 << 13,
> };
>
> enum arm_spe_common_data_source {
>
next prev parent reply other threads:[~2025-10-09 9:18 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-29 16:37 [PATCH 00/25] perf arm_spe: Extend operations Leo Yan
2025-09-29 16:37 ` [PATCH 01/25] perf arm_spe: Fix memset subclass in operation Leo Yan
2025-09-29 16:37 ` [PATCH 02/25] perf arm_spe: Unify operation naming Leo Yan
2025-09-29 16:37 ` [PATCH 03/25] perf arm_spe: Decode GCS operation Leo Yan
2025-09-29 16:37 ` [PATCH 04/25] perf arm_spe: Rename SPE_OP_PKT_IS_OTHER_SVE_OP macro Leo Yan
2025-09-29 16:37 ` [PATCH 05/25] perf arm_spe: Decode ASE and FP fields in other operation Leo Yan
2025-10-09 9:04 ` James Clark
2025-10-09 9:06 ` James Clark
2025-09-29 16:37 ` [PATCH 06/25] perf arm_spe: Decode SME data processing packet Leo Yan
2025-09-29 16:37 ` [PATCH 07/25] perf arm_spe: Remove unused operation types Leo Yan
2025-09-29 16:37 ` [PATCH 08/25] perf arm_spe: Consolidate " Leo Yan
2025-10-09 9:18 ` James Clark [this message]
2025-09-29 16:37 ` [PATCH 09/25] perf arm_spe: Introduce data processing macro for SVE operations Leo Yan
2025-09-29 16:37 ` [PATCH 10/25] perf arm_spe: Report register access in record Leo Yan
2025-09-29 16:37 ` [PATCH 11/25] perf arm_spe: Report MTE allocation tag " Leo Yan
2025-10-09 9:32 ` James Clark
2025-09-29 16:37 ` [PATCH 12/25] perf arm_spe: Report extended memory operations in records Leo Yan
2025-09-29 16:37 ` [PATCH 13/25] perf arm_spe: Report associated info for SVE / SME operations Leo Yan
2025-09-29 16:37 ` [PATCH 14/25] perf arm_spe: Report memset and memcpy in records Leo Yan
2025-10-09 9:33 ` James Clark
2025-09-29 16:37 ` [PATCH 15/25] perf arm_spe: Report GCS in record Leo Yan
2025-09-29 16:37 ` [PATCH 16/25] perf arm_spe: Expose SIMD information in other operations Leo Yan
2025-09-29 16:37 ` [PATCH 17/25] perf arm_spe: Expose length for SVE and SME operations Leo Yan
2025-10-09 9:45 ` James Clark
2025-09-29 16:37 ` [PATCH 18/25] perf arm_spe: Synthesize memory samples for SIMD operations Leo Yan
2025-09-29 16:37 ` [PATCH 19/25] perf/uapi: Extend data source fields Leo Yan
2025-10-09 10:00 ` James Clark
2025-09-29 16:37 ` [PATCH 20/25] perf mem: Print extended fields Leo Yan
2025-10-09 10:02 ` James Clark
2025-10-09 12:49 ` Arnaldo Carvalho de Melo
2025-09-29 16:37 ` [PATCH 21/25] perf arm_spe: Set extended fields in data source Leo Yan
2025-09-29 16:37 ` [PATCH 22/25] perf sort: Support sort ASE and SME Leo Yan
2025-10-09 10:05 ` James Clark
2025-09-29 16:37 ` [PATCH 23/25] perf sort: Sort disabled and full predicated flags Leo Yan
2025-09-29 16:38 ` [PATCH 24/25] perf report: Update document for SIMD flags Leo Yan
2025-09-29 16:38 ` [PATCH 25/25] perf arm_spe: Improve SIMD flags setting Leo Yan
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=6cd67290-a673-4375-b8b5-a8ed68b0ee72@linaro.org \
--to=james.clark@linaro.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=irogers@google.com \
--cc=jolsa@kernel.org \
--cc=leo.yan@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=namhyung@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 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).