]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/bfin-linux-tdep.c
Sort includes for files gdb/[a-f]*.[chyl].
[thirdparty/binutils-gdb.git] / gdb / bfin-linux-tdep.c
1 /* Target-dependent code for Analog Devices Blackfin processor, for GDB.
2
3 Copyright (C) 2005-2019 Free Software Foundation, Inc.
4
5 Contributed by Analog Devices, Inc.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22 #include "defs.h"
23
24 /* Local non-gdb includes. */
25 #include "arch-utils.h"
26 #include "bfin-tdep.h"
27 #include "linux-tdep.h"
28 #include "osabi.h"
29 #include "regcache.h"
30 #include "trad-frame.h"
31 #include "tramp-frame.h"
32 #include "xml-syscall.h"
33
34 /* From <asm/sigcontext.h>. */
35
36 #define SIGCONTEXT_OFFSET 168
37
38 static const int bfin_linux_sigcontext_reg_offset[BFIN_NUM_REGS] =
39 {
40 0 * 4, /* %r0 */
41 1 * 4, /* %r1 */
42 2 * 4, /* %r2 */
43 3 * 4, /* %r3 */
44 4 * 4, /* %r4 */
45 5 * 4, /* %r5 */
46 6 * 4, /* %r6 */
47 7 * 4, /* %r7 */
48 8 * 4, /* %p0 */
49 9 * 4, /* %p1 */
50 10 * 4, /* %p2 */
51 11 * 4, /* %p3 */
52 12 * 4, /* %p4 */
53 13 * 4, /* %p5 */
54 14 * 4, /* %sp */
55 23 * 4, /* %fp */
56 24 * 4, /* %i0 */
57 25 * 4, /* %i1 */
58 26 * 4, /* %i2 */
59 27 * 4, /* %i3 */
60 28 * 4, /* %m0 */
61 29 * 4, /* %m1 */
62 30 * 4, /* %m2 */
63 31 * 4, /* %m3 */
64 36 * 4, /* %b0 */
65 37 * 4, /* %b1 */
66 38 * 4, /* %b2 */
67 39 * 4, /* %b3 */
68 32 * 4, /* %l0 */
69 33 * 4, /* %l1 */
70 34 * 4, /* %l2 */
71 35 * 4, /* %l3 */
72 17 * 4, /* %a0x */
73 15 * 4, /* %a0w */
74 18 * 4, /* %a1x */
75 16 * 4, /* %a1w */
76 19 * 4, /* %astat */
77 20 * 4, /* %rets */
78 40 * 4, /* %lc0 */
79 42 * 4, /* %lt0 */
80 44 * 4, /* %lb0 */
81 41 * 4, /* %lc1 */
82 43 * 4, /* %lt1 */
83 45 * 4, /* %lb1 */
84 -1, /* %cycles */
85 -1, /* %cycles2 */
86 -1, /* %usp */
87 46 * 4, /* %seqstat */
88 -1, /* syscfg */
89 21 * 4, /* %reti */
90 22 * 4, /* %retx */
91 -1, /* %retn */
92 -1, /* %rete */
93 21 * 4, /* %pc */
94 };
95
96 /* Signal trampolines. */
97
98 static void
99 bfin_linux_sigframe_init (const struct tramp_frame *self,
100 struct frame_info *this_frame,
101 struct trad_frame_cache *this_cache,
102 CORE_ADDR func)
103 {
104 CORE_ADDR sp = get_frame_sp (this_frame);
105 CORE_ADDR pc = get_frame_pc (this_frame);
106 CORE_ADDR sigcontext = sp + SIGCONTEXT_OFFSET;
107 const int *reg_offset = bfin_linux_sigcontext_reg_offset;
108 int i;
109
110 for (i = 0; i < BFIN_NUM_REGS; i++)
111 if (reg_offset[i] != -1)
112 trad_frame_set_reg_addr (this_cache, i, sigcontext + reg_offset[i]);
113
114 /* This would come after the LINK instruction in the ret_from_signal
115 function, hence the frame id would be SP + 8. */
116 trad_frame_set_id (this_cache, frame_id_build (sp + 8, pc));
117 }
118
119 static const struct tramp_frame bfin_linux_sigframe =
120 {
121 SIGTRAMP_FRAME,
122 4,
123 {
124 { 0x00ADE128, 0xffffffff }, /* P0 = __NR_rt_sigreturn; */
125 { 0x00A0, 0xffff }, /* EXCPT 0; */
126 { TRAMP_SENTINEL_INSN, ULONGEST_MAX },
127 },
128 bfin_linux_sigframe_init,
129 };
130
131 static LONGEST
132 bfin_linux_get_syscall_number (struct gdbarch *gdbarch,
133 thread_info *thread)
134 {
135 struct regcache *regcache = get_thread_regcache (thread);
136 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
137 /* The content of a register. */
138 gdb_byte buf[4];
139 /* The result. */
140 LONGEST ret;
141
142 /* Getting the system call number from the register.
143 When dealing with Blackfin architecture, this information
144 is stored at %p0 register. */
145 regcache->cooked_read (BFIN_P0_REGNUM, buf);
146
147 ret = extract_signed_integer (buf, 4, byte_order);
148
149 return ret;
150 }
151
152 static void
153 bfin_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
154 {
155 linux_init_abi (info, gdbarch);
156
157 /* Set the sigtramp frame sniffer. */
158 tramp_frame_prepend_unwinder (gdbarch, &bfin_linux_sigframe);
159
160 /* Functions for 'catch syscall'. */
161 set_xml_syscall_file_name (gdbarch, "syscalls/bfin-linux.xml");
162 set_gdbarch_get_syscall_number (gdbarch,
163 bfin_linux_get_syscall_number);
164 }
165
166 void
167 _initialize_bfin_linux_tdep (void)
168 {
169 gdbarch_register_osabi (bfd_arch_bfin, 0, GDB_OSABI_LINUX,
170 bfin_linux_init_abi);
171 }