1 /* Cache and manage the values of registers for GDB, the GNU debugger.
3 Copyright (C) 1986-2017 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "reggroups.h"
31 #include <forward_list>
36 * Here is the actual register cache.
39 /* Per-architecture object describing the layout of a register cache.
40 Computed once when the architecture is created. */
42 struct gdbarch_data *regcache_descr_handle;
46 /* The architecture this descriptor belongs to. */
47 struct gdbarch *gdbarch;
49 /* The raw register cache. Each raw (or hard) register is supplied
50 by the target interface. The raw cache should not contain
51 redundant information - if the PC is constructed from two
52 registers then those registers and not the PC lives in the raw
55 long sizeof_raw_registers;
56 long sizeof_raw_register_status;
58 /* The cooked register space. Each cooked register in the range
59 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
60 register. The remaining [NR_RAW_REGISTERS
61 .. NR_COOKED_REGISTERS) (a.k.a. pseudo registers) are mapped onto
62 both raw registers and memory by the architecture methods
63 gdbarch_pseudo_register_read and gdbarch_pseudo_register_write. */
64 int nr_cooked_registers;
65 long sizeof_cooked_registers;
66 long sizeof_cooked_register_status;
68 /* Offset and size (in 8 bit bytes), of each register in the
69 register cache. All registers (including those in the range
70 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an
72 long *register_offset;
73 long *sizeof_register;
75 /* Cached table containing the type of each register. */
76 struct type **register_type;
80 init_regcache_descr (struct gdbarch *gdbarch)
83 struct regcache_descr *descr;
84 gdb_assert (gdbarch != NULL);
86 /* Create an initial, zero filled, table. */
87 descr = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct regcache_descr);
88 descr->gdbarch = gdbarch;
90 /* Total size of the register space. The raw registers are mapped
91 directly onto the raw register cache while the pseudo's are
92 either mapped onto raw-registers or memory. */
93 descr->nr_cooked_registers = gdbarch_num_regs (gdbarch)
94 + gdbarch_num_pseudo_regs (gdbarch);
95 descr->sizeof_cooked_register_status
96 = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
98 /* Fill in a table of register types. */
100 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers,
102 for (i = 0; i < descr->nr_cooked_registers; i++)
103 descr->register_type[i] = gdbarch_register_type (gdbarch, i);
105 /* Construct a strictly RAW register cache. Don't allow pseudo's
106 into the register cache. */
107 descr->nr_raw_registers = gdbarch_num_regs (gdbarch);
108 descr->sizeof_raw_register_status = gdbarch_num_regs (gdbarch);
110 /* Lay out the register cache.
112 NOTE: cagney/2002-05-22: Only register_type() is used when
113 constructing the register cache. It is assumed that the
114 register's raw size, virtual size and type length are all the
120 descr->sizeof_register
121 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
122 descr->register_offset
123 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
124 for (i = 0; i < descr->nr_raw_registers; i++)
126 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
127 descr->register_offset[i] = offset;
128 offset += descr->sizeof_register[i];
129 gdb_assert (MAX_REGISTER_SIZE >= descr->sizeof_register[i]);
131 /* Set the real size of the raw register cache buffer. */
132 descr->sizeof_raw_registers = offset;
134 for (; i < descr->nr_cooked_registers; i++)
136 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
137 descr->register_offset[i] = offset;
138 offset += descr->sizeof_register[i];
139 gdb_assert (MAX_REGISTER_SIZE >= descr->sizeof_register[i]);
141 /* Set the real size of the readonly register cache buffer. */
142 descr->sizeof_cooked_registers = offset;
148 static struct regcache_descr *
149 regcache_descr (struct gdbarch *gdbarch)
151 return (struct regcache_descr *) gdbarch_data (gdbarch,
152 regcache_descr_handle);
155 /* Utility functions returning useful register attributes stored in
156 the regcache descr. */
159 register_type (struct gdbarch *gdbarch, int regnum)
161 struct regcache_descr *descr = regcache_descr (gdbarch);
163 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
164 return descr->register_type[regnum];
167 /* Utility functions returning useful register attributes stored in
168 the regcache descr. */
171 register_size (struct gdbarch *gdbarch, int regnum)
173 struct regcache_descr *descr = regcache_descr (gdbarch);
176 gdb_assert (regnum >= 0
177 && regnum < (gdbarch_num_regs (gdbarch)
178 + gdbarch_num_pseudo_regs (gdbarch)));
179 size = descr->sizeof_register[regnum];
183 /* See common/common-regcache.h. */
186 regcache_register_size (const struct regcache *regcache, int n)
188 return register_size (get_regcache_arch (regcache), n);
191 regcache::regcache (gdbarch *gdbarch, address_space *aspace_,
193 : m_aspace (aspace_), m_readonly_p (readonly_p_)
195 gdb_assert (gdbarch != NULL);
196 m_descr = regcache_descr (gdbarch);
200 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_cooked_registers);
201 m_register_status = XCNEWVEC (signed char,
202 m_descr->sizeof_cooked_register_status);
206 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_raw_registers);
207 m_register_status = XCNEWVEC (signed char,
208 m_descr->sizeof_raw_register_status);
210 m_ptid = minus_one_ptid;
213 static enum register_status
214 do_cooked_read (void *src, int regnum, gdb_byte *buf)
216 struct regcache *regcache = (struct regcache *) src;
218 return regcache_cooked_read (regcache, regnum, buf);
221 regcache::regcache (readonly_t, const regcache &src)
222 : regcache (src.arch (), src.aspace (), true)
224 gdb_assert (!src.m_readonly_p);
225 save (do_cooked_read, (void *) &src);
229 regcache::arch () const
231 return m_descr->gdbarch;
234 /* See regcache.h. */
237 regcache_get_ptid (const struct regcache *regcache)
239 gdb_assert (!ptid_equal (regcache->ptid (), minus_one_ptid));
241 return regcache->ptid ();
244 /* Cleanup routines for invalidating a register. */
246 struct register_to_invalidate
248 struct regcache *regcache;
253 do_regcache_invalidate (void *data)
255 struct register_to_invalidate *reg = (struct register_to_invalidate *) data;
257 regcache_invalidate (reg->regcache, reg->regnum);
260 static struct cleanup *
261 make_cleanup_regcache_invalidate (struct regcache *regcache, int regnum)
263 struct register_to_invalidate* reg = XNEW (struct register_to_invalidate);
265 reg->regcache = regcache;
266 reg->regnum = regnum;
267 return make_cleanup_dtor (do_regcache_invalidate, (void *) reg, xfree);
270 /* Return REGCACHE's architecture. */
273 get_regcache_arch (const struct regcache *regcache)
275 return regcache->arch ();
278 struct address_space *
279 get_regcache_aspace (const struct regcache *regcache)
281 return regcache->aspace ();
284 /* Return a pointer to register REGNUM's buffer cache. */
287 regcache::register_buffer (int regnum) const
289 return m_registers + m_descr->register_offset[regnum];
293 regcache_save (struct regcache *regcache,
294 regcache_cooked_read_ftype *cooked_read, void *src)
296 regcache->save (cooked_read, src);
300 regcache::save (regcache_cooked_read_ftype *cooked_read,
303 struct gdbarch *gdbarch = m_descr->gdbarch;
306 /* The DST should be `read-only', if it wasn't then the save would
307 end up trying to write the register values back out to the
309 gdb_assert (m_readonly_p);
310 /* Clear the dest. */
311 memset (m_registers, 0, m_descr->sizeof_cooked_registers);
312 memset (m_register_status, 0, m_descr->sizeof_cooked_register_status);
313 /* Copy over any registers (identified by their membership in the
314 save_reggroup) and mark them as valid. The full [0 .. gdbarch_num_regs +
315 gdbarch_num_pseudo_regs) range is checked since some architectures need
316 to save/restore `cooked' registers that live in memory. */
317 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
319 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
321 gdb_byte *dst_buf = register_buffer (regnum);
322 enum register_status status = cooked_read (src, regnum, dst_buf);
324 gdb_assert (status != REG_UNKNOWN);
326 if (status != REG_VALID)
327 memset (dst_buf, 0, register_size (gdbarch, regnum));
329 m_register_status[regnum] = status;
335 regcache::restore (struct regcache *src)
337 struct gdbarch *gdbarch = m_descr->gdbarch;
340 /* The dst had better not be read-only. If it is, the `restore'
341 doesn't make much sense. */
342 gdb_assert (!m_readonly_p);
343 gdb_assert (src->m_readonly_p);
344 /* Copy over any registers, being careful to only restore those that
345 were both saved and need to be restored. The full [0 .. gdbarch_num_regs
346 + gdbarch_num_pseudo_regs) range is checked since some architectures need
347 to save/restore `cooked' registers that live in memory. */
348 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
350 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
352 if (src->m_register_status[regnum] == REG_VALID)
353 cooked_write (regnum, src->register_buffer (regnum));
359 regcache_cpy (struct regcache *dst, struct regcache *src)
361 gdb_assert (src != NULL && dst != NULL);
362 gdb_assert (src->m_descr->gdbarch == dst->m_descr->gdbarch);
363 gdb_assert (src != dst);
364 gdb_assert (src->m_readonly_p && !dst->m_readonly_p);
370 regcache_dup (struct regcache *src)
372 return new regcache (regcache::readonly, *src);
376 regcache_register_status (const struct regcache *regcache, int regnum)
378 gdb_assert (regcache != NULL);
379 return regcache->get_register_status (regnum);
383 regcache::get_register_status (int regnum) const
385 gdb_assert (regnum >= 0);
387 gdb_assert (regnum < m_descr->nr_cooked_registers);
389 gdb_assert (regnum < m_descr->nr_raw_registers);
391 return (enum register_status) m_register_status[regnum];
395 regcache_invalidate (struct regcache *regcache, int regnum)
397 gdb_assert (regcache != NULL);
398 regcache->invalidate (regnum);
402 regcache::invalidate (int regnum)
404 gdb_assert (regnum >= 0);
405 gdb_assert (!m_readonly_p);
406 gdb_assert (regnum < m_descr->nr_raw_registers);
407 m_register_status[regnum] = REG_UNKNOWN;
410 /* Global structure containing the current regcache. */
412 /* NOTE: this is a write-through cache. There is no "dirty" bit for
413 recording if the register values have been changed (eg. by the
414 user). Therefore all registers must be written back to the
415 target when appropriate. */
416 std::forward_list<regcache *> regcache::current_regcache;
419 get_thread_arch_aspace_regcache (ptid_t ptid, struct gdbarch *gdbarch,
420 struct address_space *aspace)
422 for (const auto ®cache : regcache::current_regcache)
423 if (ptid_equal (regcache->ptid (), ptid) && regcache->arch () == gdbarch)
426 regcache *new_regcache = new regcache (gdbarch, aspace, false);
428 regcache::current_regcache.push_front (new_regcache);
429 new_regcache->set_ptid (ptid);
435 get_thread_arch_regcache (ptid_t ptid, struct gdbarch *gdbarch)
437 struct address_space *aspace;
439 /* For the benefit of "maint print registers" & co when debugging an
440 executable, allow dumping the regcache even when there is no
441 thread selected (target_thread_address_space internal-errors if
442 no address space is found). Note that normal user commands will
443 fail higher up on the call stack due to no
444 target_has_registers. */
445 aspace = (ptid_equal (null_ptid, ptid)
447 : target_thread_address_space (ptid));
449 return get_thread_arch_aspace_regcache (ptid, gdbarch, aspace);
452 static ptid_t current_thread_ptid;
453 static struct gdbarch *current_thread_arch;
456 get_thread_regcache (ptid_t ptid)
458 if (!current_thread_arch || !ptid_equal (current_thread_ptid, ptid))
460 current_thread_ptid = ptid;
461 current_thread_arch = target_thread_architecture (ptid);
464 return get_thread_arch_regcache (ptid, current_thread_arch);
468 get_current_regcache (void)
470 return get_thread_regcache (inferior_ptid);
473 /* See common/common-regcache.h. */
476 get_thread_regcache_for_ptid (ptid_t ptid)
478 return get_thread_regcache (ptid);
481 /* Observer for the target_changed event. */
484 regcache_observer_target_changed (struct target_ops *target)
486 registers_changed ();
489 /* Update global variables old ptids to hold NEW_PTID if they were
492 regcache::regcache_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
494 for (auto ®cache : regcache::current_regcache)
496 if (ptid_equal (regcache->ptid (), old_ptid))
497 regcache->set_ptid (new_ptid);
501 /* Low level examining and depositing of registers.
503 The caller is responsible for making sure that the inferior is
504 stopped before calling the fetching routines, or it will get
505 garbage. (a change from GDB version 3, in which the caller got the
506 value from the last stop). */
508 /* REGISTERS_CHANGED ()
510 Indicate that registers may have changed, so invalidate the cache. */
513 registers_changed_ptid (ptid_t ptid)
515 for (auto oit = regcache::current_regcache.before_begin (),
516 it = std::next (oit);
517 it != regcache::current_regcache.end ();
520 if (ptid_match ((*it)->ptid (), ptid))
523 it = regcache::current_regcache.erase_after (oit);
529 if (ptid_match (current_thread_ptid, ptid))
531 current_thread_ptid = null_ptid;
532 current_thread_arch = NULL;
535 if (ptid_match (inferior_ptid, ptid))
537 /* We just deleted the regcache of the current thread. Need to
538 forget about any frames we have cached, too. */
539 reinit_frame_cache ();
544 registers_changed (void)
546 registers_changed_ptid (minus_one_ptid);
548 /* Force cleanup of any alloca areas if using C alloca instead of
549 a builtin alloca. This particular call is used to clean up
550 areas allocated by low level target code which may build up
551 during lengthy interactions between gdb and the target before
552 gdb gives control to the user (ie watchpoints). */
557 regcache_raw_update (struct regcache *regcache, int regnum)
559 gdb_assert (regcache != NULL);
561 regcache->raw_update (regnum);
565 regcache::raw_update (int regnum)
567 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
569 /* Make certain that the register cache is up-to-date with respect
570 to the current thread. This switching shouldn't be necessary
571 only there is still only one target side register cache. Sigh!
572 On the bright side, at least there is a regcache object. */
574 if (!m_readonly_p && get_register_status (regnum) == REG_UNKNOWN)
576 target_fetch_registers (this, regnum);
578 /* A number of targets can't access the whole set of raw
579 registers (because the debug API provides no means to get at
581 if (m_register_status[regnum] == REG_UNKNOWN)
582 m_register_status[regnum] = REG_UNAVAILABLE;
587 regcache_raw_read (struct regcache *regcache, int regnum, gdb_byte *buf)
589 return regcache->raw_read (regnum, buf);
593 regcache::raw_read (int regnum, gdb_byte *buf)
595 gdb_assert (buf != NULL);
598 if (m_register_status[regnum] != REG_VALID)
599 memset (buf, 0, m_descr->sizeof_register[regnum]);
601 memcpy (buf, register_buffer (regnum),
602 m_descr->sizeof_register[regnum]);
604 return (enum register_status) m_register_status[regnum];
608 regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
610 gdb_assert (regcache != NULL);
611 return regcache->raw_read (regnum, val);
614 template<typename T, typename>
616 regcache::raw_read (int regnum, T *val)
619 enum register_status status;
621 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
622 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
623 status = raw_read (regnum, buf);
624 if (status == REG_VALID)
625 *val = extract_integer<T> (buf,
626 m_descr->sizeof_register[regnum],
627 gdbarch_byte_order (m_descr->gdbarch));
634 regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
637 gdb_assert (regcache != NULL);
638 return regcache->raw_read (regnum, val);
642 regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
644 gdb_assert (regcache != NULL);
645 regcache->raw_write (regnum, val);
648 template<typename T, typename>
650 regcache::raw_write (int regnum, T val)
654 gdb_assert (regnum >=0 && regnum < m_descr->nr_raw_registers);
655 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
656 store_integer (buf, m_descr->sizeof_register[regnum],
657 gdbarch_byte_order (m_descr->gdbarch), val);
658 raw_write (regnum, buf);
662 regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
665 gdb_assert (regcache != NULL);
666 regcache->raw_write (regnum, val);
670 regcache_raw_get_signed (struct regcache *regcache, int regnum)
673 enum register_status status;
675 status = regcache_raw_read_signed (regcache, regnum, &value);
676 if (status == REG_UNAVAILABLE)
677 throw_error (NOT_AVAILABLE_ERROR,
678 _("Register %d is not available"), regnum);
683 regcache_cooked_read (struct regcache *regcache, int regnum, gdb_byte *buf)
685 return regcache->cooked_read (regnum, buf);
689 regcache::cooked_read (int regnum, gdb_byte *buf)
691 gdb_assert (regnum >= 0);
692 gdb_assert (regnum < m_descr->nr_cooked_registers);
693 if (regnum < m_descr->nr_raw_registers)
694 return raw_read (regnum, buf);
695 else if (m_readonly_p
696 && m_register_status[regnum] != REG_UNKNOWN)
698 /* Read-only register cache, perhaps the cooked value was
700 if (m_register_status[regnum] == REG_VALID)
701 memcpy (buf, register_buffer (regnum),
702 m_descr->sizeof_register[regnum]);
704 memset (buf, 0, m_descr->sizeof_register[regnum]);
706 return (enum register_status) m_register_status[regnum];
708 else if (gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
710 struct value *mark, *computed;
711 enum register_status result = REG_VALID;
713 mark = value_mark ();
715 computed = gdbarch_pseudo_register_read_value (m_descr->gdbarch,
717 if (value_entirely_available (computed))
718 memcpy (buf, value_contents_raw (computed),
719 m_descr->sizeof_register[regnum]);
722 memset (buf, 0, m_descr->sizeof_register[regnum]);
723 result = REG_UNAVAILABLE;
726 value_free_to_mark (mark);
731 return gdbarch_pseudo_register_read (m_descr->gdbarch, this,
736 regcache_cooked_read_value (struct regcache *regcache, int regnum)
738 return regcache->cooked_read_value (regnum);
742 regcache::cooked_read_value (int regnum)
744 gdb_assert (regnum >= 0);
745 gdb_assert (regnum < m_descr->nr_cooked_registers);
747 if (regnum < m_descr->nr_raw_registers
748 || (m_readonly_p && m_register_status[regnum] != REG_UNKNOWN)
749 || !gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
751 struct value *result;
753 result = allocate_value (register_type (m_descr->gdbarch, regnum));
754 VALUE_LVAL (result) = lval_register;
755 VALUE_REGNUM (result) = regnum;
757 /* It is more efficient in general to do this delegation in this
758 direction than in the other one, even though the value-based
760 if (cooked_read (regnum,
761 value_contents_raw (result)) == REG_UNAVAILABLE)
762 mark_value_bytes_unavailable (result, 0,
763 TYPE_LENGTH (value_type (result)));
768 return gdbarch_pseudo_register_read_value (m_descr->gdbarch,
773 regcache_cooked_read_signed (struct regcache *regcache, int regnum,
776 gdb_assert (regcache != NULL);
777 return regcache->cooked_read (regnum, val);
780 template<typename T, typename>
782 regcache::cooked_read (int regnum, T *val)
784 enum register_status status;
787 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
788 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
789 status = cooked_read (regnum, buf);
790 if (status == REG_VALID)
791 *val = extract_integer<T> (buf, m_descr->sizeof_register[regnum],
792 gdbarch_byte_order (m_descr->gdbarch));
799 regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
802 gdb_assert (regcache != NULL);
803 return regcache->cooked_read (regnum, val);
807 regcache_cooked_write_signed (struct regcache *regcache, int regnum,
810 gdb_assert (regcache != NULL);
811 regcache->cooked_write (regnum, val);
814 template<typename T, typename>
816 regcache::cooked_write (int regnum, T val)
820 gdb_assert (regnum >=0 && regnum < m_descr->nr_cooked_registers);
821 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
822 store_integer (buf, m_descr->sizeof_register[regnum],
823 gdbarch_byte_order (m_descr->gdbarch), val);
824 cooked_write (regnum, buf);
828 regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
831 gdb_assert (regcache != NULL);
832 regcache->cooked_write (regnum, val);
835 /* See regcache.h. */
838 regcache_raw_set_cached_value (struct regcache *regcache, int regnum,
841 regcache->raw_set_cached_value (regnum, buf);
845 regcache::raw_set_cached_value (int regnum, const gdb_byte *buf)
847 memcpy (register_buffer (regnum), buf,
848 m_descr->sizeof_register[regnum]);
849 m_register_status[regnum] = REG_VALID;
853 regcache_raw_write (struct regcache *regcache, int regnum,
856 gdb_assert (regcache != NULL && buf != NULL);
857 regcache->raw_write (regnum, buf);
861 regcache::raw_write (int regnum, const gdb_byte *buf)
863 struct cleanup *old_chain;
865 gdb_assert (buf != NULL);
866 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
867 gdb_assert (!m_readonly_p);
869 /* On the sparc, writing %g0 is a no-op, so we don't even want to
870 change the registers array if something writes to this register. */
871 if (gdbarch_cannot_store_register (arch (), regnum))
874 /* If we have a valid copy of the register, and new value == old
875 value, then don't bother doing the actual store. */
876 if (get_register_status (regnum) == REG_VALID
877 && (memcmp (register_buffer (regnum), buf,
878 m_descr->sizeof_register[regnum]) == 0))
881 target_prepare_to_store (this);
882 raw_set_cached_value (regnum, buf);
884 /* Register a cleanup function for invalidating the register after it is
885 written, in case of a failure. */
886 old_chain = make_cleanup_regcache_invalidate (this, regnum);
888 target_store_registers (this, regnum);
890 /* The target did not throw an error so we can discard invalidating the
891 register and restore the cleanup chain to what it was. */
892 discard_cleanups (old_chain);
896 regcache_cooked_write (struct regcache *regcache, int regnum,
899 regcache->cooked_write (regnum, buf);
903 regcache::cooked_write (int regnum, const gdb_byte *buf)
905 gdb_assert (regnum >= 0);
906 gdb_assert (regnum < m_descr->nr_cooked_registers);
907 if (regnum < m_descr->nr_raw_registers)
908 raw_write (regnum, buf);
910 gdbarch_pseudo_register_write (m_descr->gdbarch, this,
914 /* Perform a partial register transfer using a read, modify, write
917 typedef void (regcache_read_ftype) (struct regcache *regcache, int regnum,
919 typedef void (regcache_write_ftype) (struct regcache *regcache, int regnum,
923 regcache::xfer_part (int regnum, int offset, int len, void *in,
925 enum register_status (*read) (struct regcache *regcache,
928 void (*write) (struct regcache *regcache, int regnum,
929 const gdb_byte *buf))
931 struct gdbarch *gdbarch = arch ();
932 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
934 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
935 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
936 /* Something to do? */
937 if (offset + len == 0)
939 /* Read (when needed) ... */
942 || offset + len < m_descr->sizeof_register[regnum])
944 enum register_status status;
946 gdb_assert (read != NULL);
947 status = read (this, regnum, reg);
948 if (status != REG_VALID)
953 memcpy (in, reg + offset, len);
955 memcpy (reg + offset, out, len);
956 /* ... write (when needed). */
959 gdb_assert (write != NULL);
960 write (this, regnum, reg);
967 regcache_raw_read_part (struct regcache *regcache, int regnum,
968 int offset, int len, gdb_byte *buf)
970 return regcache->raw_read_part (regnum, offset, len, buf);
974 regcache::raw_read_part (int regnum, int offset, int len, gdb_byte *buf)
976 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
977 return xfer_part (regnum, offset, len, buf, NULL,
978 regcache_raw_read, regcache_raw_write);
982 regcache_raw_write_part (struct regcache *regcache, int regnum,
983 int offset, int len, const gdb_byte *buf)
985 regcache->raw_write_part (regnum, offset, len, buf);
989 regcache::raw_write_part (int regnum, int offset, int len,
992 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
993 xfer_part (regnum, offset, len, NULL, buf, regcache_raw_read,
998 regcache_cooked_read_part (struct regcache *regcache, int regnum,
999 int offset, int len, gdb_byte *buf)
1001 return regcache->cooked_read_part (regnum, offset, len, buf);
1005 enum register_status
1006 regcache::cooked_read_part (int regnum, int offset, int len, gdb_byte *buf)
1008 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
1009 return xfer_part (regnum, offset, len, buf, NULL,
1010 regcache_cooked_read, regcache_cooked_write);
1014 regcache_cooked_write_part (struct regcache *regcache, int regnum,
1015 int offset, int len, const gdb_byte *buf)
1017 regcache->cooked_write_part (regnum, offset, len, buf);
1021 regcache::cooked_write_part (int regnum, int offset, int len,
1022 const gdb_byte *buf)
1024 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
1025 xfer_part (regnum, offset, len, NULL, buf,
1026 regcache_cooked_read, regcache_cooked_write);
1029 /* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
1032 regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
1034 gdb_assert (regcache != NULL);
1035 regcache->raw_supply (regnum, buf);
1039 regcache::raw_supply (int regnum, const void *buf)
1044 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
1045 gdb_assert (!m_readonly_p);
1047 regbuf = register_buffer (regnum);
1048 size = m_descr->sizeof_register[regnum];
1052 memcpy (regbuf, buf, size);
1053 m_register_status[regnum] = REG_VALID;
1057 /* This memset not strictly necessary, but better than garbage
1058 in case the register value manages to escape somewhere (due
1059 to a bug, no less). */
1060 memset (regbuf, 0, size);
1061 m_register_status[regnum] = REG_UNAVAILABLE;
1065 /* Supply register REGNUM to REGCACHE. Value to supply is an integer stored at
1066 address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED. If
1067 the register size is greater than ADDR_LEN, then the integer will be sign or
1068 zero extended. If the register size is smaller than the integer, then the
1069 most significant bytes of the integer will be truncated. */
1072 regcache::raw_supply_integer (int regnum, const gdb_byte *addr, int addr_len,
1075 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1079 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
1080 gdb_assert (!m_readonly_p);
1082 regbuf = register_buffer (regnum);
1083 regsize = m_descr->sizeof_register[regnum];
1085 copy_integer_to_size (regbuf, regsize, addr, addr_len, is_signed,
1087 m_register_status[regnum] = REG_VALID;
1090 /* Supply register REGNUM with zeroed value to REGCACHE. This is not the same
1091 as calling raw_supply with NULL (which will set the state to
1095 regcache::raw_supply_zeroed (int regnum)
1100 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
1101 gdb_assert (!m_readonly_p);
1103 regbuf = register_buffer (regnum);
1104 size = m_descr->sizeof_register[regnum];
1106 memset (regbuf, 0, size);
1107 m_register_status[regnum] = REG_VALID;
1110 /* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1113 regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
1115 gdb_assert (regcache != NULL && buf != NULL);
1116 regcache->raw_collect (regnum, buf);
1120 regcache::raw_collect (int regnum, void *buf) const
1125 gdb_assert (buf != NULL);
1126 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
1128 regbuf = register_buffer (regnum);
1129 size = m_descr->sizeof_register[regnum];
1130 memcpy (buf, regbuf, size);
1133 /* Transfer a single or all registers belonging to a certain register
1134 set to or from a buffer. This is the main worker function for
1135 regcache_supply_regset and regcache_collect_regset. */
1137 /* Collect register REGNUM from REGCACHE. Store collected value as an integer
1138 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
1139 If ADDR_LEN is greater than the register size, then the integer will be sign
1140 or zero extended. If ADDR_LEN is smaller than the register size, then the
1141 most significant bytes of the integer will be truncated. */
1144 regcache::raw_collect_integer (int regnum, gdb_byte *addr, int addr_len,
1145 bool is_signed) const
1147 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1148 const gdb_byte *regbuf;
1151 gdb_assert (regnum >= 0 && regnum < m_descr->nr_raw_registers);
1153 regbuf = register_buffer (regnum);
1154 regsize = m_descr->sizeof_register[regnum];
1156 copy_integer_to_size (addr, addr_len, regbuf, regsize, is_signed,
1161 regcache::transfer_regset (const struct regset *regset,
1162 struct regcache *out_regcache,
1163 int regnum, const void *in_buf,
1164 void *out_buf, size_t size) const
1166 const struct regcache_map_entry *map;
1167 int offs = 0, count;
1169 for (map = (const struct regcache_map_entry *) regset->regmap;
1170 (count = map->count) != 0;
1173 int regno = map->regno;
1174 int slot_size = map->size;
1176 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
1177 slot_size = m_descr->sizeof_register[regno];
1179 if (regno == REGCACHE_MAP_SKIP
1181 && (regnum < regno || regnum >= regno + count)))
1182 offs += count * slot_size;
1184 else if (regnum == -1)
1185 for (; count--; regno++, offs += slot_size)
1187 if (offs + slot_size > size)
1191 raw_collect (regno, (gdb_byte *) out_buf + offs);
1193 out_regcache->raw_supply (regno, in_buf
1194 ? (const gdb_byte *) in_buf + offs
1199 /* Transfer a single register and return. */
1200 offs += (regnum - regno) * slot_size;
1201 if (offs + slot_size > size)
1205 raw_collect (regnum, (gdb_byte *) out_buf + offs);
1207 out_regcache->raw_supply (regnum, in_buf
1208 ? (const gdb_byte *) in_buf + offs
1215 /* Supply register REGNUM from BUF to REGCACHE, using the register map
1216 in REGSET. If REGNUM is -1, do this for all registers in REGSET.
1217 If BUF is NULL, set the register(s) to "unavailable" status. */
1220 regcache_supply_regset (const struct regset *regset,
1221 struct regcache *regcache,
1222 int regnum, const void *buf, size_t size)
1224 regcache->supply_regset (regset, regnum, buf, size);
1228 regcache::supply_regset (const struct regset *regset,
1229 int regnum, const void *buf, size_t size)
1231 transfer_regset (regset, this, regnum, buf, NULL, size);
1234 /* Collect register REGNUM from REGCACHE to BUF, using the register
1235 map in REGSET. If REGNUM is -1, do this for all registers in
1239 regcache_collect_regset (const struct regset *regset,
1240 const struct regcache *regcache,
1241 int regnum, void *buf, size_t size)
1243 regcache->collect_regset (regset, regnum, buf, size);
1247 regcache::collect_regset (const struct regset *regset,
1248 int regnum, void *buf, size_t size) const
1250 transfer_regset (regset, NULL, regnum, NULL, buf, size);
1254 /* Special handling for register PC. */
1257 regcache_read_pc (struct regcache *regcache)
1259 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1263 if (gdbarch_read_pc_p (gdbarch))
1264 pc_val = gdbarch_read_pc (gdbarch, regcache);
1265 /* Else use per-frame method on get_current_frame. */
1266 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1270 if (regcache_cooked_read_unsigned (regcache,
1271 gdbarch_pc_regnum (gdbarch),
1272 &raw_val) == REG_UNAVAILABLE)
1273 throw_error (NOT_AVAILABLE_ERROR, _("PC register is not available"));
1275 pc_val = gdbarch_addr_bits_remove (gdbarch, raw_val);
1278 internal_error (__FILE__, __LINE__,
1279 _("regcache_read_pc: Unable to find PC"));
1284 regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
1286 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1288 if (gdbarch_write_pc_p (gdbarch))
1289 gdbarch_write_pc (gdbarch, regcache, pc);
1290 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1291 regcache_cooked_write_unsigned (regcache,
1292 gdbarch_pc_regnum (gdbarch), pc);
1294 internal_error (__FILE__, __LINE__,
1295 _("regcache_write_pc: Unable to update PC"));
1297 /* Writing the PC (for instance, from "load") invalidates the
1299 reinit_frame_cache ();
1303 regcache::debug_print_register (const char *func, int regno)
1305 struct gdbarch *gdbarch = arch ();
1307 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1308 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
1309 && gdbarch_register_name (gdbarch, regno) != NULL
1310 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
1311 fprintf_unfiltered (gdb_stdlog, "(%s)",
1312 gdbarch_register_name (gdbarch, regno));
1314 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1315 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
1317 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1318 int size = register_size (gdbarch, regno);
1319 gdb_byte *buf = register_buffer (regno);
1321 fprintf_unfiltered (gdb_stdlog, " = ");
1322 for (int i = 0; i < size; i++)
1324 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1326 if (size <= sizeof (LONGEST))
1328 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
1330 fprintf_unfiltered (gdb_stdlog, " %s %s",
1331 core_addr_to_string_nz (val), plongest (val));
1334 fprintf_unfiltered (gdb_stdlog, "\n");
1338 reg_flush_command (char *command, int from_tty)
1340 /* Force-flush the register cache. */
1341 registers_changed ();
1343 printf_filtered (_("Register cache flushed.\n"));
1347 regcache::dump (ui_file *file, enum regcache_dump_what what_to_dump)
1349 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
1350 struct gdbarch *gdbarch = m_descr->gdbarch;
1352 int footnote_nr = 0;
1353 int footnote_register_size = 0;
1354 int footnote_register_offset = 0;
1355 int footnote_register_type_name_null = 0;
1356 long register_offset = 0;
1359 fprintf_unfiltered (file, "nr_raw_registers %d\n",
1360 m_descr->nr_raw_registers);
1361 fprintf_unfiltered (file, "nr_cooked_registers %d\n",
1362 m_descr->nr_cooked_registers);
1363 fprintf_unfiltered (file, "sizeof_raw_registers %ld\n",
1364 m_descr->sizeof_raw_registers);
1365 fprintf_unfiltered (file, "sizeof_raw_register_status %ld\n",
1366 m_descr->sizeof_raw_register_status);
1367 fprintf_unfiltered (file, "gdbarch_num_regs %d\n",
1368 gdbarch_num_regs (gdbarch));
1369 fprintf_unfiltered (file, "gdbarch_num_pseudo_regs %d\n",
1370 gdbarch_num_pseudo_regs (gdbarch));
1373 gdb_assert (m_descr->nr_cooked_registers
1374 == (gdbarch_num_regs (gdbarch)
1375 + gdbarch_num_pseudo_regs (gdbarch)));
1377 for (regnum = -1; regnum < m_descr->nr_cooked_registers; regnum++)
1381 fprintf_unfiltered (file, " %-10s", "Name");
1384 const char *p = gdbarch_register_name (gdbarch, regnum);
1388 else if (p[0] == '\0')
1390 fprintf_unfiltered (file, " %-10s", p);
1395 fprintf_unfiltered (file, " %4s", "Nr");
1397 fprintf_unfiltered (file, " %4d", regnum);
1399 /* Relative number. */
1401 fprintf_unfiltered (file, " %4s", "Rel");
1402 else if (regnum < gdbarch_num_regs (gdbarch))
1403 fprintf_unfiltered (file, " %4d", regnum);
1405 fprintf_unfiltered (file, " %4d",
1406 (regnum - gdbarch_num_regs (gdbarch)));
1410 fprintf_unfiltered (file, " %6s ", "Offset");
1413 fprintf_unfiltered (file, " %6ld",
1414 m_descr->register_offset[regnum]);
1415 if (register_offset != m_descr->register_offset[regnum]
1417 && (m_descr->register_offset[regnum]
1418 != (m_descr->register_offset[regnum - 1]
1419 + m_descr->sizeof_register[regnum - 1])))
1422 if (!footnote_register_offset)
1423 footnote_register_offset = ++footnote_nr;
1424 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1427 fprintf_unfiltered (file, " ");
1428 register_offset = (m_descr->register_offset[regnum]
1429 + m_descr->sizeof_register[regnum]);
1434 fprintf_unfiltered (file, " %5s ", "Size");
1436 fprintf_unfiltered (file, " %5ld", m_descr->sizeof_register[regnum]);
1446 static const char blt[] = "builtin_type";
1448 t = TYPE_NAME (register_type (arch (), regnum));
1453 if (!footnote_register_type_name_null)
1454 footnote_register_type_name_null = ++footnote_nr;
1455 n = xstrprintf ("*%d", footnote_register_type_name_null);
1456 make_cleanup (xfree, n);
1459 /* Chop a leading builtin_type. */
1460 if (startswith (t, blt))
1463 fprintf_unfiltered (file, " %-15s", t);
1466 /* Leading space always present. */
1467 fprintf_unfiltered (file, " ");
1470 if (what_to_dump == regcache_dump_raw)
1473 fprintf_unfiltered (file, "Raw value");
1474 else if (regnum >= m_descr->nr_raw_registers)
1475 fprintf_unfiltered (file, "<cooked>");
1476 else if (get_register_status (regnum) == REG_UNKNOWN)
1477 fprintf_unfiltered (file, "<invalid>");
1478 else if (get_register_status (regnum) == REG_UNAVAILABLE)
1479 fprintf_unfiltered (file, "<unavailable>");
1482 raw_update (regnum);
1483 print_hex_chars (file, register_buffer (regnum),
1484 m_descr->sizeof_register[regnum],
1485 gdbarch_byte_order (gdbarch), true);
1489 /* Value, cooked. */
1490 if (what_to_dump == regcache_dump_cooked)
1493 fprintf_unfiltered (file, "Cooked value");
1496 const gdb_byte *buf = NULL;
1497 enum register_status status;
1498 struct value *value = NULL;
1500 if (regnum < m_descr->nr_raw_registers)
1502 raw_update (regnum);
1503 status = get_register_status (regnum);
1504 buf = register_buffer (regnum);
1508 value = cooked_read_value (regnum);
1510 if (!value_optimized_out (value)
1511 && value_entirely_available (value))
1514 buf = value_contents_all (value);
1517 status = REG_UNAVAILABLE;
1520 if (status == REG_UNKNOWN)
1521 fprintf_unfiltered (file, "<invalid>");
1522 else if (status == REG_UNAVAILABLE)
1523 fprintf_unfiltered (file, "<unavailable>");
1525 print_hex_chars (file, buf,
1526 m_descr->sizeof_register[regnum],
1527 gdbarch_byte_order (gdbarch), true);
1531 release_value (value);
1537 /* Group members. */
1538 if (what_to_dump == regcache_dump_groups)
1541 fprintf_unfiltered (file, "Groups");
1544 const char *sep = "";
1545 struct reggroup *group;
1547 for (group = reggroup_next (gdbarch, NULL);
1549 group = reggroup_next (gdbarch, group))
1551 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1553 fprintf_unfiltered (file,
1554 "%s%s", sep, reggroup_name (group));
1561 /* Remote packet configuration. */
1562 if (what_to_dump == regcache_dump_remote)
1566 fprintf_unfiltered (file, "Rmt Nr g/G Offset");
1568 else if (regnum < m_descr->nr_raw_registers)
1572 if (remote_register_number_and_offset (arch (), regnum,
1574 fprintf_unfiltered (file, "%7d %11d", pnum, poffset);
1578 fprintf_unfiltered (file, "\n");
1581 if (footnote_register_size)
1582 fprintf_unfiltered (file, "*%d: Inconsistent register sizes.\n",
1583 footnote_register_size);
1584 if (footnote_register_offset)
1585 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1586 footnote_register_offset);
1587 if (footnote_register_type_name_null)
1588 fprintf_unfiltered (file,
1589 "*%d: Register type's name NULL.\n",
1590 footnote_register_type_name_null);
1591 do_cleanups (cleanups);
1595 regcache_print (char *args, enum regcache_dump_what what_to_dump)
1598 get_current_regcache ()->dump (gdb_stdout, what_to_dump);
1603 if (!file.open (args, "w"))
1604 perror_with_name (_("maintenance print architecture"));
1605 get_current_regcache ()->dump (&file, what_to_dump);
1610 maintenance_print_registers (char *args, int from_tty)
1612 regcache_print (args, regcache_dump_none);
1616 maintenance_print_raw_registers (char *args, int from_tty)
1618 regcache_print (args, regcache_dump_raw);
1622 maintenance_print_cooked_registers (char *args, int from_tty)
1624 regcache_print (args, regcache_dump_cooked);
1628 maintenance_print_register_groups (char *args, int from_tty)
1630 regcache_print (args, regcache_dump_groups);
1634 maintenance_print_remote_registers (char *args, int from_tty)
1636 regcache_print (args, regcache_dump_remote);
1640 #include "selftest.h"
1642 namespace selftests {
1644 class regcache_access : public regcache
1648 /* Return the number of elements in current_regcache. */
1651 current_regcache_size ()
1653 return std::distance (regcache::current_regcache.begin (),
1654 regcache::current_regcache.end ());
1659 current_regcache_test (void)
1661 /* It is empty at the start. */
1662 SELF_CHECK (regcache_access::current_regcache_size () == 0);
1664 ptid_t ptid1 (1), ptid2 (2), ptid3 (3);
1666 /* Get regcache from ptid1, a new regcache is added to
1667 current_regcache. */
1668 regcache *regcache = get_thread_arch_aspace_regcache (ptid1,
1672 SELF_CHECK (regcache != NULL);
1673 SELF_CHECK (regcache->ptid () == ptid1);
1674 SELF_CHECK (regcache_access::current_regcache_size () == 1);
1676 /* Get regcache from ptid2, a new regcache is added to
1677 current_regcache. */
1678 regcache = get_thread_arch_aspace_regcache (ptid2,
1681 SELF_CHECK (regcache != NULL);
1682 SELF_CHECK (regcache->ptid () == ptid2);
1683 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1685 /* Get regcache from ptid3, a new regcache is added to
1686 current_regcache. */
1687 regcache = get_thread_arch_aspace_regcache (ptid3,
1690 SELF_CHECK (regcache != NULL);
1691 SELF_CHECK (regcache->ptid () == ptid3);
1692 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1694 /* Get regcache from ptid2 again, nothing is added to
1695 current_regcache. */
1696 regcache = get_thread_arch_aspace_regcache (ptid2,
1699 SELF_CHECK (regcache != NULL);
1700 SELF_CHECK (regcache->ptid () == ptid2);
1701 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1703 /* Mark ptid2 is changed, so regcache of ptid2 should be removed from
1704 current_regcache. */
1705 registers_changed_ptid (ptid2);
1706 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1709 } // namespace selftests
1710 #endif /* GDB_SELF_TEST */
1713 _initialize_regcache (void)
1715 regcache_descr_handle
1716 = gdbarch_data_register_post_init (init_regcache_descr);
1718 observer_attach_target_changed (regcache_observer_target_changed);
1719 observer_attach_thread_ptid_changed (regcache::regcache_thread_ptid_changed);
1721 add_com ("flushregs", class_maintenance, reg_flush_command,
1722 _("Force gdb to flush its register cache (maintainer command)"));
1724 add_cmd ("registers", class_maintenance, maintenance_print_registers,
1725 _("Print the internal register configuration.\n"
1726 "Takes an optional file parameter."), &maintenanceprintlist);
1727 add_cmd ("raw-registers", class_maintenance,
1728 maintenance_print_raw_registers,
1729 _("Print the internal register configuration "
1730 "including raw values.\n"
1731 "Takes an optional file parameter."), &maintenanceprintlist);
1732 add_cmd ("cooked-registers", class_maintenance,
1733 maintenance_print_cooked_registers,
1734 _("Print the internal register configuration "
1735 "including cooked values.\n"
1736 "Takes an optional file parameter."), &maintenanceprintlist);
1737 add_cmd ("register-groups", class_maintenance,
1738 maintenance_print_register_groups,
1739 _("Print the internal register configuration "
1740 "including each register's group.\n"
1741 "Takes an optional file parameter."),
1742 &maintenanceprintlist);
1743 add_cmd ("remote-registers", class_maintenance,
1744 maintenance_print_remote_registers, _("\
1745 Print the internal register configuration including each register's\n\
1746 remote register number and buffer offset in the g/G packets.\n\
1747 Takes an optional file parameter."),
1748 &maintenanceprintlist);
1751 selftests::register_test ("current_regcache", selftests::current_regcache_test);