Change regcache list to be an hash map
[deliverable/binutils-gdb.git] / gdb / regcache.h
CommitLineData
4e052eda 1/* Cache and manage the values of registers for GDB, the GNU debugger.
3fadccb3 2
b811d2c2 3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
4e052eda
AC
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
4e052eda
AC
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/>. */
4e052eda
AC
19
20#ifndef REGCACHE_H
21#define REGCACHE_H
22
268a13a5 23#include "gdbsupport/common-regcache.h"
0d12e84c 24#include "gdbsupport/function-view.h"
e521e87e 25#include <forward_list>
361c8ade 26
3fadccb3 27struct regcache;
a01cbb49 28struct regset;
3fadccb3 29struct gdbarch;
6c95b8df 30struct address_space;
0d12e84c 31class thread_info;
5b6d1e4f 32struct process_stratum_target;
3fadccb3 33
594f7785 34extern struct regcache *get_current_regcache (void);
5b6d1e4f
PA
35extern struct regcache *get_thread_regcache (process_stratum_target *target,
36 ptid_t ptid);
00431a78
PA
37
38/* Get the regcache of THREAD. */
39extern struct regcache *get_thread_regcache (thread_info *thread);
40
5b6d1e4f
PA
41extern struct regcache *get_thread_arch_regcache
42 (process_stratum_target *targ, ptid_t, struct gdbarch *);
43extern struct regcache *get_thread_arch_aspace_regcache
44 (process_stratum_target *target, ptid_t,
45 struct gdbarch *, struct address_space *);
3fadccb3 46
05d1431c
PA
47extern enum register_status
48 regcache_raw_read_signed (struct regcache *regcache,
49 int regnum, LONGEST *val);
d0e59a68 50
c00dcbe9
MK
51extern void regcache_raw_write_signed (struct regcache *regcache,
52 int regnum, LONGEST val);
53extern void regcache_raw_write_unsigned (struct regcache *regcache,
54 int regnum, ULONGEST val);
06c0b04e 55
9fd15b2e
YQ
56/* Return the register's value in signed or throw if it's not
57 available. */
58
59extern LONGEST regcache_raw_get_signed (struct regcache *regcache,
60 int regnum);
61
a378f419 62/* Read a register as a signed/unsigned quantity. */
05d1431c
PA
63extern enum register_status
64 regcache_cooked_read_signed (struct regcache *regcache,
65 int regnum, LONGEST *val);
66extern enum register_status
67 regcache_cooked_read_unsigned (struct regcache *regcache,
68 int regnum, ULONGEST *val);
a66a9c23
AC
69extern void regcache_cooked_write_signed (struct regcache *regcache,
70 int regnum, LONGEST val);
71extern void regcache_cooked_write_unsigned (struct regcache *regcache,
72 int regnum, ULONGEST val);
a378f419 73
515630c5
UW
74/* Special routines to read/write the PC. */
75
268a13a5 76/* For regcache_read_pc see gdbsupport/common-regcache.h. */
515630c5
UW
77extern void regcache_write_pc (struct regcache *regcache, CORE_ADDR pc);
78
0b309272 79/* Mapping between register numbers and offsets in a buffer, for use
498f7407
JB
80 in the '*regset' functions below and with traditional frame caches.
81 In an array of 'regcache_map_entry' each element is interpreted
82 like follows:
0b309272
AA
83
84 - If 'regno' is a register number: Map register 'regno' to the
85 current offset (starting with 0) and increase the current offset
86 by 'size' (or the register's size, if 'size' is zero). Repeat
87 this with consecutive register numbers up to 'regno+count-1'.
88
498f7407
JB
89 For each described register, if 'size' is larger than the
90 register's size, the register's value is assumed to be stored in
91 the first N (where N is the register size) bytes at the current
92 offset. The remaining 'size' - N bytes are filled with zeroes by
93 'regcache_collect_regset' and ignored by other consumers.
94
95 If 'size' is smaller than the register's size, only the first
96 'size' bytes of a register's value are assumed to be stored at
97 the current offset. 'regcache_collect_regset' copies the first
98 'size' bytes of a register's value to the output buffer.
99 'regcache_supply_regset' copies the bytes from the input buffer
100 into the first 'size' bytes of the register's value leaving the
101 remaining bytes of the register's value unchanged. Frame caches
102 read the 'size' bytes from the stack frame and zero extend them
103 to generate the register's value.
104
0b309272
AA
105 - If 'regno' is REGCACHE_MAP_SKIP: Add 'count*size' to the current
106 offset.
107
108 - If count=0: End of the map. */
109
110struct regcache_map_entry
111{
112 int count;
113 int regno;
114 int size;
115};
116
117/* Special value for the 'regno' field in the struct above. */
118
119enum
120 {
121 REGCACHE_MAP_SKIP = -1,
122 };
123
0c76e06d
AH
124/* Calculate and return the total size of all the registers in a
125 regcache_map_entry. */
126
127static inline int
128regcache_map_entry_size (const struct regcache_map_entry *map)
129{
130 int size = 0;
131 for (int i = 0; map[i].count != 0; i++)
132 size += (map[i].count * map[i].size);
133 return size;
134}
135
0b309272
AA
136/* Transfer a set of registers (as described by REGSET) between
137 REGCACHE and BUF. If REGNUM == -1, transfer all registers
138 belonging to the regset, otherwise just the register numbered
139 REGNUM. The REGSET's 'regmap' field must point to an array of
140 'struct regcache_map_entry'.
141
142 These functions are suitable for the 'regset_supply' and
143 'regset_collect' fields in a regset structure. */
144
145extern void regcache_supply_regset (const struct regset *regset,
146 struct regcache *regcache,
147 int regnum, const void *buf,
148 size_t size);
149extern void regcache_collect_regset (const struct regset *regset,
150 const struct regcache *regcache,
151 int regnum, void *buf, size_t size);
152
193cb69f 153
bb425013
AC
154/* The type of a register. This function is slightly more efficient
155 then its gdbarch vector counterpart since it returns a precomputed
01e1877c 156 value stored in a table. */
bb425013
AC
157
158extern struct type *register_type (struct gdbarch *gdbarch, int regnum);
159
160
08a617da 161/* Return the size of register REGNUM. All registers should have only
01e1877c 162 one size. */
08a617da
AC
163
164extern int register_size (struct gdbarch *gdbarch, int regnum);
165
302abd6e
SM
166typedef gdb::function_view<register_status (int regnum, gdb_byte *buf)>
167 register_read_ftype;
5602984a 168
4fa847d7
AH
169/* A (register_number, register_value) pair. */
170
171typedef struct cached_reg
172{
173 int num;
174 gdb_byte *data;
175} cached_reg_t;
176
31716595
YQ
177/* Buffer of registers. */
178
9c861883 179class reg_buffer : public reg_buffer_common
31716595
YQ
180{
181public:
182 reg_buffer (gdbarch *gdbarch, bool has_pseudo);
183
184 DISABLE_COPY_AND_ASSIGN (reg_buffer);
185
186 /* Return regcache's architecture. */
187 gdbarch *arch () const;
188
268a13a5 189 /* See gdbsupport/common-regcache.h. */
9c861883
AH
190 enum register_status get_register_status (int regnum) const override;
191
268a13a5 192 /* See gdbsupport/common-regcache.h. */
9c861883
AH
193 void raw_collect (int regnum, void *buf) const override;
194
195 /* Collect register REGNUM from REGCACHE. Store collected value as an integer
196 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
197 If ADDR_LEN is greater than the register size, then the integer will be
198 sign or zero extended. If ADDR_LEN is smaller than the register size, then
199 the most significant bytes of the integer will be truncated. */
200 void raw_collect_integer (int regnum, gdb_byte *addr, int addr_len,
201 bool is_signed) const;
202
8e7767e3
AH
203 /* Collect register REGNUM from REGCACHE, starting at OFFSET in register,
204 reading only LEN. */
205 void raw_collect_part (int regnum, int offset, int len, gdb_byte *out) const;
206
268a13a5 207 /* See gdbsupport/common-regcache.h. */
9c861883
AH
208 void raw_supply (int regnum, const void *buf) override;
209
210 void raw_supply (int regnum, const reg_buffer &src)
211 {
212 raw_supply (regnum, src.register_buffer (regnum));
213 }
214
215 /* Supply register REGNUM to REGCACHE. Value to supply is an integer stored
216 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
217 If the register size is greater than ADDR_LEN, then the integer will be
218 sign or zero extended. If the register size is smaller than the integer,
219 then the most significant bytes of the integer will be truncated. */
220 void raw_supply_integer (int regnum, const gdb_byte *addr, int addr_len,
221 bool is_signed);
222
223 /* Supply register REGNUM with zeroed value to REGCACHE. This is not the same
224 as calling raw_supply with NULL (which will set the state to
225 unavailable). */
226 void raw_supply_zeroed (int regnum);
227
8e7767e3
AH
228 /* Supply register REGNUM to REGCACHE, starting at OFFSET in register, writing
229 only LEN, without editing the rest of the register. */
230 void raw_supply_part (int regnum, int offset, int len, const gdb_byte *in);
231
9c861883 232 void invalidate (int regnum);
c8ec2f33 233
835dcf92
SM
234 virtual ~reg_buffer () = default;
235
268a13a5 236 /* See gdbsupport/common-regcache.h. */
f868386e
AH
237 bool raw_compare (int regnum, const void *buf, int offset) const override;
238
31716595
YQ
239protected:
240 /* Assert on the range of REGNUM. */
241 void assert_regnum (int regnum) const;
242
243 int num_raw_registers () const;
244
245 gdb_byte *register_buffer (int regnum) const;
246
daf6667d
YQ
247 /* Save a register cache. The set of registers saved into the
248 regcache determined by the save_reggroup. COOKED_READ returns
249 zero iff the register's value can't be returned. */
302abd6e 250 void save (register_read_ftype cooked_read);
daf6667d 251
31716595
YQ
252 struct regcache_descr *m_descr;
253
254 bool m_has_pseudo;
255 /* The register buffers. */
835dcf92 256 std::unique_ptr<gdb_byte[]> m_registers;
31716595 257 /* Register cache status. */
835dcf92 258 std::unique_ptr<register_status[]> m_register_status;
daf6667d
YQ
259
260 friend class regcache;
c8ec2f33 261 friend class detached_regcache;
31716595
YQ
262};
263
849d0ba8
YQ
264/* An abstract class which only has methods doing read. */
265
266class readable_regcache : public reg_buffer
267{
268public:
269 readable_regcache (gdbarch *gdbarch, bool has_pseudo)
270 : reg_buffer (gdbarch, has_pseudo)
271 {}
272
0b883586
SM
273 /* Transfer a raw register [0..NUM_REGS) from core-gdb to this regcache,
274 return its value in *BUF and return its availability status. */
275
849d0ba8
YQ
276 enum register_status raw_read (int regnum, gdb_byte *buf);
277 template<typename T, typename = RequireLongest<T>>
278 enum register_status raw_read (int regnum, T *val);
279
502fe83e 280 /* Partial transfer of raw registers. Return the status of the register. */
849d0ba8
YQ
281 enum register_status raw_read_part (int regnum, int offset, int len,
282 gdb_byte *buf);
283
0b47d985 284 /* Make certain that the register REGNUM is up-to-date. */
849d0ba8
YQ
285 virtual void raw_update (int regnum) = 0;
286
dca08e1f
SM
287 /* Transfer a raw register [0..NUM_REGS+NUM_PSEUDO_REGS) from core-gdb to
288 this regcache, return its value in *BUF and return its availability status. */
849d0ba8
YQ
289 enum register_status cooked_read (int regnum, gdb_byte *buf);
290 template<typename T, typename = RequireLongest<T>>
291 enum register_status cooked_read (int regnum, T *val);
292
73bb0000 293 /* Partial transfer of a cooked register. */
849d0ba8
YQ
294 enum register_status cooked_read_part (int regnum, int offset, int len,
295 gdb_byte *buf);
296
46a45e9d
SM
297 /* Read register REGNUM from the regcache and return a new value. This
298 will call mark_value_bytes_unavailable as appropriate. */
849d0ba8
YQ
299 struct value *cooked_read_value (int regnum);
300
301protected:
33bab475
AH
302
303 /* Perform a partial register transfer using a read, modify, write
304 operation. Will fail if register is currently invalid. */
305 enum register_status read_part (int regnum, int offset, int len,
306 gdb_byte *out, bool is_raw);
849d0ba8
YQ
307};
308
c8ec2f33
YQ
309/* Buffer of registers, can be read and written. */
310
311class detached_regcache : public readable_regcache
312{
313public:
314 detached_regcache (gdbarch *gdbarch, bool has_pseudo)
315 : readable_regcache (gdbarch, has_pseudo)
316 {}
317
c8ec2f33
YQ
318 void raw_update (int regnum) override
319 {}
320
321 DISABLE_COPY_AND_ASSIGN (detached_regcache);
322};
323
daf6667d
YQ
324class readonly_detached_regcache;
325
ef79d9a3
YQ
326/* The register cache for storing raw register values. */
327
c8ec2f33 328class regcache : public detached_regcache
ef79d9a3
YQ
329{
330public:
d6541620 331 DISABLE_COPY_AND_ASSIGN (regcache);
deb1fa3e 332
a01bda52 333 /* Return REGCACHE's address space. */
8b86c959 334 const address_space *aspace () const
ef79d9a3
YQ
335 {
336 return m_aspace;
337 }
338
daf6667d
YQ
339 /* Restore 'this' regcache. The set of registers restored into
340 the regcache determined by the restore_reggroup.
341 Writes to regcache will go through to the target. SRC is a
fc5b8736 342 read-only register cache. */
daf6667d 343 void restore (readonly_detached_regcache *src);
fc5b8736 344
10eaee5f
SM
345 /* Update the value of raw register REGNUM (in the range [0..NUM_REGS)) and
346 transfer its value to core-gdb. */
347
ef79d9a3
YQ
348 void raw_write (int regnum, const gdb_byte *buf);
349
6f98355c
YQ
350 template<typename T, typename = RequireLongest<T>>
351 void raw_write (int regnum, T val);
ef79d9a3 352
b66f5587
SM
353 /* Transfer of pseudo-registers. */
354 void cooked_write (int regnum, const gdb_byte *buf);
355
6f98355c
YQ
356 template<typename T, typename = RequireLongest<T>>
357 void cooked_write (int regnum, T val);
ef79d9a3 358
849d0ba8 359 void raw_update (int regnum) override;
ef79d9a3 360
4f0420fd
SM
361 /* Partial transfer of raw registers. Perform read, modify, write style
362 operations. */
ef79d9a3
YQ
363 void raw_write_part (int regnum, int offset, int len, const gdb_byte *buf);
364
e4c4a59b
SM
365 /* Partial transfer of a cooked register. Perform read, modify, write style
366 operations. */
ef79d9a3
YQ
367 void cooked_write_part (int regnum, int offset, int len,
368 const gdb_byte *buf);
369
370 void supply_regset (const struct regset *regset,
371 int regnum, const void *buf, size_t size);
372
373
374 void collect_regset (const struct regset *regset, int regnum,
375 void *buf, size_t size) const;
376
222312d3
SM
377 /* Return REGCACHE's ptid. */
378
ef79d9a3
YQ
379 ptid_t ptid () const
380 {
222312d3
SM
381 gdb_assert (m_ptid != minus_one_ptid);
382
ef79d9a3
YQ
383 return m_ptid;
384 }
385
386 void set_ptid (const ptid_t ptid)
387 {
388 this->m_ptid = ptid;
389 }
390
5b6d1e4f
PA
391 process_stratum_target *target () const
392 {
393 return m_target;
394 }
395
ef79d9a3
YQ
396/* Dump the contents of a register from the register cache to the target
397 debug. */
398 void debug_print_register (const char *func, int regno);
399
e521e87e 400protected:
5b6d1e4f
PA
401 regcache (process_stratum_target *target, gdbarch *gdbarch,
402 const address_space *aspace);
00431a78 403
e521e87e 404private:
ef79d9a3 405
8e7767e3
AH
406 /* Helper function for transfer_regset. Copies across a single register. */
407 void transfer_regset_register (struct regcache *out_regcache, int regnum,
408 const gdb_byte *in_buf, gdb_byte *out_buf,
409 int slot_size, int offs) const;
410
411 /* Transfer a single or all registers belonging to a certain register
412 set to or from a buffer. This is the main worker function for
413 regcache_supply_regset and regcache_collect_regset. */
ef79d9a3
YQ
414 void transfer_regset (const struct regset *regset,
415 struct regcache *out_regcache,
8e7767e3
AH
416 int regnum, const gdb_byte *in_buf,
417 gdb_byte *out_buf, size_t size) const;
ef79d9a3 418
33bab475
AH
419 /* Perform a partial register transfer using a read, modify, write
420 operation. */
849d0ba8 421 enum register_status write_part (int regnum, int offset, int len,
33bab475 422 const gdb_byte *in, bool is_raw);
849d0ba8 423
ef79d9a3
YQ
424 /* The address space of this register cache (for registers where it
425 makes sense, like PC or SP). */
8b86c959 426 const address_space * const m_aspace;
ef79d9a3 427
ef79d9a3
YQ
428 /* If this is a read-write cache, which thread's registers is
429 it connected to? */
5b6d1e4f 430 process_stratum_target *m_target;
ef79d9a3
YQ
431 ptid_t m_ptid;
432
433 friend struct regcache *
5b6d1e4f
PA
434 get_thread_arch_aspace_regcache (process_stratum_target *target, ptid_t ptid,
435 struct gdbarch *gdbarch,
ef79d9a3
YQ
436 struct address_space *aspace);
437
e521e87e 438 friend void
5b6d1e4f 439 registers_changed_ptid (process_stratum_target *target, ptid_t ptid);
ef79d9a3
YQ
440};
441
daf6667d
YQ
442class readonly_detached_regcache : public readable_regcache
443{
444public:
302abd6e 445 readonly_detached_regcache (regcache &src);
daf6667d
YQ
446
447 /* Create a readonly regcache by getting contents from COOKED_READ. */
448
302abd6e 449 readonly_detached_regcache (gdbarch *gdbarch, register_read_ftype cooked_read)
daf6667d
YQ
450 : readable_regcache (gdbarch, true)
451 {
302abd6e 452 save (cooked_read);
daf6667d
YQ
453 }
454
455 DISABLE_COPY_AND_ASSIGN (readonly_detached_regcache);
456
457 void raw_update (int regnum) override
458 {}
459};
cfb7e58b 460
4e052eda 461extern void registers_changed (void);
5b6d1e4f
PA
462extern void registers_changed_ptid (process_stratum_target *target,
463 ptid_t ptid);
4e052eda 464
00431a78
PA
465/* Indicate that registers of THREAD may have changed, so invalidate
466 the cache. */
467extern void registers_changed_thread (thread_info *thread);
468
4c74fe6b
YQ
469/* An abstract base class for register dump. */
470
471class register_dump
472{
473public:
474 void dump (ui_file *file);
475 virtual ~register_dump () = default;
476
477protected:
478 register_dump (gdbarch *arch)
479 : m_gdbarch (arch)
480 {}
481
482 /* Dump the register REGNUM contents. If REGNUM is -1, print the
483 header. */
484 virtual void dump_reg (ui_file *file, int regnum) = 0;
485
486 gdbarch *m_gdbarch;
487};
488
4e052eda 489#endif /* REGCACHE_H */
This page took 1.951542 seconds and 4 git commands to generate.