1 /* Target-dependent code for GNU/Linux on CSKY.
3 Copyright (C) 2012-2023 Free Software Foundation, Inc.
5 Contributed by C-SKY Microsystems and Mentor Graphics.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "glibc-tdep.h"
25 #include "linux-tdep.h"
27 #include "solib-svr4.h"
29 #include "trad-frame.h"
30 #include "tramp-frame.h"
31 #include "csky-tdep.h"
33 /* Functions, definitions, and data structures for C-Sky core file debug. */
35 /* General regset pc, r1, r0, psr, r2-r31 for CK810. */
36 #define SIZEOF_CSKY_GREGSET 34*4
37 /* Float regset fesr fsr fr0-fr31 for CK810. */
38 #define SIZEOF_CSKY_FREGSET 34*4
39 /* Float regset vr0~vr15 fr15~fr31, reserved for CK810 when kernel 4.x. */
40 #define SIZEOF_CSKY_FREGSET_K4X 400
42 /* Offset mapping table from core_section to regcache of general
43 registers for ck810. */
44 static const int csky_gregset_offset
[] =
46 72, 1, 0, 89, 2, /* pc, r1, r0, psr, r2. */
47 3, 4, 5, 6, 7, /* r3 ~ r32. */
55 /* Offset mapping table from core_section to regcache of float
56 registers for ck810. */
58 static const int csky_fregset_offset
[] =
60 122, 123, 40, 41, 42, /* fcr, fesr, fr0 ~ fr2. */
61 43, 44, 45, 46, 47, /* fr3 ~ fr15. */
66 /* Implement the supply_regset hook for GP registers in core files. */
69 csky_supply_gregset (const struct regset
*regset
,
70 struct regcache
*regcache
, int regnum
,
71 const void *regs
, size_t len
)
74 const gdb_byte
*gregs
= (const gdb_byte
*) regs
;
76 gdb_assert (len
>= SIZEOF_CSKY_GREGSET
);
77 gregset_num
= ARRAY_SIZE (csky_gregset_offset
);
79 for (i
= 0; i
< gregset_num
; i
++)
81 if ((regnum
== csky_gregset_offset
[i
] || regnum
== -1)
82 && csky_gregset_offset
[i
] != -1)
83 regcache
->raw_supply (csky_gregset_offset
[i
], gregs
+ 4 * i
);
87 /* Implement the collect_regset hook for GP registers in core files. */
90 csky_collect_gregset (const struct regset
*regset
,
91 const struct regcache
*regcache
,
92 int regnum
, void *gregs_buf
, size_t len
)
94 int regno
, gregset_num
;
95 gdb_byte
*gregs
= (gdb_byte
*) gregs_buf
;
97 gdb_assert (len
>= SIZEOF_CSKY_GREGSET
);
98 gregset_num
= ARRAY_SIZE (csky_gregset_offset
);
100 for (regno
= 0; regno
< gregset_num
; regno
++)
102 if ((regnum
== csky_gregset_offset
[regno
] || regnum
== -1)
103 && csky_gregset_offset
[regno
] != -1)
104 regcache
->raw_collect (regno
,
105 gregs
+ 4 + csky_gregset_offset
[regno
]);
109 /* Implement the supply_regset hook for FP registers in core files. */
112 csky_supply_fregset (const struct regset
*regset
,
113 struct regcache
*regcache
, int regnum
,
114 const void *regs
, size_t len
)
118 struct gdbarch
*gdbarch
= regcache
->arch ();
119 const gdb_byte
*fregs
= (const gdb_byte
*) regs
;
120 int fregset_num
= ARRAY_SIZE (csky_fregset_offset
);
122 gdb_assert (len
>= SIZEOF_CSKY_FREGSET
);
123 if (len
== SIZEOF_CSKY_FREGSET
)
125 for (i
= 0; i
< fregset_num
; i
++)
127 if ((regnum
== csky_fregset_offset
[i
] || regnum
== -1)
128 && csky_fregset_offset
[i
] != -1)
130 int num
= csky_fregset_offset
[i
];
131 offset
+= register_size (gdbarch
, num
);
132 regcache
->raw_supply (csky_fregset_offset
[i
], fregs
+ offset
);
136 else if (len
== SIZEOF_CSKY_FREGSET_K4X
)
138 /* When kernel version >= 4.x, .reg2 size will be 400.
140 unsigned long vr[96];
144 unsigned long reserved;
146 VR[96] means: (vr0~vr15) + (fr16~fr31), each Vector register is
147 128-bits, each Float register is 64 bits, the total size is
150 In addition, for fr0~fr15, each FRx is the lower 64 bits of the
151 corresponding VRx. So fr0~fr15 and vr0~vr15 regisetrs use the same
153 int fcr_regno
[] = {122, 123, 121}; /* fcr, fesr, fid. */
155 /* Supply vr0~vr15. */
156 for (i
= 0; i
< 16; i
++)
158 if (*gdbarch_register_name (gdbarch
, (CSKY_VR0_REGNUM
+ i
)) != '\0')
161 regcache
->raw_supply (CSKY_VR0_REGNUM
+ i
, fregs
+ offset
);
164 /* Supply fr0~fr15. */
165 for (i
= 0; i
< 16; i
++)
167 if (*gdbarch_register_name (gdbarch
, (CSKY_FR0_REGNUM
+ i
)) != '\0')
170 regcache
->raw_supply (CSKY_FR0_REGNUM
+ i
, fregs
+ offset
);
173 /* Supply fr16~fr31. */
174 for (i
= 0; i
< 16; i
++)
176 if (*gdbarch_register_name (gdbarch
, (CSKY_FR16_REGNUM
+ i
)) != '\0')
178 offset
= (16 * 16) + (8 * i
);
179 regcache
->raw_supply (CSKY_FR16_REGNUM
+ i
, fregs
+ offset
);
182 /* Supply fcr, fesr, fid. */
183 for (i
= 0; i
< 3; i
++)
185 if (*gdbarch_register_name (gdbarch
, fcr_regno
[i
]) != '\0')
187 offset
= (16 * 16) + (16 * 8) + (4 * i
);
188 regcache
->raw_supply (fcr_regno
[i
], fregs
+ offset
);
194 warning (_("Unknow size %s of section .reg2, can not get value"
195 " of float registers."), pulongest (len
));
199 /* Implement the collect_regset hook for FP registers in core files. */
202 csky_collect_fregset (const struct regset
*regset
,
203 const struct regcache
*regcache
,
204 int regnum
, void *fregs_buf
, size_t len
)
207 struct gdbarch
*gdbarch
= regcache
->arch ();
208 gdb_byte
*fregs
= (gdb_byte
*) fregs_buf
;
209 int fregset_num
= ARRAY_SIZE (csky_fregset_offset
);
212 gdb_assert (len
>= SIZEOF_CSKY_FREGSET
);
213 if (len
== SIZEOF_CSKY_FREGSET
)
215 for (regno
= 0; regno
< fregset_num
; regno
++)
217 if ((regnum
== csky_fregset_offset
[regno
] || regnum
== -1)
218 && csky_fregset_offset
[regno
] != -1)
220 offset
+= register_size (gdbarch
, csky_fregset_offset
[regno
]);
221 regcache
->raw_collect (regno
, fregs
+ offset
);
225 else if (len
== SIZEOF_CSKY_FREGSET_K4X
)
227 /* When kernel version >= 4.x, .reg2 size will be 400.
229 unsigned long vr[96];
233 unsigned long reserved;
235 VR[96] means: (vr0~vr15) + (fr16~fr31), each Vector register is$
236 128-bits, each Float register is 64 bits, the total size is$
239 In addition, for fr0~fr15, each FRx is the lower 64 bits of the$
240 corresponding VRx. So fr0~fr15 and vr0~vr15 regisetrs use the same$
243 int fcr_regno
[] = {122, 123, 121}; /* fcr, fesr, fid. */
245 /* Supply vr0~vr15. */
246 for (i
= 0; i
< 16; i
++)
248 if (*gdbarch_register_name (gdbarch
, (CSKY_VR0_REGNUM
+ i
)) != '\0')
251 regcache
->raw_collect (CSKY_VR0_REGNUM
+ i
, fregs
+ offset
);
254 /* Supply fr16~fr31. */
255 for (i
= 0; i
< 16; i
++)
257 if (*gdbarch_register_name (gdbarch
, (CSKY_FR16_REGNUM
+ i
)) != '\0')
259 offset
= (16 * 16) + (8 * i
);
260 regcache
->raw_collect (CSKY_FR16_REGNUM
+ i
, fregs
+ offset
);
263 /* Supply fcr, fesr, fid. */
264 for (i
= 0; i
< 3; i
++)
266 if (*gdbarch_register_name (gdbarch
, fcr_regno
[i
]) != '\0')
268 offset
= (16 * 16) + (16 * 8) + (4 * i
);
269 regcache
->raw_collect (fcr_regno
[i
], fregs
+ offset
);
275 warning (_("Unknow size %s of section .reg2, will not set value"
276 " of float registers."), pulongest (len
));
280 static const struct regset csky_regset_general
=
287 static const struct regset csky_regset_float
=
291 csky_collect_fregset
,
292 /* Allow .reg2 to have a different size, and the size of .reg2 should
293 always be bigger than SIZEOF_CSKY_FREGSET. */
297 /* Iterate over core file register note sections. */
300 csky_linux_iterate_over_regset_sections (struct gdbarch
*gdbarch
,
301 iterate_over_regset_sections_cb
*cb
,
303 const struct regcache
*regcache
)
305 cb (".reg", sizeof (csky_gregset_offset
), sizeof (csky_gregset_offset
),
306 &csky_regset_general
, NULL
, cb_data
);
307 cb (".reg2", sizeof (csky_fregset_offset
), sizeof (csky_fregset_offset
),
308 &csky_regset_float
, NULL
, cb_data
);
312 csky_linux_rt_sigreturn_init (const struct tramp_frame
*self
,
313 frame_info_ptr this_frame
,
314 struct trad_frame_cache
*this_cache
,
318 CORE_ADDR sp
= get_frame_register_unsigned (this_frame
, 14);
320 CORE_ADDR base
= sp
+ CSKY_SIGINFO_OFFSET
+ CSKY_SIGINFO_SIZE
321 + CSKY_UCONTEXT_SIGCONTEXT
322 + CSKY_SIGCONTEXT_SC_USP
323 + CSKY_SIGCONTEXT_SC_A0
;
325 /* Set addrs of R0 ~ R13. */
326 for (i
= 0; i
< 14; i
++)
327 trad_frame_set_reg_addr (this_cache
, i
, base
+ i
* 4);
329 /* Set addrs of SP(R14) and R15. */
330 trad_frame_set_reg_addr (this_cache
, 14, base
- 4);
331 trad_frame_set_reg_addr (this_cache
, 15, base
+ 4 * 14);
333 /* Set addrs of R16 ~ R31. */
334 for (i
= 15; i
< 31; i
++)
335 trad_frame_set_reg_addr (this_cache
, i
, base
+ i
* 4);
337 /* Set addrs of PSR and PC. */
338 trad_frame_set_reg_addr (this_cache
, 89, base
+ 4 * 33);
339 trad_frame_set_reg_addr (this_cache
, 72, base
+ 4 * 34);
341 trad_frame_set_id (this_cache
, frame_id_build (sp
, func
));
344 static struct tramp_frame
345 csky_linux_rt_sigreturn_tramp_frame
= {
349 { CSKY_MOVI_R7_173
, ULONGEST_MAX
},
350 { CSKY_TRAP_0
, ULONGEST_MAX
},
351 { TRAMP_SENTINEL_INSN
}
353 csky_linux_rt_sigreturn_init
357 csky_linux_rt_sigreturn_init_pt_regs (const struct tramp_frame
*self
,
358 frame_info_ptr this_frame
,
359 struct trad_frame_cache
*this_cache
,
363 CORE_ADDR sp
= get_frame_register_unsigned (this_frame
, CSKY_SP_REGNUM
);
365 CORE_ADDR base
= sp
+ CSKY_SIGINFO_OFFSET
+ CSKY_SIGINFO_SIZE
366 + CSKY_UCONTEXT_SIGCONTEXT
367 + CSKY_SIGCONTEXT_PT_REGS_TLS
;
370 trad_frame_set_reg_addr (this_cache
, CSKY_R15_REGNUM
, base
);
373 trad_frame_set_reg_addr (this_cache
, CSKY_PC_REGNUM
, base
+ 4);
376 trad_frame_set_reg_addr (this_cache
, CSKY_CR0_REGNUM
, base
+ 8);
379 trad_frame_set_reg_addr (this_cache
, CSKY_SP_REGNUM
, base
+ 12);
381 /* Set addrs of R0 ~ R13. */
382 for (i
= 0; i
< 14; i
++)
383 trad_frame_set_reg_addr (this_cache
, i
, base
+ i
* 4 + 20);
385 trad_frame_set_id (this_cache
, frame_id_build (sp
, func
));
389 static struct tramp_frame
390 csky_linux_rt_sigreturn_tramp_frame_kernel_4x
= {
394 { CSKY_MOVI_R7_139
, ULONGEST_MAX
},
395 { CSKY_TRAP_0
, ULONGEST_MAX
},
396 { TRAMP_SENTINEL_INSN
}
398 csky_linux_rt_sigreturn_init_pt_regs
401 /* Hook function for gdbarch_register_osabi. */
404 csky_linux_init_abi (struct gdbarch_info info
, struct gdbarch
*gdbarch
)
406 linux_init_abi (info
, gdbarch
, 0);
408 /* Shared library handling. */
409 set_gdbarch_skip_trampoline_code (gdbarch
, find_solib_trampoline_target
);
410 set_gdbarch_skip_solib_resolver (gdbarch
, glibc_skip_solib_resolver
);
411 set_solib_svr4_fetch_link_map_offsets (gdbarch
,
412 linux_ilp32_fetch_link_map_offsets
);
414 /* Enable TLS support. */
415 set_gdbarch_fetch_tls_load_module_address (gdbarch
,
416 svr4_fetch_objfile_link_map
);
418 /* Core file support. */
419 set_gdbarch_iterate_over_regset_sections (
420 gdbarch
, csky_linux_iterate_over_regset_sections
);
422 /* Append tramp frame unwinder for SIGNAL. */
424 tramp_frame_prepend_unwinder (gdbarch
,
425 &csky_linux_rt_sigreturn_tramp_frame
);
426 tramp_frame_prepend_unwinder (gdbarch
,
427 &csky_linux_rt_sigreturn_tramp_frame_kernel_4x
);
430 void _initialize_csky_linux_tdep ();
432 _initialize_csky_linux_tdep ()
434 gdbarch_register_osabi (bfd_arch_csky
, 0, GDB_OSABI_LINUX
,
435 csky_linux_init_abi
);