1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2019 Hangzhou C-SKY Microsystems co.,ltd.
3 // Mapping of DWARF debug register numbers into register names.
6 #include <dwarf-regs.h>
8 #if defined(__CSKYABIV2__)
9 #define CSKY_MAX_REGS 73
10 const char *csky_dwarf_regs_table
[CSKY_MAX_REGS
] = {
12 "%a0", "%a1", "%a2", "%a3", "%regs0", "%regs1", "%regs2", "%regs3",
14 "%regs4", "%regs5", "%regs6", "%regs7", "%regs8", "%regs9", "%sp",
17 "%exregs0", "%exregs1", "%exregs2", "%exregs3", "%exregs4",
18 "%exregs5", "%exregs6", "%exregs7",
20 "%exregs8", "%exregs9", "%exregs10", "%exregs11", "%exregs12",
21 "%exregs13", "%exregs14", "%tls",
22 "%pc", NULL
, NULL
, NULL
, "%hi", "%lo", NULL
, NULL
,
23 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
24 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
25 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
26 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
30 #define CSKY_MAX_REGS 57
31 const char *csky_dwarf_regs_table
[CSKY_MAX_REGS
] = {
33 "%sp", "%regs9", "%a0", "%a1", "%a2", "%a3", "%regs0", "%regs1",
35 "%regs2", "%regs3", "%regs4", "%regs5", "%regs6", "%regs7", "%regs8",
37 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
38 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
39 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
40 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
41 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
46 const char *get_arch_regstr(unsigned int n
)
48 return (n
< CSKY_MAX_REGS
) ? csky_dwarf_regs_table
[n
] : NULL
;