mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Move arch/powerpc/util/dwarf-regs.c to util/dwarf-regs-powerpc.c and compile in unconditionally. get_arch_regstr is redundant when EM_NONE is treated as EM_HOST so remove and update dwarf-regs.c conditions. Make get_powerpc_regs unconditionally available whwn libdw is. 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-14-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Mapping of DWARF debug register numbers into register names.
|
|
*
|
|
* Copyright (C) 2010 Ian Munsie, IBM Corporation.
|
|
*/
|
|
|
|
#include <dwarf-regs.h>
|
|
|
|
#define PPC_OP(op) (((op) >> 26) & 0x3F)
|
|
#define PPC_RA(a) (((a) >> 16) & 0x1f)
|
|
#define PPC_RT(t) (((t) >> 21) & 0x1f)
|
|
#define PPC_RB(b) (((b) >> 11) & 0x1f)
|
|
#define PPC_D(D) ((D) & 0xfffe)
|
|
#define PPC_DS(DS) ((DS) & 0xfffc)
|
|
#define OP_LD 58
|
|
#define OP_STD 62
|
|
|
|
static int get_source_reg(u32 raw_insn)
|
|
{
|
|
return PPC_RA(raw_insn);
|
|
}
|
|
|
|
static int get_target_reg(u32 raw_insn)
|
|
{
|
|
return PPC_RT(raw_insn);
|
|
}
|
|
|
|
static int get_offset_opcode(u32 raw_insn)
|
|
{
|
|
int opcode = PPC_OP(raw_insn);
|
|
|
|
/* DS- form */
|
|
if ((opcode == OP_LD) || (opcode == OP_STD))
|
|
return PPC_DS(raw_insn);
|
|
else
|
|
return PPC_D(raw_insn);
|
|
}
|
|
|
|
/*
|
|
* Fills the required fields for op_loc depending on if it
|
|
* is a source or target.
|
|
* D form: ins RT,D(RA) -> src_reg1 = RA, offset = D, dst_reg1 = RT
|
|
* DS form: ins RT,DS(RA) -> src_reg1 = RA, offset = DS, dst_reg1 = RT
|
|
* X form: ins RT,RA,RB -> src_reg1 = RA, src_reg2 = RB, dst_reg1 = RT
|
|
*/
|
|
void get_powerpc_regs(u32 raw_insn, int is_source,
|
|
struct annotated_op_loc *op_loc)
|
|
{
|
|
if (is_source)
|
|
op_loc->reg1 = get_source_reg(raw_insn);
|
|
else
|
|
op_loc->reg1 = get_target_reg(raw_insn);
|
|
|
|
if (op_loc->multi_regs)
|
|
op_loc->reg2 = PPC_RB(raw_insn);
|
|
|
|
/* TODO: Implement offset handling for X Form */
|
|
if ((op_loc->mem_ref) && (PPC_OP(raw_insn) != 31))
|
|
op_loc->offset = get_offset_opcode(raw_insn);
|
|
}
|