Remove usage of find_inferior in win32-low.c
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-arm-low.c
CommitLineData
0a30fbc4 1/* GNU/Linux/ARM specific low level interface, for the remote server for GDB.
61baf725 2 Copyright (C) 1995-2017 Free Software Foundation, Inc.
0a30fbc4
DJ
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
0a30fbc4
DJ
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
0a30fbc4
DJ
18
19#include "server.h"
58caa3dc 20#include "linux-low.h"
deca266c 21#include "arch/arm.h"
d9311bfa
AT
22#include "arch/arm-linux.h"
23#include "arch/arm-get-next-pcs.h"
bd9e6534 24#include "linux-aarch32-low.h"
0a30fbc4 25
bd9e6534 26#include <sys/uio.h>
3743bb4f
DE
27/* Don't include elf.h if linux/elf.h got included by gdb_proc_service.h.
28 On Bionic elf.h and linux/elf.h have conflicting definitions. */
29#ifndef ELFMAG0
58d6951d 30#include <elf.h>
3743bb4f 31#endif
5826e159 32#include "nat/gdb_ptrace.h"
09b4ad9f 33#include <signal.h>
d9311bfa 34#include <sys/syscall.h>
9308fc88 35
58d6951d 36/* Defined in auto-generated files. */
d05b4ac3 37void init_registers_arm (void);
3aee8918
PA
38extern const struct target_desc *tdesc_arm;
39
d05b4ac3 40void init_registers_arm_with_iwmmxt (void);
3aee8918
PA
41extern const struct target_desc *tdesc_arm_with_iwmmxt;
42
58d6951d 43void init_registers_arm_with_vfpv2 (void);
3aee8918
PA
44extern const struct target_desc *tdesc_arm_with_vfpv2;
45
58d6951d 46void init_registers_arm_with_vfpv3 (void);
3aee8918
PA
47extern const struct target_desc *tdesc_arm_with_vfpv3;
48
9308fc88
DJ
49#ifndef PTRACE_GET_THREAD_AREA
50#define PTRACE_GET_THREAD_AREA 22
51#endif
52
fb1e4ffc
DJ
53#ifndef PTRACE_GETWMMXREGS
54# define PTRACE_GETWMMXREGS 18
55# define PTRACE_SETWMMXREGS 19
56#endif
57
58d6951d
DJ
58#ifndef PTRACE_GETVFPREGS
59# define PTRACE_GETVFPREGS 27
60# define PTRACE_SETVFPREGS 28
61#endif
62
09b4ad9f
UW
63#ifndef PTRACE_GETHBPREGS
64#define PTRACE_GETHBPREGS 29
65#define PTRACE_SETHBPREGS 30
66#endif
67
68/* Information describing the hardware breakpoint capabilities. */
71487fd7 69static struct
09b4ad9f
UW
70{
71 unsigned char arch;
72 unsigned char max_wp_length;
73 unsigned char wp_count;
74 unsigned char bp_count;
71487fd7 75} arm_linux_hwbp_cap;
09b4ad9f
UW
76
77/* Enum describing the different types of ARM hardware break-/watch-points. */
78typedef enum
79{
80 arm_hwbp_break = 0,
81 arm_hwbp_load = 1,
82 arm_hwbp_store = 2,
83 arm_hwbp_access = 3
84} arm_hwbp_type;
85
86/* Type describing an ARM Hardware Breakpoint Control register value. */
87typedef unsigned int arm_hwbp_control_t;
88
89/* Structure used to keep track of hardware break-/watch-points. */
90struct arm_linux_hw_breakpoint
91{
92 /* Address to break on, or being watched. */
93 unsigned int address;
94 /* Control register for break-/watch- point. */
95 arm_hwbp_control_t control;
96};
97
98/* Since we cannot dynamically allocate subfields of arch_process_info,
99 assume a maximum number of supported break-/watchpoints. */
100#define MAX_BPTS 32
101#define MAX_WPTS 32
102
103/* Per-process arch-specific data we want to keep. */
104struct arch_process_info
105{
106 /* Hardware breakpoints for this process. */
107 struct arm_linux_hw_breakpoint bpts[MAX_BPTS];
108 /* Hardware watchpoints for this process. */
109 struct arm_linux_hw_breakpoint wpts[MAX_WPTS];
110};
111
112/* Per-thread arch-specific data we want to keep. */
113struct arch_lwp_info
114{
115 /* Non-zero if our copy differs from what's recorded in the thread. */
116 char bpts_changed[MAX_BPTS];
117 char wpts_changed[MAX_WPTS];
118 /* Cached stopped data address. */
119 CORE_ADDR stopped_data_address;
120};
121
58d6951d
DJ
122/* These are in <asm/elf.h> in current kernels. */
123#define HWCAP_VFP 64
124#define HWCAP_IWMMXT 512
125#define HWCAP_NEON 4096
126#define HWCAP_VFPv3 8192
127#define HWCAP_VFPv3D16 16384
128
0a30fbc4
DJ
129#ifdef HAVE_SYS_REG_H
130#include <sys/reg.h>
131#endif
132
23ce3b1c 133#define arm_num_regs 26
0a30fbc4 134
2ec06d2e 135static int arm_regmap[] = {
0a30fbc4
DJ
136 0, 4, 8, 12, 16, 20, 24, 28,
137 32, 36, 40, 44, 48, 52, 56, 60,
23ce3b1c
DJ
138 -1, -1, -1, -1, -1, -1, -1, -1, -1,
139 64
0a30fbc4
DJ
140};
141
d9311bfa
AT
142/* Forward declarations needed for get_next_pcs ops. */
143static ULONGEST get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr,
144 int len,
145 int byte_order);
146
147static CORE_ADDR get_next_pcs_addr_bits_remove (struct arm_get_next_pcs *self,
148 CORE_ADDR val);
149
553cb527 150static CORE_ADDR get_next_pcs_syscall_next_pc (struct arm_get_next_pcs *self);
d9311bfa
AT
151
152static int get_next_pcs_is_thumb (struct arm_get_next_pcs *self);
153
154/* get_next_pcs operations. */
155static struct arm_get_next_pcs_ops get_next_pcs_ops = {
156 get_next_pcs_read_memory_unsigned_integer,
157 get_next_pcs_syscall_next_pc,
158 get_next_pcs_addr_bits_remove,
ed443b61
YQ
159 get_next_pcs_is_thumb,
160 arm_linux_get_next_pcs_fixup,
d9311bfa
AT
161};
162
2ec06d2e
DJ
163static int
164arm_cannot_store_register (int regno)
0a30fbc4 165{
2ec06d2e 166 return (regno >= arm_num_regs);
0a30fbc4
DJ
167}
168
2ec06d2e
DJ
169static int
170arm_cannot_fetch_register (int regno)
0a30fbc4 171{
2ec06d2e 172 return (regno >= arm_num_regs);
0a30fbc4
DJ
173}
174
fb1e4ffc 175static void
442ea881 176arm_fill_wmmxregset (struct regcache *regcache, void *buf)
fb1e4ffc
DJ
177{
178 int i;
179
89abb039 180 if (regcache->tdesc != tdesc_arm_with_iwmmxt)
58d6951d
DJ
181 return;
182
fb1e4ffc 183 for (i = 0; i < 16; i++)
442ea881 184 collect_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
fb1e4ffc
DJ
185
186 /* We only have access to wcssf, wcasf, and wcgr0-wcgr3. */
187 for (i = 0; i < 6; i++)
442ea881
PA
188 collect_register (regcache, arm_num_regs + i + 16,
189 (char *) buf + 16 * 8 + i * 4);
fb1e4ffc
DJ
190}
191
192static void
442ea881 193arm_store_wmmxregset (struct regcache *regcache, const void *buf)
fb1e4ffc
DJ
194{
195 int i;
196
89abb039 197 if (regcache->tdesc != tdesc_arm_with_iwmmxt)
58d6951d
DJ
198 return;
199
fb1e4ffc 200 for (i = 0; i < 16; i++)
442ea881 201 supply_register (regcache, arm_num_regs + i, (char *) buf + i * 8);
fb1e4ffc
DJ
202
203 /* We only have access to wcssf, wcasf, and wcgr0-wcgr3. */
204 for (i = 0; i < 6; i++)
442ea881
PA
205 supply_register (regcache, arm_num_regs + i + 16,
206 (char *) buf + 16 * 8 + i * 4);
fb1e4ffc
DJ
207}
208
58d6951d 209static void
442ea881 210arm_fill_vfpregset (struct regcache *regcache, void *buf)
58d6951d 211{
bd9e6534 212 int num;
58d6951d 213
89abb039
YQ
214 if (regcache->tdesc == tdesc_arm_with_neon
215 || regcache->tdesc == tdesc_arm_with_vfpv3)
58d6951d 216 num = 32;
89abb039 217 else if (regcache->tdesc == tdesc_arm_with_vfpv2)
58d6951d 218 num = 16;
89abb039
YQ
219 else
220 return;
58d6951d 221
bd9e6534 222 arm_fill_vfpregset_num (regcache, buf, num);
58d6951d
DJ
223}
224
d9311bfa
AT
225/* Wrapper of UNMAKE_THUMB_ADDR for get_next_pcs. */
226static CORE_ADDR
227get_next_pcs_addr_bits_remove (struct arm_get_next_pcs *self, CORE_ADDR val)
228{
229 return UNMAKE_THUMB_ADDR (val);
230}
231
58d6951d 232static void
442ea881 233arm_store_vfpregset (struct regcache *regcache, const void *buf)
58d6951d 234{
bd9e6534 235 int num;
58d6951d 236
89abb039
YQ
237 if (regcache->tdesc == tdesc_arm_with_neon
238 || regcache->tdesc == tdesc_arm_with_vfpv3)
58d6951d 239 num = 32;
89abb039 240 else if (regcache->tdesc == tdesc_arm_with_vfpv2)
58d6951d 241 num = 16;
89abb039
YQ
242 else
243 return;
58d6951d 244
bd9e6534 245 arm_store_vfpregset_num (regcache, buf, num);
58d6951d 246}
fb1e4ffc 247
d9311bfa
AT
248/* Wrapper of arm_is_thumb_mode for get_next_pcs. */
249static int
250get_next_pcs_is_thumb (struct arm_get_next_pcs *self)
251{
252 return arm_is_thumb_mode ();
253}
254
255/* Read memory from the inferiror.
256 BYTE_ORDER is ignored and there to keep compatiblity with GDB's
257 read_memory_unsigned_integer. */
258static ULONGEST
259get_next_pcs_read_memory_unsigned_integer (CORE_ADDR memaddr,
260 int len,
261 int byte_order)
262{
263 ULONGEST res;
264
9e784964 265 res = 0;
694b382c
AT
266 target_read_memory (memaddr, (unsigned char *) &res, len);
267
d9311bfa
AT
268 return res;
269}
270
9308fc88
DJ
271/* Fetch the thread-local storage pointer for libthread_db. */
272
273ps_err_e
754653a7 274ps_get_thread_area (struct ps_prochandle *ph,
1b3f6016 275 lwpid_t lwpid, int idx, void **base)
9308fc88
DJ
276{
277 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
278 return PS_ERR;
279
280 /* IDX is the bias from the thread pointer to the beginning of the
281 thread descriptor. It has to be subtracted due to implementation
282 quirks in libthread_db. */
283 *base = (void *) ((char *)*base - idx);
284
285 return PS_OK;
286}
287
09b4ad9f 288
71487fd7
UW
289/* Query Hardware Breakpoint information for the target we are attached to
290 (using PID as ptrace argument) and set up arm_linux_hwbp_cap. */
291static void
292arm_linux_init_hwbp_cap (int pid)
09b4ad9f 293{
71487fd7 294 unsigned int val;
09b4ad9f 295
71487fd7
UW
296 if (ptrace (PTRACE_GETHBPREGS, pid, 0, &val) < 0)
297 return;
09b4ad9f 298
71487fd7
UW
299 arm_linux_hwbp_cap.arch = (unsigned char)((val >> 24) & 0xff);
300 if (arm_linux_hwbp_cap.arch == 0)
301 return;
09b4ad9f 302
71487fd7
UW
303 arm_linux_hwbp_cap.max_wp_length = (unsigned char)((val >> 16) & 0xff);
304 arm_linux_hwbp_cap.wp_count = (unsigned char)((val >> 8) & 0xff);
305 arm_linux_hwbp_cap.bp_count = (unsigned char)(val & 0xff);
09b4ad9f 306
71487fd7
UW
307 if (arm_linux_hwbp_cap.wp_count > MAX_WPTS)
308 internal_error (__FILE__, __LINE__, "Unsupported number of watchpoints");
309 if (arm_linux_hwbp_cap.bp_count > MAX_BPTS)
310 internal_error (__FILE__, __LINE__, "Unsupported number of breakpoints");
09b4ad9f
UW
311}
312
313/* How many hardware breakpoints are available? */
314static int
315arm_linux_get_hw_breakpoint_count (void)
316{
71487fd7 317 return arm_linux_hwbp_cap.bp_count;
09b4ad9f
UW
318}
319
320/* How many hardware watchpoints are available? */
321static int
322arm_linux_get_hw_watchpoint_count (void)
323{
71487fd7 324 return arm_linux_hwbp_cap.wp_count;
09b4ad9f
UW
325}
326
327/* Maximum length of area watched by hardware watchpoint. */
328static int
329arm_linux_get_hw_watchpoint_max_length (void)
330{
71487fd7 331 return arm_linux_hwbp_cap.max_wp_length;
09b4ad9f
UW
332}
333
334/* Initialize an ARM hardware break-/watch-point control register value.
335 BYTE_ADDRESS_SELECT is the mask of bytes to trigger on; HWBP_TYPE is the
336 type of break-/watch-point; ENABLE indicates whether the point is enabled.
337 */
338static arm_hwbp_control_t
339arm_hwbp_control_initialize (unsigned byte_address_select,
340 arm_hwbp_type hwbp_type,
341 int enable)
342{
343 gdb_assert ((byte_address_select & ~0xffU) == 0);
344 gdb_assert (hwbp_type != arm_hwbp_break
345 || ((byte_address_select & 0xfU) != 0));
346
347 return (byte_address_select << 5) | (hwbp_type << 3) | (3 << 1) | enable;
348}
349
350/* Does the breakpoint control value CONTROL have the enable bit set? */
351static int
352arm_hwbp_control_is_enabled (arm_hwbp_control_t control)
353{
354 return control & 0x1;
355}
356
357/* Is the breakpoint control value CONTROL initialized? */
358static int
359arm_hwbp_control_is_initialized (arm_hwbp_control_t control)
360{
361 return control != 0;
362}
363
364/* Change a breakpoint control word so that it is in the disabled state. */
365static arm_hwbp_control_t
366arm_hwbp_control_disable (arm_hwbp_control_t control)
367{
368 return control & ~0x1;
369}
370
371/* Are two break-/watch-points equal? */
372static int
373arm_linux_hw_breakpoint_equal (const struct arm_linux_hw_breakpoint *p1,
374 const struct arm_linux_hw_breakpoint *p2)
375{
376 return p1->address == p2->address && p1->control == p2->control;
377}
378
802e8e6d
PA
379/* Convert a raw breakpoint type to an enum arm_hwbp_type. */
380
171de4b8 381static arm_hwbp_type
802e8e6d
PA
382raw_bkpt_type_to_arm_hwbp_type (enum raw_bkpt_type raw_type)
383{
384 switch (raw_type)
385 {
386 case raw_bkpt_type_hw:
387 return arm_hwbp_break;
388 case raw_bkpt_type_write_wp:
389 return arm_hwbp_store;
390 case raw_bkpt_type_read_wp:
391 return arm_hwbp_load;
392 case raw_bkpt_type_access_wp:
393 return arm_hwbp_access;
394 default:
395 gdb_assert_not_reached ("unhandled raw type");
396 }
397}
398
09b4ad9f
UW
399/* Initialize the hardware breakpoint structure P for a breakpoint or
400 watchpoint at ADDR to LEN. The type of watchpoint is given in TYPE.
b62e2b27
UW
401 Returns -1 if TYPE is unsupported, or -2 if the particular combination
402 of ADDR and LEN cannot be implemented. Otherwise, returns 0 if TYPE
403 represents a breakpoint and 1 if type represents a watchpoint. */
09b4ad9f 404static int
802e8e6d
PA
405arm_linux_hw_point_initialize (enum raw_bkpt_type raw_type, CORE_ADDR addr,
406 int len, struct arm_linux_hw_breakpoint *p)
09b4ad9f
UW
407{
408 arm_hwbp_type hwbp_type;
409 unsigned mask;
410
802e8e6d 411 hwbp_type = raw_bkpt_type_to_arm_hwbp_type (raw_type);
09b4ad9f
UW
412
413 if (hwbp_type == arm_hwbp_break)
414 {
415 /* For breakpoints, the length field encodes the mode. */
416 switch (len)
417 {
418 case 2: /* 16-bit Thumb mode breakpoint */
419 case 3: /* 32-bit Thumb mode breakpoint */
fcf303ab
UW
420 mask = 0x3;
421 addr &= ~1;
09b4ad9f
UW
422 break;
423 case 4: /* 32-bit ARM mode breakpoint */
424 mask = 0xf;
fcf303ab 425 addr &= ~3;
09b4ad9f
UW
426 break;
427 default:
428 /* Unsupported. */
b62e2b27 429 return -2;
09b4ad9f 430 }
09b4ad9f
UW
431 }
432 else
433 {
434 CORE_ADDR max_wp_length = arm_linux_get_hw_watchpoint_max_length ();
435 CORE_ADDR aligned_addr;
436
437 /* Can not set watchpoints for zero or negative lengths. */
438 if (len <= 0)
b62e2b27 439 return -2;
09b4ad9f
UW
440 /* The current ptrace interface can only handle watchpoints that are a
441 power of 2. */
442 if ((len & (len - 1)) != 0)
b62e2b27 443 return -2;
09b4ad9f
UW
444
445 /* Test that the range [ADDR, ADDR + LEN) fits into the largest address
446 range covered by a watchpoint. */
447 aligned_addr = addr & ~(max_wp_length - 1);
448 if (aligned_addr + max_wp_length < addr + len)
b62e2b27 449 return -2;
09b4ad9f
UW
450
451 mask = (1 << len) - 1;
452 }
453
454 p->address = (unsigned int) addr;
455 p->control = arm_hwbp_control_initialize (mask, hwbp_type, 1);
456
457 return hwbp_type != arm_hwbp_break;
458}
459
460/* Callback to mark a watch-/breakpoint to be updated in all threads of
461 the current process. */
462
463struct update_registers_data
464{
465 int watch;
466 int i;
467};
468
469static int
9c80ecd6 470update_registers_callback (thread_info *thread, void *arg)
09b4ad9f 471{
d86d4aaf 472 struct lwp_info *lwp = get_thread_lwp (thread);
09b4ad9f
UW
473 struct update_registers_data *data = (struct update_registers_data *) arg;
474
475 /* Only update the threads of the current process. */
0bfdf32f 476 if (pid_of (thread) == pid_of (current_thread))
09b4ad9f
UW
477 {
478 /* The actual update is done later just before resuming the lwp,
479 we just mark that the registers need updating. */
480 if (data->watch)
481 lwp->arch_private->wpts_changed[data->i] = 1;
482 else
483 lwp->arch_private->bpts_changed[data->i] = 1;
484
485 /* If the lwp isn't stopped, force it to momentarily pause, so
486 we can update its breakpoint registers. */
487 if (!lwp->stopped)
488 linux_stop_lwp (lwp);
489 }
490
491 return 0;
492}
493
802e8e6d
PA
494static int
495arm_supports_z_point_type (char z_type)
496{
497 switch (z_type)
498 {
abeead09 499 case Z_PACKET_SW_BP:
802e8e6d
PA
500 case Z_PACKET_HW_BP:
501 case Z_PACKET_WRITE_WP:
502 case Z_PACKET_READ_WP:
503 case Z_PACKET_ACCESS_WP:
504 return 1;
505 default:
506 /* Leave the handling of sw breakpoints with the gdb client. */
507 return 0;
508 }
509}
510
09b4ad9f
UW
511/* Insert hardware break-/watchpoint. */
512static int
802e8e6d
PA
513arm_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
514 int len, struct raw_breakpoint *bp)
09b4ad9f
UW
515{
516 struct process_info *proc = current_process ();
517 struct arm_linux_hw_breakpoint p, *pts;
518 int watch, i, count;
519
520 watch = arm_linux_hw_point_initialize (type, addr, len, &p);
521 if (watch < 0)
522 {
523 /* Unsupported. */
b62e2b27 524 return watch == -1 ? 1 : -1;
09b4ad9f
UW
525 }
526
527 if (watch)
528 {
529 count = arm_linux_get_hw_watchpoint_count ();
fe978cb0 530 pts = proc->priv->arch_private->wpts;
09b4ad9f
UW
531 }
532 else
533 {
534 count = arm_linux_get_hw_breakpoint_count ();
fe978cb0 535 pts = proc->priv->arch_private->bpts;
09b4ad9f
UW
536 }
537
538 for (i = 0; i < count; i++)
539 if (!arm_hwbp_control_is_enabled (pts[i].control))
540 {
541 struct update_registers_data data = { watch, i };
542 pts[i] = p;
d86d4aaf 543 find_inferior (&all_threads, update_registers_callback, &data);
09b4ad9f
UW
544 return 0;
545 }
546
547 /* We're out of watchpoints. */
548 return -1;
549}
550
551/* Remove hardware break-/watchpoint. */
552static int
802e8e6d
PA
553arm_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
554 int len, struct raw_breakpoint *bp)
09b4ad9f
UW
555{
556 struct process_info *proc = current_process ();
557 struct arm_linux_hw_breakpoint p, *pts;
558 int watch, i, count;
559
560 watch = arm_linux_hw_point_initialize (type, addr, len, &p);
561 if (watch < 0)
562 {
563 /* Unsupported. */
564 return -1;
565 }
566
567 if (watch)
568 {
569 count = arm_linux_get_hw_watchpoint_count ();
fe978cb0 570 pts = proc->priv->arch_private->wpts;
09b4ad9f
UW
571 }
572 else
573 {
574 count = arm_linux_get_hw_breakpoint_count ();
fe978cb0 575 pts = proc->priv->arch_private->bpts;
09b4ad9f
UW
576 }
577
578 for (i = 0; i < count; i++)
579 if (arm_linux_hw_breakpoint_equal (&p, pts + i))
580 {
581 struct update_registers_data data = { watch, i };
582 pts[i].control = arm_hwbp_control_disable (pts[i].control);
d86d4aaf 583 find_inferior (&all_threads, update_registers_callback, &data);
09b4ad9f
UW
584 return 0;
585 }
586
587 /* No watchpoint matched. */
588 return -1;
589}
590
591/* Return whether current thread is stopped due to a watchpoint. */
592static int
593arm_stopped_by_watchpoint (void)
594{
0bfdf32f 595 struct lwp_info *lwp = get_thread_lwp (current_thread);
a5362b9a 596 siginfo_t siginfo;
09b4ad9f
UW
597
598 /* We must be able to set hardware watchpoints. */
599 if (arm_linux_get_hw_watchpoint_count () == 0)
600 return 0;
601
602 /* Retrieve siginfo. */
603 errno = 0;
0bfdf32f 604 ptrace (PTRACE_GETSIGINFO, lwpid_of (current_thread), 0, &siginfo);
09b4ad9f
UW
605 if (errno != 0)
606 return 0;
607
608 /* This must be a hardware breakpoint. */
609 if (siginfo.si_signo != SIGTRAP
610 || (siginfo.si_code & 0xffff) != 0x0004 /* TRAP_HWBKPT */)
611 return 0;
612
613 /* If we are in a positive slot then we're looking at a breakpoint and not
614 a watchpoint. */
615 if (siginfo.si_errno >= 0)
616 return 0;
617
618 /* Cache stopped data address for use by arm_stopped_data_address. */
619 lwp->arch_private->stopped_data_address
620 = (CORE_ADDR) (uintptr_t) siginfo.si_addr;
621
622 return 1;
623}
624
625/* Return data address that triggered watchpoint. Called only if
626 arm_stopped_by_watchpoint returned true. */
627static CORE_ADDR
628arm_stopped_data_address (void)
629{
0bfdf32f 630 struct lwp_info *lwp = get_thread_lwp (current_thread);
09b4ad9f
UW
631 return lwp->arch_private->stopped_data_address;
632}
633
634/* Called when a new process is created. */
635static struct arch_process_info *
636arm_new_process (void)
637{
8d749320 638 struct arch_process_info *info = XCNEW (struct arch_process_info);
09b4ad9f
UW
639 return info;
640}
641
04ec7890
SM
642/* Called when a process is being deleted. */
643
644static void
645arm_delete_process (struct arch_process_info *info)
646{
647 xfree (info);
648}
649
09b4ad9f 650/* Called when a new thread is detected. */
34c703da
GB
651static void
652arm_new_thread (struct lwp_info *lwp)
09b4ad9f 653{
8d749320 654 struct arch_lwp_info *info = XCNEW (struct arch_lwp_info);
09b4ad9f
UW
655 int i;
656
657 for (i = 0; i < MAX_BPTS; i++)
658 info->bpts_changed[i] = 1;
659 for (i = 0; i < MAX_WPTS; i++)
660 info->wpts_changed[i] = 1;
661
34c703da 662 lwp->arch_private = info;
09b4ad9f
UW
663}
664
466eecee
SM
665/* Function to call when a thread is being deleted. */
666
667static void
668arm_delete_thread (struct arch_lwp_info *arch_lwp)
669{
670 xfree (arch_lwp);
671}
672
3a8a0396
DB
673static void
674arm_new_fork (struct process_info *parent, struct process_info *child)
675{
69291610
HW
676 struct arch_process_info *parent_proc_info;
677 struct arch_process_info *child_proc_info;
3a8a0396
DB
678 struct lwp_info *child_lwp;
679 struct arch_lwp_info *child_lwp_info;
680 int i;
681
682 /* These are allocated by linux_add_process. */
61a7418c
DB
683 gdb_assert (parent->priv != NULL
684 && parent->priv->arch_private != NULL);
685 gdb_assert (child->priv != NULL
686 && child->priv->arch_private != NULL);
3a8a0396 687
69291610
HW
688 parent_proc_info = parent->priv->arch_private;
689 child_proc_info = child->priv->arch_private;
690
3a8a0396
DB
691 /* Linux kernel before 2.6.33 commit
692 72f674d203cd230426437cdcf7dd6f681dad8b0d
693 will inherit hardware debug registers from parent
694 on fork/vfork/clone. Newer Linux kernels create such tasks with
695 zeroed debug registers.
696
697 GDB core assumes the child inherits the watchpoints/hw
698 breakpoints of the parent, and will remove them all from the
699 forked off process. Copy the debug registers mirrors into the
700 new process so that all breakpoints and watchpoints can be
701 removed together. The debug registers mirror will become zeroed
702 in the end before detaching the forked off process, thus making
703 this compatible with older Linux kernels too. */
704
705 *child_proc_info = *parent_proc_info;
706
707 /* Mark all the hardware breakpoints and watchpoints as changed to
708 make sure that the registers will be updated. */
9179355e 709 child_lwp = find_lwp_pid (ptid_t (child->pid));
3a8a0396
DB
710 child_lwp_info = child_lwp->arch_private;
711 for (i = 0; i < MAX_BPTS; i++)
712 child_lwp_info->bpts_changed[i] = 1;
713 for (i = 0; i < MAX_WPTS; i++)
714 child_lwp_info->wpts_changed[i] = 1;
715}
716
09b4ad9f
UW
717/* Called when resuming a thread.
718 If the debug regs have changed, update the thread's copies. */
719static void
720arm_prepare_to_resume (struct lwp_info *lwp)
721{
d86d4aaf
DE
722 struct thread_info *thread = get_lwp_thread (lwp);
723 int pid = lwpid_of (thread);
724 struct process_info *proc = find_process_pid (pid_of (thread));
fe978cb0 725 struct arch_process_info *proc_info = proc->priv->arch_private;
09b4ad9f
UW
726 struct arch_lwp_info *lwp_info = lwp->arch_private;
727 int i;
728
729 for (i = 0; i < arm_linux_get_hw_breakpoint_count (); i++)
730 if (lwp_info->bpts_changed[i])
731 {
732 errno = 0;
733
734 if (arm_hwbp_control_is_enabled (proc_info->bpts[i].control))
f15f9948 735 if (ptrace (PTRACE_SETHBPREGS, pid,
b8e1b30e 736 (PTRACE_TYPE_ARG3) ((i << 1) + 1),
f15f9948 737 &proc_info->bpts[i].address) < 0)
71487fd7 738 perror_with_name ("Unexpected error setting breakpoint address");
09b4ad9f
UW
739
740 if (arm_hwbp_control_is_initialized (proc_info->bpts[i].control))
f15f9948 741 if (ptrace (PTRACE_SETHBPREGS, pid,
b8e1b30e 742 (PTRACE_TYPE_ARG3) ((i << 1) + 2),
f15f9948 743 &proc_info->bpts[i].control) < 0)
71487fd7 744 perror_with_name ("Unexpected error setting breakpoint");
09b4ad9f
UW
745
746 lwp_info->bpts_changed[i] = 0;
747 }
748
749 for (i = 0; i < arm_linux_get_hw_watchpoint_count (); i++)
750 if (lwp_info->wpts_changed[i])
751 {
752 errno = 0;
753
754 if (arm_hwbp_control_is_enabled (proc_info->wpts[i].control))
f15f9948 755 if (ptrace (PTRACE_SETHBPREGS, pid,
b8e1b30e 756 (PTRACE_TYPE_ARG3) -((i << 1) + 1),
f15f9948 757 &proc_info->wpts[i].address) < 0)
71487fd7 758 perror_with_name ("Unexpected error setting watchpoint address");
09b4ad9f
UW
759
760 if (arm_hwbp_control_is_initialized (proc_info->wpts[i].control))
f15f9948 761 if (ptrace (PTRACE_SETHBPREGS, pid,
b8e1b30e 762 (PTRACE_TYPE_ARG3) -((i << 1) + 2),
f15f9948 763 &proc_info->wpts[i].control) < 0)
71487fd7 764 perror_with_name ("Unexpected error setting watchpoint");
09b4ad9f
UW
765
766 lwp_info->wpts_changed[i] = 0;
767 }
768}
769
f7a6a40d
YQ
770/* Find the next pc for a sigreturn or rt_sigreturn syscall. In
771 addition, set IS_THUMB depending on whether we will return to ARM
772 or Thumb code.
d9311bfa
AT
773 See arm-linux.h for stack layout details. */
774static CORE_ADDR
f7a6a40d
YQ
775arm_sigreturn_next_pc (struct regcache *regcache, int svc_number,
776 int *is_thumb)
d9311bfa
AT
777{
778 unsigned long sp;
779 unsigned long sp_data;
780 /* Offset of PC register. */
781 int pc_offset = 0;
782 CORE_ADDR next_pc = 0;
cf2ebb6e 783 uint32_t cpsr;
d9311bfa
AT
784
785 gdb_assert (svc_number == __NR_sigreturn || svc_number == __NR_rt_sigreturn);
786
787 collect_register_by_name (regcache, "sp", &sp);
788 (*the_target->read_memory) (sp, (unsigned char *) &sp_data, 4);
789
790 pc_offset = arm_linux_sigreturn_next_pc_offset
791 (sp, sp_data, svc_number, __NR_sigreturn == svc_number ? 1 : 0);
792
793 (*the_target->read_memory) (sp + pc_offset, (unsigned char *) &next_pc, 4);
794
f7a6a40d
YQ
795 /* Set IS_THUMB according the CPSR saved on the stack. */
796 (*the_target->read_memory) (sp + pc_offset + 4, (unsigned char *) &cpsr, 4);
797 *is_thumb = ((cpsr & CPSR_T) != 0);
798
d9311bfa
AT
799 return next_pc;
800}
801
802/* When PC is at a syscall instruction, return the PC of the next
803 instruction to be executed. */
804static CORE_ADDR
553cb527 805get_next_pcs_syscall_next_pc (struct arm_get_next_pcs *self)
d9311bfa
AT
806{
807 CORE_ADDR next_pc = 0;
553cb527 808 CORE_ADDR pc = regcache_read_pc (self->regcache);
d9311bfa
AT
809 int is_thumb = arm_is_thumb_mode ();
810 ULONGEST svc_number = 0;
811 struct regcache *regcache = self->regcache;
812
813 if (is_thumb)
814 {
815 collect_register (regcache, 7, &svc_number);
816 next_pc = pc + 2;
817 }
818 else
819 {
820 unsigned long this_instr;
821 unsigned long svc_operand;
822
694b382c 823 target_read_memory (pc, (unsigned char *) &this_instr, 4);
d9311bfa
AT
824 svc_operand = (0x00ffffff & this_instr);
825
826 if (svc_operand) /* OABI. */
827 {
828 svc_number = svc_operand - 0x900000;
829 }
830 else /* EABI. */
831 {
832 collect_register (regcache, 7, &svc_number);
833 }
834
835 next_pc = pc + 4;
836 }
837
838 /* This is a sigreturn or sigreturn_rt syscall. */
839 if (svc_number == __NR_sigreturn || svc_number == __NR_rt_sigreturn)
840 {
f7a6a40d
YQ
841 /* SIGRETURN or RT_SIGRETURN may affect the arm thumb mode, so
842 update IS_THUMB. */
843 next_pc = arm_sigreturn_next_pc (regcache, svc_number, &is_thumb);
d9311bfa
AT
844 }
845
846 /* Addresses for calling Thumb functions have the bit 0 set. */
847 if (is_thumb)
848 next_pc = MAKE_THUMB_ADDR (next_pc);
849
850 return next_pc;
851}
09b4ad9f 852
58d6951d
DJ
853static int
854arm_get_hwcap (unsigned long *valp)
855{
04248ead 856 unsigned char *data = (unsigned char *) alloca (8);
58d6951d
DJ
857 int offset = 0;
858
859 while ((*the_target->read_auxv) (offset, data, 8) == 8)
860 {
861 unsigned int *data_p = (unsigned int *)data;
862 if (data_p[0] == AT_HWCAP)
863 {
864 *valp = data_p[1];
865 return 1;
866 }
867
868 offset += 8;
869 }
870
871 *valp = 0;
872 return 0;
873}
874
3aee8918
PA
875static const struct target_desc *
876arm_read_description (void)
58d6951d 877{
0bfdf32f 878 int pid = lwpid_of (current_thread);
e8b41681 879 unsigned long arm_hwcap = 0;
71487fd7
UW
880
881 /* Query hardware watchpoint/breakpoint capabilities. */
882 arm_linux_init_hwbp_cap (pid);
883
58d6951d 884 if (arm_get_hwcap (&arm_hwcap) == 0)
3aee8918 885 return tdesc_arm;
58d6951d
DJ
886
887 if (arm_hwcap & HWCAP_IWMMXT)
3aee8918 888 return tdesc_arm_with_iwmmxt;
58d6951d
DJ
889
890 if (arm_hwcap & HWCAP_VFP)
891 {
3aee8918 892 const struct target_desc *result;
58d6951d
DJ
893 char *buf;
894
895 /* NEON implies either no VFP, or VFPv3-D32. We only support
896 it with VFP. */
897 if (arm_hwcap & HWCAP_NEON)
3aee8918 898 result = tdesc_arm_with_neon;
58d6951d 899 else if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
3aee8918 900 result = tdesc_arm_with_vfpv3;
58d6951d 901 else
3aee8918 902 result = tdesc_arm_with_vfpv2;
58d6951d
DJ
903
904 /* Now make sure that the kernel supports reading these
905 registers. Support was added in 2.6.30. */
58d6951d 906 errno = 0;
04248ead 907 buf = (char *) xmalloc (32 * 8 + 4);
58d6951d
DJ
908 if (ptrace (PTRACE_GETVFPREGS, pid, 0, buf) < 0
909 && errno == EIO)
e8b41681
YQ
910 result = tdesc_arm;
911
58d6951d
DJ
912 free (buf);
913
3aee8918 914 return result;
58d6951d
DJ
915 }
916
917 /* The default configuration uses legacy FPA registers, probably
918 simulated. */
3aee8918 919 return tdesc_arm;
58d6951d
DJ
920}
921
3aee8918
PA
922static void
923arm_arch_setup (void)
924{
bd9e6534
YQ
925 int tid = lwpid_of (current_thread);
926 int gpregs[18];
927 struct iovec iov;
928
3aee8918 929 current_process ()->tdesc = arm_read_description ();
bd9e6534
YQ
930
931 iov.iov_base = gpregs;
932 iov.iov_len = sizeof (gpregs);
933
934 /* Check if PTRACE_GETREGSET works. */
935 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iov) == 0)
936 have_ptrace_getregset = 1;
937 else
938 have_ptrace_getregset = 0;
3aee8918
PA
939}
940
d9311bfa
AT
941/* Fetch the next possible PCs after the current instruction executes. */
942
a0ff9e1a 943static std::vector<CORE_ADDR>
4d18591b 944arm_gdbserver_get_next_pcs (struct regcache *regcache)
d9311bfa
AT
945{
946 struct arm_get_next_pcs next_pcs_ctx;
d9311bfa
AT
947
948 arm_get_next_pcs_ctor (&next_pcs_ctx,
949 &get_next_pcs_ops,
950 /* Byte order is ignored assumed as host. */
951 0,
952 0,
1b451dda 953 1,
d9311bfa
AT
954 regcache);
955
a0ff9e1a 956 return arm_get_next_pcs (&next_pcs_ctx);
d9311bfa
AT
957}
958
7d00775e
AT
959/* Support for hardware single step. */
960
961static int
962arm_supports_hardware_single_step (void)
963{
964 return 0;
965}
966
79e7fd4f
YQ
967/* Implementation of linux_target_ops method "get_syscall_trapinfo". */
968
969static void
970arm_get_syscall_trapinfo (struct regcache *regcache, int *sysno)
971{
972 if (arm_is_thumb_mode ())
973 collect_register_by_name (regcache, "r7", sysno);
974 else
975 {
976 unsigned long pc;
977 unsigned long insn;
978
979 collect_register_by_name (regcache, "pc", &pc);
980
981 if ((*the_target->read_memory) (pc - 4, (unsigned char *) &insn, 4))
982 *sysno = UNKNOWN_SYSCALL;
983 else
984 {
985 unsigned long svc_operand = (0x00ffffff & insn);
986
987 if (svc_operand)
988 {
989 /* OABI */
990 *sysno = svc_operand - 0x900000;
991 }
992 else
993 {
994 /* EABI */
995 collect_register_by_name (regcache, "r7", sysno);
996 }
997 }
998 }
999}
1000
bd9e6534
YQ
1001/* Register sets without using PTRACE_GETREGSET. */
1002
3aee8918 1003static struct regset_info arm_regsets[] = {
1570b33e 1004 { PTRACE_GETREGS, PTRACE_SETREGS, 0, 18 * 4,
fb1e4ffc
DJ
1005 GENERAL_REGS,
1006 arm_fill_gregset, arm_store_gregset },
1570b33e 1007 { PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS, 0, 16 * 8 + 6 * 4,
fb1e4ffc
DJ
1008 EXTENDED_REGS,
1009 arm_fill_wmmxregset, arm_store_wmmxregset },
1570b33e 1010 { PTRACE_GETVFPREGS, PTRACE_SETVFPREGS, 0, 32 * 8 + 4,
58d6951d
DJ
1011 EXTENDED_REGS,
1012 arm_fill_vfpregset, arm_store_vfpregset },
50bc912a 1013 NULL_REGSET
fb1e4ffc
DJ
1014};
1015
3aee8918
PA
1016static struct regsets_info arm_regsets_info =
1017 {
1018 arm_regsets, /* regsets */
1019 0, /* num_regsets */
1020 NULL, /* disabled_regsets */
1021 };
1022
1023static struct usrregs_info arm_usrregs_info =
1024 {
1025 arm_num_regs,
1026 arm_regmap,
1027 };
1028
bd9e6534 1029static struct regs_info regs_info_arm =
3aee8918
PA
1030 {
1031 NULL, /* regset_bitmap */
1032 &arm_usrregs_info,
1033 &arm_regsets_info
1034 };
1035
1036static const struct regs_info *
1037arm_regs_info (void)
1038{
bd9e6534
YQ
1039 const struct target_desc *tdesc = current_process ()->tdesc;
1040
1041 if (have_ptrace_getregset == 1
1042 && (tdesc == tdesc_arm_with_neon || tdesc == tdesc_arm_with_vfpv3))
1043 return &regs_info_aarch32;
1044 else
1045 return &regs_info_arm;
3aee8918
PA
1046}
1047
dd373349
AT
1048struct linux_target_ops the_low_target = {
1049 arm_arch_setup,
1050 arm_regs_info,
1051 arm_cannot_fetch_register,
1052 arm_cannot_store_register,
1053 NULL, /* fetch_register */
276d4552
YQ
1054 linux_get_pc_32bit,
1055 linux_set_pc_32bit,
8689682c 1056 arm_breakpoint_kind_from_pc,
dd373349 1057 arm_sw_breakpoint_from_kind,
d9311bfa 1058 arm_gdbserver_get_next_pcs,
0d62e5e8
DJ
1059 0,
1060 arm_breakpoint_at,
802e8e6d 1061 arm_supports_z_point_type,
09b4ad9f
UW
1062 arm_insert_point,
1063 arm_remove_point,
1064 arm_stopped_by_watchpoint,
1065 arm_stopped_data_address,
1066 NULL, /* collect_ptrace_register */
1067 NULL, /* supply_ptrace_register */
1068 NULL, /* siginfo_fixup */
1069 arm_new_process,
04ec7890 1070 arm_delete_process,
09b4ad9f 1071 arm_new_thread,
466eecee 1072 arm_delete_thread,
3a8a0396 1073 arm_new_fork,
09b4ad9f 1074 arm_prepare_to_resume,
769ef81f
AT
1075 NULL, /* process_qsupported */
1076 NULL, /* supports_tracepoints */
1077 NULL, /* get_thread_area */
1078 NULL, /* install_fast_tracepoint_jump_pad */
1079 NULL, /* emit_ops */
1080 NULL, /* get_min_fast_tracepoint_insn_len */
1081 NULL, /* supports_range_stepping */
7d00775e 1082 arm_breakpoint_kind_from_current_state,
79e7fd4f
YQ
1083 arm_supports_hardware_single_step,
1084 arm_get_syscall_trapinfo,
2ec06d2e 1085};
3aee8918
PA
1086
1087void
1088initialize_low_arch (void)
1089{
1090 /* Initialize the Linux target descriptions. */
1091 init_registers_arm ();
1092 init_registers_arm_with_iwmmxt ();
1093 init_registers_arm_with_vfpv2 ();
1094 init_registers_arm_with_vfpv3 ();
bd9e6534
YQ
1095
1096 initialize_low_arch_aarch32 ();
3aee8918
PA
1097
1098 initialize_regsets_info (&arm_regsets_info);
1099}
This page took 1.33041 seconds and 4 git commands to generate.