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 (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 /* Cleanup class for invalidating a register. */
228 class regcache_invalidator
232 regcache_invalidator (struct regcache *regcache, int regnum)
233 : m_regcache (regcache),
238 ~regcache_invalidator ()
240 if (m_regcache != nullptr)
241 regcache_invalidate (m_regcache, m_regnum);
244 DISABLE_COPY_AND_ASSIGN (regcache_invalidator);
248 m_regcache = nullptr;
253 struct regcache *m_regcache;
257 /* Return a pointer to register REGNUM's buffer cache. */
260 reg_buffer::register_buffer (int regnum) const
262 return m_registers + m_descr->register_offset[regnum];
266 reg_buffer::save (regcache_cooked_read_ftype *cooked_read,
269 struct gdbarch *gdbarch = m_descr->gdbarch;
272 /* It should have pseudo registers. */
273 gdb_assert (m_has_pseudo);
274 /* Clear the dest. */
275 memset (m_registers, 0, m_descr->sizeof_cooked_registers);
276 memset (m_register_status, 0, m_descr->nr_cooked_registers);
277 /* Copy over any registers (identified by their membership in the
278 save_reggroup) and mark them as valid. The full [0 .. gdbarch_num_regs +
279 gdbarch_num_pseudo_regs) range is checked since some architectures need
280 to save/restore `cooked' registers that live in memory. */
281 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
283 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
285 gdb_byte *dst_buf = register_buffer (regnum);
286 enum register_status status = cooked_read (src, regnum, dst_buf);
288 gdb_assert (status != REG_UNKNOWN);
290 if (status != REG_VALID)
291 memset (dst_buf, 0, register_size (gdbarch, regnum));
293 m_register_status[regnum] = status;
299 regcache::restore (readonly_detached_regcache *src)
301 struct gdbarch *gdbarch = m_descr->gdbarch;
304 gdb_assert (src != NULL);
305 gdb_assert (src->m_has_pseudo);
307 gdb_assert (gdbarch == src->arch ());
309 /* Copy over any registers, being careful to only restore those that
310 were both saved and need to be restored. The full [0 .. gdbarch_num_regs
311 + gdbarch_num_pseudo_regs) range is checked since some architectures need
312 to save/restore `cooked' registers that live in memory. */
313 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
315 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
317 if (src->m_register_status[regnum] == REG_VALID)
318 cooked_write (regnum, src->register_buffer (regnum));
324 reg_buffer::get_register_status (int regnum) const
326 assert_regnum (regnum);
328 return (enum register_status) m_register_status[regnum];
332 regcache_invalidate (struct regcache *regcache, int regnum)
334 gdb_assert (regcache != NULL);
335 regcache->invalidate (regnum);
339 detached_regcache::invalidate (int regnum)
341 assert_regnum (regnum);
342 m_register_status[regnum] = REG_UNKNOWN;
346 reg_buffer::assert_regnum (int regnum) const
348 gdb_assert (regnum >= 0);
350 gdb_assert (regnum < m_descr->nr_cooked_registers);
352 gdb_assert (regnum < gdbarch_num_regs (arch ()));
355 /* Global structure containing the current regcache. */
357 /* NOTE: this is a write-through cache. There is no "dirty" bit for
358 recording if the register values have been changed (eg. by the
359 user). Therefore all registers must be written back to the
360 target when appropriate. */
361 std::forward_list<regcache *> regcache::current_regcache;
364 get_thread_arch_aspace_regcache (ptid_t ptid, struct gdbarch *gdbarch,
365 struct address_space *aspace)
367 for (const auto ®cache : regcache::current_regcache)
368 if (ptid_equal (regcache->ptid (), ptid) && regcache->arch () == gdbarch)
371 regcache *new_regcache = new regcache (gdbarch, aspace);
373 regcache::current_regcache.push_front (new_regcache);
374 new_regcache->set_ptid (ptid);
380 get_thread_arch_regcache (ptid_t ptid, struct gdbarch *gdbarch)
382 address_space *aspace = target_thread_address_space (ptid);
384 return get_thread_arch_aspace_regcache (ptid, gdbarch, aspace);
387 static ptid_t current_thread_ptid;
388 static struct gdbarch *current_thread_arch;
391 get_thread_regcache (ptid_t ptid)
393 if (!current_thread_arch || !ptid_equal (current_thread_ptid, ptid))
395 current_thread_ptid = ptid;
396 current_thread_arch = target_thread_architecture (ptid);
399 return get_thread_arch_regcache (ptid, current_thread_arch);
403 get_current_regcache (void)
405 return get_thread_regcache (inferior_ptid);
408 /* See common/common-regcache.h. */
411 get_thread_regcache_for_ptid (ptid_t ptid)
413 return get_thread_regcache (ptid);
416 /* Observer for the target_changed event. */
419 regcache_observer_target_changed (struct target_ops *target)
421 registers_changed ();
424 /* Update global variables old ptids to hold NEW_PTID if they were
427 regcache::regcache_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
429 for (auto ®cache : regcache::current_regcache)
431 if (ptid_equal (regcache->ptid (), old_ptid))
432 regcache->set_ptid (new_ptid);
436 /* Low level examining and depositing of registers.
438 The caller is responsible for making sure that the inferior is
439 stopped before calling the fetching routines, or it will get
440 garbage. (a change from GDB version 3, in which the caller got the
441 value from the last stop). */
443 /* REGISTERS_CHANGED ()
445 Indicate that registers may have changed, so invalidate the cache. */
448 registers_changed_ptid (ptid_t ptid)
450 for (auto oit = regcache::current_regcache.before_begin (),
451 it = std::next (oit);
452 it != regcache::current_regcache.end ();
455 if (ptid_match ((*it)->ptid (), ptid))
458 it = regcache::current_regcache.erase_after (oit);
464 if (ptid_match (current_thread_ptid, ptid))
466 current_thread_ptid = null_ptid;
467 current_thread_arch = NULL;
470 if (ptid_match (inferior_ptid, ptid))
472 /* We just deleted the regcache of the current thread. Need to
473 forget about any frames we have cached, too. */
474 reinit_frame_cache ();
479 registers_changed (void)
481 registers_changed_ptid (minus_one_ptid);
483 /* Force cleanup of any alloca areas if using C alloca instead of
484 a builtin alloca. This particular call is used to clean up
485 areas allocated by low level target code which may build up
486 during lengthy interactions between gdb and the target before
487 gdb gives control to the user (ie watchpoints). */
492 regcache::raw_update (int regnum)
494 assert_regnum (regnum);
496 /* Make certain that the register cache is up-to-date with respect
497 to the current thread. This switching shouldn't be necessary
498 only there is still only one target side register cache. Sigh!
499 On the bright side, at least there is a regcache object. */
501 if (get_register_status (regnum) == REG_UNKNOWN)
503 target_fetch_registers (this, regnum);
505 /* A number of targets can't access the whole set of raw
506 registers (because the debug API provides no means to get at
508 if (m_register_status[regnum] == REG_UNKNOWN)
509 m_register_status[regnum] = REG_UNAVAILABLE;
514 readable_regcache::raw_read (int regnum, gdb_byte *buf)
516 gdb_assert (buf != NULL);
519 if (m_register_status[regnum] != REG_VALID)
520 memset (buf, 0, m_descr->sizeof_register[regnum]);
522 memcpy (buf, register_buffer (regnum),
523 m_descr->sizeof_register[regnum]);
525 return (enum register_status) m_register_status[regnum];
529 regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
531 gdb_assert (regcache != NULL);
532 return regcache->raw_read (regnum, val);
535 template<typename T, typename>
537 readable_regcache::raw_read (int regnum, T *val)
540 enum register_status status;
542 assert_regnum (regnum);
543 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
544 status = raw_read (regnum, buf);
545 if (status == REG_VALID)
546 *val = extract_integer<T> (buf,
547 m_descr->sizeof_register[regnum],
548 gdbarch_byte_order (m_descr->gdbarch));
555 regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
558 gdb_assert (regcache != NULL);
559 return regcache->raw_read (regnum, val);
563 regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
565 gdb_assert (regcache != NULL);
566 regcache->raw_write (regnum, val);
569 template<typename T, typename>
571 regcache::raw_write (int regnum, T val)
575 assert_regnum (regnum);
576 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
577 store_integer (buf, m_descr->sizeof_register[regnum],
578 gdbarch_byte_order (m_descr->gdbarch), val);
579 raw_write (regnum, buf);
583 regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
586 gdb_assert (regcache != NULL);
587 regcache->raw_write (regnum, val);
591 regcache_raw_get_signed (struct regcache *regcache, int regnum)
594 enum register_status status;
596 status = regcache_raw_read_signed (regcache, regnum, &value);
597 if (status == REG_UNAVAILABLE)
598 throw_error (NOT_AVAILABLE_ERROR,
599 _("Register %d is not available"), regnum);
604 readable_regcache::cooked_read (int regnum, gdb_byte *buf)
606 gdb_assert (regnum >= 0);
607 gdb_assert (regnum < m_descr->nr_cooked_registers);
608 if (regnum < num_raw_registers ())
609 return raw_read (regnum, buf);
610 else if (m_has_pseudo
611 && m_register_status[regnum] != REG_UNKNOWN)
613 if (m_register_status[regnum] == REG_VALID)
614 memcpy (buf, register_buffer (regnum),
615 m_descr->sizeof_register[regnum]);
617 memset (buf, 0, m_descr->sizeof_register[regnum]);
619 return (enum register_status) m_register_status[regnum];
621 else if (gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
623 struct value *mark, *computed;
624 enum register_status result = REG_VALID;
626 mark = value_mark ();
628 computed = gdbarch_pseudo_register_read_value (m_descr->gdbarch,
630 if (value_entirely_available (computed))
631 memcpy (buf, value_contents_raw (computed),
632 m_descr->sizeof_register[regnum]);
635 memset (buf, 0, m_descr->sizeof_register[regnum]);
636 result = REG_UNAVAILABLE;
639 value_free_to_mark (mark);
644 return gdbarch_pseudo_register_read (m_descr->gdbarch, this,
649 regcache_cooked_read_value (struct regcache *regcache, int regnum)
651 return regcache->cooked_read_value (regnum);
655 readable_regcache::cooked_read_value (int regnum)
657 gdb_assert (regnum >= 0);
658 gdb_assert (regnum < m_descr->nr_cooked_registers);
660 if (regnum < num_raw_registers ()
661 || (m_has_pseudo && m_register_status[regnum] != REG_UNKNOWN)
662 || !gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
664 struct value *result;
666 result = allocate_value (register_type (m_descr->gdbarch, regnum));
667 VALUE_LVAL (result) = lval_register;
668 VALUE_REGNUM (result) = regnum;
670 /* It is more efficient in general to do this delegation in this
671 direction than in the other one, even though the value-based
673 if (cooked_read (regnum,
674 value_contents_raw (result)) == REG_UNAVAILABLE)
675 mark_value_bytes_unavailable (result, 0,
676 TYPE_LENGTH (value_type (result)));
681 return gdbarch_pseudo_register_read_value (m_descr->gdbarch,
686 regcache_cooked_read_signed (struct regcache *regcache, int regnum,
689 gdb_assert (regcache != NULL);
690 return regcache->cooked_read (regnum, val);
693 template<typename T, typename>
695 readable_regcache::cooked_read (int regnum, T *val)
697 enum register_status status;
700 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
701 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
702 status = cooked_read (regnum, buf);
703 if (status == REG_VALID)
704 *val = extract_integer<T> (buf, m_descr->sizeof_register[regnum],
705 gdbarch_byte_order (m_descr->gdbarch));
712 regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
715 gdb_assert (regcache != NULL);
716 return regcache->cooked_read (regnum, val);
720 regcache_cooked_write_signed (struct regcache *regcache, int regnum,
723 gdb_assert (regcache != NULL);
724 regcache->cooked_write (regnum, val);
727 template<typename T, typename>
729 regcache::cooked_write (int regnum, T val)
733 gdb_assert (regnum >=0 && regnum < m_descr->nr_cooked_registers);
734 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
735 store_integer (buf, m_descr->sizeof_register[regnum],
736 gdbarch_byte_order (m_descr->gdbarch), val);
737 cooked_write (regnum, buf);
741 regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
744 gdb_assert (regcache != NULL);
745 regcache->cooked_write (regnum, val);
749 regcache::raw_write (int regnum, const gdb_byte *buf)
752 gdb_assert (buf != NULL);
753 assert_regnum (regnum);
755 /* On the sparc, writing %g0 is a no-op, so we don't even want to
756 change the registers array if something writes to this register. */
757 if (gdbarch_cannot_store_register (arch (), regnum))
760 /* If we have a valid copy of the register, and new value == old
761 value, then don't bother doing the actual store. */
762 if (get_register_status (regnum) == REG_VALID
763 && (memcmp (register_buffer (regnum), buf,
764 m_descr->sizeof_register[regnum]) == 0))
767 target_prepare_to_store (this);
768 raw_supply (regnum, buf);
770 /* Invalidate the register after it is written, in case of a
772 regcache_invalidator invalidator (this, regnum);
774 target_store_registers (this, regnum);
776 /* The target did not throw an error so we can discard invalidating
778 invalidator.release ();
782 regcache_cooked_write (struct regcache *regcache, int regnum,
785 regcache->cooked_write (regnum, buf);
789 regcache::cooked_write (int regnum, const gdb_byte *buf)
791 gdb_assert (regnum >= 0);
792 gdb_assert (regnum < m_descr->nr_cooked_registers);
793 if (regnum < num_raw_registers ())
794 raw_write (regnum, buf);
796 gdbarch_pseudo_register_write (m_descr->gdbarch, this,
800 /* Perform a partial register transfer using a read, modify, write
804 readable_regcache::read_part (int regnum, int offset, int len, void *in,
807 struct gdbarch *gdbarch = arch ();
808 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
810 gdb_assert (in != NULL);
811 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
812 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
813 /* Something to do? */
814 if (offset + len == 0)
816 /* Read (when needed) ... */
817 enum register_status status;
820 status = raw_read (regnum, reg);
822 status = cooked_read (regnum, reg);
823 if (status != REG_VALID)
827 memcpy (in, reg + offset, len);
833 regcache::write_part (int regnum, int offset, int len,
834 const void *out, bool is_raw)
836 struct gdbarch *gdbarch = arch ();
837 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
839 gdb_assert (out != NULL);
840 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
841 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
842 /* Something to do? */
843 if (offset + len == 0)
845 /* Read (when needed) ... */
847 || offset + len < m_descr->sizeof_register[regnum])
849 enum register_status status;
852 status = raw_read (regnum, reg);
854 status = cooked_read (regnum, reg);
855 if (status != REG_VALID)
859 memcpy (reg + offset, out, len);
860 /* ... write (when needed). */
862 raw_write (regnum, reg);
864 cooked_write (regnum, reg);
870 regcache_raw_read_part (struct regcache *regcache, int regnum,
871 int offset, int len, gdb_byte *buf)
873 return regcache->raw_read_part (regnum, offset, len, buf);
877 readable_regcache::raw_read_part (int regnum, int offset, int len, gdb_byte *buf)
879 assert_regnum (regnum);
880 return read_part (regnum, offset, len, buf, true);
884 regcache_raw_write_part (struct regcache *regcache, int regnum,
885 int offset, int len, const gdb_byte *buf)
887 regcache->raw_write_part (regnum, offset, len, buf);
891 regcache::raw_write_part (int regnum, int offset, int len,
894 assert_regnum (regnum);
895 write_part (regnum, offset, len, buf, true);
899 regcache_cooked_read_part (struct regcache *regcache, int regnum,
900 int offset, int len, gdb_byte *buf)
902 return regcache->cooked_read_part (regnum, offset, len, buf);
907 readable_regcache::cooked_read_part (int regnum, int offset, int len,
910 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
911 return read_part (regnum, offset, len, buf, false);
915 regcache_cooked_write_part (struct regcache *regcache, int regnum,
916 int offset, int len, const gdb_byte *buf)
918 regcache->cooked_write_part (regnum, offset, len, buf);
922 regcache::cooked_write_part (int regnum, int offset, int len,
925 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
926 write_part (regnum, offset, len, buf, false);
929 /* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
932 regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
934 gdb_assert (regcache != NULL);
935 regcache->raw_supply (regnum, buf);
939 detached_regcache::raw_supply (int regnum, const void *buf)
944 assert_regnum (regnum);
946 regbuf = register_buffer (regnum);
947 size = m_descr->sizeof_register[regnum];
951 memcpy (regbuf, buf, size);
952 m_register_status[regnum] = REG_VALID;
956 /* This memset not strictly necessary, but better than garbage
957 in case the register value manages to escape somewhere (due
958 to a bug, no less). */
959 memset (regbuf, 0, size);
960 m_register_status[regnum] = REG_UNAVAILABLE;
964 /* Supply register REGNUM to REGCACHE. Value to supply is an integer stored at
965 address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED. If
966 the register size is greater than ADDR_LEN, then the integer will be sign or
967 zero extended. If the register size is smaller than the integer, then the
968 most significant bytes of the integer will be truncated. */
971 detached_regcache::raw_supply_integer (int regnum, const gdb_byte *addr,
972 int addr_len, bool is_signed)
974 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
978 assert_regnum (regnum);
980 regbuf = register_buffer (regnum);
981 regsize = m_descr->sizeof_register[regnum];
983 copy_integer_to_size (regbuf, regsize, addr, addr_len, is_signed,
985 m_register_status[regnum] = REG_VALID;
988 /* Supply register REGNUM with zeroed value to REGCACHE. This is not the same
989 as calling raw_supply with NULL (which will set the state to
993 detached_regcache::raw_supply_zeroed (int regnum)
998 assert_regnum (regnum);
1000 regbuf = register_buffer (regnum);
1001 size = m_descr->sizeof_register[regnum];
1003 memset (regbuf, 0, size);
1004 m_register_status[regnum] = REG_VALID;
1007 /* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1010 regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
1012 gdb_assert (regcache != NULL && buf != NULL);
1013 regcache->raw_collect (regnum, buf);
1017 regcache::raw_collect (int regnum, void *buf) const
1022 gdb_assert (buf != NULL);
1023 assert_regnum (regnum);
1025 regbuf = register_buffer (regnum);
1026 size = m_descr->sizeof_register[regnum];
1027 memcpy (buf, regbuf, size);
1030 /* Transfer a single or all registers belonging to a certain register
1031 set to or from a buffer. This is the main worker function for
1032 regcache_supply_regset and regcache_collect_regset. */
1034 /* Collect register REGNUM from REGCACHE. Store collected value as an integer
1035 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
1036 If ADDR_LEN is greater than the register size, then the integer will be sign
1037 or zero extended. If ADDR_LEN is smaller than the register size, then the
1038 most significant bytes of the integer will be truncated. */
1041 regcache::raw_collect_integer (int regnum, gdb_byte *addr, int addr_len,
1042 bool is_signed) const
1044 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1045 const gdb_byte *regbuf;
1048 assert_regnum (regnum);
1050 regbuf = register_buffer (regnum);
1051 regsize = m_descr->sizeof_register[regnum];
1053 copy_integer_to_size (addr, addr_len, regbuf, regsize, is_signed,
1058 regcache::transfer_regset (const struct regset *regset,
1059 struct regcache *out_regcache,
1060 int regnum, const void *in_buf,
1061 void *out_buf, size_t size) const
1063 const struct regcache_map_entry *map;
1064 int offs = 0, count;
1066 for (map = (const struct regcache_map_entry *) regset->regmap;
1067 (count = map->count) != 0;
1070 int regno = map->regno;
1071 int slot_size = map->size;
1073 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
1074 slot_size = m_descr->sizeof_register[regno];
1076 if (regno == REGCACHE_MAP_SKIP
1078 && (regnum < regno || regnum >= regno + count)))
1079 offs += count * slot_size;
1081 else if (regnum == -1)
1082 for (; count--; regno++, offs += slot_size)
1084 if (offs + slot_size > size)
1088 raw_collect (regno, (gdb_byte *) out_buf + offs);
1090 out_regcache->raw_supply (regno, in_buf
1091 ? (const gdb_byte *) in_buf + offs
1096 /* Transfer a single register and return. */
1097 offs += (regnum - regno) * slot_size;
1098 if (offs + slot_size > size)
1102 raw_collect (regnum, (gdb_byte *) out_buf + offs);
1104 out_regcache->raw_supply (regnum, in_buf
1105 ? (const gdb_byte *) in_buf + offs
1112 /* Supply register REGNUM from BUF to REGCACHE, using the register map
1113 in REGSET. If REGNUM is -1, do this for all registers in REGSET.
1114 If BUF is NULL, set the register(s) to "unavailable" status. */
1117 regcache_supply_regset (const struct regset *regset,
1118 struct regcache *regcache,
1119 int regnum, const void *buf, size_t size)
1121 regcache->supply_regset (regset, regnum, buf, size);
1125 regcache::supply_regset (const struct regset *regset,
1126 int regnum, const void *buf, size_t size)
1128 transfer_regset (regset, this, regnum, buf, NULL, size);
1131 /* Collect register REGNUM from REGCACHE to BUF, using the register
1132 map in REGSET. If REGNUM is -1, do this for all registers in
1136 regcache_collect_regset (const struct regset *regset,
1137 const struct regcache *regcache,
1138 int regnum, void *buf, size_t size)
1140 regcache->collect_regset (regset, regnum, buf, size);
1144 regcache::collect_regset (const struct regset *regset,
1145 int regnum, void *buf, size_t size) const
1147 transfer_regset (regset, NULL, regnum, NULL, buf, size);
1151 /* Special handling for register PC. */
1154 regcache_read_pc (struct regcache *regcache)
1156 struct gdbarch *gdbarch = regcache->arch ();
1160 if (gdbarch_read_pc_p (gdbarch))
1161 pc_val = gdbarch_read_pc (gdbarch, regcache);
1162 /* Else use per-frame method on get_current_frame. */
1163 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1167 if (regcache_cooked_read_unsigned (regcache,
1168 gdbarch_pc_regnum (gdbarch),
1169 &raw_val) == REG_UNAVAILABLE)
1170 throw_error (NOT_AVAILABLE_ERROR, _("PC register is not available"));
1172 pc_val = gdbarch_addr_bits_remove (gdbarch, raw_val);
1175 internal_error (__FILE__, __LINE__,
1176 _("regcache_read_pc: Unable to find PC"));
1181 regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
1183 struct gdbarch *gdbarch = regcache->arch ();
1185 if (gdbarch_write_pc_p (gdbarch))
1186 gdbarch_write_pc (gdbarch, regcache, pc);
1187 else if (gdbarch_pc_regnum (gdbarch) >= 0)
1188 regcache_cooked_write_unsigned (regcache,
1189 gdbarch_pc_regnum (gdbarch), pc);
1191 internal_error (__FILE__, __LINE__,
1192 _("regcache_write_pc: Unable to update PC"));
1194 /* Writing the PC (for instance, from "load") invalidates the
1196 reinit_frame_cache ();
1200 reg_buffer::num_raw_registers () const
1202 return gdbarch_num_regs (arch ());
1206 regcache::debug_print_register (const char *func, int regno)
1208 struct gdbarch *gdbarch = arch ();
1210 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1211 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
1212 && gdbarch_register_name (gdbarch, regno) != NULL
1213 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
1214 fprintf_unfiltered (gdb_stdlog, "(%s)",
1215 gdbarch_register_name (gdbarch, regno));
1217 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1218 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
1220 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1221 int size = register_size (gdbarch, regno);
1222 gdb_byte *buf = register_buffer (regno);
1224 fprintf_unfiltered (gdb_stdlog, " = ");
1225 for (int i = 0; i < size; i++)
1227 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1229 if (size <= sizeof (LONGEST))
1231 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
1233 fprintf_unfiltered (gdb_stdlog, " %s %s",
1234 core_addr_to_string_nz (val), plongest (val));
1237 fprintf_unfiltered (gdb_stdlog, "\n");
1241 reg_flush_command (const char *command, int from_tty)
1243 /* Force-flush the register cache. */
1244 registers_changed ();
1246 printf_filtered (_("Register cache flushed.\n"));
1250 register_dump::dump (ui_file *file)
1252 auto descr = regcache_descr (m_gdbarch);
1254 int footnote_nr = 0;
1255 int footnote_register_offset = 0;
1256 int footnote_register_type_name_null = 0;
1257 long register_offset = 0;
1259 gdb_assert (descr->nr_cooked_registers
1260 == (gdbarch_num_regs (m_gdbarch)
1261 + gdbarch_num_pseudo_regs (m_gdbarch)));
1263 for (regnum = -1; regnum < descr->nr_cooked_registers; regnum++)
1267 fprintf_unfiltered (file, " %-10s", "Name");
1270 const char *p = gdbarch_register_name (m_gdbarch, regnum);
1274 else if (p[0] == '\0')
1276 fprintf_unfiltered (file, " %-10s", p);
1281 fprintf_unfiltered (file, " %4s", "Nr");
1283 fprintf_unfiltered (file, " %4d", regnum);
1285 /* Relative number. */
1287 fprintf_unfiltered (file, " %4s", "Rel");
1288 else if (regnum < gdbarch_num_regs (m_gdbarch))
1289 fprintf_unfiltered (file, " %4d", regnum);
1291 fprintf_unfiltered (file, " %4d",
1292 (regnum - gdbarch_num_regs (m_gdbarch)));
1296 fprintf_unfiltered (file, " %6s ", "Offset");
1299 fprintf_unfiltered (file, " %6ld",
1300 descr->register_offset[regnum]);
1301 if (register_offset != descr->register_offset[regnum]
1303 && (descr->register_offset[regnum]
1304 != (descr->register_offset[regnum - 1]
1305 + descr->sizeof_register[regnum - 1])))
1308 if (!footnote_register_offset)
1309 footnote_register_offset = ++footnote_nr;
1310 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1313 fprintf_unfiltered (file, " ");
1314 register_offset = (descr->register_offset[regnum]
1315 + descr->sizeof_register[regnum]);
1320 fprintf_unfiltered (file, " %5s ", "Size");
1322 fprintf_unfiltered (file, " %5ld", descr->sizeof_register[regnum]);
1327 std::string name_holder;
1333 static const char blt[] = "builtin_type";
1335 t = TYPE_NAME (register_type (m_gdbarch, regnum));
1338 if (!footnote_register_type_name_null)
1339 footnote_register_type_name_null = ++footnote_nr;
1340 name_holder = string_printf ("*%d",
1341 footnote_register_type_name_null);
1342 t = name_holder.c_str ();
1344 /* Chop a leading builtin_type. */
1345 if (startswith (t, blt))
1348 fprintf_unfiltered (file, " %-15s", t);
1351 /* Leading space always present. */
1352 fprintf_unfiltered (file, " ");
1354 dump_reg (file, regnum);
1356 fprintf_unfiltered (file, "\n");
1359 if (footnote_register_offset)
1360 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1361 footnote_register_offset);
1362 if (footnote_register_type_name_null)
1363 fprintf_unfiltered (file,
1364 "*%d: Register type's name NULL.\n",
1365 footnote_register_type_name_null);
1369 #include "selftest.h"
1370 #include "selftest-arch.h"
1371 #include "gdbthread.h"
1372 #include "target-float.h"
1374 namespace selftests {
1376 class regcache_access : public regcache
1380 /* Return the number of elements in current_regcache. */
1383 current_regcache_size ()
1385 return std::distance (regcache::current_regcache.begin (),
1386 regcache::current_regcache.end ());
1391 current_regcache_test (void)
1393 /* It is empty at the start. */
1394 SELF_CHECK (regcache_access::current_regcache_size () == 0);
1396 ptid_t ptid1 (1), ptid2 (2), ptid3 (3);
1398 /* Get regcache from ptid1, a new regcache is added to
1399 current_regcache. */
1400 regcache *regcache = get_thread_arch_aspace_regcache (ptid1,
1404 SELF_CHECK (regcache != NULL);
1405 SELF_CHECK (regcache->ptid () == ptid1);
1406 SELF_CHECK (regcache_access::current_regcache_size () == 1);
1408 /* Get regcache from ptid2, a new regcache is added to
1409 current_regcache. */
1410 regcache = get_thread_arch_aspace_regcache (ptid2,
1413 SELF_CHECK (regcache != NULL);
1414 SELF_CHECK (regcache->ptid () == ptid2);
1415 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1417 /* Get regcache from ptid3, a new regcache is added to
1418 current_regcache. */
1419 regcache = get_thread_arch_aspace_regcache (ptid3,
1422 SELF_CHECK (regcache != NULL);
1423 SELF_CHECK (regcache->ptid () == ptid3);
1424 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1426 /* Get regcache from ptid2 again, nothing is added to
1427 current_regcache. */
1428 regcache = get_thread_arch_aspace_regcache (ptid2,
1431 SELF_CHECK (regcache != NULL);
1432 SELF_CHECK (regcache->ptid () == ptid2);
1433 SELF_CHECK (regcache_access::current_regcache_size () == 3);
1435 /* Mark ptid2 is changed, so regcache of ptid2 should be removed from
1436 current_regcache. */
1437 registers_changed_ptid (ptid2);
1438 SELF_CHECK (regcache_access::current_regcache_size () == 2);
1441 class target_ops_no_register : public test_target_ops
1444 target_ops_no_register ()
1445 : test_target_ops {}
1450 fetch_registers_called = 0;
1451 store_registers_called = 0;
1452 xfer_partial_called = 0;
1455 void fetch_registers (regcache *regs, int regno) override;
1456 void store_registers (regcache *regs, int regno) override;
1458 enum target_xfer_status xfer_partial (enum target_object object,
1459 const char *annex, gdb_byte *readbuf,
1460 const gdb_byte *writebuf,
1461 ULONGEST offset, ULONGEST len,
1462 ULONGEST *xfered_len) override;
1464 unsigned int fetch_registers_called = 0;
1465 unsigned int store_registers_called = 0;
1466 unsigned int xfer_partial_called = 0;
1470 target_ops_no_register::fetch_registers (regcache *regs, int regno)
1472 /* Mark register available. */
1473 regs->raw_supply_zeroed (regno);
1474 this->fetch_registers_called++;
1478 target_ops_no_register::store_registers (regcache *regs, int regno)
1480 this->store_registers_called++;
1483 enum target_xfer_status
1484 target_ops_no_register::xfer_partial (enum target_object object,
1485 const char *annex, gdb_byte *readbuf,
1486 const gdb_byte *writebuf,
1487 ULONGEST offset, ULONGEST len,
1488 ULONGEST *xfered_len)
1490 this->xfer_partial_called++;
1493 return TARGET_XFER_OK;
1496 class readwrite_regcache : public regcache
1499 readwrite_regcache (struct gdbarch *gdbarch)
1500 : regcache (gdbarch, nullptr)
1504 /* Test regcache::cooked_read gets registers from raw registers and
1505 memory instead of target to_{fetch,store}_registers. */
1508 cooked_read_test (struct gdbarch *gdbarch)
1510 /* Error out if debugging something, because we're going to push the
1511 test target, which would pop any existing target. */
1512 if (target_stack->to_stratum >= process_stratum)
1513 error (_("target already pushed"));
1515 /* Create a mock environment. An inferior with a thread, with a
1516 process_stratum target pushed. */
1518 target_ops_no_register mock_target;
1519 ptid_t mock_ptid (1, 1);
1520 inferior mock_inferior (mock_ptid.pid ());
1521 address_space mock_aspace {};
1522 mock_inferior.gdbarch = gdbarch;
1523 mock_inferior.aspace = &mock_aspace;
1524 thread_info mock_thread (&mock_inferior, mock_ptid);
1526 scoped_restore restore_thread_list
1527 = make_scoped_restore (&thread_list, &mock_thread);
1529 /* Add the mock inferior to the inferior list so that look ups by
1530 target+ptid can find it. */
1531 scoped_restore restore_inferior_list
1532 = make_scoped_restore (&inferior_list);
1533 inferior_list = &mock_inferior;
1535 /* Switch to the mock inferior. */
1536 scoped_restore_current_inferior restore_current_inferior;
1537 set_current_inferior (&mock_inferior);
1539 /* Push the process_stratum target so we can mock accessing
1541 push_target (&mock_target);
1543 /* Pop it again on exit (return/exception). */
1548 pop_all_targets_at_and_above (process_stratum);
1552 /* Switch to the mock thread. */
1553 scoped_restore restore_inferior_ptid
1554 = make_scoped_restore (&inferior_ptid, mock_ptid);
1556 /* Test that read one raw register from regcache_no_target will go
1557 to the target layer. */
1560 /* Find a raw register which size isn't zero. */
1561 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1563 if (register_size (gdbarch, regnum) != 0)
1567 readwrite_regcache readwrite (gdbarch);
1568 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1570 readwrite.raw_read (regnum, buf.data ());
1572 /* raw_read calls target_fetch_registers. */
1573 SELF_CHECK (mock_target.fetch_registers_called > 0);
1574 mock_target.reset ();
1576 /* Mark all raw registers valid, so the following raw registers
1577 accesses won't go to target. */
1578 for (auto i = 0; i < gdbarch_num_regs (gdbarch); i++)
1579 readwrite.raw_update (i);
1581 mock_target.reset ();
1582 /* Then, read all raw and pseudo registers, and don't expect calling
1583 to_{fetch,store}_registers. */
1584 for (int regnum = 0;
1585 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1588 if (register_size (gdbarch, regnum) == 0)
1591 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1593 SELF_CHECK (REG_VALID == readwrite.cooked_read (regnum, buf.data ()));
1595 SELF_CHECK (mock_target.fetch_registers_called == 0);
1596 SELF_CHECK (mock_target.store_registers_called == 0);
1598 /* Some SPU pseudo registers are got via TARGET_OBJECT_SPU. */
1599 if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu)
1600 SELF_CHECK (mock_target.xfer_partial_called == 0);
1602 mock_target.reset ();
1605 readonly_detached_regcache readonly (readwrite);
1607 /* GDB may go to target layer to fetch all registers and memory for
1608 readonly regcache. */
1609 mock_target.reset ();
1611 for (int regnum = 0;
1612 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1615 if (register_size (gdbarch, regnum) == 0)
1618 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1619 enum register_status status = readonly.cooked_read (regnum,
1622 if (regnum < gdbarch_num_regs (gdbarch))
1624 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1626 if (bfd_arch == bfd_arch_frv || bfd_arch == bfd_arch_h8300
1627 || bfd_arch == bfd_arch_m32c || bfd_arch == bfd_arch_sh
1628 || bfd_arch == bfd_arch_alpha || bfd_arch == bfd_arch_v850
1629 || bfd_arch == bfd_arch_msp430 || bfd_arch == bfd_arch_mep
1630 || bfd_arch == bfd_arch_mips || bfd_arch == bfd_arch_v850_rh850
1631 || bfd_arch == bfd_arch_tic6x || bfd_arch == bfd_arch_mn10300
1632 || bfd_arch == bfd_arch_rl78 || bfd_arch == bfd_arch_score
1633 || bfd_arch == bfd_arch_riscv)
1635 /* Raw registers. If raw registers are not in save_reggroup,
1636 their status are unknown. */
1637 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1638 SELF_CHECK (status == REG_VALID);
1640 SELF_CHECK (status == REG_UNKNOWN);
1643 SELF_CHECK (status == REG_VALID);
1647 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1648 SELF_CHECK (status == REG_VALID);
1651 /* If pseudo registers are not in save_reggroup, some of
1652 them can be computed from saved raw registers, but some
1653 of them are unknown. */
1654 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1656 if (bfd_arch == bfd_arch_frv
1657 || bfd_arch == bfd_arch_m32c
1658 || bfd_arch == bfd_arch_mep
1659 || bfd_arch == bfd_arch_sh)
1660 SELF_CHECK (status == REG_VALID || status == REG_UNKNOWN);
1661 else if (bfd_arch == bfd_arch_mips
1662 || bfd_arch == bfd_arch_h8300)
1663 SELF_CHECK (status == REG_UNKNOWN);
1665 SELF_CHECK (status == REG_VALID);
1669 SELF_CHECK (mock_target.fetch_registers_called == 0);
1670 SELF_CHECK (mock_target.store_registers_called == 0);
1671 SELF_CHECK (mock_target.xfer_partial_called == 0);
1673 mock_target.reset ();
1677 /* Test regcache::cooked_write by writing some expected contents to
1678 registers, and checking that contents read from registers and the
1679 expected contents are the same. */
1682 cooked_write_test (struct gdbarch *gdbarch)
1684 /* Error out if debugging something, because we're going to push the
1685 test target, which would pop any existing target. */
1686 if (target_stack->to_stratum >= process_stratum)
1687 error (_("target already pushed"));
1689 /* Create a mock environment. A process_stratum target pushed. */
1691 target_ops_no_register mock_target;
1693 /* Push the process_stratum target so we can mock accessing
1695 push_target (&mock_target);
1697 /* Pop it again on exit (return/exception). */
1702 pop_all_targets_at_and_above (process_stratum);
1706 readwrite_regcache readwrite (gdbarch);
1708 const int num_regs = (gdbarch_num_regs (gdbarch)
1709 + gdbarch_num_pseudo_regs (gdbarch));
1711 for (auto regnum = 0; regnum < num_regs; regnum++)
1713 if (register_size (gdbarch, regnum) == 0
1714 || gdbarch_cannot_store_register (gdbarch, regnum))
1717 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1719 if ((bfd_arch == bfd_arch_sparc
1720 /* SPARC64_CWP_REGNUM, SPARC64_PSTATE_REGNUM,
1721 SPARC64_ASI_REGNUM and SPARC64_CCR_REGNUM are hard to test. */
1722 && gdbarch_ptr_bit (gdbarch) == 64
1723 && (regnum >= gdbarch_num_regs (gdbarch)
1724 && regnum <= gdbarch_num_regs (gdbarch) + 4))
1725 || (bfd_arch == bfd_arch_spu
1726 /* SPU pseudo registers except SPU_SP_REGNUM are got by
1727 TARGET_OBJECT_SPU. */
1728 && regnum >= gdbarch_num_regs (gdbarch) && regnum != 130))
1731 std::vector<gdb_byte> expected (register_size (gdbarch, regnum), 0);
1732 std::vector<gdb_byte> buf (register_size (gdbarch, regnum), 0);
1733 const auto type = register_type (gdbarch, regnum);
1735 if (TYPE_CODE (type) == TYPE_CODE_FLT
1736 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1738 /* Generate valid float format. */
1739 target_float_from_string (expected.data (), type, "1.25");
1741 else if (TYPE_CODE (type) == TYPE_CODE_INT
1742 || TYPE_CODE (type) == TYPE_CODE_ARRAY
1743 || TYPE_CODE (type) == TYPE_CODE_PTR
1744 || TYPE_CODE (type) == TYPE_CODE_UNION
1745 || TYPE_CODE (type) == TYPE_CODE_STRUCT)
1747 if (bfd_arch == bfd_arch_ia64
1748 || (regnum >= gdbarch_num_regs (gdbarch)
1749 && (bfd_arch == bfd_arch_xtensa
1750 || bfd_arch == bfd_arch_bfin
1751 || bfd_arch == bfd_arch_m32c
1752 /* m68hc11 pseudo registers are in memory. */
1753 || bfd_arch == bfd_arch_m68hc11
1754 || bfd_arch == bfd_arch_m68hc12
1755 || bfd_arch == bfd_arch_s390))
1756 || (bfd_arch == bfd_arch_frv
1757 /* FRV pseudo registers except iacc0. */
1758 && regnum > gdbarch_num_regs (gdbarch)))
1760 /* Skip setting the expected values for some architecture
1763 else if (bfd_arch == bfd_arch_rl78 && regnum == 40)
1765 /* RL78_PC_REGNUM */
1766 for (auto j = 0; j < register_size (gdbarch, regnum) - 1; j++)
1771 for (auto j = 0; j < register_size (gdbarch, regnum); j++)
1775 else if (TYPE_CODE (type) == TYPE_CODE_FLAGS)
1777 /* No idea how to test flags. */
1782 /* If we don't know how to create the expected value for the
1783 this type, make it fail. */
1787 readwrite.cooked_write (regnum, expected.data ());
1789 SELF_CHECK (readwrite.cooked_read (regnum, buf.data ()) == REG_VALID);
1790 SELF_CHECK (expected == buf);
1794 } // namespace selftests
1795 #endif /* GDB_SELF_TEST */
1798 _initialize_regcache (void)
1800 regcache_descr_handle
1801 = gdbarch_data_register_post_init (init_regcache_descr);
1803 gdb::observers::target_changed.attach (regcache_observer_target_changed);
1804 gdb::observers::thread_ptid_changed.attach
1805 (regcache::regcache_thread_ptid_changed);
1807 add_com ("flushregs", class_maintenance, reg_flush_command,
1808 _("Force gdb to flush its register cache (maintainer command)"));
1811 selftests::register_test ("current_regcache", selftests::current_regcache_test);
1813 selftests::register_test_foreach_arch ("regcache::cooked_read_test",
1814 selftests::cooked_read_test);
1815 selftests::register_test_foreach_arch ("regcache::cooked_write_test",
1816 selftests::cooked_write_test);