gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdbserver / regcache.cc
CommitLineData
0a30fbc4 1/* Register support routines for the remote server for GDB.
b811d2c2 2 Copyright (C) 2001-2020 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"
268a13a5 23#include "gdbsupport/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
268a13a5 66/* See gdbsupport/common-regcache.h. */
361c8ade
GB
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{
9c861883 162 struct regcache *regcache = new 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);
9c861883 177 delete regcache;
5822d809 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
5a82b8a1 201static const struct gdb::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
268a13a5 294/* See gdbsupport/common-regcache.h. */
8d689ee5
YQ
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 *
9c861883 303register_data (const 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
58caa3dc 309void
442ea881 310supply_register (struct regcache *regcache, int n, const void *buf)
9c861883
AH
311{
312 return regcache->raw_supply (n, buf);
313}
314
268a13a5 315/* See gdbsupport/common-regcache.h. */
9c861883
AH
316
317void
318regcache::raw_supply (int n, const void *buf)
58caa3dc 319{
3327ccf7 320 if (buf)
1c79eb8a 321 {
9c861883 322 memcpy (register_data (this, n, 0), buf, register_size (tdesc, n));
1c79eb8a 323#ifndef IN_PROCESS_AGENT
9c861883
AH
324 if (register_status != NULL)
325 register_status[n] = REG_VALID;
1c79eb8a
PA
326#endif
327 }
3327ccf7 328 else
1c79eb8a 329 {
9c861883 330 memset (register_data (this, n, 0), 0, register_size (tdesc, n));
1c79eb8a 331#ifndef IN_PROCESS_AGENT
9c861883
AH
332 if (register_status != NULL)
333 register_status[n] = REG_UNAVAILABLE;
1c79eb8a
PA
334#endif
335 }
58caa3dc
DJ
336}
337
1c79eb8a
PA
338/* Supply register N with value zero to REGCACHE. */
339
340void
341supply_register_zeroed (struct regcache *regcache, int n)
342{
3aee8918
PA
343 memset (register_data (regcache, n, 0), 0,
344 register_size (regcache->tdesc, n));
1c79eb8a
PA
345#ifndef IN_PROCESS_AGENT
346 if (regcache->register_status != NULL)
347 regcache->register_status[n] = REG_VALID;
348#endif
349}
350
8ee22052
AB
351#ifndef IN_PROCESS_AGENT
352
353/* Supply register called NAME with value zero to REGCACHE. */
354
355void
356supply_register_by_name_zeroed (struct regcache *regcache,
357 const char *name)
358{
359 supply_register_zeroed (regcache, find_regno (regcache->tdesc, name));
360}
361
362#endif
363
1c79eb8a
PA
364/* Supply the whole register set whose contents are stored in BUF, to
365 REGCACHE. If BUF is NULL, all the registers' values are recorded
366 as unavailable. */
367
219f2f23
PA
368void
369supply_regblock (struct regcache *regcache, const void *buf)
370{
371 if (buf)
1c79eb8a 372 {
3aee8918
PA
373 const struct target_desc *tdesc = regcache->tdesc;
374
375 memcpy (regcache->registers, buf, tdesc->registers_size);
1c79eb8a
PA
376#ifndef IN_PROCESS_AGENT
377 {
378 int i;
379
c4dfafab 380 for (i = 0; i < tdesc->reg_defs.size (); i++)
1c79eb8a
PA
381 regcache->register_status[i] = REG_VALID;
382 }
383#endif
384 }
219f2f23 385 else
1c79eb8a 386 {
3aee8918
PA
387 const struct target_desc *tdesc = regcache->tdesc;
388
389 memset (regcache->registers, 0, tdesc->registers_size);
1c79eb8a
PA
390#ifndef IN_PROCESS_AGENT
391 {
392 int i;
393
c4dfafab 394 for (i = 0; i < tdesc->reg_defs.size (); i++)
1c79eb8a
PA
395 regcache->register_status[i] = REG_UNAVAILABLE;
396 }
397#endif
398 }
219f2f23
PA
399}
400
fa593d66
PA
401#ifndef IN_PROCESS_AGENT
402
58caa3dc 403void
442ea881
PA
404supply_register_by_name (struct regcache *regcache,
405 const char *name, const void *buf)
58caa3dc 406{
3aee8918 407 supply_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc
DJ
408}
409
fa593d66
PA
410#endif
411
58caa3dc 412void
442ea881 413collect_register (struct regcache *regcache, int n, void *buf)
58caa3dc 414{
9c861883
AH
415 regcache->raw_collect (n, buf);
416}
417
268a13a5 418/* See gdbsupport/common-regcache.h. */
9c861883
AH
419
420void
421regcache::raw_collect (int n, void *buf) const
422{
423 memcpy (buf, register_data (this, n, 1), register_size (tdesc, n));
0d62e5e8
DJ
424}
425
68ce2059
AT
426enum register_status
427regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
428 ULONGEST *val)
429{
430 int size;
431
432 gdb_assert (regcache != NULL);
f7000548 433 gdb_assert (regnum >= 0
c4dfafab 434 && regnum < regcache->tdesc->reg_defs.size ());
68ce2059
AT
435
436 size = register_size (regcache->tdesc, regnum);
437
438 if (size > (int) sizeof (ULONGEST))
439 error (_("That operation is not available on integers of more than"
440 "%d bytes."),
441 (int) sizeof (ULONGEST));
442
9f6a71b4 443 *val = 0;
68ce2059
AT
444 collect_register (regcache, regnum, val);
445
446 return REG_VALID;
447}
448
fa593d66
PA
449#ifndef IN_PROCESS_AGENT
450
cb197132
PA
451/* See regcache.h. */
452
453ULONGEST
454regcache_raw_get_unsigned_by_name (struct regcache *regcache,
455 const char *name)
456{
457 return regcache_raw_get_unsigned (regcache,
458 find_regno (regcache->tdesc, name));
459}
460
0d62e5e8 461void
442ea881 462collect_register_as_string (struct regcache *regcache, int n, char *buf)
0d62e5e8 463{
e9371aff
TT
464 bin2hex (register_data (regcache, n, 1), buf,
465 register_size (regcache->tdesc, n));
58caa3dc
DJ
466}
467
468void
442ea881
PA
469collect_register_by_name (struct regcache *regcache,
470 const char *name, void *buf)
58caa3dc 471{
3aee8918 472 collect_register (regcache, find_regno (regcache->tdesc, name), buf);
58caa3dc 473}
219f2f23
PA
474
475/* Special handling for register PC. */
476
477CORE_ADDR
478regcache_read_pc (struct regcache *regcache)
479{
52405d85 480 return the_target->read_pc (regcache);
219f2f23
PA
481}
482
483void
484regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
485{
52405d85 486 the_target->write_pc (regcache, pc);
219f2f23 487}
fa593d66
PA
488
489#endif
9c861883 490
268a13a5 491/* See gdbsupport/common-regcache.h. */
9c861883
AH
492
493enum register_status
494regcache::get_register_status (int regnum) const
495{
496#ifndef IN_PROCESS_AGENT
497 gdb_assert (regnum >= 0 && regnum < tdesc->reg_defs.size ());
498 return (enum register_status) (register_status[regnum]);
499#else
500 return REG_VALID;
501#endif
502}
f868386e 503
268a13a5 504/* See gdbsupport/common-regcache.h. */
f868386e
AH
505
506bool
507regcache::raw_compare (int regnum, const void *buf, int offset) const
508{
509 gdb_assert (buf != NULL);
510
511 const unsigned char *regbuf = register_data (this, regnum, 1);
512 int size = register_size (tdesc, regnum);
513 gdb_assert (size >= offset);
514
515 return (memcmp (buf, regbuf + offset, size - offset) == 0);
516}
This page took 1.403147 seconds and 4 git commands to generate.