PR23141, SIGSEGV in bfd_elf_set_group_contents
[deliverable/binutils-gdb.git] / gdb / gdbserver / regcache.c
CommitLineData
0a30fbc4 1/* Register support routines for the remote server for GDB.
e2882c85 2 Copyright (C) 2001-2018 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"
20#include "regdef.h"
623b6bdf 21#include "gdbthread.h"
3aee8918 22#include "tdesc.h"
9c3d6531 23#include "rsp-low.h"
fa593d66
PA
24#ifndef IN_PROCESS_AGENT
25
442ea881
PA
26struct regcache *
27get_thread_regcache (struct thread_info *thread, int fetch)
c04a1aa8 28{
442ea881 29 struct regcache *regcache;
c04a1aa8 30
6afd337d 31 regcache = thread_regcache_data (thread);
c04a1aa8 32
3aee8918
PA
33 /* Threads' regcaches are created lazily, because biarch targets add
34 the main thread/lwp before seeing it stop for the first time, and
35 it is only after the target sees the thread stop for the first
36 time that the target has a chance of determining the process's
37 architecture. IOW, when we first add the process's main thread
38 we don't know which architecture/tdesc its regcache should
39 have. */
c04a1aa8 40 if (regcache == NULL)
3aee8918
PA
41 {
42 struct process_info *proc = get_thread_process (thread);
43
38e08fca 44 gdb_assert (proc->tdesc != NULL);
3aee8918
PA
45
46 regcache = new_register_cache (proc->tdesc);
6afd337d 47 set_thread_regcache_data (thread, regcache);
3aee8918 48 }
c04a1aa8 49
0d62e5e8
DJ
50 if (fetch && regcache->registers_valid == 0)
51 {
0bfdf32f 52 struct thread_info *saved_thread = current_thread;
442ea881 53
0bfdf32f 54 current_thread = thread;
098dbe61 55 /* Invalidate all registers, to prevent stale left-overs. */
c4dfafab
SDJ
56 memset (regcache->register_status, REG_UNAVAILABLE,
57 regcache->tdesc->reg_defs.size ());
442ea881 58 fetch_inferior_registers (regcache, -1);
0bfdf32f 59 current_thread = saved_thread;
0d62e5e8
DJ
60 regcache->registers_valid = 1;
61 }
62
c04a1aa8
DJ
63 return regcache;
64}
65
361c8ade
GB
66/* See common/common-regcache.h. */
67
68struct regcache *
69get_thread_regcache_for_ptid (ptid_t ptid)
70{
71 return get_thread_regcache (find_thread_ptid (ptid), 1);
72}
73
0d62e5e8 74void
3aee8918 75regcache_invalidate_thread (struct thread_info *thread)
0d62e5e8 76{
442ea881 77 struct regcache *regcache;
0d62e5e8 78
6afd337d 79 regcache = thread_regcache_data (thread);
0d62e5e8 80
45ba0d02
PA
81 if (regcache == NULL)
82 return;
83
0d62e5e8
DJ
84 if (regcache->registers_valid)
85 {
0bfdf32f 86 struct thread_info *saved_thread = current_thread;
0d62e5e8 87
0bfdf32f 88 current_thread = thread;
442ea881 89 store_inferior_registers (regcache, -1);
0bfdf32f 90 current_thread = saved_thread;
0d62e5e8
DJ
91 }
92
93 regcache->registers_valid = 0;
94}
95
80d82c19
JB
96/* See regcache.h. */
97
98void
99regcache_invalidate_pid (int pid)
100{
634a3254
SM
101 /* Only invalidate the regcaches of threads of this process. */
102 for_each_thread (pid, regcache_invalidate_thread);
80d82c19
JB
103}
104
105/* See regcache.h. */
106
0d62e5e8 107void
442ea881 108regcache_invalidate (void)
0d62e5e8 109{
3aee8918 110 /* Only update the threads of the current process. */
9c80ecd6 111 int pid = current_thread->id.pid ();
3aee8918 112
80d82c19 113 regcache_invalidate_pid (pid);
0d62e5e8
DJ
114}
115
fa593d66
PA
116#endif
117
219f2f23 118struct regcache *
3aee8918
PA
119init_register_cache (struct regcache *regcache,
120 const struct target_desc *tdesc,
121 unsigned char *regbuf)
219f2f23
PA
122{
123 if (regbuf == NULL)
124 {
87f6c4e3 125#ifndef IN_PROCESS_AGENT
219f2f23
PA
126 /* Make sure to zero-initialize the register cache when it is
127 created, in case there are registers the target never
128 fetches. This way they'll read as zero instead of
129 garbage. */
3aee8918 130 regcache->tdesc = tdesc;
224c3ddb
SM
131 regcache->registers
132 = (unsigned char *) xcalloc (1, tdesc->registers_size);
219f2f23 133 regcache->registers_owned = 1;
224c3ddb 134 regcache->register_status
c4dfafab
SDJ
135 = (unsigned char *) xmalloc (tdesc->reg_defs.size ());
136 memset ((void *) regcache->register_status, REG_UNAVAILABLE,
137 tdesc->reg_defs.size ());
fa593d66 138#else
38e08fca 139 gdb_assert_not_reached ("can't allocate memory from the heap");
fa593d66 140#endif
87f6c4e3
GB
141 }
142 else
219f2f23 143 {
3aee8918 144 regcache->tdesc = tdesc;
219f2f23
PA
145 regcache->registers = regbuf;
146 regcache->registers_owned = 0;
1c79eb8a
PA
147#ifndef IN_PROCESS_AGENT
148 regcache->register_status = NULL;
149#endif
219f2f23
PA
150 }
151
152 regcache->registers_valid = 0;
153
154 return regcache;
155}
156
fa593d66
PA
157#ifndef IN_PROCESS_AGENT
158
442ea881 159struct regcache *
3aee8918 160new_register_cache (const struct target_desc *tdesc)
c04a1aa8 161{
8d749320 162 struct regcache *regcache = XCNEW (struct regcache);
c04a1aa8 163
3aee8918 164 gdb_assert (tdesc->registers_size != 0);
5822d809 165
3aee8918 166 return init_register_cache (regcache, tdesc, NULL);
c04a1aa8
DJ
167}
168
169void
442ea881 170free_register_cache (struct regcache *regcache)
c04a1aa8 171{
5822d809
PA
172 if (regcache)
173 {
fa593d66
PA
174 if (regcache->registers_owned)
175 free (regcache->registers);
1c79eb8a 176 free (regcache->register_status);
5822d809
PA
177 free (regcache);
178 }
c04a1aa8
DJ
179}
180
fa593d66
PA
181#endif
182
219f2f23
PA
183void
184regcache_cpy (struct regcache *dst, struct regcache *src)
185{
3aee8918
PA
186 gdb_assert (src != NULL && dst != NULL);
187 gdb_assert (src->tdesc == dst->tdesc);
188 gdb_assert (src != dst);
189
190 memcpy (dst->registers, src->registers, src->tdesc->registers_size);
1c79eb8a
PA
191#ifndef IN_PROCESS_AGENT
192 if (dst->register_status != NULL && src->register_status != NULL)
3aee8918 193 memcpy (dst->register_status, src->register_status,
c4dfafab 194 src->tdesc->reg_defs.size ());
1c79eb8a 195#endif
219f2f23
PA
196 dst->registers_valid = src->registers_valid;
197}
198
5cd3e386 199/* Return a reference to the description of register N. */
dff7492c 200
5cd3e386 201static const struct reg &
dff7492c
AH
202find_register_by_number (const struct target_desc *tdesc, int n)
203{
204 return tdesc->reg_defs[n];
205}
219f2f23 206
fa593d66
PA
207#ifndef IN_PROCESS_AGENT
208
0a30fbc4 209void
442ea881 210registers_to_string (struct regcache *regcache, char *buf)
0a30fbc4 211{
442ea881 212 unsigned char *registers = regcache->registers;
3aee8918 213 const struct target_desc *tdesc = regcache->tdesc;
c04a1aa8 214
c4dfafab 215 for (int i = 0; i < tdesc->reg_defs.size (); ++i)
1c79eb8a
PA
216 {
217 if (regcache->register_status[i] == REG_VALID)
218 {
e9371aff 219 bin2hex (registers, buf, register_size (tdesc, i));
3aee8918 220 buf += register_size (tdesc, i) * 2;
1c79eb8a
PA
221 }
222 else
223 {
3aee8918
PA
224 memset (buf, 'x', register_size (tdesc, i) * 2);
225 buf += register_size (tdesc, i) * 2;
1c79eb8a 226 }
3aee8918 227 registers += register_size (tdesc, i);
1c79eb8a
PA
228 }
229 *buf = '\0';
0a30fbc4
DJ
230}
231
232void
442ea881 233registers_from_string (struct regcache *regcache, char *buf)
0a30fbc4
DJ
234{
235 int len = strlen (buf);
442ea881 236 unsigned char *registers = regcache->registers;
3aee8918 237 const struct target_desc *tdesc = regcache->tdesc;
0a30fbc4 238
3aee8918 239 if (len != tdesc->registers_size * 2)
0a30fbc4 240 {
1b3f6016 241 warning ("Wrong sized register packet (expected %d bytes, got %d)",
3aee8918
PA
242 2 * tdesc->registers_size, len);
243 if (len > tdesc->registers_size * 2)
244 len = tdesc->registers_size * 2;
0a30fbc4 245 }
a7191e8b 246 hex2bin (buf, registers, len / 2);
0a30fbc4
DJ
247}
248
0a30fbc4 249int
3aee8918 250find_regno (const struct target_desc *tdesc, const char *name)
0a30fbc4 251{
c4dfafab
SDJ
252 for (int i = 0; i < tdesc->reg_defs.size (); ++i)
253 {
5cd3e386 254 if (strcmp (name, find_register_by_number (tdesc, i).name) == 0)
c4dfafab
SDJ
255 return i;
256 }
38e08fca
GB
257 internal_error (__FILE__, __LINE__, "Unknown register %s requested",
258 name);
0a30fbc4
DJ
259}
260
3aee8918
PA
261static void
262free_register_cache_thread (struct thread_info *thread)
263{
6afd337d 264 struct regcache *regcache = thread_regcache_data (thread);
3aee8918
PA
265
266 if (regcache != NULL)
267 {
268 regcache_invalidate_thread (thread);
269 free_register_cache (regcache);
6afd337d 270 set_thread_regcache_data (thread, NULL);
3aee8918
PA
271 }
272}
273
3aee8918
PA
274void
275regcache_release (void)
276{
277 /* Flush and release all pre-existing register caches. */
f0045347 278 for_each_thread (free_register_cache_thread);
3aee8918
PA
279}
280#endif
281
0a30fbc4 282int
3aee8918 283register_cache_size (const struct target_desc *tdesc)
0a30fbc4 284{
3aee8918
PA
285 return tdesc->registers_size;
286}
287
288int
289register_size (const struct target_desc *tdesc, int n)
290{
5cd3e386 291 return find_register_by_number (tdesc, n).size / 8;
0a30fbc4
DJ
292}
293
8d689ee5
YQ
294/* See common/common-regcache.h. */
295
296int
297regcache_register_size (const struct regcache *regcache, int n)
298{
299 return register_size (regcache->tdesc, n);
300}
301
f450004a 302static unsigned char *
442ea881 303register_data (struct regcache *regcache, int n, int fetch)
0a30fbc4 304{
f7000548 305 return (regcache->registers
5cd3e386 306 + find_register_by_number (regcache->tdesc, n).offset / 8);
0a30fbc4
DJ
307}
308
1c79eb8a
PA
309/* Supply register N, whose contents are stored in BUF, to REGCACHE.
310 If BUF is NULL, the register's value is recorded as
311 unavailable. */
312
58caa3dc 313void
442ea881 314supply_register (struct regcache *regcache, int n, const void *buf)
58caa3dc 315{
3327ccf7 316 if (buf)
1c79eb8a 317 {
3aee8918
PA
318 memcpy (register_data (regcache, n, 0), buf,
319 register_size (regcache->tdesc, n));
1c79eb8a
PA
320#ifndef IN_PROCESS_AGENT
321 if (regcache->register_status != NULL)
322 regcache->register_status[n] = REG_VALID;
323#endif
324 }
3327ccf7 325 else
1c79eb8a 326 {
3aee8918
PA
327 memset (register_data (regcache, n, 0), 0,
328 register_size (regcache->tdesc, n));
1c79eb8a
PA
329#ifndef IN_PROCESS_AGENT
330 if (regcache->register_status != NULL)
331 regcache->register_status[n] = REG_UNAVAILABLE;
332#endif
333 }
58caa3dc
DJ
334}
335
1c79eb8a
PA
336/* Supply register N with value zero to REGCACHE. */
337
338void
339supply_register_zeroed (struct regcache *regcache, int n)
340{
3aee8918
PA
341 memset (register_data (regcache, n, 0), 0,
342 register_size (regcache->tdesc, n));
1c79eb8a
PA
343#ifndef IN_PROCESS_AGENT
344 if (regcache->register_status != NULL)
345 regcache->register_status[n] = REG_VALID;
346#endif
347}
348
349/* Supply the whole register set whose contents are stored in BUF, to
350 REGCACHE. If BUF is NULL, all the registers' values are recorded
351 as unavailable. */
352
219f2f23
PA
353void
354supply_regblock (struct regcache *regcache, const void *buf)
355{
356 if (buf)
1c79eb8a 357 {
3aee8918
PA
358 const struct target_desc *tdesc = regcache->tdesc;
359
360 memcpy (regcache->registers, buf, tdesc->registers_size);
1c79eb8a
PA
361#ifndef IN_PROCESS_AGENT
362 {
363 int i;
364
c4dfafab 365 for (i = 0; i < tdesc->reg_defs.size (); i++)
1c79eb8a
PA
366 regcache->register_status[i] = REG_VALID;
367 }
368#endif
369 }
219f2f23 370 else
1c79eb8a 371 {
3aee8918
PA
372 const struct target_desc *tdesc = regcache->tdesc;
373
374 memset (regcache->registers, 0, tdesc->registers_size);
1c79eb8a
PA
375#ifndef IN_PROCESS_AGENT
376 {
377 int i;
378
c4dfafab 379 for (i = 0; i < tdesc->reg_defs.size (); i++)
1c79eb8a
PA
380 regcache->register_status[i] = REG_UNAVAILABLE;
381 }
382#endif
383 }
219f2f23
PA
384}
385
fa593d66
PA
386#ifndef IN_PROCESS_AGENT
387
58caa3dc 388void
442ea881
PA
389supply_register_by_name (struct regcache *regcache,
390 const char *name, const void *buf)
58caa3dc 391{
3aee8918 392 supply_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc
DJ
393}
394
fa593d66
PA
395#endif
396
58caa3dc 397void
442ea881 398collect_register (struct regcache *regcache, int n, void *buf)
58caa3dc 399{
3aee8918
PA
400 memcpy (buf, register_data (regcache, n, 1),
401 register_size (regcache->tdesc, n));
0d62e5e8
DJ
402}
403
68ce2059
AT
404enum register_status
405regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
406 ULONGEST *val)
407{
408 int size;
409
410 gdb_assert (regcache != NULL);
f7000548 411 gdb_assert (regnum >= 0
c4dfafab 412 && regnum < regcache->tdesc->reg_defs.size ());
68ce2059
AT
413
414 size = register_size (regcache->tdesc, regnum);
415
416 if (size > (int) sizeof (ULONGEST))
417 error (_("That operation is not available on integers of more than"
418 "%d bytes."),
419 (int) sizeof (ULONGEST));
420
9f6a71b4 421 *val = 0;
68ce2059
AT
422 collect_register (regcache, regnum, val);
423
424 return REG_VALID;
425}
426
fa593d66
PA
427#ifndef IN_PROCESS_AGENT
428
0d62e5e8 429void
442ea881 430collect_register_as_string (struct regcache *regcache, int n, char *buf)
0d62e5e8 431{
e9371aff
TT
432 bin2hex (register_data (regcache, n, 1), buf,
433 register_size (regcache->tdesc, n));
58caa3dc
DJ
434}
435
436void
442ea881
PA
437collect_register_by_name (struct regcache *regcache,
438 const char *name, void *buf)
58caa3dc 439{
3aee8918 440 collect_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc 441}
219f2f23
PA
442
443/* Special handling for register PC. */
444
445CORE_ADDR
446regcache_read_pc (struct regcache *regcache)
447{
448 CORE_ADDR pc_val;
449
450 if (the_target->read_pc)
451 pc_val = the_target->read_pc (regcache);
452 else
453 internal_error (__FILE__, __LINE__,
454 "regcache_read_pc: Unable to find PC");
455
456 return pc_val;
457}
458
459void
460regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
461{
462 if (the_target->write_pc)
463 the_target->write_pc (regcache, pc);
464 else
465 internal_error (__FILE__, __LINE__,
466 "regcache_write_pc: Unable to update PC");
467}
fa593d66
PA
468
469#endif
This page took 1.642715 seconds and 4 git commands to generate.