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

Currently functions like get_dwarf_regnum only work with the host architecture. Carry the elf machine and flags in struct arch so that in disassembly these can be used to allow cross platform disassembly. 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-5-irogers@google.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
171 lines
3.7 KiB
C
171 lines
3.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
static int is_branch_cond(const char *cond)
|
|
{
|
|
if (cond[0] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'a' && cond[1] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'c' &&
|
|
(cond[1] == 'c' || cond[1] == 's') &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'e' &&
|
|
(cond[1] == '\0' ||
|
|
(cond[1] == 'q' && cond[2] == '\0')))
|
|
return 1;
|
|
|
|
if (cond[0] == 'g' &&
|
|
(cond[1] == '\0' ||
|
|
(cond[1] == 't' && cond[2] == '\0') ||
|
|
(cond[1] == 'e' && cond[2] == '\0') ||
|
|
(cond[1] == 'e' && cond[2] == 'u' && cond[3] == '\0')))
|
|
return 1;
|
|
|
|
if (cond[0] == 'l' &&
|
|
(cond[1] == '\0' ||
|
|
(cond[1] == 't' && cond[2] == '\0') ||
|
|
(cond[1] == 'u' && cond[2] == '\0') ||
|
|
(cond[1] == 'e' && cond[2] == '\0') ||
|
|
(cond[1] == 'e' && cond[2] == 'u' && cond[3] == '\0')))
|
|
return 1;
|
|
|
|
if (cond[0] == 'n' &&
|
|
(cond[1] == '\0' ||
|
|
(cond[1] == 'e' && cond[2] == '\0') ||
|
|
(cond[1] == 'z' && cond[2] == '\0') ||
|
|
(cond[1] == 'e' && cond[2] == 'g' && cond[3] == '\0')))
|
|
return 1;
|
|
|
|
if (cond[0] == 'b' &&
|
|
cond[1] == 'p' &&
|
|
cond[2] == 'o' &&
|
|
cond[3] == 's' &&
|
|
cond[4] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'v' &&
|
|
(cond[1] == 'c' || cond[1] == 's') &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'b' &&
|
|
cond[1] == 'z' &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int is_branch_reg_cond(const char *cond)
|
|
{
|
|
if ((cond[0] == 'n' || cond[0] == 'l') &&
|
|
cond[1] == 'z' &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'z' &&
|
|
cond[1] == '\0')
|
|
return 1;
|
|
|
|
if ((cond[0] == 'g' || cond[0] == 'l') &&
|
|
cond[1] == 'e' &&
|
|
cond[2] == 'z' &&
|
|
cond[3] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'g' &&
|
|
cond[1] == 'z' &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int is_branch_float_cond(const char *cond)
|
|
{
|
|
if (cond[0] == '\0')
|
|
return 1;
|
|
|
|
if ((cond[0] == 'a' || cond[0] == 'e' ||
|
|
cond[0] == 'z' || cond[0] == 'g' ||
|
|
cond[0] == 'l' || cond[0] == 'n' ||
|
|
cond[0] == 'o' || cond[0] == 'u') &&
|
|
cond[1] == '\0')
|
|
return 1;
|
|
|
|
if (((cond[0] == 'g' && cond[1] == 'e') ||
|
|
(cond[0] == 'l' && (cond[1] == 'e' ||
|
|
cond[1] == 'g')) ||
|
|
(cond[0] == 'n' && (cond[1] == 'e' ||
|
|
cond[1] == 'z')) ||
|
|
(cond[0] == 'u' && (cond[1] == 'e' ||
|
|
cond[1] == 'g' ||
|
|
cond[1] == 'l'))) &&
|
|
cond[2] == '\0')
|
|
return 1;
|
|
|
|
if (cond[0] == 'u' &&
|
|
(cond[1] == 'g' || cond[1] == 'l') &&
|
|
cond[2] == 'e' &&
|
|
cond[3] == '\0')
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct ins_ops *sparc__associate_instruction_ops(struct arch *arch, const char *name)
|
|
{
|
|
struct ins_ops *ops = NULL;
|
|
|
|
if (!strcmp(name, "call") ||
|
|
!strcmp(name, "jmp") ||
|
|
!strcmp(name, "jmpl")) {
|
|
ops = &call_ops;
|
|
} else if (!strcmp(name, "ret") ||
|
|
!strcmp(name, "retl") ||
|
|
!strcmp(name, "return")) {
|
|
ops = &ret_ops;
|
|
} else if (!strcmp(name, "mov")) {
|
|
ops = &mov_ops;
|
|
} else {
|
|
if (name[0] == 'c' &&
|
|
(name[1] == 'w' || name[1] == 'x'))
|
|
name += 2;
|
|
|
|
if (name[0] == 'b') {
|
|
const char *cond = name + 1;
|
|
|
|
if (cond[0] == 'r') {
|
|
if (is_branch_reg_cond(cond + 1))
|
|
ops = &jump_ops;
|
|
} else if (is_branch_cond(cond)) {
|
|
ops = &jump_ops;
|
|
}
|
|
} else if (name[0] == 'f' && name[1] == 'b') {
|
|
if (is_branch_float_cond(name + 2))
|
|
ops = &jump_ops;
|
|
}
|
|
}
|
|
|
|
if (ops)
|
|
arch__associate_ins_ops(arch, name, ops);
|
|
|
|
return ops;
|
|
}
|
|
|
|
static int sparc__annotate_init(struct arch *arch, char *cpuid __maybe_unused)
|
|
{
|
|
if (!arch->initialized) {
|
|
arch->initialized = true;
|
|
arch->associate_instruction_ops = sparc__associate_instruction_ops;
|
|
arch->objdump.comment_char = '#';
|
|
arch->e_machine = EM_SPARC;
|
|
arch->e_flags = 0;
|
|
}
|
|
|
|
return 0;
|
|
}
|