]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
perf disasm: Constify use of 'struct ins_op'
authorIan Rogers <irogers@google.com>
Thu, 22 Jan 2026 21:35:09 +0000 (13:35 -0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 23 Jan 2026 19:58:38 +0000 (16:58 -0300)
The 'struct ins_op' holds variables to function pointers that are read
but not written. Change uses to be for a "const struct ins_op *"
version to capture this immutability.

Reviewed-by: James Clark <james.clark@linaro.org>
Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Aditya Bodkhe <aditya.b1@linux.ibm.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Albert Ou <aou@eecs.berkeley.edu>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexandre Ghiti <alex@ghiti.fr>
Cc: Athira Rajeev <atrajeev@linux.ibm.com>
Cc: Bill Wendling <morbo@google.com>
Cc: Dr. David Alan Gilbert <linux@treblig.org>
Cc: Guo Ren <guoren@kernel.org>
Cc: Howard Chu <howardchu95@gmail.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: John Garry <john.g.garry@oracle.com>
Cc: Julia Lawall <Julia.Lawall@inria.fr>
Cc: Justin Stitt <justinstitt@google.com>
Cc: Krzysztof Ɓopatowski <krzysztof.m.lopatowski@gmail.com>
Cc: Leo Yan <leo.yan@linux.dev>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <nick.desaulniers+lkml@gmail.com>
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Paul Walmsley <pjw@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sergei Trofimovich <slyich@gmail.com>
Cc: Shimin Guo <shimin.guo@skydio.com>
Cc: Suchit Karunakaran <suchitkarunakaran@gmail.com>
Cc: Thomas Falcon <thomas.falcon@intel.com>
Cc: Tianyou Li <tianyou.li@intel.com>
Cc: Will Deacon <will@kernel.org>
Cc: Zecheng Li <zecheng@google.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/arch/arm/annotate/instructions.c
tools/perf/arch/arm64/annotate/instructions.c
tools/perf/arch/csky/annotate/instructions.c
tools/perf/arch/loongarch/annotate/instructions.c
tools/perf/arch/mips/annotate/instructions.c
tools/perf/arch/powerpc/annotate/instructions.c
tools/perf/arch/riscv64/annotate/instructions.c
tools/perf/arch/s390/annotate/instructions.c
tools/perf/arch/sparc/annotate/instructions.c
tools/perf/util/disasm.c
tools/perf/util/disasm.h

index 5e667b0f55126b6f6570317cbe0f1a1acdeb67e8..b997d127fedd6ae13aba8eed12d0f5b59fab2dae 100644 (file)
@@ -11,10 +11,10 @@ struct arm_annotate {
                jump_insn;
 };
 
-static struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name)
+static const struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name)
 {
        struct arm_annotate *arm = arch->priv;
-       struct ins_ops *ops;
+       const struct ins_ops *ops;
        regmatch_t match[2];
 
        if (!regexec(&arm->call_insn, name, 2, match, 0))
index 5099fa36180d1717cd68d28836c110003acd4f04..363af2f551221e52d06c8bc314cb04f8452d29f6 100644 (file)
@@ -63,15 +63,15 @@ out_free_source:
 static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
                          struct ins_operands *ops, int max_ins_name);
 
-static struct ins_ops arm64_mov_ops = {
+static const struct ins_ops arm64_mov_ops = {
        .parse     = arm64_mov__parse,
        .scnprintf = mov__scnprintf,
 };
 
-static struct ins_ops *arm64__associate_instruction_ops(struct arch *arch, const char *name)
+static const struct ins_ops *arm64__associate_instruction_ops(struct arch *arch, const char *name)
 {
        struct arm64_annotate *arm = arch->priv;
-       struct ins_ops *ops;
+       const struct ins_ops *ops;
        regmatch_t match[2];
 
        if (!regexec(&arm->jump_insn, name, 2, match, 0))
index 14270311d215ef7e523f4c6c47f5477c80d23dce..4a55c84a320a67650b5ac05ac79758d0327119f9 100644 (file)
@@ -3,10 +3,10 @@
 
 #include <linux/compiler.h>
 
-static struct ins_ops *csky__associate_ins_ops(struct arch *arch,
-                                              const char *name)
+static const struct ins_ops *csky__associate_ins_ops(struct arch *arch,
+                                                    const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        /* catch all kind of jumps */
        if (!strcmp(name, "bt") ||
index 5ebfe629ea6876f22867f7886c515cc468bd6334..5010d5d583758a5298c2ab9f33f76cf6e4e237a4 100644 (file)
@@ -51,7 +51,7 @@ static int loongarch_call__parse(const struct arch *arch, struct ins_operands *o
        return 0;
 }
 
-static struct ins_ops loongarch_call_ops = {
+static const struct ins_ops loongarch_call_ops = {
        .parse     = loongarch_call__parse,
        .scnprintf = call__scnprintf,
 };
@@ -100,15 +100,15 @@ static int loongarch_jump__parse(const struct arch *arch, struct ins_operands *o
        return 0;
 }
 
-static struct ins_ops loongarch_jump_ops = {
+static const struct ins_ops loongarch_jump_ops = {
        .parse     = loongarch_jump__parse,
        .scnprintf = jump__scnprintf,
 };
 
 static
-struct ins_ops *loongarch__associate_ins_ops(struct arch *arch, const char *name)
+const struct ins_ops *loongarch__associate_ins_ops(struct arch *arch, const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        if (!strcmp(name, "bl"))
                ops = &loongarch_call_ops;
index b50b46c613d660149ab9e85492ca762696597b9e..0fbe0a7df95a19c2276dc840af42f7641bd28d56 100644 (file)
@@ -1,9 +1,9 @@
 // SPDX-License-Identifier: GPL-2.0
 
 static
-struct ins_ops *mips__associate_ins_ops(struct arch *arch, const char *name)
+const struct ins_ops *mips__associate_ins_ops(struct arch *arch, const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        if (!strncmp(name, "bal", 3) ||
            !strncmp(name, "bgezal", 6) ||
index ca567cfdcbdb4dda11d8aa3fda9a0a6dd5cf44c1..d1be55425e35b8a812c3f0d54836b35dc7567157 100644 (file)
@@ -1,10 +1,10 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/compiler.h>
 
-static struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, const char *name)
+static const struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, const char *name)
 {
        int i;
-       struct ins_ops *ops;
+       const struct ins_ops *ops;
 
        /*
         * - Interested only if instruction starts with 'b'.
@@ -189,7 +189,7 @@ static int cmp_offset(const void *a, const void *b)
        return (val1->value - val2->value);
 }
 
-static struct ins_ops *check_ppc_insn(struct disasm_line *dl)
+static const struct ins_ops *check_ppc_insn(struct disasm_line *dl)
 {
        int raw_insn = dl->raw.raw_insn;
        int opcode = PPC_OP(raw_insn);
index 55cf911633f8bd4ebed5e6bb076a03f0a014c196..a34798864fabe5778f119443517cc92dc1b7b964 100644 (file)
@@ -1,9 +1,9 @@
 // SPDX-License-Identifier: GPL-2.0
 
 static
-struct ins_ops *riscv64__associate_ins_ops(struct arch *arch, const char *name)
+const struct ins_ops *riscv64__associate_ins_ops(struct arch *arch, const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        if (!strncmp(name, "jal", 3) ||
            !strncmp(name, "jr", 2) ||
index 37c1b62641d8602af47060bb6d4b70f857df3d27..1b22e6276e7d323454a743107d0f3eb91ba9c298 100644 (file)
@@ -49,7 +49,7 @@ static int s390_call__parse(const struct arch *arch, struct ins_operands *ops,
        return 0;
 }
 
-static struct ins_ops s390_call_ops = {
+static const struct ins_ops s390_call_ops = {
        .parse     = s390_call__parse,
        .scnprintf = call__scnprintf,
 };
@@ -103,14 +103,14 @@ out_free_source:
 }
 
 
-static struct ins_ops s390_mov_ops = {
+static const struct ins_ops s390_mov_ops = {
        .parse     = s390_mov__parse,
        .scnprintf = mov__scnprintf,
 };
 
-static struct ins_ops *s390__associate_ins_ops(struct arch *arch, const char *name)
+static const struct ins_ops *s390__associate_ins_ops(struct arch *arch, const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        /* catch all kind of jumps */
        if (strchr(name, 'j') ||
index 68c31580ccfc44d53619ab4147ade2123b726e6a..a08d8734c883c1c07f40e253e99af8892ac08267 100644 (file)
@@ -117,9 +117,9 @@ static int is_branch_float_cond(const char *cond)
        return 0;
 }
 
-static struct ins_ops *sparc__associate_instruction_ops(struct arch *arch, const char *name)
+static const struct ins_ops *sparc__associate_instruction_ops(struct arch *arch, const char *name)
 {
-       struct ins_ops *ops = NULL;
+       const struct ins_ops *ops = NULL;
 
        if (!strcmp(name, "call") ||
            !strcmp(name, "jmp") ||
index d92c0424e8fc48bd390dab702048d6571b5dbf08..9bc9b1de98db755abde4eacdeb64d7ca13ed8d80 100644 (file)
 static regex_t  file_lineno;
 
 /* These can be referred from the arch-dependent code */
-static struct ins_ops call_ops;
-static struct ins_ops dec_ops;
-static struct ins_ops jump_ops;
-static struct ins_ops mov_ops;
-static struct ins_ops nop_ops;
-static struct ins_ops lock_ops;
-static struct ins_ops ret_ops;
-static struct ins_ops load_store_ops;
-static struct ins_ops arithmetic_ops;
+static const struct ins_ops call_ops;
+static const struct ins_ops dec_ops;
+static const struct ins_ops jump_ops;
+static const struct ins_ops mov_ops;
+static const struct ins_ops nop_ops;
+static const struct ins_ops lock_ops;
+static const struct ins_ops ret_ops;
+static const struct ins_ops load_store_ops;
+static const struct ins_ops arithmetic_ops;
 
 static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
                           struct ins_operands *ops, int max_ins_name);
@@ -85,7 +85,7 @@ grow_from_non_allocated_table:
        goto out_update_instructions;
 }
 
-static int arch__associate_ins_ops(struct arch* arch, const char *name, struct ins_ops *ops)
+static int arch__associate_ins_ops(struct arch *arch, const char *name, const struct ins_ops *ops)
 {
        struct ins *ins;
 
@@ -334,7 +334,7 @@ static int call__scnprintf(struct ins *ins, char *bf, size_t size,
        return scnprintf(bf, size, "%-*s *%" PRIx64, max_ins_name, ins->name, ops->target.addr);
 }
 
-static struct ins_ops call_ops = {
+static const struct ins_ops call_ops = {
        .parse     = call__parse,
        .scnprintf = call__scnprintf,
 };
@@ -487,7 +487,7 @@ static void jump__delete(struct ins_operands *ops __maybe_unused)
         */
 }
 
-static struct ins_ops jump_ops = {
+static const struct ins_ops jump_ops = {
        .free      = jump__delete,
        .parse     = jump__parse,
        .scnprintf = jump__scnprintf,
@@ -579,7 +579,7 @@ static void lock__delete(struct ins_operands *ops)
        zfree(&ops->target.name);
 }
 
-static struct ins_ops lock_ops = {
+static const struct ins_ops lock_ops = {
        .free      = lock__delete,
        .parse     = lock__parse,
        .scnprintf = lock__scnprintf,
@@ -688,7 +688,7 @@ static int mov__scnprintf(struct ins *ins, char *bf, size_t size,
                         ops->target.name ?: ops->target.raw);
 }
 
-static struct ins_ops mov_ops = {
+static const struct ins_ops mov_ops = {
        .parse     = mov__parse,
        .scnprintf = mov__scnprintf,
 };
@@ -738,7 +738,7 @@ static int arithmetic__parse(const struct arch *arch __maybe_unused, struct ins_
        return 0;
 }
 
-static struct ins_ops arithmetic_ops = {
+static const struct ins_ops arithmetic_ops = {
        .parse     = arithmetic__parse,
        .scnprintf = arithmetic__scnprintf,
 };
@@ -772,7 +772,7 @@ static int load_store__parse(const struct arch *arch __maybe_unused, struct ins_
        return 0;
 }
 
-static struct ins_ops load_store_ops = {
+static const struct ins_ops load_store_ops = {
        .parse     = load_store__parse,
        .scnprintf = load_store__scnprintf,
 };
@@ -813,7 +813,7 @@ static int dec__scnprintf(struct ins *ins, char *bf, size_t size,
                         ops->target.name ?: ops->target.raw);
 }
 
-static struct ins_ops dec_ops = {
+static const struct ins_ops dec_ops = {
        .parse     = dec__parse,
        .scnprintf = dec__scnprintf,
 };
@@ -824,11 +824,11 @@ static int nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size,
        return scnprintf(bf, size, "%-*s", max_ins_name, "nop");
 }
 
-static struct ins_ops nop_ops = {
+static const struct ins_ops nop_ops = {
        .scnprintf = nop__scnprintf,
 };
 
-static struct ins_ops ret_ops = {
+static const struct ins_ops ret_ops = {
        .scnprintf = ins__raw_scnprintf,
 };
 
@@ -869,7 +869,7 @@ static void ins__sort(struct arch *arch)
        qsort(arch->instructions, nmemb, sizeof(struct ins), ins__cmp);
 }
 
-static struct ins_ops *__ins__find(const struct arch *arch, const char *name,
+static const struct ins_ops *__ins__find(const struct arch *arch, const char *name,
                                     struct disasm_line *dl)
 {
        struct ins *ins;
@@ -880,7 +880,7 @@ static struct ins_ops *__ins__find(const struct arch *arch, const char *name,
                 * For powerpc, identify the instruction ops
                 * from the opcode using raw_insn.
                 */
-               struct ins_ops *ops;
+               const struct ins_ops *ops;
 
                ops = check_ppc_insn(dl);
                if (ops)
@@ -916,9 +916,9 @@ static struct ins_ops *__ins__find(const struct arch *arch, const char *name,
        return ins ? ins->ops : NULL;
 }
 
-struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl)
+const struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl)
 {
-       struct ins_ops *ops = __ins__find(arch, name, dl);
+       const struct ins_ops *ops = __ins__find(arch, name, dl);
 
        if (!ops && arch->associate_instruction_ops)
                ops = arch->associate_instruction_ops((struct arch *)arch, name);
index 273a9c906514caa2f8c03c523488f6e741730ff6..dc5233f2a773e8a78afd7c44af93967fed3ef4d8 100644 (file)
@@ -22,7 +22,7 @@ struct arch {
        struct ins      *instructions;
        size_t          nr_instructions;
        size_t          nr_instructions_allocated;
-       struct ins_ops  *(*associate_instruction_ops)(struct arch *arch, const char *name);
+       const struct ins_ops  *(*associate_instruction_ops)(struct arch *arch, const char *name);
        bool            sorted_instructions;
        bool            initialized;
        const char      *insn_suffix;
@@ -52,7 +52,7 @@ struct arch {
 
 struct ins {
        const char     *name;
-       struct ins_ops *ops;
+       const struct ins_ops *ops;
 };
 
 struct ins_operands {
@@ -108,7 +108,7 @@ struct annotate_args {
 const struct arch *arch__find(const char *name);
 bool arch__is(const struct arch *arch, const char *name);
 
-struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl);
+const struct ins_ops *ins__find(const struct arch *arch, const char *name, struct disasm_line *dl);
 
 bool ins__is_call(const struct ins *ins);
 bool ins__is_jump(const struct ins *ins);