Commit | Line | Data |
---|---|---|
10d6c8cd | 1 | /* Low level Alpha GNU/Linux interface, for GDB when running native. |
28e7fd62 | 2 | Copyright (C) 2005-2013 Free Software Foundation, Inc. |
10d6c8cd 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 |
10d6c8cd 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/>. */ |
10d6c8cd DJ |
18 | |
19 | #include "defs.h" | |
20 | #include "target.h" | |
390c1522 | 21 | #include "regcache.h" |
10d6c8cd | 22 | #include "linux-nat.h" |
b02f9d57 UW |
23 | |
24 | #include "alpha-tdep.h" | |
25 | ||
26 | #include <sys/ptrace.h> | |
27 | #include <alpha/ptrace.h> | |
28 | ||
29 | #include <sys/procfs.h> | |
30 | #include "gregset.h" | |
31 | ||
b02f9d57 UW |
32 | /* The address of UNIQUE for ptrace. */ |
33 | #define ALPHA_UNIQUE_PTRACE_ADDR 65 | |
34 | ||
35 | ||
0963b4bd MS |
36 | /* See the comment in m68k-tdep.c regarding the utility of these |
37 | functions. */ | |
b02f9d57 UW |
38 | |
39 | void | |
7f7fe91e | 40 | supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregsetp) |
b02f9d57 | 41 | { |
7f7fe91e | 42 | const long *regp = (const long *)gregsetp; |
b02f9d57 | 43 | |
efc72ef5 | 44 | /* PC is in slot 32, UNIQUE is in slot 33. */ |
7f7fe91e | 45 | alpha_supply_int_regs (regcache, -1, regp, regp + 31, regp + 32); |
b02f9d57 UW |
46 | } |
47 | ||
48 | void | |
7f7fe91e UW |
49 | fill_gregset (const struct regcache *regcache, |
50 | gdb_gregset_t *gregsetp, int regno) | |
b02f9d57 | 51 | { |
efc72ef5 | 52 | long *regp = (long *)gregsetp; |
b02f9d57 | 53 | |
efc72ef5 | 54 | /* PC is in slot 32, UNIQUE is in slot 33. */ |
7f7fe91e | 55 | alpha_fill_int_regs (regcache, regno, regp, regp + 31, regp + 32); |
b02f9d57 UW |
56 | } |
57 | ||
0963b4bd MS |
58 | /* Now we do the same thing for floating-point registers. |
59 | Again, see the comments in m68k-tdep.c. */ | |
b02f9d57 UW |
60 | |
61 | void | |
7f7fe91e | 62 | supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregsetp) |
b02f9d57 | 63 | { |
7f7fe91e | 64 | const long *regp = (const long *)fpregsetp; |
b02f9d57 UW |
65 | |
66 | /* FPCR is in slot 32. */ | |
7f7fe91e | 67 | alpha_supply_fp_regs (regcache, -1, regp, regp + 31); |
b02f9d57 UW |
68 | } |
69 | ||
70 | void | |
7f7fe91e UW |
71 | fill_fpregset (const struct regcache *regcache, |
72 | gdb_fpregset_t *fpregsetp, int regno) | |
b02f9d57 | 73 | { |
efc72ef5 | 74 | long *regp = (long *)fpregsetp; |
b02f9d57 UW |
75 | |
76 | /* FPCR is in slot 32. */ | |
7f7fe91e | 77 | alpha_fill_fp_regs (regcache, regno, regp, regp + 31); |
b02f9d57 UW |
78 | } |
79 | ||
910122bf UW |
80 | |
81 | static CORE_ADDR | |
7714d83a | 82 | alpha_linux_register_u_offset (struct gdbarch *gdbarch, int regno, int store_p) |
910122bf | 83 | { |
ec7cc0e8 | 84 | if (regno == gdbarch_pc_regnum (gdbarch)) |
b02f9d57 UW |
85 | return PC; |
86 | if (regno == ALPHA_UNIQUE_REGNUM) | |
87 | return ALPHA_UNIQUE_PTRACE_ADDR; | |
ec7cc0e8 | 88 | if (regno < gdbarch_fp0_regnum (gdbarch)) |
b02f9d57 UW |
89 | return GPR_BASE + regno; |
90 | else | |
ec7cc0e8 | 91 | return FPR_BASE + regno - gdbarch_fp0_regnum (gdbarch); |
910122bf | 92 | } |
10d6c8cd DJ |
93 | |
94 | void _initialialize_alpha_linux_nat (void); | |
95 | ||
96 | void | |
97 | _initialize_alpha_linux_nat (void) | |
98 | { | |
910122bf | 99 | linux_nat_add_target (linux_trad_target (alpha_linux_register_u_offset)); |
10d6c8cd | 100 | } |