Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf loongarch: Remove dwarf-regs.c

The file just provides the function get_arch_regstr, however, if in
the only caller get_dwarf_regstr EM_HOST is used for the EM_NONE case
the function can never be called. So remove as dead code. Tidy up the
EM_NONE cases for loongarch in dwarf-regs.c.

Reviewed-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Anup Patel <anup@brainfault.org>
Cc: Yang Jihong <yangjihong@bytedance.com>
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Albert Ou <aou@eecs.berkeley.edu>
Cc: Shenlin Liang <liangshenlin@eswincomputing.com>
Cc: Nick Terrell <terrelln@fb.com>
Cc: Guilherme Amadio <amadio@gentoo.org>
Cc: Steinar H. Gunderson <sesse@google.com>
Cc: Changbin Du <changbin.du@huawei.com>
Cc: Alexander Lobakin <aleksander.lobakin@intel.com>
Cc: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Cc: Huacai Chen <chenhuacai@kernel.org>
Cc: Guo Ren <guoren@kernel.org>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: Will Deacon <will@kernel.org>
Cc: James Clark <james.clark@linaro.org>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Chen Pei <cp0613@linux.alibaba.com>
Cc: Leo Yan <leo.yan@linux.dev>
Cc: Oliver Upton <oliver.upton@linux.dev>
Cc: Aditya Gupta <adityag@linux.ibm.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-riscv@lists.infradead.org
Cc: Bibo Mao <maobibo@loongson.cn>
Cc: John Garry <john.g.garry@oracle.com>
Cc: Atish Patra <atishp@rivosinc.com>
Cc: Dima Kogan <dima@secretsauce.net>
Cc: Paul Walmsley <paul.walmsley@sifive.com>
Cc: Dr. David Alan Gilbert <linux@treblig.org>
Cc: linux-csky@vger.kernel.org
Link: https://lore.kernel.org/r/20241108234606.429459-12-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>

authored by

Ian Rogers and committed by
Namhyung Kim
1d37bd83 d4a0c4f2

+4 -38
-1
tools/perf/arch/loongarch/util/Build
··· 1 1 perf-util-y += header.o 2 2 perf-util-y += perf_regs.o 3 3 4 - perf-util-$(CONFIG_LIBDW) += dwarf-regs.o 5 4 perf-util-$(CONFIG_LOCAL_LIBUNWIND) += unwind-libunwind.o 6 5 perf-util-$(CONFIG_LIBDW_DWARF_UNWIND) += unwind-libdw.o 7 6 perf-util-$(CONFIG_LIBTRACEEVENT) += kvm-stat.o
-34
tools/perf/arch/loongarch/util/dwarf-regs.c
··· 1 - // SPDX-License-Identifier: GPL-2.0 2 - /* 3 - * dwarf-regs.c : Mapping of DWARF debug register numbers into register names. 4 - * 5 - * Copyright (C) 2020-2023 Loongson Technology Corporation Limited 6 - */ 7 - 8 - #include <stdio.h> 9 - #include <errno.h> /* for EINVAL */ 10 - #include <string.h> /* for strcmp */ 11 - #include <dwarf-regs.h> 12 - 13 - struct pt_regs_dwarfnum { 14 - const char *name; 15 - unsigned int dwarfnum; 16 - }; 17 - 18 - static struct pt_regs_dwarfnum loongarch_gpr_table[] = { 19 - {"%r0", 0}, {"%r1", 1}, {"%r2", 2}, {"%r3", 3}, 20 - {"%r4", 4}, {"%r5", 5}, {"%r6", 6}, {"%r7", 7}, 21 - {"%r8", 8}, {"%r9", 9}, {"%r10", 10}, {"%r11", 11}, 22 - {"%r12", 12}, {"%r13", 13}, {"%r14", 14}, {"%r15", 15}, 23 - {"%r16", 16}, {"%r17", 17}, {"%r18", 18}, {"%r19", 19}, 24 - {"%r20", 20}, {"%r21", 21}, {"%r22", 22}, {"%r23", 23}, 25 - {"%r24", 24}, {"%r25", 25}, {"%r26", 26}, {"%r27", 27}, 26 - {"%r28", 28}, {"%r29", 29}, {"%r30", 30}, {"%r31", 31}, 27 - {NULL, 0} 28 - }; 29 - 30 - const char *get_arch_regstr(unsigned int n) 31 - { 32 - n %= 32; 33 - return loongarch_gpr_table[n].name; 34 - }
+2 -2
tools/perf/util/dwarf-regs.c
··· 32 32 const char *get_dwarf_regstr(unsigned int n, unsigned int machine, unsigned int flags) 33 33 { 34 34 #if EM_HOST == EM_X86_64 || EM_HOST == EM_386 || EM_HOST == EM_AARCH64 || EM_HOST == EM_ARM \ 35 - || EM_HOST == EM_CSKY 35 + || EM_HOST == EM_CSKY || EM_HOST == EM_LOONGARCH 36 36 if (machine == EM_NONE) { 37 37 /* Generic arch - use host arch */ 38 38 machine = EM_HOST; ··· 40 40 #endif 41 41 switch (machine) { 42 42 #if EM_HOST != EM_X86_64 && EM_HOST != EM_386 && EM_HOST != EM_AARCH64 && EM_HOST != EM_ARM \ 43 - && EM_HOST != EM_CSKY 43 + && EM_HOST != EM_CSKY && EM_HOST != EM_LOONGARCH 44 44 case EM_NONE: /* Generic arch - use host arch */ 45 45 return get_arch_regstr(n); 46 46 #endif
+2 -1
tools/perf/util/include/dwarf-regs.h
··· 89 89 #define DWARF_REG_FB 0xd3affb /* random number */ 90 90 91 91 #ifdef HAVE_LIBDW_SUPPORT 92 - #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && !defined(__arm__) 92 + #if !defined(__x86_64__) && !defined(__i386__) && !defined(__aarch64__) && !defined(__arm__) \ 93 + && !defined(__loongarch__) 93 94 const char *get_arch_regstr(unsigned int n); 94 95 #endif 95 96