tic6x-linux-tdep.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* GNU/Linux on TI C6x target support.
  2. Copyright (C) 2011-2022 Free Software Foundation, Inc.
  3. Contributed by Yao Qi <yao@codesourcery.com>
  4. This file is part of GDB.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #include "defs.h"
  16. #include "solib.h"
  17. #include "osabi.h"
  18. #include "linux-tdep.h"
  19. #include "tic6x-tdep.h"
  20. #include "trad-frame.h"
  21. #include "tramp-frame.h"
  22. #include "elf-bfd.h"
  23. #include "elf/tic6x.h"
  24. #include "gdbarch.h"
  25. /* The offset from rt_sigframe pointer to SP register. */
  26. #define TIC6X_SP_RT_SIGFRAME 8
  27. /* Size of struct siginfo info. */
  28. #define TIC6X_SIGINFO_SIZE 128
  29. /* Size of type stack_t, which contains three fields of type void*, int, and
  30. size_t respectively. */
  31. #define TIC6X_STACK_T_SIZE (3 * 4)
  32. static const gdb_byte tic6x_bkpt_bnop_be[] = { 0x00, 0x00, 0xa1, 0x22 };
  33. static const gdb_byte tic6x_bkpt_bnop_le[] = { 0x22, 0xa1, 0x00, 0x00 };
  34. /* Return the offset of register REGNUM in struct sigcontext. Return 0 if no
  35. such register in sigcontext. */
  36. static unsigned int
  37. tic6x_register_sigcontext_offset (unsigned int regnum, struct gdbarch *gdbarch)
  38. {
  39. tic6x_gdbarch_tdep *tdep = (tic6x_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  40. if (regnum == TIC6X_A4_REGNUM || regnum == TIC6X_A4_REGNUM + 2
  41. || regnum == TIC6X_A4_REGNUM + 4)
  42. return 4 * (regnum - TIC6X_A4_REGNUM + 2); /* A4, A6, A8 */
  43. else if (regnum == TIC6X_A5_REGNUM || regnum == TIC6X_A5_REGNUM + 2
  44. || regnum == TIC6X_A5_REGNUM + 4)
  45. return 4 * (regnum - TIC6X_A5_REGNUM + 12); /* A5, A7, A9 */
  46. else if (regnum == TIC6X_B4_REGNUM || regnum == TIC6X_B4_REGNUM + 2
  47. || regnum == TIC6X_B4_REGNUM + 4)
  48. return 4 * (regnum - TIC6X_B4_REGNUM + 3); /* B4, B6, B8 */
  49. else if (regnum == TIC6X_B5_REGNUM || regnum == TIC6X_B5_REGNUM + 2
  50. || regnum == TIC6X_B5_REGNUM + 4)
  51. return 4 * (regnum - TIC6X_B5_REGNUM + 19); /* B5, B7, B9 */
  52. else if (regnum < TIC6X_A4_REGNUM)
  53. return 4 * (regnum - 0 + 8); /* A0 - A3 */
  54. else if (regnum >= TIC6X_B0_REGNUM && regnum < TIC6X_B4_REGNUM)
  55. return 4 * (regnum - TIC6X_B0_REGNUM + 15); /* B0 - B3 */
  56. else if (regnum >= 34 && regnum < 34 + 32)
  57. return 4 * (regnum - 34 + 23); /* A16 - A31, B16 - B31 */
  58. else if (regnum == TIC6X_PC_REGNUM)
  59. return 4 * (tdep->has_gp ? 55 : 23);
  60. else if (regnum == TIC6X_SP_REGNUM)
  61. return 4;
  62. return 0;
  63. }
  64. /* Support unwinding frame in signal trampoline. We don't check sigreturn,
  65. since it is not used in kernel. */
  66. static void
  67. tic6x_linux_rt_sigreturn_init (const struct tramp_frame *self,
  68. struct frame_info *this_frame,
  69. struct trad_frame_cache *this_cache,
  70. CORE_ADDR func)
  71. {
  72. struct gdbarch *gdbarch = get_frame_arch (this_frame);
  73. CORE_ADDR sp = get_frame_register_unsigned (this_frame, TIC6X_SP_REGNUM);
  74. /* The base of struct sigcontext is computed by examining the definition of
  75. struct rt_sigframe in linux kernel source arch/c6x/kernel/signal.c. */
  76. CORE_ADDR base = (sp + TIC6X_SP_RT_SIGFRAME
  77. /* Pointer type *pinfo and *puc in struct rt_sigframe. */
  78. + 4 + 4
  79. + TIC6X_SIGINFO_SIZE
  80. + 4 + 4 /* uc_flags and *uc_link in struct ucontext. */
  81. + TIC6X_STACK_T_SIZE);
  82. tic6x_gdbarch_tdep *tdep = (tic6x_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  83. unsigned int reg_offset;
  84. unsigned int i;
  85. for (i = 0; i < 10; i++) /* A0 - A9 */
  86. {
  87. reg_offset = tic6x_register_sigcontext_offset (i, gdbarch);
  88. gdb_assert (reg_offset != 0);
  89. trad_frame_set_reg_addr (this_cache, i, base + reg_offset);
  90. }
  91. for (i = TIC6X_B0_REGNUM; i < TIC6X_B0_REGNUM + 10; i++) /* B0 - B9 */
  92. {
  93. reg_offset = tic6x_register_sigcontext_offset (i, gdbarch);
  94. gdb_assert (reg_offset != 0);
  95. trad_frame_set_reg_addr (this_cache, i, base + reg_offset);
  96. }
  97. if (tdep->has_gp)
  98. for (i = 34; i < 34 + 32; i++) /* A16 - A31, B16 - B31 */
  99. {
  100. reg_offset = tic6x_register_sigcontext_offset (i, gdbarch);
  101. gdb_assert (reg_offset != 0);
  102. trad_frame_set_reg_addr (this_cache, i, base + reg_offset);
  103. }
  104. trad_frame_set_reg_addr (this_cache, TIC6X_PC_REGNUM,
  105. base + tic6x_register_sigcontext_offset (TIC6X_PC_REGNUM,
  106. gdbarch));
  107. trad_frame_set_reg_addr (this_cache, TIC6X_SP_REGNUM,
  108. base + tic6x_register_sigcontext_offset (TIC6X_SP_REGNUM,
  109. gdbarch));
  110. /* Save a frame ID. */
  111. trad_frame_set_id (this_cache, frame_id_build (sp, func));
  112. }
  113. static struct tramp_frame tic6x_linux_rt_sigreturn_tramp_frame =
  114. {
  115. SIGTRAMP_FRAME,
  116. 4,
  117. {
  118. {0x000045aa, 0x0fffffff}, /* mvk .S2 139,b0 */
  119. {0x10000000, ULONGEST_MAX}, /* swe */
  120. {TRAMP_SENTINEL_INSN}
  121. },
  122. tic6x_linux_rt_sigreturn_init
  123. };
  124. /* When FRAME is at a syscall instruction, return the PC of the next
  125. instruction to be executed. */
  126. static CORE_ADDR
  127. tic6x_linux_syscall_next_pc (struct frame_info *frame)
  128. {
  129. ULONGEST syscall_number = get_frame_register_unsigned (frame,
  130. TIC6X_B0_REGNUM);
  131. CORE_ADDR pc = get_frame_pc (frame);
  132. if (syscall_number == 139 /* rt_sigreturn */)
  133. return frame_unwind_caller_pc (frame);
  134. return pc + 4;
  135. }
  136. extern struct target_so_ops dsbt_so_ops;
  137. static void
  138. tic6x_uclinux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  139. {
  140. tic6x_gdbarch_tdep *tdep = (tic6x_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  141. linux_init_abi (info, gdbarch, 0);
  142. /* Shared library handling. */
  143. set_solib_ops (gdbarch, &dsbt_so_ops);
  144. tdep->syscall_next_pc = tic6x_linux_syscall_next_pc;
  145. #ifdef HAVE_ELF
  146. /* In tic6x Linux kernel, breakpoint instructions varies on different archs.
  147. On C64x+ and C67x+, breakpoint instruction is 0x56454314, which is an
  148. illegal opcode. On other arch, breakpoint instruction is 0x0000a122
  149. (BNOP .S2 0,5). */
  150. if (info.abfd)
  151. switch (bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_PROC, Tag_ISA))
  152. {
  153. case C6XABI_Tag_ISA_C64XP:
  154. case C6XABI_Tag_ISA_C67XP:
  155. if (info.byte_order == BFD_ENDIAN_BIG)
  156. tdep->breakpoint = tic6x_bkpt_illegal_opcode_be;
  157. else
  158. tdep->breakpoint = tic6x_bkpt_illegal_opcode_le;
  159. break;
  160. default:
  161. {
  162. if (info.byte_order == BFD_ENDIAN_BIG)
  163. tdep->breakpoint = tic6x_bkpt_bnop_be;
  164. else
  165. tdep->breakpoint = tic6x_bkpt_bnop_le;
  166. }
  167. }
  168. #endif
  169. /* Signal trampoline support. */
  170. tramp_frame_prepend_unwinder (gdbarch,
  171. &tic6x_linux_rt_sigreturn_tramp_frame);
  172. }
  173. void _initialize_tic6x_linux_tdep ();
  174. void
  175. _initialize_tic6x_linux_tdep ()
  176. {
  177. gdbarch_register_osabi (bfd_arch_tic6x, 0, GDB_OSABI_LINUX,
  178. tic6x_uclinux_init_abi);
  179. }