1 /* Register support routines for the remote server for GDB.
2 Copyright (C) 2001-2023 Free Software Foundation, Inc.
4 This file is part of GDB.
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
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "gdbthread.h"
23 #include "gdbsupport/rsp-low.h"
24 #ifndef IN_PROCESS_AGENT
27 get_thread_regcache (struct thread_info
*thread
, int fetch
)
29 struct regcache
*regcache
;
31 regcache
= thread_regcache_data (thread
);
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
42 struct process_info
*proc
= get_thread_process (thread
);
44 gdb_assert (proc
->tdesc
!= NULL
);
46 regcache
= new_register_cache (proc
->tdesc
);
47 set_thread_regcache_data (thread
, regcache
);
50 if (fetch
&& regcache
->registers_valid
== 0)
52 scoped_restore_current_thread restore_thread
;
54 switch_to_thread (thread
);
55 /* Invalidate all registers, to prevent stale left-overs. */
56 memset (regcache
->register_status
, REG_UNAVAILABLE
,
57 regcache
->tdesc
->reg_defs
.size ());
58 fetch_inferior_registers (regcache
, -1);
59 regcache
->registers_valid
= 1;
65 /* See gdbsupport/common-regcache.h. */
68 get_thread_regcache_for_ptid (ptid_t ptid
)
70 return get_thread_regcache (find_thread_ptid (ptid
), 1);
74 regcache_invalidate_thread (struct thread_info
*thread
)
76 struct regcache
*regcache
;
78 regcache
= thread_regcache_data (thread
);
83 if (regcache
->registers_valid
)
85 scoped_restore_current_thread restore_thread
;
87 switch_to_thread (thread
);
88 store_inferior_registers (regcache
, -1);
91 regcache
->registers_valid
= 0;
97 regcache_invalidate_pid (int pid
)
99 /* Only invalidate the regcaches of threads of this process. */
100 for_each_thread (pid
, regcache_invalidate_thread
);
103 /* See regcache.h. */
106 regcache_invalidate (void)
108 /* Only update the threads of the current process. */
109 int pid
= current_thread
->id
.pid ();
111 regcache_invalidate_pid (pid
);
117 init_register_cache (struct regcache
*regcache
,
118 const struct target_desc
*tdesc
,
119 unsigned char *regbuf
)
123 #ifndef IN_PROCESS_AGENT
124 /* Make sure to zero-initialize the register cache when it is
125 created, in case there are registers the target never
126 fetches. This way they'll read as zero instead of
128 regcache
->tdesc
= tdesc
;
130 = (unsigned char *) xcalloc (1, tdesc
->registers_size
);
131 regcache
->registers_owned
= 1;
132 regcache
->register_status
133 = (unsigned char *) xmalloc (tdesc
->reg_defs
.size ());
134 memset ((void *) regcache
->register_status
, REG_UNAVAILABLE
,
135 tdesc
->reg_defs
.size ());
137 gdb_assert_not_reached ("can't allocate memory from the heap");
142 regcache
->tdesc
= tdesc
;
143 regcache
->registers
= regbuf
;
144 regcache
->registers_owned
= 0;
145 #ifndef IN_PROCESS_AGENT
146 regcache
->register_status
= NULL
;
150 regcache
->registers_valid
= 0;
155 #ifndef IN_PROCESS_AGENT
158 new_register_cache (const struct target_desc
*tdesc
)
160 struct regcache
*regcache
= new struct regcache
;
162 gdb_assert (tdesc
->registers_size
!= 0);
164 return init_register_cache (regcache
, tdesc
, NULL
);
168 free_register_cache (struct regcache
*regcache
)
172 if (regcache
->registers_owned
)
173 free (regcache
->registers
);
174 free (regcache
->register_status
);
182 regcache_cpy (struct regcache
*dst
, struct regcache
*src
)
184 gdb_assert (src
!= NULL
&& dst
!= NULL
);
185 gdb_assert (src
->tdesc
== dst
->tdesc
);
186 gdb_assert (src
!= dst
);
188 memcpy (dst
->registers
, src
->registers
, src
->tdesc
->registers_size
);
189 #ifndef IN_PROCESS_AGENT
190 if (dst
->register_status
!= NULL
&& src
->register_status
!= NULL
)
191 memcpy (dst
->register_status
, src
->register_status
,
192 src
->tdesc
->reg_defs
.size ());
194 dst
->registers_valid
= src
->registers_valid
;
197 /* Return a reference to the description of register N. */
199 static const struct gdb::reg
&
200 find_register_by_number (const struct target_desc
*tdesc
, int n
)
203 gdb_assert (n
< tdesc
->reg_defs
.size ());
205 return tdesc
->reg_defs
[n
];
208 #ifndef IN_PROCESS_AGENT
211 registers_to_string (struct regcache
*regcache
, char *buf
)
213 unsigned char *registers
= regcache
->registers
;
214 const struct target_desc
*tdesc
= regcache
->tdesc
;
216 for (int i
= 0; i
< tdesc
->reg_defs
.size (); ++i
)
218 if (regcache
->register_status
[i
] == REG_VALID
)
220 bin2hex (registers
, buf
, register_size (tdesc
, i
));
221 buf
+= register_size (tdesc
, i
) * 2;
225 memset (buf
, 'x', register_size (tdesc
, i
) * 2);
226 buf
+= register_size (tdesc
, i
) * 2;
228 registers
+= register_size (tdesc
, i
);
234 registers_from_string (struct regcache
*regcache
, char *buf
)
236 int len
= strlen (buf
);
237 unsigned char *registers
= regcache
->registers
;
238 const struct target_desc
*tdesc
= regcache
->tdesc
;
240 if (len
!= tdesc
->registers_size
* 2)
242 warning ("Wrong sized register packet (expected %d bytes, got %d)",
243 2 * tdesc
->registers_size
, len
);
244 if (len
> tdesc
->registers_size
* 2)
245 len
= tdesc
->registers_size
* 2;
247 hex2bin (buf
, registers
, len
/ 2);
253 find_regno_no_throw (const struct target_desc
*tdesc
, const char *name
)
255 for (int i
= 0; i
< tdesc
->reg_defs
.size (); ++i
)
257 if (strcmp (name
, find_register_by_number (tdesc
, i
).name
) == 0)
264 find_regno (const struct target_desc
*tdesc
, const char *name
)
266 gdb::optional
<int> regnum
= find_regno_no_throw (tdesc
, name
);
268 if (regnum
.has_value ())
271 internal_error ("Unknown register %s requested", name
);
275 free_register_cache_thread (struct thread_info
*thread
)
277 struct regcache
*regcache
= thread_regcache_data (thread
);
279 if (regcache
!= NULL
)
281 regcache_invalidate_thread (thread
);
282 free_register_cache (regcache
);
283 set_thread_regcache_data (thread
, NULL
);
288 regcache_release (void)
290 /* Flush and release all pre-existing register caches. */
291 for_each_thread (free_register_cache_thread
);
296 register_cache_size (const struct target_desc
*tdesc
)
298 return tdesc
->registers_size
;
302 register_size (const struct target_desc
*tdesc
, int n
)
304 return find_register_by_number (tdesc
, n
).size
/ 8;
307 /* See gdbsupport/common-regcache.h. */
310 regcache_register_size (const struct regcache
*regcache
, int n
)
312 return register_size (regcache
->tdesc
, n
);
315 static unsigned char *
316 register_data (const struct regcache
*regcache
, int n
)
318 return (regcache
->registers
319 + find_register_by_number (regcache
->tdesc
, n
).offset
/ 8);
323 supply_register (struct regcache
*regcache
, int n
, const void *buf
)
325 return regcache
->raw_supply (n
, buf
);
328 /* See gdbsupport/common-regcache.h. */
331 regcache::raw_supply (int n
, const void *buf
)
335 memcpy (register_data (this, n
), buf
, register_size (tdesc
, n
));
336 #ifndef IN_PROCESS_AGENT
337 if (register_status
!= NULL
)
338 register_status
[n
] = REG_VALID
;
343 memset (register_data (this, n
), 0, register_size (tdesc
, n
));
344 #ifndef IN_PROCESS_AGENT
345 if (register_status
!= NULL
)
346 register_status
[n
] = REG_UNAVAILABLE
;
351 /* Supply register N with value zero to REGCACHE. */
354 supply_register_zeroed (struct regcache
*regcache
, int n
)
356 memset (register_data (regcache
, n
), 0,
357 register_size (regcache
->tdesc
, n
));
358 #ifndef IN_PROCESS_AGENT
359 if (regcache
->register_status
!= NULL
)
360 regcache
->register_status
[n
] = REG_VALID
;
364 #ifndef IN_PROCESS_AGENT
366 /* Supply register called NAME with value zero to REGCACHE. */
369 supply_register_by_name_zeroed (struct regcache
*regcache
,
372 supply_register_zeroed (regcache
, find_regno (regcache
->tdesc
, name
));
377 /* Supply the whole register set whose contents are stored in BUF, to
378 REGCACHE. If BUF is NULL, all the registers' values are recorded
382 supply_regblock (struct regcache
*regcache
, const void *buf
)
386 const struct target_desc
*tdesc
= regcache
->tdesc
;
388 memcpy (regcache
->registers
, buf
, tdesc
->registers_size
);
389 #ifndef IN_PROCESS_AGENT
393 for (i
= 0; i
< tdesc
->reg_defs
.size (); i
++)
394 regcache
->register_status
[i
] = REG_VALID
;
400 const struct target_desc
*tdesc
= regcache
->tdesc
;
402 memset (regcache
->registers
, 0, tdesc
->registers_size
);
403 #ifndef IN_PROCESS_AGENT
407 for (i
= 0; i
< tdesc
->reg_defs
.size (); i
++)
408 regcache
->register_status
[i
] = REG_UNAVAILABLE
;
414 #ifndef IN_PROCESS_AGENT
417 supply_register_by_name (struct regcache
*regcache
,
418 const char *name
, const void *buf
)
420 supply_register (regcache
, find_regno (regcache
->tdesc
, name
), buf
);
426 collect_register (struct regcache
*regcache
, int n
, void *buf
)
428 regcache
->raw_collect (n
, buf
);
431 /* See gdbsupport/common-regcache.h. */
434 regcache::raw_collect (int n
, void *buf
) const
436 memcpy (buf
, register_data (this, n
), register_size (tdesc
, n
));
440 regcache_raw_read_unsigned (struct regcache
*regcache
, int regnum
,
445 gdb_assert (regcache
!= NULL
);
447 size
= register_size (regcache
->tdesc
, regnum
);
449 if (size
> (int) sizeof (ULONGEST
))
450 error (_("That operation is not available on integers of more than"
452 (int) sizeof (ULONGEST
));
455 collect_register (regcache
, regnum
, val
);
460 #ifndef IN_PROCESS_AGENT
462 /* See regcache.h. */
465 regcache_raw_get_unsigned_by_name (struct regcache
*regcache
,
468 return regcache_raw_get_unsigned (regcache
,
469 find_regno (regcache
->tdesc
, name
));
473 collect_register_as_string (struct regcache
*regcache
, int n
, char *buf
)
475 bin2hex (register_data (regcache
, n
), buf
,
476 register_size (regcache
->tdesc
, n
));
480 collect_register_by_name (struct regcache
*regcache
,
481 const char *name
, void *buf
)
483 collect_register (regcache
, find_regno (regcache
->tdesc
, name
), buf
);
486 /* Special handling for register PC. */
489 regcache_read_pc (struct regcache
*regcache
)
491 return the_target
->read_pc (regcache
);
495 regcache_write_pc (struct regcache
*regcache
, CORE_ADDR pc
)
497 the_target
->write_pc (regcache
, pc
);
502 /* See gdbsupport/common-regcache.h. */
505 regcache::get_register_status (int regnum
) const
507 #ifndef IN_PROCESS_AGENT
508 gdb_assert (regnum
>= 0 && regnum
< tdesc
->reg_defs
.size ());
509 return (enum register_status
) (register_status
[regnum
]);
515 /* See gdbsupport/common-regcache.h. */
518 regcache::raw_compare (int regnum
, const void *buf
, int offset
) const
520 gdb_assert (buf
!= NULL
);
522 const unsigned char *regbuf
= register_data (this, regnum
);
523 int size
= register_size (tdesc
, regnum
);
524 gdb_assert (size
>= offset
);
526 return (memcmp (buf
, regbuf
+ offset
, size
- offset
) == 0);