Commit | Line | Data |
---|---|---|
244bc108 | 1 | /* Target-dependent code for the IA-64 for GDB, the GNU debugger. |
9fc9f5e2 | 2 | |
61baf725 | 3 | Copyright (C) 2000-2017 Free Software Foundation, Inc. |
244bc108 KB |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
244bc108 KB |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
244bc108 KB |
19 | |
20 | #include "defs.h" | |
9fc9f5e2 | 21 | #include "ia64-tdep.h" |
8064c6ae | 22 | #include "arch-utils.h" |
51931cbb | 23 | #include "gdbcore.h" |
54a5c8d8 | 24 | #include "regcache.h" |
b33e8514 | 25 | #include "osabi.h" |
b2756930 | 26 | #include "solib-svr4.h" |
982e9687 | 27 | #include "symtab.h" |
a5ee0f0c | 28 | #include "linux-tdep.h" |
070bdf0b | 29 | #include "regset.h" |
244bc108 | 30 | |
e82839d4 SDJ |
31 | #include <ctype.h> |
32 | ||
244bc108 KB |
33 | /* The sigtramp code is in a non-readable (executable-only) region |
34 | of memory called the ``gate page''. The addresses in question | |
35 | were determined by examining the system headers. They are | |
1777feb0 | 36 | overly generous to allow for different pages sizes. */ |
244bc108 KB |
37 | |
38 | #define GATE_AREA_START 0xa000000000000100LL | |
bfec0b41 | 39 | #define GATE_AREA_END 0xa000000000020000LL |
244bc108 | 40 | |
1777feb0 | 41 | /* Offset to sigcontext structure from frame of handler. */ |
d469a809 | 42 | #define IA64_LINUX_SIGCONTEXT_OFFSET 192 |
244bc108 | 43 | |
74174d2e UW |
44 | static int |
45 | ia64_linux_pc_in_sigtramp (CORE_ADDR pc) | |
244bc108 KB |
46 | { |
47 | return (pc >= (CORE_ADDR) GATE_AREA_START && pc < (CORE_ADDR) GATE_AREA_END); | |
48 | } | |
49 | ||
50 | /* IA-64 GNU/Linux specific function which, given a frame address and | |
51 | a register number, returns the address at which that register may be | |
7a9dd1b2 | 52 | found. 0 is returned for registers which aren't stored in the |
1777feb0 | 53 | sigcontext structure. */ |
244bc108 | 54 | |
b33e8514 | 55 | static CORE_ADDR |
e17a4113 UW |
56 | ia64_linux_sigcontext_register_address (struct gdbarch *gdbarch, |
57 | CORE_ADDR sp, int regno) | |
244bc108 | 58 | { |
e17a4113 | 59 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
e362b510 | 60 | gdb_byte buf[8]; |
51931cbb JJ |
61 | CORE_ADDR sigcontext_addr = 0; |
62 | ||
1777feb0 MS |
63 | /* The address of the sigcontext area is found at offset 16 in the |
64 | sigframe. */ | |
51931cbb | 65 | read_memory (sp + 16, buf, 8); |
e17a4113 | 66 | sigcontext_addr = extract_unsigned_integer (buf, 8, byte_order); |
51931cbb | 67 | |
244bc108 | 68 | if (IA64_GR0_REGNUM <= regno && regno <= IA64_GR31_REGNUM) |
51931cbb | 69 | return sigcontext_addr + 200 + 8 * (regno - IA64_GR0_REGNUM); |
244bc108 | 70 | else if (IA64_BR0_REGNUM <= regno && regno <= IA64_BR7_REGNUM) |
51931cbb | 71 | return sigcontext_addr + 136 + 8 * (regno - IA64_BR0_REGNUM); |
244bc108 | 72 | else if (IA64_FR0_REGNUM <= regno && regno <= IA64_FR127_REGNUM) |
51931cbb | 73 | return sigcontext_addr + 464 + 16 * (regno - IA64_FR0_REGNUM); |
244bc108 KB |
74 | else |
75 | switch (regno) | |
76 | { | |
77 | case IA64_IP_REGNUM : | |
51931cbb | 78 | return sigcontext_addr + 40; |
244bc108 | 79 | case IA64_CFM_REGNUM : |
51931cbb | 80 | return sigcontext_addr + 48; |
244bc108 | 81 | case IA64_PSR_REGNUM : |
51931cbb | 82 | return sigcontext_addr + 56; /* user mask only */ |
244bc108 KB |
83 | /* sc_ar_rsc is provided, from which we could compute bspstore, but |
84 | I don't think it's worth it. Anyway, if we want it, it's at offset | |
1777feb0 | 85 | 64. */ |
244bc108 | 86 | case IA64_BSP_REGNUM : |
51931cbb | 87 | return sigcontext_addr + 72; |
244bc108 | 88 | case IA64_RNAT_REGNUM : |
51931cbb | 89 | return sigcontext_addr + 80; |
244bc108 | 90 | case IA64_CCV_REGNUM : |
51931cbb | 91 | return sigcontext_addr + 88; |
244bc108 | 92 | case IA64_UNAT_REGNUM : |
51931cbb | 93 | return sigcontext_addr + 96; |
244bc108 | 94 | case IA64_FPSR_REGNUM : |
51931cbb | 95 | return sigcontext_addr + 104; |
244bc108 | 96 | case IA64_PFS_REGNUM : |
51931cbb | 97 | return sigcontext_addr + 112; |
244bc108 | 98 | case IA64_LC_REGNUM : |
51931cbb | 99 | return sigcontext_addr + 120; |
244bc108 | 100 | case IA64_PR_REGNUM : |
51931cbb | 101 | return sigcontext_addr + 128; |
244bc108 KB |
102 | default : |
103 | return 0; | |
104 | } | |
105 | } | |
54a5c8d8 | 106 | |
b33e8514 | 107 | static void |
61a1198a | 108 | ia64_linux_write_pc (struct regcache *regcache, CORE_ADDR pc) |
54a5c8d8 | 109 | { |
61a1198a | 110 | ia64_write_pc (regcache, pc); |
54a5c8d8 KB |
111 | |
112 | /* We must be careful with modifying the instruction-pointer: if we | |
113 | just interrupt a system call, the kernel would ordinarily try to | |
114 | restart it when we resume the inferior, which typically results | |
115 | in SIGSEGV or SIGILL. We prevent this by clearing r10, which | |
116 | will tell the kernel that r8 does NOT contain a valid error code | |
117 | and hence it will skip system-call restart. | |
118 | ||
119 | The clearing of r10 is safe as long as ia64_write_pc() is only | |
120 | called as part of setting up an inferior call. */ | |
61a1198a | 121 | regcache_cooked_write_unsigned (regcache, IA64_GR10_REGNUM, 0); |
54a5c8d8 | 122 | } |
b33e8514 | 123 | |
e82839d4 SDJ |
124 | /* Implementation of `gdbarch_stap_is_single_operand', as defined in |
125 | gdbarch.h. */ | |
126 | ||
127 | static int | |
128 | ia64_linux_stap_is_single_operand (struct gdbarch *gdbarch, const char *s) | |
129 | { | |
130 | return ((isdigit (*s) && s[1] == '[' && s[2] == 'r') /* Displacement. */ | |
131 | || *s == 'r' /* Register value. */ | |
132 | || isdigit (*s)); /* Literal number. */ | |
133 | } | |
134 | ||
070bdf0b AA |
135 | /* Core file support. */ |
136 | ||
137 | static const struct regcache_map_entry ia64_linux_gregmap[] = | |
138 | { | |
139 | { 32, IA64_GR0_REGNUM, 8 }, /* r0 ... r31 */ | |
140 | { 1, REGCACHE_MAP_SKIP, 8 }, /* FIXME: NAT collection bits? */ | |
141 | { 1, IA64_PR_REGNUM, 8 }, | |
142 | { 8, IA64_BR0_REGNUM, 8 }, /* b0 ... b7 */ | |
143 | { 1, IA64_IP_REGNUM, 8 }, | |
144 | { 1, IA64_CFM_REGNUM, 8 }, | |
145 | { 1, IA64_PSR_REGNUM, 8 }, | |
146 | { 1, IA64_RSC_REGNUM, 8 }, | |
147 | { 1, IA64_BSP_REGNUM, 8 }, | |
148 | { 1, IA64_BSPSTORE_REGNUM, 8 }, | |
149 | { 1, IA64_RNAT_REGNUM, 8 }, | |
150 | { 1, IA64_CCV_REGNUM, 8 }, | |
151 | { 1, IA64_UNAT_REGNUM, 8 }, | |
152 | { 1, IA64_FPSR_REGNUM, 8 }, | |
153 | { 1, IA64_PFS_REGNUM, 8 }, | |
154 | { 1, IA64_LC_REGNUM, 8 }, | |
155 | { 1, IA64_EC_REGNUM, 8 }, | |
156 | { 0 } | |
157 | }; | |
158 | ||
159 | /* Size of 'gregset_t', as defined by the Linux kernel. Note that | |
160 | this is more than actually mapped in the regmap above. */ | |
161 | ||
162 | #define IA64_LINUX_GREGS_SIZE (128 * 8) | |
163 | ||
164 | static const struct regcache_map_entry ia64_linux_fpregmap[] = | |
165 | { | |
166 | { 128, IA64_FR0_REGNUM, 16 }, /* f0 ... f127 */ | |
167 | { 0 } | |
168 | }; | |
169 | ||
170 | #define IA64_LINUX_FPREGS_SIZE (128 * 16) | |
171 | ||
172 | static void | |
173 | ia64_linux_supply_fpregset (const struct regset *regset, | |
174 | struct regcache *regcache, | |
175 | int regnum, const void *regs, size_t len) | |
176 | { | |
177 | const gdb_byte f_zero[16] = { 0 }; | |
178 | const gdb_byte f_one[16] = | |
179 | { 0, 0, 0, 0, 0, 0, 0, 0x80, 0xff, 0xff, 0, 0, 0, 0, 0, 0 }; | |
180 | ||
181 | regcache_supply_regset (regset, regcache, regnum, regs, len); | |
182 | ||
183 | /* Kernel generated cores have fr1==0 instead of 1.0. Older GDBs | |
184 | did the same. So ignore whatever might be recorded in fpregset_t | |
185 | for fr0/fr1 and always supply their expected values. */ | |
186 | if (regnum == -1 || regnum == IA64_FR0_REGNUM) | |
187 | regcache_raw_supply (regcache, IA64_FR0_REGNUM, f_zero); | |
188 | if (regnum == -1 || regnum == IA64_FR1_REGNUM) | |
189 | regcache_raw_supply (regcache, IA64_FR1_REGNUM, f_one); | |
190 | } | |
191 | ||
192 | static const struct regset ia64_linux_gregset = | |
193 | { | |
194 | ia64_linux_gregmap, | |
195 | regcache_supply_regset, regcache_collect_regset | |
196 | }; | |
197 | ||
198 | static const struct regset ia64_linux_fpregset = | |
199 | { | |
200 | ia64_linux_fpregmap, | |
201 | ia64_linux_supply_fpregset, regcache_collect_regset | |
202 | }; | |
203 | ||
55a2906a AA |
204 | static void |
205 | ia64_linux_iterate_over_regset_sections (struct gdbarch *gdbarch, | |
206 | iterate_over_regset_sections_cb *cb, | |
207 | void *cb_data, | |
208 | const struct regcache *regcache) | |
070bdf0b | 209 | { |
55a2906a AA |
210 | cb (".reg", IA64_LINUX_GREGS_SIZE, &ia64_linux_gregset, NULL, cb_data); |
211 | cb (".reg2", IA64_LINUX_FPREGS_SIZE, &ia64_linux_fpregset, NULL, cb_data); | |
070bdf0b AA |
212 | } |
213 | ||
b33e8514 AS |
214 | static void |
215 | ia64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) | |
216 | { | |
217 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); | |
05c0465e SDJ |
218 | static const char *const stap_register_prefixes[] = { "r", NULL }; |
219 | static const char *const stap_register_indirection_prefixes[] = { "[", | |
220 | NULL }; | |
221 | static const char *const stap_register_indirection_suffixes[] = { "]", | |
222 | NULL }; | |
b33e8514 | 223 | |
a5ee0f0c PA |
224 | linux_init_abi (info, gdbarch); |
225 | ||
b33e8514 AS |
226 | /* Set the method of obtaining the sigcontext addresses at which |
227 | registers are saved. */ | |
228 | tdep->sigcontext_register_address = ia64_linux_sigcontext_register_address; | |
229 | ||
74174d2e UW |
230 | /* Set the pc_in_sigtramp method. */ |
231 | tdep->pc_in_sigtramp = ia64_linux_pc_in_sigtramp; | |
232 | ||
b33e8514 | 233 | set_gdbarch_write_pc (gdbarch, ia64_linux_write_pc); |
b2756930 | 234 | |
982e9687 UW |
235 | set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target); |
236 | ||
8d005789 UW |
237 | set_solib_svr4_fetch_link_map_offsets |
238 | (gdbarch, svr4_lp64_fetch_link_map_offsets); | |
239 | ||
b2756930 KB |
240 | /* Enable TLS support. */ |
241 | set_gdbarch_fetch_tls_load_module_address (gdbarch, | |
242 | svr4_fetch_objfile_link_map); | |
e82839d4 | 243 | |
070bdf0b | 244 | /* Core file support. */ |
55a2906a AA |
245 | set_gdbarch_iterate_over_regset_sections |
246 | (gdbarch, ia64_linux_iterate_over_regset_sections); | |
070bdf0b | 247 | |
e82839d4 | 248 | /* SystemTap related. */ |
05c0465e SDJ |
249 | set_gdbarch_stap_register_prefixes (gdbarch, stap_register_prefixes); |
250 | set_gdbarch_stap_register_indirection_prefixes (gdbarch, | |
251 | stap_register_indirection_prefixes); | |
252 | set_gdbarch_stap_register_indirection_suffixes (gdbarch, | |
253 | stap_register_indirection_suffixes); | |
e82839d4 SDJ |
254 | set_gdbarch_stap_gdb_register_prefix (gdbarch, "r"); |
255 | set_gdbarch_stap_is_single_operand (gdbarch, | |
256 | ia64_linux_stap_is_single_operand); | |
b33e8514 AS |
257 | } |
258 | ||
259 | void | |
260 | _initialize_ia64_linux_tdep (void) | |
261 | { | |
262 | gdbarch_register_osabi (bfd_arch_ia64, 0, GDB_OSABI_LINUX, | |
263 | ia64_linux_init_abi); | |
264 | } |