arm-linux-tdep.c revision 1.1 1 1.1 christos /* GNU/Linux on ARM target support.
2 1.1 christos
3 1.1 christos Copyright (C) 1999-2014 Free Software Foundation, Inc.
4 1.1 christos
5 1.1 christos This file is part of GDB.
6 1.1 christos
7 1.1 christos This program is free software; you can redistribute it and/or modify
8 1.1 christos it under the terms of the GNU General Public License as published by
9 1.1 christos the Free Software Foundation; either version 3 of the License, or
10 1.1 christos (at your option) any later version.
11 1.1 christos
12 1.1 christos This program is distributed in the hope that it will be useful,
13 1.1 christos but WITHOUT ANY WARRANTY; without even the implied warranty of
14 1.1 christos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 1.1 christos GNU General Public License for more details.
16 1.1 christos
17 1.1 christos You should have received a copy of the GNU General Public License
18 1.1 christos along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 1.1 christos
20 1.1 christos #include "defs.h"
21 1.1 christos #include "target.h"
22 1.1 christos #include "value.h"
23 1.1 christos #include "gdbtypes.h"
24 1.1 christos #include "floatformat.h"
25 1.1 christos #include "gdbcore.h"
26 1.1 christos #include "frame.h"
27 1.1 christos #include "regcache.h"
28 1.1 christos #include "doublest.h"
29 1.1 christos #include "solib-svr4.h"
30 1.1 christos #include "osabi.h"
31 1.1 christos #include "regset.h"
32 1.1 christos #include "trad-frame.h"
33 1.1 christos #include "tramp-frame.h"
34 1.1 christos #include "breakpoint.h"
35 1.1 christos #include "auxv.h"
36 1.1 christos #include "xml-syscall.h"
37 1.1 christos
38 1.1 christos #include "arm-tdep.h"
39 1.1 christos #include "arm-linux-tdep.h"
40 1.1 christos #include "linux-tdep.h"
41 1.1 christos #include "glibc-tdep.h"
42 1.1 christos #include "arch-utils.h"
43 1.1 christos #include "inferior.h"
44 1.1 christos #include "gdbthread.h"
45 1.1 christos #include "symfile.h"
46 1.1 christos
47 1.1 christos #include "cli/cli-utils.h"
48 1.1 christos #include "stap-probe.h"
49 1.1 christos #include "parser-defs.h"
50 1.1 christos #include "user-regs.h"
51 1.1 christos #include <ctype.h>
52 1.1 christos #include "elf/common.h"
53 1.1 christos #include <string.h>
54 1.1 christos
55 1.1 christos extern int arm_apcs_32;
56 1.1 christos
57 1.1 christos /* Under ARM GNU/Linux the traditional way of performing a breakpoint
58 1.1 christos is to execute a particular software interrupt, rather than use a
59 1.1 christos particular undefined instruction to provoke a trap. Upon exection
60 1.1 christos of the software interrupt the kernel stops the inferior with a
61 1.1 christos SIGTRAP, and wakes the debugger. */
62 1.1 christos
63 1.1 christos static const gdb_byte arm_linux_arm_le_breakpoint[] = { 0x01, 0x00, 0x9f, 0xef };
64 1.1 christos
65 1.1 christos static const gdb_byte arm_linux_arm_be_breakpoint[] = { 0xef, 0x9f, 0x00, 0x01 };
66 1.1 christos
67 1.1 christos /* However, the EABI syscall interface (new in Nov. 2005) does not look at
68 1.1 christos the operand of the swi if old-ABI compatibility is disabled. Therefore,
69 1.1 christos use an undefined instruction instead. This is supported as of kernel
70 1.1 christos version 2.5.70 (May 2003), so should be a safe assumption for EABI
71 1.1 christos binaries. */
72 1.1 christos
73 1.1 christos static const gdb_byte eabi_linux_arm_le_breakpoint[] = { 0xf0, 0x01, 0xf0, 0xe7 };
74 1.1 christos
75 1.1 christos static const gdb_byte eabi_linux_arm_be_breakpoint[] = { 0xe7, 0xf0, 0x01, 0xf0 };
76 1.1 christos
77 1.1 christos /* All the kernels which support Thumb support using a specific undefined
78 1.1 christos instruction for the Thumb breakpoint. */
79 1.1 christos
80 1.1 christos static const gdb_byte arm_linux_thumb_be_breakpoint[] = {0xde, 0x01};
81 1.1 christos
82 1.1 christos static const gdb_byte arm_linux_thumb_le_breakpoint[] = {0x01, 0xde};
83 1.1 christos
84 1.1 christos /* Because the 16-bit Thumb breakpoint is affected by Thumb-2 IT blocks,
85 1.1 christos we must use a length-appropriate breakpoint for 32-bit Thumb
86 1.1 christos instructions. See also thumb_get_next_pc. */
87 1.1 christos
88 1.1 christos static const gdb_byte arm_linux_thumb2_be_breakpoint[] = { 0xf7, 0xf0, 0xa0, 0x00 };
89 1.1 christos
90 1.1 christos static const gdb_byte arm_linux_thumb2_le_breakpoint[] = { 0xf0, 0xf7, 0x00, 0xa0 };
91 1.1 christos
92 1.1 christos /* Description of the longjmp buffer. The buffer is treated as an array of
93 1.1 christos elements of size ARM_LINUX_JB_ELEMENT_SIZE.
94 1.1 christos
95 1.1 christos The location of saved registers in this buffer (in particular the PC
96 1.1 christos to use after longjmp is called) varies depending on the ABI (in
97 1.1 christos particular the FP model) and also (possibly) the C Library.
98 1.1 christos
99 1.1 christos For glibc, eglibc, and uclibc the following holds: If the FP model is
100 1.1 christos SoftVFP or VFP (which implies EABI) then the PC is at offset 9 in the
101 1.1 christos buffer. This is also true for the SoftFPA model. However, for the FPA
102 1.1 christos model the PC is at offset 21 in the buffer. */
103 1.1 christos #define ARM_LINUX_JB_ELEMENT_SIZE INT_REGISTER_SIZE
104 1.1 christos #define ARM_LINUX_JB_PC_FPA 21
105 1.1 christos #define ARM_LINUX_JB_PC_EABI 9
106 1.1 christos
107 1.1 christos /*
108 1.1 christos Dynamic Linking on ARM GNU/Linux
109 1.1 christos --------------------------------
110 1.1 christos
111 1.1 christos Note: PLT = procedure linkage table
112 1.1 christos GOT = global offset table
113 1.1 christos
114 1.1 christos As much as possible, ELF dynamic linking defers the resolution of
115 1.1 christos jump/call addresses until the last minute. The technique used is
116 1.1 christos inspired by the i386 ELF design, and is based on the following
117 1.1 christos constraints.
118 1.1 christos
119 1.1 christos 1) The calling technique should not force a change in the assembly
120 1.1 christos code produced for apps; it MAY cause changes in the way assembly
121 1.1 christos code is produced for position independent code (i.e. shared
122 1.1 christos libraries).
123 1.1 christos
124 1.1 christos 2) The technique must be such that all executable areas must not be
125 1.1 christos modified; and any modified areas must not be executed.
126 1.1 christos
127 1.1 christos To do this, there are three steps involved in a typical jump:
128 1.1 christos
129 1.1 christos 1) in the code
130 1.1 christos 2) through the PLT
131 1.1 christos 3) using a pointer from the GOT
132 1.1 christos
133 1.1 christos When the executable or library is first loaded, each GOT entry is
134 1.1 christos initialized to point to the code which implements dynamic name
135 1.1 christos resolution and code finding. This is normally a function in the
136 1.1 christos program interpreter (on ARM GNU/Linux this is usually
137 1.1 christos ld-linux.so.2, but it does not have to be). On the first
138 1.1 christos invocation, the function is located and the GOT entry is replaced
139 1.1 christos with the real function address. Subsequent calls go through steps
140 1.1 christos 1, 2 and 3 and end up calling the real code.
141 1.1 christos
142 1.1 christos 1) In the code:
143 1.1 christos
144 1.1 christos b function_call
145 1.1 christos bl function_call
146 1.1 christos
147 1.1 christos This is typical ARM code using the 26 bit relative branch or branch
148 1.1 christos and link instructions. The target of the instruction
149 1.1 christos (function_call is usually the address of the function to be called.
150 1.1 christos In position independent code, the target of the instruction is
151 1.1 christos actually an entry in the PLT when calling functions in a shared
152 1.1 christos library. Note that this call is identical to a normal function
153 1.1 christos call, only the target differs.
154 1.1 christos
155 1.1 christos 2) In the PLT:
156 1.1 christos
157 1.1 christos The PLT is a synthetic area, created by the linker. It exists in
158 1.1 christos both executables and libraries. It is an array of stubs, one per
159 1.1 christos imported function call. It looks like this:
160 1.1 christos
161 1.1 christos PLT[0]:
162 1.1 christos str lr, [sp, #-4]! @push the return address (lr)
163 1.1 christos ldr lr, [pc, #16] @load from 6 words ahead
164 1.1 christos add lr, pc, lr @form an address for GOT[0]
165 1.1 christos ldr pc, [lr, #8]! @jump to the contents of that addr
166 1.1 christos
167 1.1 christos The return address (lr) is pushed on the stack and used for
168 1.1 christos calculations. The load on the second line loads the lr with
169 1.1 christos &GOT[3] - . - 20. The addition on the third leaves:
170 1.1 christos
171 1.1 christos lr = (&GOT[3] - . - 20) + (. + 8)
172 1.1 christos lr = (&GOT[3] - 12)
173 1.1 christos lr = &GOT[0]
174 1.1 christos
175 1.1 christos On the fourth line, the pc and lr are both updated, so that:
176 1.1 christos
177 1.1 christos pc = GOT[2]
178 1.1 christos lr = &GOT[0] + 8
179 1.1 christos = &GOT[2]
180 1.1 christos
181 1.1 christos NOTE: PLT[0] borrows an offset .word from PLT[1]. This is a little
182 1.1 christos "tight", but allows us to keep all the PLT entries the same size.
183 1.1 christos
184 1.1 christos PLT[n+1]:
185 1.1 christos ldr ip, [pc, #4] @load offset from gotoff
186 1.1 christos add ip, pc, ip @add the offset to the pc
187 1.1 christos ldr pc, [ip] @jump to that address
188 1.1 christos gotoff: .word GOT[n+3] - .
189 1.1 christos
190 1.1 christos The load on the first line, gets an offset from the fourth word of
191 1.1 christos the PLT entry. The add on the second line makes ip = &GOT[n+3],
192 1.1 christos which contains either a pointer to PLT[0] (the fixup trampoline) or
193 1.1 christos a pointer to the actual code.
194 1.1 christos
195 1.1 christos 3) In the GOT:
196 1.1 christos
197 1.1 christos The GOT contains helper pointers for both code (PLT) fixups and
198 1.1 christos data fixups. The first 3 entries of the GOT are special. The next
199 1.1 christos M entries (where M is the number of entries in the PLT) belong to
200 1.1 christos the PLT fixups. The next D (all remaining) entries belong to
201 1.1 christos various data fixups. The actual size of the GOT is 3 + M + D.
202 1.1 christos
203 1.1 christos The GOT is also a synthetic area, created by the linker. It exists
204 1.1 christos in both executables and libraries. When the GOT is first
205 1.1 christos initialized , all the GOT entries relating to PLT fixups are
206 1.1 christos pointing to code back at PLT[0].
207 1.1 christos
208 1.1 christos The special entries in the GOT are:
209 1.1 christos
210 1.1 christos GOT[0] = linked list pointer used by the dynamic loader
211 1.1 christos GOT[1] = pointer to the reloc table for this module
212 1.1 christos GOT[2] = pointer to the fixup/resolver code
213 1.1 christos
214 1.1 christos The first invocation of function call comes through and uses the
215 1.1 christos fixup/resolver code. On the entry to the fixup/resolver code:
216 1.1 christos
217 1.1 christos ip = &GOT[n+3]
218 1.1 christos lr = &GOT[2]
219 1.1 christos stack[0] = return address (lr) of the function call
220 1.1 christos [r0, r1, r2, r3] are still the arguments to the function call
221 1.1 christos
222 1.1 christos This is enough information for the fixup/resolver code to work
223 1.1 christos with. Before the fixup/resolver code returns, it actually calls
224 1.1 christos the requested function and repairs &GOT[n+3]. */
225 1.1 christos
226 1.1 christos /* The constants below were determined by examining the following files
227 1.1 christos in the linux kernel sources:
228 1.1 christos
229 1.1 christos arch/arm/kernel/signal.c
230 1.1 christos - see SWI_SYS_SIGRETURN and SWI_SYS_RT_SIGRETURN
231 1.1 christos include/asm-arm/unistd.h
232 1.1 christos - see __NR_sigreturn, __NR_rt_sigreturn, and __NR_SYSCALL_BASE */
233 1.1 christos
234 1.1 christos #define ARM_LINUX_SIGRETURN_INSTR 0xef900077
235 1.1 christos #define ARM_LINUX_RT_SIGRETURN_INSTR 0xef9000ad
236 1.1 christos
237 1.1 christos /* For ARM EABI, the syscall number is not in the SWI instruction
238 1.1 christos (instead it is loaded into r7). We recognize the pattern that
239 1.1 christos glibc uses... alternatively, we could arrange to do this by
240 1.1 christos function name, but they are not always exported. */
241 1.1 christos #define ARM_SET_R7_SIGRETURN 0xe3a07077
242 1.1 christos #define ARM_SET_R7_RT_SIGRETURN 0xe3a070ad
243 1.1 christos #define ARM_EABI_SYSCALL 0xef000000
244 1.1 christos
245 1.1 christos /* OABI syscall restart trampoline, used for EABI executables too
246 1.1 christos whenever OABI support has been enabled in the kernel. */
247 1.1 christos #define ARM_OABI_SYSCALL_RESTART_SYSCALL 0xef900000
248 1.1 christos #define ARM_LDR_PC_SP_12 0xe49df00c
249 1.1 christos #define ARM_LDR_PC_SP_4 0xe49df004
250 1.1 christos
251 1.1 christos static void
252 1.1 christos arm_linux_sigtramp_cache (struct frame_info *this_frame,
253 1.1 christos struct trad_frame_cache *this_cache,
254 1.1 christos CORE_ADDR func, int regs_offset)
255 1.1 christos {
256 1.1 christos CORE_ADDR sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
257 1.1 christos CORE_ADDR base = sp + regs_offset;
258 1.1 christos int i;
259 1.1 christos
260 1.1 christos for (i = 0; i < 16; i++)
261 1.1 christos trad_frame_set_reg_addr (this_cache, i, base + i * 4);
262 1.1 christos
263 1.1 christos trad_frame_set_reg_addr (this_cache, ARM_PS_REGNUM, base + 16 * 4);
264 1.1 christos
265 1.1 christos /* The VFP or iWMMXt registers may be saved on the stack, but there's
266 1.1 christos no reliable way to restore them (yet). */
267 1.1 christos
268 1.1 christos /* Save a frame ID. */
269 1.1 christos trad_frame_set_id (this_cache, frame_id_build (sp, func));
270 1.1 christos }
271 1.1 christos
272 1.1 christos /* There are a couple of different possible stack layouts that
273 1.1 christos we need to support.
274 1.1 christos
275 1.1 christos Before version 2.6.18, the kernel used completely independent
276 1.1 christos layouts for non-RT and RT signals. For non-RT signals the stack
277 1.1 christos began directly with a struct sigcontext. For RT signals the stack
278 1.1 christos began with two redundant pointers (to the siginfo and ucontext),
279 1.1 christos and then the siginfo and ucontext.
280 1.1 christos
281 1.1 christos As of version 2.6.18, the non-RT signal frame layout starts with
282 1.1 christos a ucontext and the RT signal frame starts with a siginfo and then
283 1.1 christos a ucontext. Also, the ucontext now has a designated save area
284 1.1 christos for coprocessor registers.
285 1.1 christos
286 1.1 christos For RT signals, it's easy to tell the difference: we look for
287 1.1 christos pinfo, the pointer to the siginfo. If it has the expected
288 1.1 christos value, we have an old layout. If it doesn't, we have the new
289 1.1 christos layout.
290 1.1 christos
291 1.1 christos For non-RT signals, it's a bit harder. We need something in one
292 1.1 christos layout or the other with a recognizable offset and value. We can't
293 1.1 christos use the return trampoline, because ARM usually uses SA_RESTORER,
294 1.1 christos in which case the stack return trampoline is not filled in.
295 1.1 christos We can't use the saved stack pointer, because sigaltstack might
296 1.1 christos be in use. So for now we guess the new layout... */
297 1.1 christos
298 1.1 christos /* There are three words (trap_no, error_code, oldmask) in
299 1.1 christos struct sigcontext before r0. */
300 1.1 christos #define ARM_SIGCONTEXT_R0 0xc
301 1.1 christos
302 1.1 christos /* There are five words (uc_flags, uc_link, and three for uc_stack)
303 1.1 christos in the ucontext_t before the sigcontext. */
304 1.1 christos #define ARM_UCONTEXT_SIGCONTEXT 0x14
305 1.1 christos
306 1.1 christos /* There are three elements in an rt_sigframe before the ucontext:
307 1.1 christos pinfo, puc, and info. The first two are pointers and the third
308 1.1 christos is a struct siginfo, with size 128 bytes. We could follow puc
309 1.1 christos to the ucontext, but it's simpler to skip the whole thing. */
310 1.1 christos #define ARM_OLD_RT_SIGFRAME_SIGINFO 0x8
311 1.1 christos #define ARM_OLD_RT_SIGFRAME_UCONTEXT 0x88
312 1.1 christos
313 1.1 christos #define ARM_NEW_RT_SIGFRAME_UCONTEXT 0x80
314 1.1 christos
315 1.1 christos #define ARM_NEW_SIGFRAME_MAGIC 0x5ac3c35a
316 1.1 christos
317 1.1 christos static void
318 1.1 christos arm_linux_sigreturn_init (const struct tramp_frame *self,
319 1.1 christos struct frame_info *this_frame,
320 1.1 christos struct trad_frame_cache *this_cache,
321 1.1 christos CORE_ADDR func)
322 1.1 christos {
323 1.1 christos struct gdbarch *gdbarch = get_frame_arch (this_frame);
324 1.1 christos enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
325 1.1 christos CORE_ADDR sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
326 1.1 christos ULONGEST uc_flags = read_memory_unsigned_integer (sp, 4, byte_order);
327 1.1 christos
328 1.1 christos if (uc_flags == ARM_NEW_SIGFRAME_MAGIC)
329 1.1 christos arm_linux_sigtramp_cache (this_frame, this_cache, func,
330 1.1 christos ARM_UCONTEXT_SIGCONTEXT
331 1.1 christos + ARM_SIGCONTEXT_R0);
332 1.1 christos else
333 1.1 christos arm_linux_sigtramp_cache (this_frame, this_cache, func,
334 1.1 christos ARM_SIGCONTEXT_R0);
335 1.1 christos }
336 1.1 christos
337 1.1 christos static void
338 1.1 christos arm_linux_rt_sigreturn_init (const struct tramp_frame *self,
339 1.1 christos struct frame_info *this_frame,
340 1.1 christos struct trad_frame_cache *this_cache,
341 1.1 christos CORE_ADDR func)
342 1.1 christos {
343 1.1 christos struct gdbarch *gdbarch = get_frame_arch (this_frame);
344 1.1 christos enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
345 1.1 christos CORE_ADDR sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
346 1.1 christos ULONGEST pinfo = read_memory_unsigned_integer (sp, 4, byte_order);
347 1.1 christos
348 1.1 christos if (pinfo == sp + ARM_OLD_RT_SIGFRAME_SIGINFO)
349 1.1 christos arm_linux_sigtramp_cache (this_frame, this_cache, func,
350 1.1 christos ARM_OLD_RT_SIGFRAME_UCONTEXT
351 1.1 christos + ARM_UCONTEXT_SIGCONTEXT
352 1.1 christos + ARM_SIGCONTEXT_R0);
353 1.1 christos else
354 1.1 christos arm_linux_sigtramp_cache (this_frame, this_cache, func,
355 1.1 christos ARM_NEW_RT_SIGFRAME_UCONTEXT
356 1.1 christos + ARM_UCONTEXT_SIGCONTEXT
357 1.1 christos + ARM_SIGCONTEXT_R0);
358 1.1 christos }
359 1.1 christos
360 1.1 christos static void
361 1.1 christos arm_linux_restart_syscall_init (const struct tramp_frame *self,
362 1.1 christos struct frame_info *this_frame,
363 1.1 christos struct trad_frame_cache *this_cache,
364 1.1 christos CORE_ADDR func)
365 1.1 christos {
366 1.1 christos struct gdbarch *gdbarch = get_frame_arch (this_frame);
367 1.1 christos CORE_ADDR sp = get_frame_register_unsigned (this_frame, ARM_SP_REGNUM);
368 1.1 christos CORE_ADDR pc = get_frame_memory_unsigned (this_frame, sp, 4);
369 1.1 christos CORE_ADDR cpsr = get_frame_register_unsigned (this_frame, ARM_PS_REGNUM);
370 1.1 christos ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
371 1.1 christos int sp_offset;
372 1.1 christos
373 1.1 christos /* There are two variants of this trampoline; with older kernels, the
374 1.1 christos stub is placed on the stack, while newer kernels use the stub from
375 1.1 christos the vector page. They are identical except that the older version
376 1.1 christos increments SP by 12 (to skip stored PC and the stub itself), while
377 1.1 christos the newer version increments SP only by 4 (just the stored PC). */
378 1.1 christos if (self->insn[1].bytes == ARM_LDR_PC_SP_4)
379 1.1 christos sp_offset = 4;
380 1.1 christos else
381 1.1 christos sp_offset = 12;
382 1.1 christos
383 1.1 christos /* Update Thumb bit in CPSR. */
384 1.1 christos if (pc & 1)
385 1.1 christos cpsr |= t_bit;
386 1.1 christos else
387 1.1 christos cpsr &= ~t_bit;
388 1.1 christos
389 1.1 christos /* Remove Thumb bit from PC. */
390 1.1 christos pc = gdbarch_addr_bits_remove (gdbarch, pc);
391 1.1 christos
392 1.1 christos /* Save previous register values. */
393 1.1 christos trad_frame_set_reg_value (this_cache, ARM_SP_REGNUM, sp + sp_offset);
394 1.1 christos trad_frame_set_reg_value (this_cache, ARM_PC_REGNUM, pc);
395 1.1 christos trad_frame_set_reg_value (this_cache, ARM_PS_REGNUM, cpsr);
396 1.1 christos
397 1.1 christos /* Save a frame ID. */
398 1.1 christos trad_frame_set_id (this_cache, frame_id_build (sp, func));
399 1.1 christos }
400 1.1 christos
401 1.1 christos static struct tramp_frame arm_linux_sigreturn_tramp_frame = {
402 1.1 christos SIGTRAMP_FRAME,
403 1.1 christos 4,
404 1.1 christos {
405 1.1 christos { ARM_LINUX_SIGRETURN_INSTR, -1 },
406 1.1 christos { TRAMP_SENTINEL_INSN }
407 1.1 christos },
408 1.1 christos arm_linux_sigreturn_init
409 1.1 christos };
410 1.1 christos
411 1.1 christos static struct tramp_frame arm_linux_rt_sigreturn_tramp_frame = {
412 1.1 christos SIGTRAMP_FRAME,
413 1.1 christos 4,
414 1.1 christos {
415 1.1 christos { ARM_LINUX_RT_SIGRETURN_INSTR, -1 },
416 1.1 christos { TRAMP_SENTINEL_INSN }
417 1.1 christos },
418 1.1 christos arm_linux_rt_sigreturn_init
419 1.1 christos };
420 1.1 christos
421 1.1 christos static struct tramp_frame arm_eabi_linux_sigreturn_tramp_frame = {
422 1.1 christos SIGTRAMP_FRAME,
423 1.1 christos 4,
424 1.1 christos {
425 1.1 christos { ARM_SET_R7_SIGRETURN, -1 },
426 1.1 christos { ARM_EABI_SYSCALL, -1 },
427 1.1 christos { TRAMP_SENTINEL_INSN }
428 1.1 christos },
429 1.1 christos arm_linux_sigreturn_init
430 1.1 christos };
431 1.1 christos
432 1.1 christos static struct tramp_frame arm_eabi_linux_rt_sigreturn_tramp_frame = {
433 1.1 christos SIGTRAMP_FRAME,
434 1.1 christos 4,
435 1.1 christos {
436 1.1 christos { ARM_SET_R7_RT_SIGRETURN, -1 },
437 1.1 christos { ARM_EABI_SYSCALL, -1 },
438 1.1 christos { TRAMP_SENTINEL_INSN }
439 1.1 christos },
440 1.1 christos arm_linux_rt_sigreturn_init
441 1.1 christos };
442 1.1 christos
443 1.1 christos static struct tramp_frame arm_linux_restart_syscall_tramp_frame = {
444 1.1 christos NORMAL_FRAME,
445 1.1 christos 4,
446 1.1 christos {
447 1.1 christos { ARM_OABI_SYSCALL_RESTART_SYSCALL, -1 },
448 1.1 christos { ARM_LDR_PC_SP_12, -1 },
449 1.1 christos { TRAMP_SENTINEL_INSN }
450 1.1 christos },
451 1.1 christos arm_linux_restart_syscall_init
452 1.1 christos };
453 1.1 christos
454 1.1 christos static struct tramp_frame arm_kernel_linux_restart_syscall_tramp_frame = {
455 1.1 christos NORMAL_FRAME,
456 1.1 christos 4,
457 1.1 christos {
458 1.1 christos { ARM_OABI_SYSCALL_RESTART_SYSCALL, -1 },
459 1.1 christos { ARM_LDR_PC_SP_4, -1 },
460 1.1 christos { TRAMP_SENTINEL_INSN }
461 1.1 christos },
462 1.1 christos arm_linux_restart_syscall_init
463 1.1 christos };
464 1.1 christos
465 1.1 christos /* Core file and register set support. */
466 1.1 christos
467 1.1 christos #define ARM_LINUX_SIZEOF_GREGSET (18 * INT_REGISTER_SIZE)
468 1.1 christos
469 1.1 christos void
470 1.1 christos arm_linux_supply_gregset (const struct regset *regset,
471 1.1 christos struct regcache *regcache,
472 1.1 christos int regnum, const void *gregs_buf, size_t len)
473 1.1 christos {
474 1.1 christos struct gdbarch *gdbarch = get_regcache_arch (regcache);
475 1.1 christos enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
476 1.1 christos const gdb_byte *gregs = gregs_buf;
477 1.1 christos int regno;
478 1.1 christos CORE_ADDR reg_pc;
479 1.1 christos gdb_byte pc_buf[INT_REGISTER_SIZE];
480 1.1 christos
481 1.1 christos for (regno = ARM_A1_REGNUM; regno < ARM_PC_REGNUM; regno++)
482 1.1 christos if (regnum == -1 || regnum == regno)
483 1.1 christos regcache_raw_supply (regcache, regno,
484 1.1 christos gregs + INT_REGISTER_SIZE * regno);
485 1.1 christos
486 1.1 christos if (regnum == ARM_PS_REGNUM || regnum == -1)
487 1.1 christos {
488 1.1 christos if (arm_apcs_32)
489 1.1 christos regcache_raw_supply (regcache, ARM_PS_REGNUM,
490 1.1 christos gregs + INT_REGISTER_SIZE * ARM_CPSR_GREGNUM);
491 1.1 christos else
492 1.1 christos regcache_raw_supply (regcache, ARM_PS_REGNUM,
493 1.1 christos gregs + INT_REGISTER_SIZE * ARM_PC_REGNUM);
494 1.1 christos }
495 1.1 christos
496 1.1 christos if (regnum == ARM_PC_REGNUM || regnum == -1)
497 1.1 christos {
498 1.1 christos reg_pc = extract_unsigned_integer (gregs
499 1.1 christos + INT_REGISTER_SIZE * ARM_PC_REGNUM,
500 1.1 christos INT_REGISTER_SIZE, byte_order);
501 1.1 christos reg_pc = gdbarch_addr_bits_remove (gdbarch, reg_pc);
502 1.1 christos store_unsigned_integer (pc_buf, INT_REGISTER_SIZE, byte_order, reg_pc);
503 1.1 christos regcache_raw_supply (regcache, ARM_PC_REGNUM, pc_buf);
504 1.1 christos }
505 1.1 christos }
506 1.1 christos
507 1.1 christos void
508 1.1 christos arm_linux_collect_gregset (const struct regset *regset,
509 1.1 christos const struct regcache *regcache,
510 1.1 christos int regnum, void *gregs_buf, size_t len)
511 1.1 christos {
512 1.1 christos gdb_byte *gregs = gregs_buf;
513 1.1 christos int regno;
514 1.1 christos
515 1.1 christos for (regno = ARM_A1_REGNUM; regno < ARM_PC_REGNUM; regno++)
516 1.1 christos if (regnum == -1 || regnum == regno)
517 1.1 christos regcache_raw_collect (regcache, regno,
518 1.1 christos gregs + INT_REGISTER_SIZE * regno);
519 1.1 christos
520 1.1 christos if (regnum == ARM_PS_REGNUM || regnum == -1)
521 1.1 christos {
522 1.1 christos if (arm_apcs_32)
523 1.1 christos regcache_raw_collect (regcache, ARM_PS_REGNUM,
524 1.1 christos gregs + INT_REGISTER_SIZE * ARM_CPSR_GREGNUM);
525 1.1 christos else
526 1.1 christos regcache_raw_collect (regcache, ARM_PS_REGNUM,
527 1.1 christos gregs + INT_REGISTER_SIZE * ARM_PC_REGNUM);
528 1.1 christos }
529 1.1 christos
530 1.1 christos if (regnum == ARM_PC_REGNUM || regnum == -1)
531 1.1 christos regcache_raw_collect (regcache, ARM_PC_REGNUM,
532 1.1 christos gregs + INT_REGISTER_SIZE * ARM_PC_REGNUM);
533 1.1 christos }
534 1.1 christos
535 1.1 christos /* Support for register format used by the NWFPE FPA emulator. */
536 1.1 christos
537 1.1 christos #define typeNone 0x00
538 1.1 christos #define typeSingle 0x01
539 1.1 christos #define typeDouble 0x02
540 1.1 christos #define typeExtended 0x03
541 1.1 christos
542 1.1 christos void
543 1.1 christos supply_nwfpe_register (struct regcache *regcache, int regno,
544 1.1 christos const gdb_byte *regs)
545 1.1 christos {
546 1.1 christos const gdb_byte *reg_data;
547 1.1 christos gdb_byte reg_tag;
548 1.1 christos gdb_byte buf[FP_REGISTER_SIZE];
549 1.1 christos
550 1.1 christos reg_data = regs + (regno - ARM_F0_REGNUM) * FP_REGISTER_SIZE;
551 1.1 christos reg_tag = regs[(regno - ARM_F0_REGNUM) + NWFPE_TAGS_OFFSET];
552 1.1 christos memset (buf, 0, FP_REGISTER_SIZE);
553 1.1 christos
554 1.1 christos switch (reg_tag)
555 1.1 christos {
556 1.1 christos case typeSingle:
557 1.1 christos memcpy (buf, reg_data, 4);
558 1.1 christos break;
559 1.1 christos case typeDouble:
560 1.1 christos memcpy (buf, reg_data + 4, 4);
561 1.1 christos memcpy (buf + 4, reg_data, 4);
562 1.1 christos break;
563 1.1 christos case typeExtended:
564 1.1 christos /* We want sign and exponent, then least significant bits,
565 1.1 christos then most significant. NWFPE does sign, most, least. */
566 1.1 christos memcpy (buf, reg_data, 4);
567 1.1 christos memcpy (buf + 4, reg_data + 8, 4);
568 1.1 christos memcpy (buf + 8, reg_data + 4, 4);
569 1.1 christos break;
570 1.1 christos default:
571 1.1 christos break;
572 1.1 christos }
573 1.1 christos
574 1.1 christos regcache_raw_supply (regcache, regno, buf);
575 1.1 christos }
576 1.1 christos
577 1.1 christos void
578 1.1 christos collect_nwfpe_register (const struct regcache *regcache, int regno,
579 1.1 christos gdb_byte *regs)
580 1.1 christos {
581 1.1 christos gdb_byte *reg_data;
582 1.1 christos gdb_byte reg_tag;
583 1.1 christos gdb_byte buf[FP_REGISTER_SIZE];
584 1.1 christos
585 1.1 christos regcache_raw_collect (regcache, regno, buf);
586 1.1 christos
587 1.1 christos /* NOTE drow/2006-06-07: This code uses the tag already in the
588 1.1 christos register buffer. I've preserved that when moving the code
589 1.1 christos from the native file to the target file. But this doesn't
590 1.1 christos always make sense. */
591 1.1 christos
592 1.1 christos reg_data = regs + (regno - ARM_F0_REGNUM) * FP_REGISTER_SIZE;
593 1.1 christos reg_tag = regs[(regno - ARM_F0_REGNUM) + NWFPE_TAGS_OFFSET];
594 1.1 christos
595 1.1 christos switch (reg_tag)
596 1.1 christos {
597 1.1 christos case typeSingle:
598 1.1 christos memcpy (reg_data, buf, 4);
599 1.1 christos break;
600 1.1 christos case typeDouble:
601 1.1 christos memcpy (reg_data, buf + 4, 4);
602 1.1 christos memcpy (reg_data + 4, buf, 4);
603 1.1 christos break;
604 1.1 christos case typeExtended:
605 1.1 christos memcpy (reg_data, buf, 4);
606 1.1 christos memcpy (reg_data + 4, buf + 8, 4);
607 1.1 christos memcpy (reg_data + 8, buf + 4, 4);
608 1.1 christos break;
609 1.1 christos default:
610 1.1 christos break;
611 1.1 christos }
612 1.1 christos }
613 1.1 christos
614 1.1 christos void
615 1.1 christos arm_linux_supply_nwfpe (const struct regset *regset,
616 1.1 christos struct regcache *regcache,
617 1.1 christos int regnum, const void *regs_buf, size_t len)
618 1.1 christos {
619 1.1 christos const gdb_byte *regs = regs_buf;
620 1.1 christos int regno;
621 1.1 christos
622 1.1 christos if (regnum == ARM_FPS_REGNUM || regnum == -1)
623 1.1 christos regcache_raw_supply (regcache, ARM_FPS_REGNUM,
624 1.1 christos regs + NWFPE_FPSR_OFFSET);
625 1.1 christos
626 1.1 christos for (regno = ARM_F0_REGNUM; regno <= ARM_F7_REGNUM; regno++)
627 1.1 christos if (regnum == -1 || regnum == regno)
628 1.1 christos supply_nwfpe_register (regcache, regno, regs);
629 1.1 christos }
630 1.1 christos
631 1.1 christos void
632 1.1 christos arm_linux_collect_nwfpe (const struct regset *regset,
633 1.1 christos const struct regcache *regcache,
634 1.1 christos int regnum, void *regs_buf, size_t len)
635 1.1 christos {
636 1.1 christos gdb_byte *regs = regs_buf;
637 1.1 christos int regno;
638 1.1 christos
639 1.1 christos for (regno = ARM_F0_REGNUM; regno <= ARM_F7_REGNUM; regno++)
640 1.1 christos if (regnum == -1 || regnum == regno)
641 1.1 christos collect_nwfpe_register (regcache, regno, regs);
642 1.1 christos
643 1.1 christos if (regnum == ARM_FPS_REGNUM || regnum == -1)
644 1.1 christos regcache_raw_collect (regcache, ARM_FPS_REGNUM,
645 1.1 christos regs + INT_REGISTER_SIZE * ARM_FPS_REGNUM);
646 1.1 christos }
647 1.1 christos
648 1.1 christos /* Support VFP register format. */
649 1.1 christos
650 1.1 christos #define ARM_LINUX_SIZEOF_VFP (32 * 8 + 4)
651 1.1 christos
652 1.1 christos static void
653 1.1 christos arm_linux_supply_vfp (const struct regset *regset,
654 1.1 christos struct regcache *regcache,
655 1.1 christos int regnum, const void *regs_buf, size_t len)
656 1.1 christos {
657 1.1 christos const gdb_byte *regs = regs_buf;
658 1.1 christos int regno;
659 1.1 christos
660 1.1 christos if (regnum == ARM_FPSCR_REGNUM || regnum == -1)
661 1.1 christos regcache_raw_supply (regcache, ARM_FPSCR_REGNUM, regs + 32 * 8);
662 1.1 christos
663 1.1 christos for (regno = ARM_D0_REGNUM; regno <= ARM_D31_REGNUM; regno++)
664 1.1 christos if (regnum == -1 || regnum == regno)
665 1.1 christos regcache_raw_supply (regcache, regno,
666 1.1 christos regs + (regno - ARM_D0_REGNUM) * 8);
667 1.1 christos }
668 1.1 christos
669 1.1 christos static void
670 1.1 christos arm_linux_collect_vfp (const struct regset *regset,
671 1.1 christos const struct regcache *regcache,
672 1.1 christos int regnum, void *regs_buf, size_t len)
673 1.1 christos {
674 1.1 christos gdb_byte *regs = regs_buf;
675 1.1 christos int regno;
676 1.1 christos
677 1.1 christos if (regnum == ARM_FPSCR_REGNUM || regnum == -1)
678 1.1 christos regcache_raw_collect (regcache, ARM_FPSCR_REGNUM, regs + 32 * 8);
679 1.1 christos
680 1.1 christos for (regno = ARM_D0_REGNUM; regno <= ARM_D31_REGNUM; regno++)
681 1.1 christos if (regnum == -1 || regnum == regno)
682 1.1 christos regcache_raw_collect (regcache, regno,
683 1.1 christos regs + (regno - ARM_D0_REGNUM) * 8);
684 1.1 christos }
685 1.1 christos
686 1.1 christos /* Return the appropriate register set for the core section identified
687 1.1 christos by SECT_NAME and SECT_SIZE. */
688 1.1 christos
689 1.1 christos static const struct regset *
690 1.1 christos arm_linux_regset_from_core_section (struct gdbarch *gdbarch,
691 1.1 christos const char *sect_name, size_t sect_size)
692 1.1 christos {
693 1.1 christos struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
694 1.1 christos
695 1.1 christos if (strcmp (sect_name, ".reg") == 0
696 1.1 christos && sect_size == ARM_LINUX_SIZEOF_GREGSET)
697 1.1 christos {
698 1.1 christos if (tdep->gregset == NULL)
699 1.1 christos tdep->gregset = regset_alloc (gdbarch, arm_linux_supply_gregset,
700 1.1 christos arm_linux_collect_gregset);
701 1.1 christos return tdep->gregset;
702 1.1 christos }
703 1.1 christos
704 1.1 christos if (strcmp (sect_name, ".reg2") == 0
705 1.1 christos && sect_size == ARM_LINUX_SIZEOF_NWFPE)
706 1.1 christos {
707 1.1 christos if (tdep->fpregset == NULL)
708 1.1 christos tdep->fpregset = regset_alloc (gdbarch, arm_linux_supply_nwfpe,
709 1.1 christos arm_linux_collect_nwfpe);
710 1.1 christos return tdep->fpregset;
711 1.1 christos }
712 1.1 christos
713 1.1 christos if (strcmp (sect_name, ".reg-arm-vfp") == 0
714 1.1 christos && sect_size == ARM_LINUX_SIZEOF_VFP)
715 1.1 christos {
716 1.1 christos if (tdep->vfpregset == NULL)
717 1.1 christos tdep->vfpregset = regset_alloc (gdbarch, arm_linux_supply_vfp,
718 1.1 christos arm_linux_collect_vfp);
719 1.1 christos return tdep->vfpregset;
720 1.1 christos }
721 1.1 christos
722 1.1 christos return NULL;
723 1.1 christos }
724 1.1 christos
725 1.1 christos /* Core file register set sections. */
726 1.1 christos
727 1.1 christos static struct core_regset_section arm_linux_fpa_regset_sections[] =
728 1.1 christos {
729 1.1 christos { ".reg", ARM_LINUX_SIZEOF_GREGSET, "general-purpose" },
730 1.1 christos { ".reg2", ARM_LINUX_SIZEOF_NWFPE, "FPA floating-point" },
731 1.1 christos { NULL, 0}
732 1.1 christos };
733 1.1 christos
734 1.1 christos static struct core_regset_section arm_linux_vfp_regset_sections[] =
735 1.1 christos {
736 1.1 christos { ".reg", ARM_LINUX_SIZEOF_GREGSET, "general-purpose" },
737 1.1 christos { ".reg-arm-vfp", ARM_LINUX_SIZEOF_VFP, "VFP floating-point" },
738 1.1 christos { NULL, 0}
739 1.1 christos };
740 1.1 christos
741 1.1 christos /* Determine target description from core file. */
742 1.1 christos
743 1.1 christos static const struct target_desc *
744 1.1 christos arm_linux_core_read_description (struct gdbarch *gdbarch,
745 1.1 christos struct target_ops *target,
746 1.1 christos bfd *abfd)
747 1.1 christos {
748 1.1 christos CORE_ADDR arm_hwcap = 0;
749 1.1 christos
750 1.1 christos if (target_auxv_search (target, AT_HWCAP, &arm_hwcap) != 1)
751 1.1 christos return NULL;
752 1.1 christos
753 1.1 christos if (arm_hwcap & HWCAP_VFP)
754 1.1 christos {
755 1.1 christos /* NEON implies VFPv3-D32 or no-VFP unit. Say that we only support
756 1.1 christos Neon with VFPv3-D32. */
757 1.1 christos if (arm_hwcap & HWCAP_NEON)
758 1.1 christos return tdesc_arm_with_neon;
759 1.1 christos else if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
760 1.1 christos return tdesc_arm_with_vfpv3;
761 1.1 christos else
762 1.1 christos return tdesc_arm_with_vfpv2;
763 1.1 christos }
764 1.1 christos
765 1.1 christos return NULL;
766 1.1 christos }
767 1.1 christos
768 1.1 christos
769 1.1 christos /* Copy the value of next pc of sigreturn and rt_sigrturn into PC,
770 1.1 christos return 1. In addition, set IS_THUMB depending on whether we
771 1.1 christos will return to ARM or Thumb code. Return 0 if it is not a
772 1.1 christos rt_sigreturn/sigreturn syscall. */
773 1.1 christos static int
774 1.1 christos arm_linux_sigreturn_return_addr (struct frame_info *frame,
775 1.1 christos unsigned long svc_number,
776 1.1 christos CORE_ADDR *pc, int *is_thumb)
777 1.1 christos {
778 1.1 christos /* Is this a sigreturn or rt_sigreturn syscall? */
779 1.1 christos if (svc_number == 119 || svc_number == 173)
780 1.1 christos {
781 1.1 christos if (get_frame_type (frame) == SIGTRAMP_FRAME)
782 1.1 christos {
783 1.1 christos ULONGEST t_bit = arm_psr_thumb_bit (frame_unwind_arch (frame));
784 1.1 christos CORE_ADDR cpsr
785 1.1 christos = frame_unwind_register_unsigned (frame, ARM_PS_REGNUM);
786 1.1 christos
787 1.1 christos *is_thumb = (cpsr & t_bit) != 0;
788 1.1 christos *pc = frame_unwind_caller_pc (frame);
789 1.1 christos return 1;
790 1.1 christos }
791 1.1 christos }
792 1.1 christos return 0;
793 1.1 christos }
794 1.1 christos
795 1.1 christos /* At a ptrace syscall-stop, return the syscall number. This either
796 1.1 christos comes from the SWI instruction (OABI) or from r7 (EABI).
797 1.1 christos
798 1.1 christos When the function fails, it should return -1. */
799 1.1 christos
800 1.1 christos static LONGEST
801 1.1 christos arm_linux_get_syscall_number (struct gdbarch *gdbarch,
802 1.1 christos ptid_t ptid)
803 1.1 christos {
804 1.1 christos struct regcache *regs = get_thread_regcache (ptid);
805 1.1 christos struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
806 1.1 christos
807 1.1 christos ULONGEST pc;
808 1.1 christos ULONGEST cpsr;
809 1.1 christos ULONGEST t_bit = arm_psr_thumb_bit (gdbarch);
810 1.1 christos int is_thumb;
811 1.1 christos ULONGEST svc_number = -1;
812 1.1 christos
813 1.1 christos regcache_cooked_read_unsigned (regs, ARM_PC_REGNUM, &pc);
814 1.1 christos regcache_cooked_read_unsigned (regs, ARM_PS_REGNUM, &cpsr);
815 1.1 christos is_thumb = (cpsr & t_bit) != 0;
816 1.1 christos
817 1.1 christos if (is_thumb)
818 1.1 christos {
819 1.1 christos regcache_cooked_read_unsigned (regs, 7, &svc_number);
820 1.1 christos }
821 1.1 christos else
822 1.1 christos {
823 1.1 christos enum bfd_endian byte_order_for_code =
824 1.1 christos gdbarch_byte_order_for_code (gdbarch);
825 1.1 christos
826 1.1 christos /* PC gets incremented before the syscall-stop, so read the
827 1.1 christos previous instruction. */
828 1.1 christos unsigned long this_instr =
829 1.1 christos read_memory_unsigned_integer (pc - 4, 4, byte_order_for_code);
830 1.1 christos
831 1.1 christos unsigned long svc_operand = (0x00ffffff & this_instr);
832 1.1 christos
833 1.1 christos if (svc_operand)
834 1.1 christos {
835 1.1 christos /* OABI */
836 1.1 christos svc_number = svc_operand - 0x900000;
837 1.1 christos }
838 1.1 christos else
839 1.1 christos {
840 1.1 christos /* EABI */
841 1.1 christos regcache_cooked_read_unsigned (regs, 7, &svc_number);
842 1.1 christos }
843 1.1 christos }
844 1.1 christos
845 1.1 christos return svc_number;
846 1.1 christos }
847 1.1 christos
848 1.1 christos /* When FRAME is at a syscall instruction, return the PC of the next
849 1.1 christos instruction to be executed. */
850 1.1 christos
851 1.1 christos static CORE_ADDR
852 1.1 christos arm_linux_syscall_next_pc (struct frame_info *frame)
853 1.1 christos {
854 1.1 christos CORE_ADDR pc = get_frame_pc (frame);
855 1.1 christos CORE_ADDR return_addr = 0;
856 1.1 christos int is_thumb = arm_frame_is_thumb (frame);
857 1.1 christos ULONGEST svc_number = 0;
858 1.1 christos
859 1.1 christos if (is_thumb)
860 1.1 christos {
861 1.1 christos svc_number = get_frame_register_unsigned (frame, 7);
862 1.1 christos return_addr = pc + 2;
863 1.1 christos }
864 1.1 christos else
865 1.1 christos {
866 1.1 christos struct gdbarch *gdbarch = get_frame_arch (frame);
867 1.1 christos enum bfd_endian byte_order_for_code =
868 1.1 christos gdbarch_byte_order_for_code (gdbarch);
869 1.1 christos unsigned long this_instr =
870 1.1 christos read_memory_unsigned_integer (pc, 4, byte_order_for_code);
871 1.1 christos
872 1.1 christos unsigned long svc_operand = (0x00ffffff & this_instr);
873 1.1 christos if (svc_operand) /* OABI. */
874 1.1 christos {
875 1.1 christos svc_number = svc_operand - 0x900000;
876 1.1 christos }
877 1.1 christos else /* EABI. */
878 1.1 christos {
879 1.1 christos svc_number = get_frame_register_unsigned (frame, 7);
880 1.1 christos }
881 1.1 christos
882 1.1 christos return_addr = pc + 4;
883 1.1 christos }
884 1.1 christos
885 1.1 christos arm_linux_sigreturn_return_addr (frame, svc_number, &return_addr, &is_thumb);
886 1.1 christos
887 1.1 christos /* Addresses for calling Thumb functions have the bit 0 set. */
888 1.1 christos if (is_thumb)
889 1.1 christos return_addr |= 1;
890 1.1 christos
891 1.1 christos return return_addr;
892 1.1 christos }
893 1.1 christos
894 1.1 christos
895 1.1 christos /* Insert a single step breakpoint at the next executed instruction. */
896 1.1 christos
897 1.1 christos static int
898 1.1 christos arm_linux_software_single_step (struct frame_info *frame)
899 1.1 christos {
900 1.1 christos struct gdbarch *gdbarch = get_frame_arch (frame);
901 1.1 christos struct address_space *aspace = get_frame_address_space (frame);
902 1.1 christos CORE_ADDR next_pc;
903 1.1 christos
904 1.1 christos if (arm_deal_with_atomic_sequence (frame))
905 1.1 christos return 1;
906 1.1 christos
907 1.1 christos next_pc = arm_get_next_pc (frame, get_frame_pc (frame));
908 1.1 christos
909 1.1 christos /* The Linux kernel offers some user-mode helpers in a high page. We can
910 1.1 christos not read this page (as of 2.6.23), and even if we could then we couldn't
911 1.1 christos set breakpoints in it, and even if we could then the atomic operations
912 1.1 christos would fail when interrupted. They are all called as functions and return
913 1.1 christos to the address in LR, so step to there instead. */
914 1.1 christos if (next_pc > 0xffff0000)
915 1.1 christos next_pc = get_frame_register_unsigned (frame, ARM_LR_REGNUM);
916 1.1 christos
917 1.1 christos arm_insert_single_step_breakpoint (gdbarch, aspace, next_pc);
918 1.1 christos
919 1.1 christos return 1;
920 1.1 christos }
921 1.1 christos
922 1.1 christos /* Support for displaced stepping of Linux SVC instructions. */
923 1.1 christos
924 1.1 christos static void
925 1.1 christos arm_linux_cleanup_svc (struct gdbarch *gdbarch,
926 1.1 christos struct regcache *regs,
927 1.1 christos struct displaced_step_closure *dsc)
928 1.1 christos {
929 1.1 christos CORE_ADDR from = dsc->insn_addr;
930 1.1 christos ULONGEST apparent_pc;
931 1.1 christos int within_scratch;
932 1.1 christos
933 1.1 christos regcache_cooked_read_unsigned (regs, ARM_PC_REGNUM, &apparent_pc);
934 1.1 christos
935 1.1 christos within_scratch = (apparent_pc >= dsc->scratch_base
936 1.1 christos && apparent_pc < (dsc->scratch_base
937 1.1 christos + DISPLACED_MODIFIED_INSNS * 4 + 4));
938 1.1 christos
939 1.1 christos if (debug_displaced)
940 1.1 christos {
941 1.1 christos fprintf_unfiltered (gdb_stdlog, "displaced: PC is apparently %.8lx after "
942 1.1 christos "SVC step ", (unsigned long) apparent_pc);
943 1.1 christos if (within_scratch)
944 1.1 christos fprintf_unfiltered (gdb_stdlog, "(within scratch space)\n");
945 1.1 christos else
946 1.1 christos fprintf_unfiltered (gdb_stdlog, "(outside scratch space)\n");
947 1.1 christos }
948 1.1 christos
949 1.1 christos if (within_scratch)
950 1.1 christos displaced_write_reg (regs, dsc, ARM_PC_REGNUM, from + 4, BRANCH_WRITE_PC);
951 1.1 christos }
952 1.1 christos
953 1.1 christos static int
954 1.1 christos arm_linux_copy_svc (struct gdbarch *gdbarch, struct regcache *regs,
955 1.1 christos struct displaced_step_closure *dsc)
956 1.1 christos {
957 1.1 christos CORE_ADDR return_to = 0;
958 1.1 christos
959 1.1 christos struct frame_info *frame;
960 1.1 christos unsigned int svc_number = displaced_read_reg (regs, dsc, 7);
961 1.1 christos int is_sigreturn = 0;
962 1.1 christos int is_thumb;
963 1.1 christos
964 1.1 christos frame = get_current_frame ();
965 1.1 christos
966 1.1 christos is_sigreturn = arm_linux_sigreturn_return_addr(frame, svc_number,
967 1.1 christos &return_to, &is_thumb);
968 1.1 christos if (is_sigreturn)
969 1.1 christos {
970 1.1 christos struct symtab_and_line sal;
971 1.1 christos
972 1.1 christos if (debug_displaced)
973 1.1 christos fprintf_unfiltered (gdb_stdlog, "displaced: found "
974 1.1 christos "sigreturn/rt_sigreturn SVC call. PC in frame = %lx\n",
975 1.1 christos (unsigned long) get_frame_pc (frame));
976 1.1 christos
977 1.1 christos if (debug_displaced)
978 1.1 christos fprintf_unfiltered (gdb_stdlog, "displaced: unwind pc = %lx. "
979 1.1 christos "Setting momentary breakpoint.\n", (unsigned long) return_to);
980 1.1 christos
981 1.1 christos gdb_assert (inferior_thread ()->control.step_resume_breakpoint
982 1.1 christos == NULL);
983 1.1 christos
984 1.1 christos sal = find_pc_line (return_to, 0);
985 1.1 christos sal.pc = return_to;
986 1.1 christos sal.section = find_pc_overlay (return_to);
987 1.1 christos sal.explicit_pc = 1;
988 1.1 christos
989 1.1 christos frame = get_prev_frame (frame);
990 1.1 christos
991 1.1 christos if (frame)
992 1.1 christos {
993 1.1 christos inferior_thread ()->control.step_resume_breakpoint
994 1.1 christos = set_momentary_breakpoint (gdbarch, sal, get_frame_id (frame),
995 1.1 christos bp_step_resume);
996 1.1 christos
997 1.1 christos /* set_momentary_breakpoint invalidates FRAME. */
998 1.1 christos frame = NULL;
999 1.1 christos
1000 1.1 christos /* We need to make sure we actually insert the momentary
1001 1.1 christos breakpoint set above. */
1002 1.1 christos insert_breakpoints ();
1003 1.1 christos }
1004 1.1 christos else if (debug_displaced)
1005 1.1 christos fprintf_unfiltered (gdb_stderr, "displaced: couldn't find previous "
1006 1.1 christos "frame to set momentary breakpoint for "
1007 1.1 christos "sigreturn/rt_sigreturn\n");
1008 1.1 christos }
1009 1.1 christos else if (debug_displaced)
1010 1.1 christos fprintf_unfiltered (gdb_stdlog, "displaced: sigreturn/rt_sigreturn "
1011 1.1 christos "SVC call not in signal trampoline frame\n");
1012 1.1 christos
1013 1.1 christos
1014 1.1 christos /* Preparation: If we detect sigreturn, set momentary breakpoint at resume
1015 1.1 christos location, else nothing.
1016 1.1 christos Insn: unmodified svc.
1017 1.1 christos Cleanup: if pc lands in scratch space, pc <- insn_addr + 4
1018 1.1 christos else leave pc alone. */
1019 1.1 christos
1020 1.1 christos
1021 1.1 christos dsc->cleanup = &arm_linux_cleanup_svc;
1022 1.1 christos /* Pretend we wrote to the PC, so cleanup doesn't set PC to the next
1023 1.1 christos instruction. */
1024 1.1 christos dsc->wrote_to_pc = 1;
1025 1.1 christos
1026 1.1 christos return 0;
1027 1.1 christos }
1028 1.1 christos
1029 1.1 christos
1030 1.1 christos /* The following two functions implement single-stepping over calls to Linux
1031 1.1 christos kernel helper routines, which perform e.g. atomic operations on architecture
1032 1.1 christos variants which don't support them natively.
1033 1.1 christos
1034 1.1 christos When this function is called, the PC will be pointing at the kernel helper
1035 1.1 christos (at an address inaccessible to GDB), and r14 will point to the return
1036 1.1 christos address. Displaced stepping always executes code in the copy area:
1037 1.1 christos so, make the copy-area instruction branch back to the kernel helper (the
1038 1.1 christos "from" address), and make r14 point to the breakpoint in the copy area. In
1039 1.1 christos that way, we regain control once the kernel helper returns, and can clean
1040 1.1 christos up appropriately (as if we had just returned from the kernel helper as it
1041 1.1 christos would have been called from the non-displaced location). */
1042 1.1 christos
1043 1.1 christos static void
1044 1.1 christos cleanup_kernel_helper_return (struct gdbarch *gdbarch,
1045 1.1 christos struct regcache *regs,
1046 1.1 christos struct displaced_step_closure *dsc)
1047 1.1 christos {
1048 1.1 christos displaced_write_reg (regs, dsc, ARM_LR_REGNUM, dsc->tmp[0], CANNOT_WRITE_PC);
1049 1.1 christos displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->tmp[0], BRANCH_WRITE_PC);
1050 1.1 christos }
1051 1.1 christos
1052 1.1 christos static void
1053 1.1 christos arm_catch_kernel_helper_return (struct gdbarch *gdbarch, CORE_ADDR from,
1054 1.1 christos CORE_ADDR to, struct regcache *regs,
1055 1.1 christos struct displaced_step_closure *dsc)
1056 1.1 christos {
1057 1.1 christos enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1058 1.1 christos
1059 1.1 christos dsc->numinsns = 1;
1060 1.1 christos dsc->insn_addr = from;
1061 1.1 christos dsc->cleanup = &cleanup_kernel_helper_return;
1062 1.1 christos /* Say we wrote to the PC, else cleanup will set PC to the next
1063 1.1 christos instruction in the helper, which isn't helpful. */
1064 1.1 christos dsc->wrote_to_pc = 1;
1065 1.1 christos
1066 1.1 christos /* Preparation: tmp[0] <- r14
1067 1.1 christos r14 <- <scratch space>+4
1068 1.1 christos *(<scratch space>+8) <- from
1069 1.1 christos Insn: ldr pc, [r14, #4]
1070 1.1 christos Cleanup: r14 <- tmp[0], pc <- tmp[0]. */
1071 1.1 christos
1072 1.1 christos dsc->tmp[0] = displaced_read_reg (regs, dsc, ARM_LR_REGNUM);
1073 1.1 christos displaced_write_reg (regs, dsc, ARM_LR_REGNUM, (ULONGEST) to + 4,
1074 1.1 christos CANNOT_WRITE_PC);
1075 1.1 christos write_memory_unsigned_integer (to + 8, 4, byte_order, from);
1076 1.1 christos
1077 1.1 christos dsc->modinsn[0] = 0xe59ef004; /* ldr pc, [lr, #4]. */
1078 1.1 christos }
1079 1.1 christos
1080 1.1 christos /* Linux-specific displaced step instruction copying function. Detects when
1081 1.1 christos the program has stepped into a Linux kernel helper routine (which must be
1082 1.1 christos handled as a special case), falling back to arm_displaced_step_copy_insn()
1083 1.1 christos if it hasn't. */
1084 1.1 christos
1085 1.1 christos static struct displaced_step_closure *
1086 1.1 christos arm_linux_displaced_step_copy_insn (struct gdbarch *gdbarch,
1087 1.1 christos CORE_ADDR from, CORE_ADDR to,
1088 1.1 christos struct regcache *regs)
1089 1.1 christos {
1090 1.1 christos struct displaced_step_closure *dsc
1091 1.1 christos = xmalloc (sizeof (struct displaced_step_closure));
1092 1.1 christos
1093 1.1 christos /* Detect when we enter an (inaccessible by GDB) Linux kernel helper, and
1094 1.1 christos stop at the return location. */
1095 1.1 christos if (from > 0xffff0000)
1096 1.1 christos {
1097 1.1 christos if (debug_displaced)
1098 1.1 christos fprintf_unfiltered (gdb_stdlog, "displaced: detected kernel helper "
1099 1.1 christos "at %.8lx\n", (unsigned long) from);
1100 1.1 christos
1101 1.1 christos arm_catch_kernel_helper_return (gdbarch, from, to, regs, dsc);
1102 1.1 christos }
1103 1.1 christos else
1104 1.1 christos {
1105 1.1 christos /* Override the default handling of SVC instructions. */
1106 1.1 christos dsc->u.svc.copy_svc_os = arm_linux_copy_svc;
1107 1.1 christos
1108 1.1 christos arm_process_displaced_insn (gdbarch, from, to, regs, dsc);
1109 1.1 christos }
1110 1.1 christos
1111 1.1 christos arm_displaced_init_closure (gdbarch, from, to, dsc);
1112 1.1 christos
1113 1.1 christos return dsc;
1114 1.1 christos }
1115 1.1 christos
1116 1.1 christos /* Implementation of `gdbarch_stap_is_single_operand', as defined in
1117 1.1 christos gdbarch.h. */
1118 1.1 christos
1119 1.1 christos static int
1120 1.1 christos arm_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
1121 1.1 christos {
1122 1.1 christos return (*s == '#' || *s == '$' || isdigit (*s) /* Literal number. */
1123 1.1 christos || *s == '[' /* Register indirection or
1124 1.1 christos displacement. */
1125 1.1 christos || isalpha (*s)); /* Register value. */
1126 1.1 christos }
1127 1.1 christos
1128 1.1 christos /* This routine is used to parse a special token in ARM's assembly.
1129 1.1 christos
1130 1.1 christos The special tokens parsed by it are:
1131 1.1 christos
1132 1.1 christos - Register displacement (e.g, [fp, #-8])
1133 1.1 christos
1134 1.1 christos It returns one if the special token has been parsed successfully,
1135 1.1 christos or zero if the current token is not considered special. */
1136 1.1 christos
1137 1.1 christos static int
1138 1.1 christos arm_stap_parse_special_token (struct gdbarch *gdbarch,
1139 1.1 christos struct stap_parse_info *p)
1140 1.1 christos {
1141 1.1 christos if (*p->arg == '[')
1142 1.1 christos {
1143 1.1 christos /* Temporary holder for lookahead. */
1144 1.1 christos const char *tmp = p->arg;
1145 1.1 christos char *endp;
1146 1.1 christos /* Used to save the register name. */
1147 1.1 christos const char *start;
1148 1.1 christos char *regname;
1149 1.1 christos int len, offset;
1150 1.1 christos int got_minus = 0;
1151 1.1 christos long displacement;
1152 1.1 christos struct stoken str;
1153 1.1 christos
1154 1.1 christos ++tmp;
1155 1.1 christos start = tmp;
1156 1.1 christos
1157 1.1 christos /* Register name. */
1158 1.1 christos while (isalnum (*tmp))
1159 1.1 christos ++tmp;
1160 1.1 christos
1161 1.1 christos if (*tmp != ',')
1162 1.1 christos return 0;
1163 1.1 christos
1164 1.1 christos len = tmp - start;
1165 1.1 christos regname = alloca (len + 2);
1166 1.1 christos
1167 1.1 christos offset = 0;
1168 1.1 christos if (isdigit (*start))
1169 1.1 christos {
1170 1.1 christos /* If we are dealing with a register whose name begins with a
1171 1.1 christos digit, it means we should prefix the name with the letter
1172 1.1 christos `r', because GDB expects this name pattern. Otherwise (e.g.,
1173 1.1 christos we are dealing with the register `fp'), we don't need to
1174 1.1 christos add such a prefix. */
1175 1.1 christos regname[0] = 'r';
1176 1.1 christos offset = 1;
1177 1.1 christos }
1178 1.1 christos
1179 1.1 christos strncpy (regname + offset, start, len);
1180 1.1 christos len += offset;
1181 1.1 christos regname[len] = '\0';
1182 1.1 christos
1183 1.1 christos if (user_reg_map_name_to_regnum (gdbarch, regname, len) == -1)
1184 1.1 christos error (_("Invalid register name `%s' on expression `%s'."),
1185 1.1 christos regname, p->saved_arg);
1186 1.1 christos
1187 1.1 christos ++tmp;
1188 1.1 christos tmp = skip_spaces_const (tmp);
1189 1.1 christos if (*tmp == '#' || *tmp == '$')
1190 1.1 christos ++tmp;
1191 1.1 christos
1192 1.1 christos if (*tmp == '-')
1193 1.1 christos {
1194 1.1 christos ++tmp;
1195 1.1 christos got_minus = 1;
1196 1.1 christos }
1197 1.1 christos
1198 1.1 christos displacement = strtol (tmp, &endp, 10);
1199 1.1 christos tmp = endp;
1200 1.1 christos
1201 1.1 christos /* Skipping last `]'. */
1202 1.1 christos if (*tmp++ != ']')
1203 1.1 christos return 0;
1204 1.1 christos
1205 1.1 christos /* The displacement. */
1206 1.1 christos write_exp_elt_opcode (OP_LONG);
1207 1.1 christos write_exp_elt_type (builtin_type (gdbarch)->builtin_long);
1208 1.1 christos write_exp_elt_longcst (displacement);
1209 1.1 christos write_exp_elt_opcode (OP_LONG);
1210 1.1 christos if (got_minus)
1211 1.1 christos write_exp_elt_opcode (UNOP_NEG);
1212 1.1 christos
1213 1.1 christos /* The register name. */
1214 1.1 christos write_exp_elt_opcode (OP_REGISTER);
1215 1.1 christos str.ptr = regname;
1216 1.1 christos str.length = len;
1217 1.1 christos write_exp_string (str);
1218 1.1 christos write_exp_elt_opcode (OP_REGISTER);
1219 1.1 christos
1220 1.1 christos write_exp_elt_opcode (BINOP_ADD);
1221 1.1 christos
1222 1.1 christos /* Casting to the expected type. */
1223 1.1 christos write_exp_elt_opcode (UNOP_CAST);
1224 1.1 christos write_exp_elt_type (lookup_pointer_type (p->arg_type));
1225 1.1 christos write_exp_elt_opcode (UNOP_CAST);
1226 1.1 christos
1227 1.1 christos write_exp_elt_opcode (UNOP_IND);
1228 1.1 christos
1229 1.1 christos p->arg = tmp;
1230 1.1 christos }
1231 1.1 christos else
1232 1.1 christos return 0;
1233 1.1 christos
1234 1.1 christos return 1;
1235 1.1 christos }
1236 1.1 christos
1237 1.1 christos static void
1238 1.1 christos arm_linux_init_abi (struct gdbarch_info info,
1239 1.1 christos struct gdbarch *gdbarch)
1240 1.1 christos {
1241 1.1 christos static const char *const stap_integer_prefixes[] = { "#", "$", "", NULL };
1242 1.1 christos static const char *const stap_register_prefixes[] = { "r", NULL };
1243 1.1 christos static const char *const stap_register_indirection_prefixes[] = { "[",
1244 1.1 christos NULL };
1245 1.1 christos static const char *const stap_register_indirection_suffixes[] = { "]",
1246 1.1 christos NULL };
1247 1.1 christos struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1248 1.1 christos
1249 1.1 christos linux_init_abi (info, gdbarch);
1250 1.1 christos
1251 1.1 christos tdep->lowest_pc = 0x8000;
1252 1.1 christos if (info.byte_order == BFD_ENDIAN_BIG)
1253 1.1 christos {
1254 1.1 christos if (tdep->arm_abi == ARM_ABI_AAPCS)
1255 1.1 christos tdep->arm_breakpoint = eabi_linux_arm_be_breakpoint;
1256 1.1 christos else
1257 1.1 christos tdep->arm_breakpoint = arm_linux_arm_be_breakpoint;
1258 1.1 christos tdep->thumb_breakpoint = arm_linux_thumb_be_breakpoint;
1259 1.1 christos tdep->thumb2_breakpoint = arm_linux_thumb2_be_breakpoint;
1260 1.1 christos }
1261 1.1 christos else
1262 1.1 christos {
1263 1.1 christos if (tdep->arm_abi == ARM_ABI_AAPCS)
1264 1.1 christos tdep->arm_breakpoint = eabi_linux_arm_le_breakpoint;
1265 1.1 christos else
1266 1.1 christos tdep->arm_breakpoint = arm_linux_arm_le_breakpoint;
1267 1.1 christos tdep->thumb_breakpoint = arm_linux_thumb_le_breakpoint;
1268 1.1 christos tdep->thumb2_breakpoint = arm_linux_thumb2_le_breakpoint;
1269 1.1 christos }
1270 1.1 christos tdep->arm_breakpoint_size = sizeof (arm_linux_arm_le_breakpoint);
1271 1.1 christos tdep->thumb_breakpoint_size = sizeof (arm_linux_thumb_le_breakpoint);
1272 1.1 christos tdep->thumb2_breakpoint_size = sizeof (arm_linux_thumb2_le_breakpoint);
1273 1.1 christos
1274 1.1 christos if (tdep->fp_model == ARM_FLOAT_AUTO)
1275 1.1 christos tdep->fp_model = ARM_FLOAT_FPA;
1276 1.1 christos
1277 1.1 christos switch (tdep->fp_model)
1278 1.1 christos {
1279 1.1 christos case ARM_FLOAT_FPA:
1280 1.1 christos tdep->jb_pc = ARM_LINUX_JB_PC_FPA;
1281 1.1 christos break;
1282 1.1 christos case ARM_FLOAT_SOFT_FPA:
1283 1.1 christos case ARM_FLOAT_SOFT_VFP:
1284 1.1 christos case ARM_FLOAT_VFP:
1285 1.1 christos tdep->jb_pc = ARM_LINUX_JB_PC_EABI;
1286 1.1 christos break;
1287 1.1 christos default:
1288 1.1 christos internal_error
1289 1.1 christos (__FILE__, __LINE__,
1290 1.1 christos _("arm_linux_init_abi: Floating point model not supported"));
1291 1.1 christos break;
1292 1.1 christos }
1293 1.1 christos tdep->jb_elt_size = ARM_LINUX_JB_ELEMENT_SIZE;
1294 1.1 christos
1295 1.1 christos set_solib_svr4_fetch_link_map_offsets
1296 1.1 christos (gdbarch, svr4_ilp32_fetch_link_map_offsets);
1297 1.1 christos
1298 1.1 christos /* Single stepping. */
1299 1.1 christos set_gdbarch_software_single_step (gdbarch, arm_linux_software_single_step);
1300 1.1 christos
1301 1.1 christos /* Shared library handling. */
1302 1.1 christos set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
1303 1.1 christos set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
1304 1.1 christos
1305 1.1 christos /* Enable TLS support. */
1306 1.1 christos set_gdbarch_fetch_tls_load_module_address (gdbarch,
1307 1.1 christos svr4_fetch_objfile_link_map);
1308 1.1 christos
1309 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1310 1.1 christos &arm_linux_sigreturn_tramp_frame);
1311 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1312 1.1 christos &arm_linux_rt_sigreturn_tramp_frame);
1313 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1314 1.1 christos &arm_eabi_linux_sigreturn_tramp_frame);
1315 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1316 1.1 christos &arm_eabi_linux_rt_sigreturn_tramp_frame);
1317 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1318 1.1 christos &arm_linux_restart_syscall_tramp_frame);
1319 1.1 christos tramp_frame_prepend_unwinder (gdbarch,
1320 1.1 christos &arm_kernel_linux_restart_syscall_tramp_frame);
1321 1.1 christos
1322 1.1 christos /* Core file support. */
1323 1.1 christos set_gdbarch_regset_from_core_section (gdbarch,
1324 1.1 christos arm_linux_regset_from_core_section);
1325 1.1 christos set_gdbarch_core_read_description (gdbarch, arm_linux_core_read_description);
1326 1.1 christos
1327 1.1 christos if (tdep->have_vfp_registers)
1328 1.1 christos set_gdbarch_core_regset_sections (gdbarch, arm_linux_vfp_regset_sections);
1329 1.1 christos else if (tdep->have_fpa_registers)
1330 1.1 christos set_gdbarch_core_regset_sections (gdbarch, arm_linux_fpa_regset_sections);
1331 1.1 christos
1332 1.1 christos set_gdbarch_get_siginfo_type (gdbarch, linux_get_siginfo_type);
1333 1.1 christos
1334 1.1 christos /* Displaced stepping. */
1335 1.1 christos set_gdbarch_displaced_step_copy_insn (gdbarch,
1336 1.1 christos arm_linux_displaced_step_copy_insn);
1337 1.1 christos set_gdbarch_displaced_step_fixup (gdbarch, arm_displaced_step_fixup);
1338 1.1 christos set_gdbarch_displaced_step_free_closure (gdbarch,
1339 1.1 christos simple_displaced_step_free_closure);
1340 1.1 christos set_gdbarch_displaced_step_location (gdbarch, displaced_step_at_entry_point);
1341 1.1 christos
1342 1.1 christos /* Reversible debugging, process record. */
1343 1.1 christos set_gdbarch_process_record (gdbarch, arm_process_record);
1344 1.1 christos
1345 1.1 christos /* SystemTap functions. */
1346 1.1 christos set_gdbarch_stap_integer_prefixes (gdbarch, stap_integer_prefixes);
1347 1.1 christos set_gdbarch_stap_register_prefixes (gdbarch, stap_register_prefixes);
1348 1.1 christos set_gdbarch_stap_register_indirection_prefixes (gdbarch,
1349 1.1 christos stap_register_indirection_prefixes);
1350 1.1 christos set_gdbarch_stap_register_indirection_suffixes (gdbarch,
1351 1.1 christos stap_register_indirection_suffixes);
1352 1.1 christos set_gdbarch_stap_gdb_register_prefix (gdbarch, "r");
1353 1.1 christos set_gdbarch_stap_is_single_operand (gdbarch, arm_stap_is_single_operand);
1354 1.1 christos set_gdbarch_stap_parse_special_token (gdbarch,
1355 1.1 christos arm_stap_parse_special_token);
1356 1.1 christos
1357 1.1 christos tdep->syscall_next_pc = arm_linux_syscall_next_pc;
1358 1.1 christos
1359 1.1 christos /* `catch syscall' */
1360 1.1 christos set_xml_syscall_file_name ("syscalls/arm-linux.xml");
1361 1.1 christos set_gdbarch_get_syscall_number (gdbarch, arm_linux_get_syscall_number);
1362 1.1 christos
1363 1.1 christos /* Syscall record. */
1364 1.1 christos tdep->arm_swi_record = NULL;
1365 1.1 christos }
1366 1.1 christos
1367 1.1 christos /* Provide a prototype to silence -Wmissing-prototypes. */
1368 1.1 christos extern initialize_file_ftype _initialize_arm_linux_tdep;
1369 1.1 christos
1370 1.1 christos void
1371 1.1 christos _initialize_arm_linux_tdep (void)
1372 1.1 christos {
1373 1.1 christos gdbarch_register_osabi (bfd_arch_arm, 0, GDB_OSABI_LINUX,
1374 1.1 christos arm_linux_init_abi);
1375 1.1 christos }
1376