1 /* Cache and manage the values of registers for GDB, the GNU debugger.
3 Copyright (C) 1986-2018 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"
27 #include "observable.h"
29 #include <forward_list>
34 * Here is the actual register cache.
37 /* Per-architecture object describing the layout of a register cache.
38 Computed once when the architecture is created. */
40 struct gdbarch_data *regcache_descr_handle;
44 /* The architecture this descriptor belongs to. */
45 struct gdbarch *gdbarch;
47 /* The raw register cache. Each raw (or hard) register is supplied
48 by the target interface. The raw cache should not contain
49 redundant information - if the PC is constructed from two
50 registers then those registers and not the PC lives in the raw
52 long sizeof_raw_registers;
54 /* The cooked register space. Each cooked register in the range
55 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
56 register. The remaining [NR_RAW_REGISTERS
57 .. NR_COOKED_REGISTERS) (a.k.a. pseudo registers) are mapped onto
58 both raw registers and memory by the architecture methods
59 gdbarch_pseudo_register_read and gdbarch_pseudo_register_write. */
60 int nr_cooked_registers;
61 long sizeof_cooked_registers;
63 /* Offset and size (in 8 bit bytes), of each register in the
64 register cache. All registers (including those in the range
65 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an
67 long *register_offset;
68 long *sizeof_register;
70 /* Cached table containing the type of each register. */
71 struct type **register_type;
75 init_regcache_descr (struct gdbarch *gdbarch)
78 struct regcache_descr *descr;
79 gdb_assert (gdbarch != NULL);
81 /* Create an initial, zero filled, table. */
82 descr = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct regcache_descr);
83 descr->gdbarch = gdbarch;
85 /* Total size of the register space. The raw registers are mapped
86 directly onto the raw register cache while the pseudo's are
87 either mapped onto raw-registers or memory. */
88 descr->nr_cooked_registers = gdbarch_num_regs (gdbarch)
89 + gdbarch_num_pseudo_regs (gdbarch);
91 /* Fill in a table of register types. */
93 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers,
95 for (i = 0; i < descr->nr_cooked_registers; i++)
96 descr->register_type[i] = gdbarch_register_type (gdbarch, i);
98 /* Construct a strictly RAW register cache. Don't allow pseudo's
99 into the register cache. */
101 /* Lay out the register cache.
103 NOTE: cagney/2002-05-22: Only register_type() is used when
104 constructing the register cache. It is assumed that the
105 register's raw size, virtual size and type length are all the
111 descr->sizeof_register
112 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
113 descr->register_offset
114 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
115 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
117 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
118 descr->register_offset[i] = offset;
119 offset += descr->sizeof_register[i];
121 /* Set the real size of the raw register cache buffer. */
122 descr->sizeof_raw_registers = offset;
124 for (; i < descr->nr_cooked_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];
130 /* Set the real size of the readonly register cache buffer. */
131 descr->sizeof_cooked_registers = offset;
137 static struct regcache_descr *
138 regcache_descr (struct gdbarch *gdbarch)
140 return (struct regcache_descr *) gdbarch_data (gdbarch,
141 regcache_descr_handle);
144 /* Utility functions returning useful register attributes stored in
145 the regcache descr. */
148 register_type (struct gdbarch *gdbarch, int regnum)
150 struct regcache_descr *descr = regcache_descr (gdbarch);
152 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
153 return descr->register_type[regnum];
156 /* Utility functions returning useful register attributes stored in
157 the regcache descr. */
160 register_size (struct gdbarch *gdbarch, int regnum)
162 struct regcache_descr *descr = regcache_descr (gdbarch);
165 gdb_assert (regnum >= 0
166 && regnum < (gdbarch_num_regs (gdbarch)
167 + gdbarch_num_pseudo_regs (gdbarch)));
168 size = descr->sizeof_register[regnum];
172 /* See common/common-regcache.h. */
175 regcache_register_size (const struct regcache *regcache, int n)
177 return register_size (regcache->arch (), n);
180 reg_buffer::reg_buffer (gdbarch *gdbarch, bool has_pseudo)
181 : m_has_pseudo (has_pseudo)
183 gdb_assert (gdbarch != NULL);
184 m_descr = regcache_descr (gdbarch);
188 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_cooked_registers);
189 m_register_status = XCNEWVEC (signed char,
190 m_descr->nr_cooked_registers);
194 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_raw_registers);
195 m_register_status = XCNEWVEC (signed char, gdbarch_num_regs (gdbarch));
199 regcache::regcache (gdbarch *gdbarch, const address_space *aspace_)
200 /* The register buffers. A read/write register cache can only hold
201 [0 .. gdbarch_num_regs). */
202 : detached_regcache (gdbarch, false), m_aspace (aspace_)
204 m_ptid = minus_one_ptid;
207 static enum register_status
208 do_cooked_read (void *src, int regnum, gdb_byte *buf)
210 struct regcache *regcache = (struct regcache *) src;
212 return regcache_cooked_read (regcache, regnum, buf);
215 readonly_detached_regcache::readonly_detached_regcache (const regcache &src)
216 : readonly_detached_regcache (src.arch (), do_cooked_read, (void *) &src)
221 reg_buffer::arch () const
223 return m_descr->gdbarch;
226 /* See regcache.h. */
229 regcache_get_ptid (const struct regcache *regcache)
231 gdb_assert (!ptid_equal (regcache->ptid (), minus_one_ptid));
233 return regcache->ptid ();
236 /* Cleanup class for invalidating a register. */
238 class regcache_invalidator
242 regcache_invalidator (struct regcache *regcache, int regnum)
243 : m_regcache (regcache),
248 ~regcache_invalidator ()
250 if (m_regcache != nullptr)
251 regcache_invalidate (m_regcache, m_regnum);
254 DISABLE_COPY_AND_ASSIGN (regcache_invalidator);
258 m_regcache = nullptr;
263 struct regcache *m_regcache;
267 /* Return a pointer to register REGNUM's buffer cache. */
270 reg_buffer::register_buffer (int regnum) const
272 return m_registers + m_descr->register_offset[regnum];
276 reg_buffer::save (regcache_cooked_read_ftype *cooked_read,
279 struct gdbarch *gdbarch = m_descr->gdbarch;
282 /* It should have pseudo registers. */
283 gdb_assert (m_has_pseudo);
284 /* Clear the dest. */
285 memset (m_registers, 0, m_descr->sizeof_cooked_registers);
286 memset (m_register_status, 0, m_descr->nr_cooked_registers);
287 /* Copy over any registers (identified by their membership in the
288 save_reggroup) and mark them as valid. The full [0 .. gdbarch_num_regs +
289 gdbarch_num_pseudo_regs) range is checked since some architectures need
290 to save/restore `cooked' registers that live in memory. */
291 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
293 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
295 gdb_byte *dst_buf = register_buffer (regnum);
296 enum register_status status = cooked_read (src, regnum, dst_buf);
298 gdb_assert (status != REG_UNKNOWN);
300 if (status != REG_VALID)
301 memset (dst_buf, 0, register_size (gdbarch, regnum));
303 m_register_status[regnum] = status;
309 regcache::restore (readonly_detached_regcache *src)
311 struct gdbarch *gdbarch = m_descr->gdbarch;
314 gdb_assert (src != NULL);
315 gdb_assert (src->m_has_pseudo);
317 gdb_assert (gdbarch == src->arch ());
319 /* Copy over any registers, being careful to only restore those that
320 were both saved and need to be restored. The full [0 .. gdbarch_num_regs
321 + gdbarch_num_pseudo_regs) range is checked since some architectures need
322 to save/restore `cooked' registers that live in memory. */
323 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
325 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
327 if (src->m_register_status[regnum] == REG_VALID)
328 cooked_write (regnum, src->register_buffer (regnum));
334 regcache_register_status (const struct regcache *regcache, int regnum)
336 gdb_assert (regcache != NULL);
337 return regcache->get_register_status (regnum);
341 reg_buffer::get_register_status (int regnum) const
343 assert_regnum (regnum);
345 return (enum register_status) m_register_status[regnum];
349 regcache_invalidate (struct regcache *regcache, int regnum)
351 gdb_assert (regcache != NULL);
352 regcache->invalidate (regnum);
356 detached_regcache::invalidate (int regnum)
358 assert_regnum (regnum);
359 m_register_status[regnum] = REG_UNKNOWN;
363 reg_buffer::assert_regnum (int regnum) const
365 gdb_assert (regnum >= 0);
367 gdb_assert (regnum < m_descr->nr_cooked_registers);
369 gdb_assert (regnum < gdbarch_num_regs (arch ()));
372 /* Global structure containing the current regcache. */
374 /* NOTE: this is a write-through cache. There is no "dirty" bit for
375 recording if the register values have been changed (eg. by the
376 user). Therefore all registers must be written back to the
377 target when appropriate. */
378 std::forward_list<regcache *> regcache::current_regcache;
381 get_thread_arch_aspace_regcache (ptid_t ptid, struct gdbarch *gdbarch,
382 struct address_space *aspace)
384 for (const auto ®cache : regcache::current_regcache)
385 if (ptid_equal (regcache->ptid (), ptid) && regcache->arch () == gdbarch)
388 regcache *new_regcache = new regcache (gdbarch, aspace);
390 regcache::current_regcache.push_front (new_regcache);
391 new_regcache->set_ptid (ptid);
397 get_thread_arch_regcache (ptid_t ptid, struct gdbarch *gdbarch)
399 address_space *aspace = target_thread_address_space (ptid);
401 return get_thread_arch_aspace_regcache (ptid, gdbarch, aspace);
404 static ptid_t current_thread_ptid;
405 static struct gdbarch *current_thread_arch;
408 get_thread_regcache (ptid_t ptid)
410 if (!current_thread_arch || !ptid_equal (current_thread_ptid, ptid))
412 current_thread_ptid = ptid;
413 current_thread_arch = target_thread_architecture (ptid);
416 return get_thread_arch_regcache (ptid, current_thread_arch);
420 get_current_regcache (void)
422 return get_thread_regcache (inferior_ptid);
425 /* See common/common-regcache.h. */
428 get_thread_regcache_for_ptid (ptid_t ptid)
430 return get_thread_regcache (ptid);
433 /* Observer for the target_changed event. */
436 regcache_observer_target_changed (struct target_ops *target)
438 registers_changed ();
441 /* Update global variables old ptids to hold NEW_PTID if they were
444 regcache::regcache_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
446 for (auto ®cache : regcache::current_regcache)
448 if (ptid_equal (regcache->ptid (), old_ptid))
449 regcache->set_ptid (new_ptid);
453 /* Low level examining and depositing of registers.
455 The caller is responsible for making sure that the inferior is
456 stopped before calling the fetching routines, or it will get
457 garbage. (a change from GDB version 3, in which the caller got the
458 value from the last stop). */
460 /* REGISTERS_CHANGED ()
462 Indicate that registers may have changed, so invalidate the cache. */
465 registers_changed_ptid (ptid_t ptid)
467 for (auto oit = regcache::current_regcache.before_begin (),
468 it = std::next (oit);
469 it != regcache::current_regcache.end ();
472 if (ptid_match ((*it)->ptid (), ptid))
475 it = regcache::current_regcache.erase_after (oit);
481 if (ptid_match (current_thread_ptid, ptid))
483 current_thread_ptid = null_ptid;
484 current_thread_arch = NULL;
487 if (ptid_match (inferior_ptid, ptid))
489 /* We just deleted the regcache of the current thread. Need to
490 forget about any frames we have cached, too. */
491 reinit_frame_cache ();
496 registers_changed (void)
498 registers_changed_ptid (minus_one_ptid);
500 /* Force cleanup of any alloca areas if using C alloca instead of
501 a builtin alloca. This particular call is used to clean up
502 areas allocated by low level target code which may build up
503 during lengthy interactions between gdb and the target before
504 gdb gives control to the user (ie watchpoints). */
509 regcache_raw_update (struct regcache *regcache, int regnum)
511 gdb_assert (regcache != NULL);
513 regcache->raw_update (regnum);
517 regcache::raw_update (int regnum)
519 assert_regnum (regnum);
521 /* Make certain that the register cache is up-to-date with respect
522 to the current thread. This switching shouldn't be necessary
523 only there is still only one target side register cache. Sigh!
524 On the bright side, at least there is a regcache object. */
526 if (get_register_status (regnum) == REG_UNKNOWN)
528 target_fetch_registers (this, regnum);
530 /* A number of targets can't access the whole set of raw
531 registers (because the debug API provides no means to get at
533 if (m_register_status[regnum] == REG_UNKNOWN)
534 m_register_status[regnum] = REG_UNAVAILABLE;
539 regcache_raw_read (struct regcache *regcache, int regnum, gdb_byte *buf)
541 return regcache->raw_read (regnum, buf);
545 readable_regcache::raw_read (int regnum, gdb_byte *buf)
547 gdb_assert (buf != NULL);
550 if (m_register_status[regnum] != REG_VALID)
551 memset (buf, 0, m_descr->sizeof_register[regnum]);
553 memcpy (buf, register_buffer (regnum),
554 m_descr->sizeof_register[regnum]);
556 return (enum register_status) m_register_status[regnum];
560 regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
562 gdb_assert (regcache != NULL);
563 return regcache->raw_read (regnum, val);
566 template<typename T, typename>
568 readable_regcache::raw_read (int regnum, T *val)
571 enum register_status status;
573 assert_regnum (regnum);
574 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
575 status = raw_read (regnum, buf);
576 if (status == REG_VALID)
577 *val = extract_integer<T> (buf,
578 m_descr->sizeof_register[regnum],
579 gdbarch_byte_order (m_descr->gdbarch));
586 regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
589 gdb_assert (regcache != NULL);
590 return regcache->raw_read (regnum, val);
594 regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
596 gdb_assert (regcache != NULL);
597 regcache->raw_write (regnum, val);
600 template<typename T, typename>
602 regcache::raw_write (int regnum, T val)
606 assert_regnum (regnum);
607 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
608 store_integer (buf, m_descr->sizeof_register[regnum],
609 gdbarch_byte_order (m_descr->gdbarch), val);
610 raw_write (regnum, buf);
614 regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
617 gdb_assert (regcache != NULL);
618 regcache->raw_write (regnum, val);
622 regcache_raw_get_signed (struct regcache *regcache, int regnum)
625 enum register_status status;
627 status = regcache_raw_read_signed (regcache, regnum, &value);
628 if (status == REG_UNAVAILABLE)
629 throw_error (NOT_AVAILABLE_ERROR,
630 _("Register %d is not available"), regnum);
635 regcache_cooked_read (struct regcache *regcache, int regnum, gdb_byte *buf)
637 return regcache->cooked_read (regnum, buf);
641 readable_regcache::cooked_read (int regnum, gdb_byte *buf)
643 gdb_assert (regnum >= 0);
644 gdb_assert (regnum < m_descr->nr_cooked_registers);
645 if (regnum < num_raw_registers ())
646 return raw_read (regnum, buf);
647 else if (m_has_pseudo
648 && m_register_status[regnum] != REG_UNKNOWN)
650 if (m_register_status[regnum] == REG_VALID)
651 memcpy (buf, register_buffer (regnum),
652 m_descr->sizeof_register[regnum]);
654 memset (buf, 0, m_descr->sizeof_register[regnum]);
656 return (enum register_status) m_register_status[regnum];
658 else if (gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
660 struct value *mark, *computed;
661 enum register_status result = REG_VALID;
663 mark = value_mark ();
665 computed = gdbarch_pseudo_register_read_value (m_descr->gdbarch,
667 if (value_entirely_available (computed))
668 memcpy (buf, value_contents_raw (computed),
669 m_descr->sizeof_register[regnum]);
672 memset (buf, 0, m_descr->sizeof_register[regnum]);
673 result = REG_UNAVAILABLE;
676 value_free_to_mark (mark);
681 return gdbarch_pseudo_register_read (m_descr->gdbarch, this,
686 regcache_cooked_read_value (struct regcache *regcache, int regnum)
688 return regcache->cooked_read_value (regnum);
692 readable_regcache::cooked_read_value (int regnum)
694 gdb_assert (regnum >= 0);
695 gdb_assert (regnum < m_descr->nr_cooked_registers);
697 if (regnum < num_raw_registers ()
698 || (m_has_pseudo && m_register_status[regnum] != REG_UNKNOWN)
699 || !gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
701 struct value *result;
703 result = allocate_value (register_type (m_descr->gdbarch, regnum));
704 VALUE_LVAL (result) = lval_register;
705 VALUE_REGNUM (result) = regnum;
707 /* It is more efficient in general to do this delegation in this
708 direction than in the other one, even though the value-based
710 if (cooked_read (regnum,
711 value_contents_raw (result)) == REG_UNAVAILABLE)
712 mark_value_bytes_unavailable (result, 0,
713 TYPE_LENGTH (value_type (result)));
718 return gdbarch_pseudo_register_read_value (m_descr->gdbarch,
723 regcache_cooked_read_signed (struct regcache *regcache, int regnum,
726 gdb_assert (regcache != NULL);
727 return regcache->cooked_read (regnum, val);
730 template<typename T, typename>
732 readable_regcache::cooked_read (int regnum, T *val)
734 enum register_status status;
737 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
738 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
739 status = cooked_read (regnum, buf);
740 if (status == REG_VALID)
741 *val = extract_integer<T> (buf, m_descr->sizeof_register[regnum],
742 gdbarch_byte_order (m_descr->gdbarch));
749 regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
752 gdb_assert (regcache != NULL);
753 return regcache->cooked_read (regnum, val);
757 regcache_cooked_write_signed (struct regcache *regcache, int regnum,
760 gdb_assert (regcache != NULL);
761 regcache->cooked_write (regnum, val);
764 template<typename T, typename>
766 regcache::cooked_write (int regnum, T val)
770 gdb_assert (regnum >=0 && regnum < m_descr->nr_cooked_registers);
771 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
772 store_integer (buf, m_descr->sizeof_register[regnum],
773 gdbarch_byte_order (m_descr->gdbarch), val);
774 cooked_write (regnum, buf);
778 regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
781 gdb_assert (regcache != NULL);
782 regcache->cooked_write (regnum, val);
786 regcache_raw_write (struct regcache *regcache, int regnum,
789 gdb_assert (regcache != NULL && buf != NULL);
790 regcache->raw_write (regnum, buf);
794 regcache::raw_write (int regnum, const gdb_byte *buf)
797 gdb_assert (buf != NULL);
798 assert_regnum (regnum);
800 /* On the sparc, writing %g0 is a no-op, so we don't even want to
801 change the registers array if something writes to this register. */
802 if (gdbarch_cannot_store_register (arch (), regnum))
805 /* If we have a valid copy of the register, and new value == old
806 value, then don't bother doing the actual store. */
807 if (get_register_status (regnum) == REG_VALID
808 && (memcmp (register_buffer (regnum), buf,
809 m_descr->sizeof_register[regnum]) == 0))
812 target_prepare_to_store (this);
813 raw_supply (regnum, buf);
815 /* Invalidate the register after it is written, in case of a
817 regcache_invalidator invalidator (this, regnum);
819 target_store_registers (this, regnum);
821 /* The target did not throw an error so we can discard invalidating
823 invalidator.release ();
827 regcache_cooked_write (struct regcache *regcache, int regnum,
830 regcache->cooked_write (regnum, buf);
834 regcache::cooked_write (int regnum, const gdb_byte *buf)
836 gdb_assert (regnum >= 0);
837 gdb_assert (regnum < m_descr->nr_cooked_registers);
838 if (regnum < num_raw_registers ())
839 raw_write (regnum, buf);
841 gdbarch_pseudo_register_write (m_descr->gdbarch, this,
845 /* Perform a partial register transfer using a read, modify, write
849 readable_regcache::read_part (int regnum, int offset, int len, void *in,
852 struct gdbarch *gdbarch = arch ();
853 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
855 gdb_assert (in != NULL);
856 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
857 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
858 /* Something to do? */
859 if (offset + len == 0)
861 /* Read (when needed) ... */
862 enum register_status status;
865 status = raw_read (regnum, reg);
867 status = cooked_read (regnum, reg);
868 if (status != REG_VALID)
872 memcpy (in, reg + offset, len);
878 regcache::write_part (int regnum, int offset, int len,
879 const void *out, bool is_raw)
881 struct gdbarch *gdbarch = arch ();
882 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
884 gdb_assert (out != NULL);
885 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
886 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
887 /* Something to do? */
888 if (offset + len == 0)
890 /* Read (when needed) ... */
892 || offset + len < m_descr->sizeof_register[regnum])
894 enum register_status status;
897 status = raw_read (regnum, reg);
899 status = cooked_read (regnum, reg);
900 if (status != REG_VALID)
904 memcpy (reg + offset, out, len);
905 /* ... write (when needed). */
907 raw_write (regnum, reg);
909 cooked_write (regnum, reg);
915 regcache_raw_read_part (struct regcache *regcache, int regnum,
916 int offset, int len, gdb_byte *buf)
918 return regcache->raw_read_part (regnum, offset, len, buf);
922 readable_regcache::raw_read_part (int regnum, int offset, int len, gdb_byte *buf)
924 assert_regnum (regnum);
925 return read_part (regnum, offset, len, buf, true);
929 regcache_raw_write_part (struct regcache *regcache, int regnum,
930 int offset, int len, const gdb_byte *buf)
932 regcache->raw_write_part (regnum, offset, len, buf);
936 regcache::raw_write_part (int regnum, int offset, int len,
939 assert_regnum (regnum);
940 write_part (regnum, offset, len, buf, true);
944 regcache_cooked_read_part (struct regcache *regcache, int regnum,
945 int offset, int len, gdb_byte *buf)
947 return regcache->cooked_read_part (regnum, offset, len, buf);
952 readable_regcache::cooked_read_part (int regnum, int offset, int len,
955 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
956 return read_part (regnum, offset, len, buf, false);
960 regcache_cooked_write_part (struct regcache *regcache, int regnum,
961 int offset, int len, const gdb_byte *buf)
963 regcache->cooked_write_part (regnum, offset, len, buf);
967 regcache::cooked_write_part (int regnum, int offset, int len,
970 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
971 write_part (regnum, offset, len, buf, false);
974 /* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
977 regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
979 gdb_assert (regcache != NULL);
980 regcache->raw_supply (regnum, buf);
984 detached_regcache::raw_supply (int regnum, const void *buf)
989 assert_regnum (regnum);
991 regbuf = register_buffer (regnum);
992 size = m_descr->sizeof_register[regnum];
996 memcpy (regbuf, buf, size);
997 m_register_status[regnum] = REG_VALID;
1001 /* This memset not strictly necessary, but better than garbage
1002 in case the register value manages to escape somewhere (due
1003 to a bug, no less). */
1004 memset (regbuf, 0, size);
1005 m_register_status[regnum] = REG_UNAVAILABLE;
1009 /* Supply register REGNUM to REGCACHE. Value to supply is an integer stored at
1010 address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED. If
1011 the register size is greater than ADDR_LEN, then the integer will be sign or
1012 zero extended. If the register size is smaller than the integer, then the
1013 most significant bytes of the integer will be truncated. */
1016 detached_regcache::raw_supply_integer (int regnum, const gdb_byte *addr,
1017 int addr_len, bool is_signed)
1019 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1023 assert_regnum (regnum);
1025 regbuf = register_buffer (regnum);
1026 regsize = m_descr->sizeof_register[regnum];
1028 copy_integer_to_size (regbuf, regsize, addr, addr_len, is_signed,
1030 m_register_status[regnum] = REG_VALID;
1033 /* Supply register REGNUM with zeroed value to REGCACHE. This is not the same
1034 as calling raw_supply with NULL (which will set the state to
1038 detached_regcache::raw_supply_zeroed (int regnum)
1043 assert_regnum (regnum);
1045 regbuf = register_buffer (regnum);
1046 size = m_descr->sizeof_register[regnum];
1048 memset (regbuf, 0, size);
1049 m_register_status[regnum] = REG_VALID;
1052 /* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1055 regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
1057 gdb_assert (regcache != NULL && buf != NULL);
1058 regcache->raw_collect (regnum, buf);
1062 regcache::raw_collect (int regnum, void *buf) const
1067 gdb_assert (buf != NULL);
1068 assert_regnum (regnum);
1070 regbuf = register_buffer (regnum);
1071 size = m_descr->sizeof_register[regnum];
1072 memcpy (buf, regbuf, size);
1075 /* Transfer a single or all registers belonging to a certain register
1076 set to or from a buffer. This is the main worker function for
1077 regcache_supply_regset and regcache_collect_regset. */
1079 /* Collect register REGNUM from REGCACHE. Store collected value as an integer
1080 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
1081 If ADDR_LEN is greater than the register size, then the integer will be sign
1082 or zero extended. If ADDR_LEN is smaller than the register size, then the
1083 most significant bytes of the integer will be truncated. */
1086 regcache::raw_collect_integer (int regnum, gdb_byte *addr, int addr_len,
1087 bool is_signed) const
1089 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1090 const gdb_byte *regbuf;
1093 assert_regnum (regnum);
1095 regbuf = register_buffer (regnum);
1096 regsize = m_descr->sizeof_register[regnum];
1098 copy_integer_to_size (addr, addr_len, regbuf, regsize, is_signed,
1103 regcache::transfer_regset (const struct regset *regset,
1104 struct regcache *out_regcache,
1105 int regnum, const void *in_buf,
1106 void *out_buf, size_t size) const
1108 const struct regcache_map_entry *map;
1109 int offs = 0, count;
1111 for (map = (const struct regcache_map_entry *) regset->regmap;
1112 (count = map->count) != 0;
1115 int regno = map->regno;
1116 int slot_size = map->size;
1118 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
1119 slot_size = m_descr->sizeof_register[regno];
1121 if (regno == REGCACHE_MAP_SKIP
1123 && (regnum < regno || regnum >= regno + count)))
1124 offs += count * slot_size;
1126 else if (regnum == -1)
1127 for (; count--; regno++, offs += slot_size)
1129 if (offs + slot_size > size)
1133 raw_collect (regno, (gdb_byte *) out_buf + offs);
1135 out_regcache->raw_supply (regno, in_buf
1136 ? (const gdb_byte *) in_buf + offs
1141 /* Transfer a single register and return. */
1142 offs += (regnum - regno) * slot_size;
1143 if (offs + slot_size > size)
1147 raw_collect (regnum, (gdb_byte *) out_buf + offs);
1149 out_regcache->raw_supply (regnum, in_buf
1150 ? (const gdb_byte *) in_buf + offs
1157 /* Supply register REGNUM from BUF to REGCACHE, using the register map
1158 in REGSET. If REGNUM is -1, do this for all registers in REGSET.
1159 If BUF is NULL, set the register(s) to "unavailable" status. */
1162 regcache_supply_regset (const struct regset *regset,
1163 struct regcache *regcache,
1164 int regnum, const void *buf, size_t size)
1166 regcache->supply_regset (regset, regnum, buf, size);
1170 regcache::supply_regset (const struct regset *regset,
1171 int regnum, const void *buf, size_t size)
1173 transfer_regset (regset, this, regnum, buf, NULL, size);
1176 /* Collect register REGNUM from REGCACHE to BUF, using the register
1177 map in REGSET. If REGNUM is -1, do this for all registers in
1181 regcache_collect_regset (const struct regset *regset,
1182 const struct regcache *regcache,
1183 int regnum, void *buf, size_t size)
1185 regcache->collect_regset (regset, regnum, buf, size);
1189 regcache::collect_regset (const struct regset *regset,
1190 int regnum, void *buf, size_t size) const
1192 transfer_regset (regset, NULL, regnum, NULL, buf, size);
1196 /* Special handling for register PC. */
1199 regcache_read_pc (struct regcache *regcache)
1201 struct gdbarch *gdbarch = regcache->arch ();
1205 if (gdbarch_read_pc_p (gdbarch))
1206 pc_val = gdbarch_read_pc (gdbarch, regcache);
1207 /* Else use per-frame method on get_current_frame. */
1208 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1212 if (regcache_cooked_read_unsigned (regcache,
1213 gdbarch_pc_regnum (gdbarch),
1214 &raw_val) == REG_UNAVAILABLE)
1215 throw_error (NOT_AVAILABLE_ERROR, _("PC register is not available"));
1217 pc_val = gdbarch_addr_bits_remove (gdbarch, raw_val);
1220 internal_error (__FILE__, __LINE__,
1221 _("regcache_read_pc: Unable to find PC"));
1226 regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
1228 struct gdbarch *gdbarch = regcache->arch ();
1230 if (gdbarch_write_pc_p (gdbarch))
1231 gdbarch_write_pc (gdbarch, regcache, pc);
1232 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1233 regcache_cooked_write_unsigned (regcache,
1234 gdbarch_pc_regnum (gdbarch), pc);
1236 internal_error (__FILE__, __LINE__,
1237 _("regcache_write_pc: Unable to update PC"));
1239 /* Writing the PC (for instance, from "load") invalidates the
1241 reinit_frame_cache ();
1245 reg_buffer::num_raw_registers () const
1247 return gdbarch_num_regs (arch ());
1251 regcache::debug_print_register (const char *func, int regno)
1253 struct gdbarch *gdbarch = arch ();
1255 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1256 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
1257 && gdbarch_register_name (gdbarch, regno) != NULL
1258 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
1259 fprintf_unfiltered (gdb_stdlog, "(%s)",
1260 gdbarch_register_name (gdbarch, regno));
1262 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1263 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
1265 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1266 int size = register_size (gdbarch, regno);
1267 gdb_byte *buf = register_buffer (regno);
1269 fprintf_unfiltered (gdb_stdlog, " = ");
1270 for (int i = 0; i < size; i++)
1272 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1274 if (size <= sizeof (LONGEST))
1276 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
1278 fprintf_unfiltered (gdb_stdlog, " %s %s",
1279 core_addr_to_string_nz (val), plongest (val));
1282 fprintf_unfiltered (gdb_stdlog, "\n");
1286 reg_flush_command (const char *command, int from_tty)
1288 /* Force-flush the register cache. */
1289 registers_changed ();
1291 printf_filtered (_("Register cache flushed.\n"));
1295 register_dump::dump (ui_file *file)
1297 auto descr = regcache_descr (m_gdbarch);
1299 int footnote_nr = 0;
1300 int footnote_register_offset = 0;
1301 int footnote_register_type_name_null = 0;
1302 long register_offset = 0;
1304 gdb_assert (descr->nr_cooked_registers
1305 == (gdbarch_num_regs (m_gdbarch)
1306 + gdbarch_num_pseudo_regs (m_gdbarch)));
1308 for (regnum = -1; regnum < descr->nr_cooked_registers; regnum++)
1312 fprintf_unfiltered (file, " %-10s", "Name");
1315 const char *p = gdbarch_register_name (m_gdbarch, regnum);
1319 else if (p[0] == '\0')
1321 fprintf_unfiltered (file, " %-10s", p);
1326 fprintf_unfiltered (file, " %4s", "Nr");
1328 fprintf_unfiltered (file, " %4d", regnum);
1330 /* Relative number. */
1332 fprintf_unfiltered (file, " %4s", "Rel");
1333 else if (regnum < gdbarch_num_regs (m_gdbarch))
1334 fprintf_unfiltered (file, " %4d", regnum);
1336 fprintf_unfiltered (file, " %4d",
1337 (regnum - gdbarch_num_regs (m_gdbarch)));
1341 fprintf_unfiltered (file, " %6s ", "Offset");
1344 fprintf_unfiltered (file, " %6ld",
1345 descr->register_offset[regnum]);
1346 if (register_offset != descr->register_offset[regnum]
1348 && (descr->register_offset[regnum]
1349 != (descr->register_offset[regnum - 1]
1350 + descr->sizeof_register[regnum - 1])))
1353 if (!footnote_register_offset)
1354 footnote_register_offset = ++footnote_nr;
1355 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1358 fprintf_unfiltered (file, " ");
1359 register_offset = (descr->register_offset[regnum]
1360 + descr->sizeof_register[regnum]);
1365 fprintf_unfiltered (file, " %5s ", "Size");
1367 fprintf_unfiltered (file, " %5ld", descr->sizeof_register[regnum]);
1372 std::string name_holder;
1378 static const char blt[] = "builtin_type";
1380 t = TYPE_NAME (register_type (m_gdbarch, regnum));
1383 if (!footnote_register_type_name_null)
1384 footnote_register_type_name_null = ++footnote_nr;
1385 name_holder = string_printf ("*%d",
1386 footnote_register_type_name_null);
1387 t = name_holder.c_str ();
1389 /* Chop a leading builtin_type. */
1390 if (startswith (t, blt))
1393 fprintf_unfiltered (file, " %-15s", t);
1396 /* Leading space always present. */
1397 fprintf_unfiltered (file, " ");
1399 dump_reg (file, regnum);
1401 fprintf_unfiltered (file, "\n");
1404 if (footnote_register_offset)
1405 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1406 footnote_register_offset);
1407 if (footnote_register_type_name_null)
1408 fprintf_unfiltered (file,
1409 "*%d: Register type's name NULL.\n",
1410 footnote_register_type_name_null);
1414 #include "selftest.h"
1415 #include "selftest-arch.h"
1416 #include "gdbthread.h"
1417 #include "target-float.h"
1419 namespace selftests {
1421 class regcache_access : public regcache
1425 /* Return the number of elements in current_regcache. */
1428 current_regcache_size ()
1430 return std::distance (regcache::current_regcache.begin (),
1431 regcache::current_regcache.end ());
1436 current_regcache_test (void)
1438 /* It is empty at the start. */
1439 SELF_CHECK (regcache_access::current_regcache_size () == 0);
1441 ptid_t ptid1 (1), ptid2 (2), ptid3 (3);
1443 /* Get regcache from ptid1, a new regcache is added to
1444 current_regcache. */
1445 regcache *regcache = get_thread_arch_aspace_regcache (ptid1,
1449 SELF_CHECK (regcache != NULL);
1450 SELF_CHECK (regcache->ptid () == ptid1);
1451 SELF_CHECK (regcache_access::current_regcache_size () == 1);
1453 /* Get regcache from ptid2, a new regcache is added to
1454 current_regcache. */
1455 regcache = get_thread_arch_aspace_regcache (ptid2,
1458 SELF_CHECK (regcache != NULL);
1459 SELF_CHECK (regcache->ptid () == ptid2);
1460 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1462 /* Get regcache from ptid3, a new regcache is added to
1463 current_regcache. */
1464 regcache = get_thread_arch_aspace_regcache (ptid3,
1467 SELF_CHECK (regcache != NULL);
1468 SELF_CHECK (regcache->ptid () == ptid3);
1469 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1471 /* Get regcache from ptid2 again, nothing is added to
1472 current_regcache. */
1473 regcache = get_thread_arch_aspace_regcache (ptid2,
1476 SELF_CHECK (regcache != NULL);
1477 SELF_CHECK (regcache->ptid () == ptid2);
1478 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1480 /* Mark ptid2 is changed, so regcache of ptid2 should be removed from
1481 current_regcache. */
1482 registers_changed_ptid (ptid2);
1483 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1486 class target_ops_no_register : public test_target_ops
1489 target_ops_no_register ()
1490 : test_target_ops {}
1495 fetch_registers_called = 0;
1496 store_registers_called = 0;
1497 xfer_partial_called = 0;
1500 void fetch_registers (regcache *regs, int regno) override;
1501 void store_registers (regcache *regs, int regno) override;
1503 enum target_xfer_status xfer_partial (enum target_object object,
1504 const char *annex, gdb_byte *readbuf,
1505 const gdb_byte *writebuf,
1506 ULONGEST offset, ULONGEST len,
1507 ULONGEST *xfered_len) override;
1509 unsigned int fetch_registers_called = 0;
1510 unsigned int store_registers_called = 0;
1511 unsigned int xfer_partial_called = 0;
1515 target_ops_no_register::fetch_registers (regcache *regs, int regno)
1517 /* Mark register available. */
1518 regs->raw_supply_zeroed (regno);
1519 this->fetch_registers_called++;
1523 target_ops_no_register::store_registers (regcache *regs, int regno)
1525 this->store_registers_called++;
1528 enum target_xfer_status
1529 target_ops_no_register::xfer_partial (enum target_object object,
1530 const char *annex, gdb_byte *readbuf,
1531 const gdb_byte *writebuf,
1532 ULONGEST offset, ULONGEST len,
1533 ULONGEST *xfered_len)
1535 this->xfer_partial_called++;
1538 return TARGET_XFER_OK;
1541 class readwrite_regcache : public regcache
1544 readwrite_regcache (struct gdbarch *gdbarch)
1545 : regcache (gdbarch, nullptr)
1549 /* Test regcache::cooked_read gets registers from raw registers and
1550 memory instead of target to_{fetch,store}_registers. */
1553 cooked_read_test (struct gdbarch *gdbarch)
1555 /* Error out if debugging something, because we're going to push the
1556 test target, which would pop any existing target. */
1557 if (target_stack->to_stratum >= process_stratum)
1558 error (_("target already pushed"));
1560 /* Create a mock environment. An inferior with a thread, with a
1561 process_stratum target pushed. */
1563 target_ops_no_register mock_target;
1564 ptid_t mock_ptid (1, 1);
1565 inferior mock_inferior (mock_ptid.pid ());
1566 address_space mock_aspace {};
1567 mock_inferior.gdbarch = gdbarch;
1568 mock_inferior.aspace = &mock_aspace;
1569 thread_info mock_thread (&mock_inferior, mock_ptid);
1571 scoped_restore restore_thread_list
1572 = make_scoped_restore (&thread_list, &mock_thread);
1574 /* Add the mock inferior to the inferior list so that look ups by
1575 target+ptid can find it. */
1576 scoped_restore restore_inferior_list
1577 = make_scoped_restore (&inferior_list);
1578 inferior_list = &mock_inferior;
1580 /* Switch to the mock inferior. */
1581 scoped_restore_current_inferior restore_current_inferior;
1582 set_current_inferior (&mock_inferior);
1584 /* Push the process_stratum target so we can mock accessing
1586 push_target (&mock_target);
1588 /* Pop it again on exit (return/exception). */
1593 pop_all_targets_at_and_above (process_stratum);
1597 /* Switch to the mock thread. */
1598 scoped_restore restore_inferior_ptid
1599 = make_scoped_restore (&inferior_ptid, mock_ptid);
1601 /* Test that read one raw register from regcache_no_target will go
1602 to the target layer. */
1605 /* Find a raw register which size isn't zero. */
1606 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1608 if (register_size (gdbarch, regnum) != 0)
1612 readwrite_regcache readwrite (gdbarch);
1613 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1615 readwrite.raw_read (regnum, buf.data ());
1617 /* raw_read calls target_fetch_registers. */
1618 SELF_CHECK (mock_target.fetch_registers_called > 0);
1619 mock_target.reset ();
1621 /* Mark all raw registers valid, so the following raw registers
1622 accesses won't go to target. */
1623 for (auto i = 0; i < gdbarch_num_regs (gdbarch); i++)
1624 readwrite.raw_update (i);
1626 mock_target.reset ();
1627 /* Then, read all raw and pseudo registers, and don't expect calling
1628 to_{fetch,store}_registers. */
1629 for (int regnum = 0;
1630 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1633 if (register_size (gdbarch, regnum) == 0)
1636 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1638 SELF_CHECK (REG_VALID == readwrite.cooked_read (regnum, buf.data ()));
1640 SELF_CHECK (mock_target.fetch_registers_called == 0);
1641 SELF_CHECK (mock_target.store_registers_called == 0);
1643 /* Some SPU pseudo registers are got via TARGET_OBJECT_SPU. */
1644 if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu)
1645 SELF_CHECK (mock_target.xfer_partial_called == 0);
1647 mock_target.reset ();
1650 readonly_detached_regcache readonly (readwrite);
1652 /* GDB may go to target layer to fetch all registers and memory for
1653 readonly regcache. */
1654 mock_target.reset ();
1656 for (int regnum = 0;
1657 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1660 if (register_size (gdbarch, regnum) == 0)
1663 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1664 enum register_status status = readonly.cooked_read (regnum,
1667 if (regnum < gdbarch_num_regs (gdbarch))
1669 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1671 if (bfd_arch == bfd_arch_frv || bfd_arch == bfd_arch_h8300
1672 || bfd_arch == bfd_arch_m32c || bfd_arch == bfd_arch_sh
1673 || bfd_arch == bfd_arch_alpha || bfd_arch == bfd_arch_v850
1674 || bfd_arch == bfd_arch_msp430 || bfd_arch == bfd_arch_mep
1675 || bfd_arch == bfd_arch_mips || bfd_arch == bfd_arch_v850_rh850
1676 || bfd_arch == bfd_arch_tic6x || bfd_arch == bfd_arch_mn10300
1677 || bfd_arch == bfd_arch_rl78 || bfd_arch == bfd_arch_score
1678 || bfd_arch == bfd_arch_riscv)
1680 /* Raw registers. If raw registers are not in save_reggroup,
1681 their status are unknown. */
1682 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1683 SELF_CHECK (status == REG_VALID);
1685 SELF_CHECK (status == REG_UNKNOWN);
1688 SELF_CHECK (status == REG_VALID);
1692 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1693 SELF_CHECK (status == REG_VALID);
1696 /* If pseudo registers are not in save_reggroup, some of
1697 them can be computed from saved raw registers, but some
1698 of them are unknown. */
1699 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1701 if (bfd_arch == bfd_arch_frv
1702 || bfd_arch == bfd_arch_m32c
1703 || bfd_arch == bfd_arch_mep
1704 || bfd_arch == bfd_arch_sh)
1705 SELF_CHECK (status == REG_VALID || status == REG_UNKNOWN);
1706 else if (bfd_arch == bfd_arch_mips
1707 || bfd_arch == bfd_arch_h8300)
1708 SELF_CHECK (status == REG_UNKNOWN);
1710 SELF_CHECK (status == REG_VALID);
1714 SELF_CHECK (mock_target.fetch_registers_called == 0);
1715 SELF_CHECK (mock_target.store_registers_called == 0);
1716 SELF_CHECK (mock_target.xfer_partial_called == 0);
1718 mock_target.reset ();
1722 /* Test regcache::cooked_write by writing some expected contents to
1723 registers, and checking that contents read from registers and the
1724 expected contents are the same. */
1727 cooked_write_test (struct gdbarch *gdbarch)
1729 /* Error out if debugging something, because we're going to push the
1730 test target, which would pop any existing target. */
1731 if (target_stack->to_stratum >= process_stratum)
1732 error (_("target already pushed"));
1734 /* Create a mock environment. A process_stratum target pushed. */
1736 target_ops_no_register mock_target;
1738 /* Push the process_stratum target so we can mock accessing
1740 push_target (&mock_target);
1742 /* Pop it again on exit (return/exception). */
1747 pop_all_targets_at_and_above (process_stratum);
1751 readwrite_regcache readwrite (gdbarch);
1753 const int num_regs = (gdbarch_num_regs (gdbarch)
1754 + gdbarch_num_pseudo_regs (gdbarch));
1756 for (auto regnum = 0; regnum < num_regs; regnum++)
1758 if (register_size (gdbarch, regnum) == 0
1759 || gdbarch_cannot_store_register (gdbarch, regnum))
1762 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1764 if ((bfd_arch == bfd_arch_sparc
1765 /* SPARC64_CWP_REGNUM, SPARC64_PSTATE_REGNUM,
1766 SPARC64_ASI_REGNUM and SPARC64_CCR_REGNUM are hard to test. */
1767 && gdbarch_ptr_bit (gdbarch) == 64
1768 && (regnum >= gdbarch_num_regs (gdbarch)
1769 && regnum <= gdbarch_num_regs (gdbarch) + 4))
1770 || (bfd_arch == bfd_arch_spu
1771 /* SPU pseudo registers except SPU_SP_REGNUM are got by
1772 TARGET_OBJECT_SPU. */
1773 && regnum >= gdbarch_num_regs (gdbarch) && regnum != 130))
1776 std::vector<gdb_byte> expected (register_size (gdbarch, regnum), 0);
1777 std::vector<gdb_byte> buf (register_size (gdbarch, regnum), 0);
1778 const auto type = register_type (gdbarch, regnum);
1780 if (TYPE_CODE (type) == TYPE_CODE_FLT
1781 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1783 /* Generate valid float format. */
1784 target_float_from_string (expected.data (), type, "1.25");
1786 else if (TYPE_CODE (type) == TYPE_CODE_INT
1787 || TYPE_CODE (type) == TYPE_CODE_ARRAY
1788 || TYPE_CODE (type) == TYPE_CODE_PTR
1789 || TYPE_CODE (type) == TYPE_CODE_UNION
1790 || TYPE_CODE (type) == TYPE_CODE_STRUCT)
1792 if (bfd_arch == bfd_arch_ia64
1793 || (regnum >= gdbarch_num_regs (gdbarch)
1794 && (bfd_arch == bfd_arch_xtensa
1795 || bfd_arch == bfd_arch_bfin
1796 || bfd_arch == bfd_arch_m32c
1797 /* m68hc11 pseudo registers are in memory. */
1798 || bfd_arch == bfd_arch_m68hc11
1799 || bfd_arch == bfd_arch_m68hc12
1800 || bfd_arch == bfd_arch_s390))
1801 || (bfd_arch == bfd_arch_frv
1802 /* FRV pseudo registers except iacc0. */
1803 && regnum > gdbarch_num_regs (gdbarch)))
1805 /* Skip setting the expected values for some architecture
1808 else if (bfd_arch == bfd_arch_rl78 && regnum == 40)
1810 /* RL78_PC_REGNUM */
1811 for (auto j = 0; j < register_size (gdbarch, regnum) - 1; j++)
1816 for (auto j = 0; j < register_size (gdbarch, regnum); j++)
1820 else if (TYPE_CODE (type) == TYPE_CODE_FLAGS)
1822 /* No idea how to test flags. */
1827 /* If we don't know how to create the expected value for the
1828 this type, make it fail. */
1832 readwrite.cooked_write (regnum, expected.data ());
1834 SELF_CHECK (readwrite.cooked_read (regnum, buf.data ()) == REG_VALID);
1835 SELF_CHECK (expected == buf);
1839 } // namespace selftests
1840 #endif /* GDB_SELF_TEST */
1843 _initialize_regcache (void)
1845 regcache_descr_handle
1846 = gdbarch_data_register_post_init (init_regcache_descr);
1848 gdb::observers::target_changed.attach (regcache_observer_target_changed);
1849 gdb::observers::thread_ptid_changed.attach
1850 (regcache::regcache_thread_ptid_changed);
1852 add_com ("flushregs", class_maintenance, reg_flush_command,
1853 _("Force gdb to flush its register cache (maintainer command)"));
1856 selftests::register_test ("current_regcache", selftests::current_regcache_test);
1858 selftests::register_test_foreach_arch ("regcache::cooked_read_test",
1859 selftests::cooked_read_test);
1860 selftests::register_test_foreach_arch ("regcache::cooked_write_test",
1861 selftests::cooked_write_test);