1 /* Cache and manage the values of registers for GDB, the GNU debugger.
3 Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
4 2001, 2002, 2004 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
29 #include "reggroups.h"
30 #include "gdb_assert.h"
31 #include "gdb_string.h"
32 #include "gdbcmd.h" /* For maintenanceprintlist. */
37 * Here is the actual register cache.
40 /* Per-architecture object describing the layout of a register cache.
41 Computed once when the architecture is created */
43 struct gdbarch_data *regcache_descr_handle;
47 /* The architecture this descriptor belongs to. */
48 struct gdbarch *gdbarch;
50 /* Is this a ``legacy'' register cache? Such caches reserve space
51 for raw and pseudo registers and allow access to both. */
54 /* The raw register cache. Each raw (or hard) register is supplied
55 by the target interface. The raw cache should not contain
56 redundant information - if the PC is constructed from two
57 registers then those regigisters and not the PC lives in the raw
60 long sizeof_raw_registers;
61 long sizeof_raw_register_valid_p;
63 /* The cooked register space. Each cooked register in the range
64 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
65 register. The remaining [NR_RAW_REGISTERS
66 .. NR_COOKED_REGISTERS) (a.k.a. pseudo regiters) are mapped onto
67 both raw registers and memory by the architecture methods
68 gdbarch_register_read and gdbarch_register_write. */
69 int nr_cooked_registers;
70 long sizeof_cooked_registers;
71 long sizeof_cooked_register_valid_p;
73 /* Offset and size (in 8 bit bytes), of reach register in the
74 register cache. All registers (including those in the range
75 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an offset.
76 Assigning all registers an offset makes it possible to keep
77 legacy code, such as that found in read_register_bytes() and
78 write_register_bytes() working. */
79 long *register_offset;
80 long *sizeof_register;
82 /* Cached table containing the type of each register. */
83 struct type **register_type;
87 init_legacy_regcache_descr (struct gdbarch *gdbarch,
88 struct regcache_descr *descr)
91 /* FIXME: cagney/2002-05-11: gdbarch_data() should take that
92 ``gdbarch'' as a parameter. */
93 gdb_assert (gdbarch != NULL);
95 /* Compute the offset of each register. Legacy architectures define
96 DEPRECATED_REGISTER_BYTE() so use that. */
97 /* FIXME: cagney/2002-11-07: Instead of using
98 DEPRECATED_REGISTER_BYTE() this code should, as is done in
99 init_regcache_descr(), compute the offets at runtime. This
100 currently isn't possible as some ISAs define overlapping register
101 regions - see the mess in read_register_bytes() and
102 write_register_bytes() registers. */
103 descr->sizeof_register
104 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
105 descr->register_offset
106 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
107 for (i = 0; i < descr->nr_cooked_registers; i++)
109 /* FIXME: cagney/2001-12-04: This code shouldn't need to use
110 DEPRECATED_REGISTER_BYTE(). Unfortunately, legacy code likes
111 to lay the buffer out so that certain registers just happen
112 to overlap. Ulgh! New targets use gdbarch's register
113 read/write and entirely avoid this uglyness. */
114 descr->register_offset[i] = DEPRECATED_REGISTER_BYTE (i);
115 descr->sizeof_register[i] = DEPRECATED_REGISTER_RAW_SIZE (i);
116 gdb_assert (MAX_REGISTER_SIZE >= DEPRECATED_REGISTER_RAW_SIZE (i));
117 gdb_assert (MAX_REGISTER_SIZE >= DEPRECATED_REGISTER_VIRTUAL_SIZE (i));
120 /* Compute the real size of the register buffer. Start out by
121 trusting DEPRECATED_REGISTER_BYTES, but then adjust it upwards
122 should that be found to not be sufficient. */
123 /* FIXME: cagney/2002-11-05: Instead of using the macro
124 DEPRECATED_REGISTER_BYTES, this code should, as is done in
125 init_regcache_descr(), compute the total number of register bytes
126 using the accumulated offsets. */
127 descr->sizeof_cooked_registers = DEPRECATED_REGISTER_BYTES; /* OK */
128 for (i = 0; i < descr->nr_cooked_registers; i++)
131 /* Keep extending the buffer so that there is always enough
132 space for all registers. The comparison is necessary since
133 legacy code is free to put registers in random places in the
134 buffer separated by holes. Once DEPRECATED_REGISTER_BYTE()
135 is killed this can be greatly simplified. */
136 regend = descr->register_offset[i] + descr->sizeof_register[i];
137 if (descr->sizeof_cooked_registers < regend)
138 descr->sizeof_cooked_registers = regend;
140 /* FIXME: cagney/2002-05-11: Shouldn't be including pseudo-registers
141 in the register cache. Unfortunately some architectures still
142 rely on this and the pseudo_register_write() method. */
143 descr->sizeof_raw_registers = descr->sizeof_cooked_registers;
147 init_regcache_descr (struct gdbarch *gdbarch)
150 struct regcache_descr *descr;
151 gdb_assert (gdbarch != NULL);
153 /* Create an initial, zero filled, table. */
154 descr = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct regcache_descr);
155 descr->gdbarch = gdbarch;
157 /* Total size of the register space. The raw registers are mapped
158 directly onto the raw register cache while the pseudo's are
159 either mapped onto raw-registers or memory. */
160 descr->nr_cooked_registers = NUM_REGS + NUM_PSEUDO_REGS;
161 descr->sizeof_cooked_register_valid_p = NUM_REGS + NUM_PSEUDO_REGS;
163 /* Fill in a table of register types. */
165 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, struct type *);
166 for (i = 0; i < descr->nr_cooked_registers; i++)
168 if (gdbarch_register_type_p (gdbarch))
170 gdb_assert (!DEPRECATED_REGISTER_VIRTUAL_TYPE_P ()); /* OK */
171 descr->register_type[i] = gdbarch_register_type (gdbarch, i);
174 descr->register_type[i] = DEPRECATED_REGISTER_VIRTUAL_TYPE (i); /* OK */
177 /* Construct a strictly RAW register cache. Don't allow pseudo's
178 into the register cache. */
179 descr->nr_raw_registers = NUM_REGS;
181 /* FIXME: cagney/2002-08-13: Overallocate the register_valid_p
182 array. This pretects GDB from erant code that accesses elements
183 of the global register_valid_p[] array in the range [NUM_REGS
184 .. NUM_REGS + NUM_PSEUDO_REGS). */
185 descr->sizeof_raw_register_valid_p = descr->sizeof_cooked_register_valid_p;
187 /* If an old style architecture, fill in the remainder of the
188 register cache descriptor using the register macros. */
189 /* NOTE: cagney/2003-06-29: If either of DEPRECATED_REGISTER_BYTE or
190 DEPRECATED_REGISTER_RAW_SIZE are still present, things are most likely
191 totally screwed. Ex: an architecture with raw register sizes
192 smaller than what DEPRECATED_REGISTER_BYTE indicates; non
193 monotonic DEPRECATED_REGISTER_BYTE values. For GDB 6 check for
194 these nasty methods and fall back to legacy code when present.
196 if ((!gdbarch_pseudo_register_read_p (gdbarch)
197 && !gdbarch_pseudo_register_write_p (gdbarch)
198 && !gdbarch_register_type_p (gdbarch))
199 || DEPRECATED_REGISTER_BYTE_P ()
200 || DEPRECATED_REGISTER_RAW_SIZE_P ())
203 init_legacy_regcache_descr (gdbarch, descr);
207 /* Lay out the register cache.
209 NOTE: cagney/2002-05-22: Only register_type() is used when
210 constructing the register cache. It is assumed that the
211 register's raw size, virtual size and type length are all the
216 descr->sizeof_register
217 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
218 descr->register_offset
219 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
220 for (i = 0; i < descr->nr_cooked_registers; i++)
222 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
223 descr->register_offset[i] = offset;
224 offset += descr->sizeof_register[i];
225 gdb_assert (MAX_REGISTER_SIZE >= descr->sizeof_register[i]);
227 /* Set the real size of the register cache buffer. */
228 descr->sizeof_cooked_registers = offset;
231 /* FIXME: cagney/2002-05-22: Should only need to allocate space for
232 the raw registers. Unfortunately some code still accesses the
233 register array directly using the global registers[]. Until that
234 code has been purged, play safe and over allocating the register
236 descr->sizeof_raw_registers = descr->sizeof_cooked_registers;
238 /* Sanity check. Confirm that there is agreement between the
239 regcache and the target's redundant DEPRECATED_REGISTER_BYTE (new
240 targets should not even be defining it). */
241 for (i = 0; i < descr->nr_cooked_registers; i++)
243 if (DEPRECATED_REGISTER_BYTE_P ())
244 gdb_assert (descr->register_offset[i] == DEPRECATED_REGISTER_BYTE (i));
246 gdb_assert (descr->sizeof_register[i] == DEPRECATED_REGISTER_RAW_SIZE (i));
247 gdb_assert (descr->sizeof_register[i] == DEPRECATED_REGISTER_VIRTUAL_SIZE (i));
250 /* gdb_assert (descr->sizeof_raw_registers == DEPRECATED_REGISTER_BYTES (i)); */
255 static struct regcache_descr *
256 regcache_descr (struct gdbarch *gdbarch)
258 return gdbarch_data (gdbarch, regcache_descr_handle);
261 /* Utility functions returning useful register attributes stored in
262 the regcache descr. */
265 register_type (struct gdbarch *gdbarch, int regnum)
267 struct regcache_descr *descr = regcache_descr (gdbarch);
268 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
269 return descr->register_type[regnum];
272 /* Utility functions returning useful register attributes stored in
273 the regcache descr. */
276 register_size (struct gdbarch *gdbarch, int regnum)
278 struct regcache_descr *descr = regcache_descr (gdbarch);
280 gdb_assert (regnum >= 0 && regnum < (NUM_REGS + NUM_PSEUDO_REGS));
281 size = descr->sizeof_register[regnum];
282 /* NB: The deprecated DEPRECATED_REGISTER_RAW_SIZE, if not provided, defaults
283 to the size of the register's type. */
284 gdb_assert (size == DEPRECATED_REGISTER_RAW_SIZE (regnum)); /* OK */
285 /* NB: Don't check the register's virtual size. It, in say the case
286 of the MIPS, may not match the raw size! */
290 /* The register cache for storing raw register values. */
294 struct regcache_descr *descr;
295 /* The register buffers. A read-only register cache can hold the
296 full [0 .. NUM_REGS + NUM_PSEUDO_REGS) while a read/write
297 register cache can only hold [0 .. NUM_REGS). */
299 char *register_valid_p;
300 /* Is this a read-only cache? A read-only cache is used for saving
301 the target's register state (e.g, across an inferior function
302 call or just before forcing a function return). A read-only
303 cache can only be updated via the methods regcache_dup() and
304 regcache_cpy(). The actual contents are determined by the
305 reggroup_save and reggroup_restore methods. */
310 regcache_xmalloc (struct gdbarch *gdbarch)
312 struct regcache_descr *descr;
313 struct regcache *regcache;
314 gdb_assert (gdbarch != NULL);
315 descr = regcache_descr (gdbarch);
316 regcache = XMALLOC (struct regcache);
317 regcache->descr = descr;
319 = XCALLOC (descr->sizeof_raw_registers, char);
320 regcache->register_valid_p
321 = XCALLOC (descr->sizeof_raw_register_valid_p, char);
322 regcache->readonly_p = 1;
327 regcache_xfree (struct regcache *regcache)
329 if (regcache == NULL)
331 xfree (regcache->registers);
332 xfree (regcache->register_valid_p);
337 do_regcache_xfree (void *data)
339 regcache_xfree (data);
343 make_cleanup_regcache_xfree (struct regcache *regcache)
345 return make_cleanup (do_regcache_xfree, regcache);
348 /* Return REGCACHE's architecture. */
351 get_regcache_arch (const struct regcache *regcache)
353 return regcache->descr->gdbarch;
356 /* Return a pointer to register REGNUM's buffer cache. */
359 register_buffer (const struct regcache *regcache, int regnum)
361 return regcache->registers + regcache->descr->register_offset[regnum];
365 regcache_save (struct regcache *dst, regcache_cooked_read_ftype *cooked_read,
368 struct gdbarch *gdbarch = dst->descr->gdbarch;
369 char buf[MAX_REGISTER_SIZE];
371 /* The DST should be `read-only', if it wasn't then the save would
372 end up trying to write the register values back out to the
374 gdb_assert (dst->readonly_p);
375 /* Clear the dest. */
376 memset (dst->registers, 0, dst->descr->sizeof_cooked_registers);
377 memset (dst->register_valid_p, 0, dst->descr->sizeof_cooked_register_valid_p);
378 /* Copy over any registers (identified by their membership in the
379 save_reggroup) and mark them as valid. The full [0 .. NUM_REGS +
380 NUM_PSEUDO_REGS) range is checked since some architectures need
381 to save/restore `cooked' registers that live in memory. */
382 for (regnum = 0; regnum < dst->descr->nr_cooked_registers; regnum++)
384 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
386 int valid = cooked_read (src, regnum, buf);
389 memcpy (register_buffer (dst, regnum), buf,
390 register_size (gdbarch, regnum));
391 dst->register_valid_p[regnum] = 1;
398 regcache_restore (struct regcache *dst,
399 regcache_cooked_read_ftype *cooked_read,
402 struct gdbarch *gdbarch = dst->descr->gdbarch;
403 char buf[MAX_REGISTER_SIZE];
405 /* The dst had better not be read-only. If it is, the `restore'
406 doesn't make much sense. */
407 gdb_assert (!dst->readonly_p);
408 /* Copy over any registers, being careful to only restore those that
409 were both saved and need to be restored. The full [0 .. NUM_REGS
410 + NUM_PSEUDO_REGS) range is checked since some architectures need
411 to save/restore `cooked' registers that live in memory. */
412 for (regnum = 0; regnum < dst->descr->nr_cooked_registers; regnum++)
414 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
416 int valid = cooked_read (src, regnum, buf);
418 regcache_cooked_write (dst, regnum, buf);
424 do_cooked_read (void *src, int regnum, void *buf)
426 struct regcache *regcache = src;
427 if (!regcache->register_valid_p[regnum] && regcache->readonly_p)
428 /* Don't even think about fetching a register from a read-only
429 cache when the register isn't yet valid. There isn't a target
430 from which the register value can be fetched. */
432 regcache_cooked_read (regcache, regnum, buf);
438 regcache_cpy (struct regcache *dst, struct regcache *src)
442 gdb_assert (src != NULL && dst != NULL);
443 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
444 gdb_assert (src != dst);
445 gdb_assert (src->readonly_p || dst->readonly_p);
446 if (!src->readonly_p)
447 regcache_save (dst, do_cooked_read, src);
448 else if (!dst->readonly_p)
449 regcache_restore (dst, do_cooked_read, src);
451 regcache_cpy_no_passthrough (dst, src);
455 regcache_cpy_no_passthrough (struct regcache *dst, struct regcache *src)
458 gdb_assert (src != NULL && dst != NULL);
459 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
460 /* NOTE: cagney/2002-05-17: Don't let the caller do a no-passthrough
461 move of data into the current_regcache(). Doing this would be
462 silly - it would mean that valid_p would be completely invalid. */
463 gdb_assert (dst != current_regcache);
464 memcpy (dst->registers, src->registers, dst->descr->sizeof_raw_registers);
465 memcpy (dst->register_valid_p, src->register_valid_p,
466 dst->descr->sizeof_raw_register_valid_p);
470 regcache_dup (struct regcache *src)
472 struct regcache *newbuf;
473 gdb_assert (current_regcache != NULL);
474 newbuf = regcache_xmalloc (src->descr->gdbarch);
475 regcache_cpy (newbuf, src);
480 regcache_dup_no_passthrough (struct regcache *src)
482 struct regcache *newbuf;
483 gdb_assert (current_regcache != NULL);
484 newbuf = regcache_xmalloc (src->descr->gdbarch);
485 regcache_cpy_no_passthrough (newbuf, src);
490 regcache_valid_p (struct regcache *regcache, int regnum)
492 gdb_assert (regcache != NULL);
493 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
494 return regcache->register_valid_p[regnum];
498 deprecated_grub_regcache_for_registers (struct regcache *regcache)
500 return regcache->registers;
503 /* Global structure containing the current regcache. */
504 /* FIXME: cagney/2002-05-11: The two global arrays registers[] and
505 deprecated_register_valid[] currently point into this structure. */
506 struct regcache *current_regcache;
508 /* NOTE: this is a write-through cache. There is no "dirty" bit for
509 recording if the register values have been changed (eg. by the
510 user). Therefore all registers must be written back to the
511 target when appropriate. */
513 /* REGISTERS contains the cached register values (in target byte order). */
515 char *deprecated_registers;
517 /* DEPRECATED_REGISTER_VALID is 0 if the register needs to be fetched,
518 1 if it has been fetched, and
519 -1 if the register value was not available.
521 "Not available" indicates that the target is not not able to supply
522 the register at this state. The register may become available at a
523 later time (after the next resume). This often occures when GDB is
524 manipulating a target that contains only a snapshot of the entire
525 system being debugged - some of the registers in such a system may
526 not have been saved. */
528 signed char *deprecated_register_valid;
530 /* The thread/process associated with the current set of registers. */
532 static ptid_t registers_ptid;
540 Returns 0 if the value is not in the cache (needs fetch).
541 >0 if the value is in the cache.
542 <0 if the value is permanently unavailable (don't ask again). */
545 register_cached (int regnum)
547 return deprecated_register_valid[regnum];
550 /* Record that REGNUM's value is cached if STATE is >0, uncached but
551 fetchable if STATE is 0, and uncached and unfetchable if STATE is <0. */
554 set_register_cached (int regnum, int state)
556 gdb_assert (regnum >= 0);
557 gdb_assert (regnum < current_regcache->descr->nr_raw_registers);
558 current_regcache->register_valid_p[regnum] = state;
561 /* Return whether register REGNUM is a real register. */
564 real_register (int regnum)
566 return regnum >= 0 && regnum < NUM_REGS;
569 /* Low level examining and depositing of registers.
571 The caller is responsible for making sure that the inferior is
572 stopped before calling the fetching routines, or it will get
573 garbage. (a change from GDB version 3, in which the caller got the
574 value from the last stop). */
576 /* REGISTERS_CHANGED ()
578 Indicate that registers may have changed, so invalidate the cache. */
581 registers_changed (void)
585 registers_ptid = pid_to_ptid (-1);
587 /* Force cleanup of any alloca areas if using C alloca instead of
588 a builtin alloca. This particular call is used to clean up
589 areas allocated by low level target code which may build up
590 during lengthy interactions between gdb and the target before
591 gdb gives control to the user (ie watchpoints). */
594 for (i = 0; i < current_regcache->descr->nr_raw_registers; i++)
595 set_register_cached (i, 0);
597 if (registers_changed_hook)
598 registers_changed_hook ();
601 /* DEPRECATED_REGISTERS_FETCHED ()
603 Indicate that all registers have been fetched, so mark them all valid. */
605 /* NOTE: cagney/2001-12-04: This function does not set valid on the
606 pseudo-register range since pseudo registers are always supplied
607 using supply_register(). */
608 /* FIXME: cagney/2001-12-04: This function is DEPRECATED. The target
609 code was blatting the registers[] array and then calling this.
610 Since targets should only be using supply_register() the need for
611 this function/hack is eliminated. */
614 deprecated_registers_fetched (void)
618 for (i = 0; i < NUM_REGS; i++)
619 set_register_cached (i, 1);
620 /* Do not assume that the pseudo-regs have also been fetched.
621 Fetching all real regs NEVER accounts for pseudo-regs. */
624 /* deprecated_read_register_bytes and deprecated_write_register_bytes
625 are generally a *BAD* idea. They are inefficient because they need
626 to check for partial updates, which can only be done by scanning
627 through all of the registers and seeing if the bytes that are being
628 read/written fall inside of an invalid register. [The main reason
629 this is necessary is that register sizes can vary, so a simple
630 index won't suffice.] It is far better to call read_register_gen
631 and write_register_gen if you want to get at the raw register
632 contents, as it only takes a regnum as an argument, and therefore
633 can't do a partial register update.
635 Prior to the recent fixes to check for partial updates, both read
636 and deprecated_write_register_bytes always checked to see if any
637 registers were stale, and then called target_fetch_registers (-1)
638 to update the whole set. This caused really slowed things down for
641 /* Copy INLEN bytes of consecutive data from registers
642 starting with the INREGBYTE'th byte of register data
643 into memory at MYADDR. */
646 deprecated_read_register_bytes (int in_start, char *in_buf, int in_len)
648 int in_end = in_start + in_len;
650 char reg_buf[MAX_REGISTER_SIZE];
652 /* See if we are trying to read bytes from out-of-date registers. If so,
653 update just those registers. */
655 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
664 reg_start = DEPRECATED_REGISTER_BYTE (regnum);
665 reg_len = DEPRECATED_REGISTER_RAW_SIZE (regnum);
666 reg_end = reg_start + reg_len;
668 if (reg_end <= in_start || in_end <= reg_start)
669 /* The range the user wants to read doesn't overlap with regnum. */
672 if (REGISTER_NAME (regnum) != NULL && *REGISTER_NAME (regnum) != '\0')
673 /* Force the cache to fetch the entire register. */
674 deprecated_read_register_gen (regnum, reg_buf);
676 /* Legacy note: even though this register is ``invalid'' we
677 still need to return something. It would appear that some
678 code relies on apparent gaps in the register array also
680 /* FIXME: cagney/2001-08-18: This is just silly. It defeats
681 the entire register read/write flow of control. Must
682 resist temptation to return 0xdeadbeef. */
683 memcpy (reg_buf, &deprecated_registers[reg_start], reg_len);
685 /* Legacy note: This function, for some reason, allows a NULL
686 input buffer. If the buffer is NULL, the registers are still
687 fetched, just the final transfer is skipped. */
691 /* start = max (reg_start, in_start) */
692 if (reg_start > in_start)
697 /* end = min (reg_end, in_end) */
698 if (reg_end < in_end)
703 /* Transfer just the bytes common to both IN_BUF and REG_BUF */
704 for (byte = start; byte < end; byte++)
706 in_buf[byte - in_start] = reg_buf[byte - reg_start];
711 /* Read register REGNUM into memory at MYADDR, which must be large
712 enough for REGISTER_RAW_BYTES (REGNUM). Target byte-order. If the
713 register is known to be the size of a CORE_ADDR or smaller,
714 read_register can be used instead. */
717 legacy_read_register_gen (int regnum, char *myaddr)
719 gdb_assert (regnum >= 0 && regnum < (NUM_REGS + NUM_PSEUDO_REGS));
720 if (! ptid_equal (registers_ptid, inferior_ptid))
722 registers_changed ();
723 registers_ptid = inferior_ptid;
726 if (!register_cached (regnum))
727 target_fetch_registers (regnum);
729 memcpy (myaddr, register_buffer (current_regcache, regnum),
730 DEPRECATED_REGISTER_RAW_SIZE (regnum));
734 regcache_raw_read (struct regcache *regcache, int regnum, void *buf)
736 gdb_assert (regcache != NULL && buf != NULL);
737 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
738 if (regcache->descr->legacy_p
739 && !regcache->readonly_p)
741 gdb_assert (regcache == current_regcache);
742 /* For moment, just use underlying legacy code. Ulgh!!! This
743 silently and very indirectly updates the regcache's regcache
744 via the global deprecated_register_valid[]. */
745 legacy_read_register_gen (regnum, buf);
748 /* Make certain that the register cache is up-to-date with respect
749 to the current thread. This switching shouldn't be necessary
750 only there is still only one target side register cache. Sigh!
751 On the bright side, at least there is a regcache object. */
752 if (!regcache->readonly_p)
754 gdb_assert (regcache == current_regcache);
755 if (! ptid_equal (registers_ptid, inferior_ptid))
757 registers_changed ();
758 registers_ptid = inferior_ptid;
760 if (!register_cached (regnum))
761 target_fetch_registers (regnum);
763 /* Copy the value directly into the register cache. */
764 memcpy (buf, register_buffer (regcache, regnum),
765 regcache->descr->sizeof_register[regnum]);
769 regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
772 gdb_assert (regcache != NULL);
773 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
774 buf = alloca (regcache->descr->sizeof_register[regnum]);
775 regcache_raw_read (regcache, regnum, buf);
776 (*val) = extract_signed_integer (buf,
777 regcache->descr->sizeof_register[regnum]);
781 regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
785 gdb_assert (regcache != NULL);
786 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
787 buf = alloca (regcache->descr->sizeof_register[regnum]);
788 regcache_raw_read (regcache, regnum, buf);
789 (*val) = extract_unsigned_integer (buf,
790 regcache->descr->sizeof_register[regnum]);
794 regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
797 gdb_assert (regcache != NULL);
798 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_raw_registers);
799 buf = alloca (regcache->descr->sizeof_register[regnum]);
800 store_signed_integer (buf, regcache->descr->sizeof_register[regnum], val);
801 regcache_raw_write (regcache, regnum, buf);
805 regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
809 gdb_assert (regcache != NULL);
810 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_raw_registers);
811 buf = alloca (regcache->descr->sizeof_register[regnum]);
812 store_unsigned_integer (buf, regcache->descr->sizeof_register[regnum], val);
813 regcache_raw_write (regcache, regnum, buf);
817 deprecated_read_register_gen (int regnum, char *buf)
819 gdb_assert (current_regcache != NULL);
820 gdb_assert (current_regcache->descr->gdbarch == current_gdbarch);
821 if (current_regcache->descr->legacy_p)
823 legacy_read_register_gen (regnum, buf);
826 regcache_cooked_read (current_regcache, regnum, buf);
830 regcache_cooked_read (struct regcache *regcache, int regnum, void *buf)
832 gdb_assert (regnum >= 0);
833 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
834 if (regnum < regcache->descr->nr_raw_registers)
835 regcache_raw_read (regcache, regnum, buf);
836 else if (regcache->readonly_p
837 && regnum < regcache->descr->nr_cooked_registers
838 && regcache->register_valid_p[regnum])
839 /* Read-only register cache, perhaphs the cooked value was cached? */
840 memcpy (buf, register_buffer (regcache, regnum),
841 regcache->descr->sizeof_register[regnum]);
843 gdbarch_pseudo_register_read (regcache->descr->gdbarch, regcache,
848 regcache_cooked_read_signed (struct regcache *regcache, int regnum,
852 gdb_assert (regcache != NULL);
853 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_cooked_registers);
854 buf = alloca (regcache->descr->sizeof_register[regnum]);
855 regcache_cooked_read (regcache, regnum, buf);
856 (*val) = extract_signed_integer (buf,
857 regcache->descr->sizeof_register[regnum]);
861 regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
865 gdb_assert (regcache != NULL);
866 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_cooked_registers);
867 buf = alloca (regcache->descr->sizeof_register[regnum]);
868 regcache_cooked_read (regcache, regnum, buf);
869 (*val) = extract_unsigned_integer (buf,
870 regcache->descr->sizeof_register[regnum]);
874 regcache_cooked_write_signed (struct regcache *regcache, int regnum,
878 gdb_assert (regcache != NULL);
879 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_cooked_registers);
880 buf = alloca (regcache->descr->sizeof_register[regnum]);
881 store_signed_integer (buf, regcache->descr->sizeof_register[regnum], val);
882 regcache_cooked_write (regcache, regnum, buf);
886 regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
890 gdb_assert (regcache != NULL);
891 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_cooked_registers);
892 buf = alloca (regcache->descr->sizeof_register[regnum]);
893 store_unsigned_integer (buf, regcache->descr->sizeof_register[regnum], val);
894 regcache_cooked_write (regcache, regnum, buf);
897 /* Write register REGNUM at MYADDR to the target. MYADDR points at
898 REGISTER_RAW_BYTES(REGNUM), which must be in target byte-order. */
901 legacy_write_register_gen (int regnum, const void *myaddr)
904 gdb_assert (regnum >= 0 && regnum < (NUM_REGS + NUM_PSEUDO_REGS));
906 /* On the sparc, writing %g0 is a no-op, so we don't even want to
907 change the registers array if something writes to this register. */
908 if (CANNOT_STORE_REGISTER (regnum))
911 if (! ptid_equal (registers_ptid, inferior_ptid))
913 registers_changed ();
914 registers_ptid = inferior_ptid;
917 size = DEPRECATED_REGISTER_RAW_SIZE (regnum);
919 if (real_register (regnum))
921 /* If we have a valid copy of the register, and new value == old
922 value, then don't bother doing the actual store. */
923 if (register_cached (regnum)
924 && (memcmp (register_buffer (current_regcache, regnum), myaddr, size)
928 target_prepare_to_store ();
931 memcpy (register_buffer (current_regcache, regnum), myaddr, size);
933 set_register_cached (regnum, 1);
934 target_store_registers (regnum);
938 regcache_raw_write (struct regcache *regcache, int regnum, const void *buf)
940 gdb_assert (regcache != NULL && buf != NULL);
941 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
942 gdb_assert (!regcache->readonly_p);
944 if (regcache->descr->legacy_p)
946 /* For moment, just use underlying legacy code. Ulgh!!! This
947 silently and very indirectly updates the regcache's buffers
948 via the globals deprecated_register_valid[] and registers[]. */
949 gdb_assert (regcache == current_regcache);
950 legacy_write_register_gen (regnum, buf);
954 /* On the sparc, writing %g0 is a no-op, so we don't even want to
955 change the registers array if something writes to this register. */
956 if (CANNOT_STORE_REGISTER (regnum))
959 /* Make certain that the correct cache is selected. */
960 gdb_assert (regcache == current_regcache);
961 if (! ptid_equal (registers_ptid, inferior_ptid))
963 registers_changed ();
964 registers_ptid = inferior_ptid;
967 /* If we have a valid copy of the register, and new value == old
968 value, then don't bother doing the actual store. */
969 if (regcache_valid_p (regcache, regnum)
970 && (memcmp (register_buffer (regcache, regnum), buf,
971 regcache->descr->sizeof_register[regnum]) == 0))
974 target_prepare_to_store ();
975 memcpy (register_buffer (regcache, regnum), buf,
976 regcache->descr->sizeof_register[regnum]);
977 regcache->register_valid_p[regnum] = 1;
978 target_store_registers (regnum);
982 deprecated_write_register_gen (int regnum, char *buf)
984 gdb_assert (current_regcache != NULL);
985 gdb_assert (current_regcache->descr->gdbarch == current_gdbarch);
986 if (current_regcache->descr->legacy_p)
988 legacy_write_register_gen (regnum, buf);
991 regcache_cooked_write (current_regcache, regnum, buf);
995 regcache_cooked_write (struct regcache *regcache, int regnum, const void *buf)
997 gdb_assert (regnum >= 0);
998 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
999 if (regnum < regcache->descr->nr_raw_registers)
1000 regcache_raw_write (regcache, regnum, buf);
1002 gdbarch_pseudo_register_write (regcache->descr->gdbarch, regcache,
1006 /* Copy INLEN bytes of consecutive data from memory at MYADDR
1007 into registers starting with the MYREGSTART'th byte of register data. */
1010 deprecated_write_register_bytes (int myregstart, char *myaddr, int inlen)
1012 int myregend = myregstart + inlen;
1015 target_prepare_to_store ();
1017 /* Scan through the registers updating any that are covered by the
1018 range myregstart<=>myregend using write_register_gen, which does
1019 nice things like handling threads, and avoiding updates when the
1020 new and old contents are the same. */
1022 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1024 int regstart, regend;
1026 regstart = DEPRECATED_REGISTER_BYTE (regnum);
1027 regend = regstart + DEPRECATED_REGISTER_RAW_SIZE (regnum);
1029 /* Is this register completely outside the range the user is writing? */
1030 if (myregend <= regstart || regend <= myregstart)
1033 /* Is this register completely within the range the user is writing? */
1034 else if (myregstart <= regstart && regend <= myregend)
1035 deprecated_write_register_gen (regnum, myaddr + (regstart - myregstart));
1037 /* The register partially overlaps the range being written. */
1040 char regbuf[MAX_REGISTER_SIZE];
1041 /* What's the overlap between this register's bytes and
1042 those the caller wants to write? */
1043 int overlapstart = max (regstart, myregstart);
1044 int overlapend = min (regend, myregend);
1046 /* We may be doing a partial update of an invalid register.
1047 Update it from the target before scribbling on it. */
1048 deprecated_read_register_gen (regnum, regbuf);
1050 memcpy (&deprecated_registers[overlapstart],
1051 myaddr + (overlapstart - myregstart),
1052 overlapend - overlapstart);
1054 target_store_registers (regnum);
1059 /* Perform a partial register transfer using a read, modify, write
1062 typedef void (regcache_read_ftype) (struct regcache *regcache, int regnum,
1064 typedef void (regcache_write_ftype) (struct regcache *regcache, int regnum,
1068 regcache_xfer_part (struct regcache *regcache, int regnum,
1069 int offset, int len, void *in, const void *out,
1070 regcache_read_ftype *read, regcache_write_ftype *write)
1072 struct regcache_descr *descr = regcache->descr;
1073 bfd_byte reg[MAX_REGISTER_SIZE];
1074 gdb_assert (offset >= 0 && offset <= descr->sizeof_register[regnum]);
1075 gdb_assert (len >= 0 && offset + len <= descr->sizeof_register[regnum]);
1076 /* Something to do? */
1077 if (offset + len == 0)
1079 /* Read (when needed) ... */
1082 || offset + len < descr->sizeof_register[regnum])
1084 gdb_assert (read != NULL);
1085 read (regcache, regnum, reg);
1087 /* ... modify ... */
1089 memcpy (in, reg + offset, len);
1091 memcpy (reg + offset, out, len);
1092 /* ... write (when needed). */
1095 gdb_assert (write != NULL);
1096 write (regcache, regnum, reg);
1101 regcache_raw_read_part (struct regcache *regcache, int regnum,
1102 int offset, int len, void *buf)
1104 struct regcache_descr *descr = regcache->descr;
1105 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
1106 regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
1107 regcache_raw_read, regcache_raw_write);
1111 regcache_raw_write_part (struct regcache *regcache, int regnum,
1112 int offset, int len, const void *buf)
1114 struct regcache_descr *descr = regcache->descr;
1115 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
1116 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
1117 regcache_raw_read, regcache_raw_write);
1121 regcache_cooked_read_part (struct regcache *regcache, int regnum,
1122 int offset, int len, void *buf)
1124 struct regcache_descr *descr = regcache->descr;
1125 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1126 regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
1127 regcache_cooked_read, regcache_cooked_write);
1131 regcache_cooked_write_part (struct regcache *regcache, int regnum,
1132 int offset, int len, const void *buf)
1134 struct regcache_descr *descr = regcache->descr;
1135 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1136 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
1137 regcache_cooked_read, regcache_cooked_write);
1140 /* Hack to keep code that view the register buffer as raw bytes
1144 register_offset_hack (struct gdbarch *gdbarch, int regnum)
1146 struct regcache_descr *descr = regcache_descr (gdbarch);
1147 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1148 return descr->register_offset[regnum];
1151 /* Return the contents of register REGNUM as an unsigned integer. */
1154 read_register (int regnum)
1156 char *buf = alloca (DEPRECATED_REGISTER_RAW_SIZE (regnum));
1157 deprecated_read_register_gen (regnum, buf);
1158 return (extract_unsigned_integer (buf, DEPRECATED_REGISTER_RAW_SIZE (regnum)));
1162 read_register_pid (int regnum, ptid_t ptid)
1168 if (ptid_equal (ptid, inferior_ptid))
1169 return read_register (regnum);
1171 save_ptid = inferior_ptid;
1173 inferior_ptid = ptid;
1175 retval = read_register (regnum);
1177 inferior_ptid = save_ptid;
1182 /* Store VALUE into the raw contents of register number REGNUM. */
1185 write_register (int regnum, LONGEST val)
1189 size = DEPRECATED_REGISTER_RAW_SIZE (regnum);
1190 buf = alloca (size);
1191 store_signed_integer (buf, size, (LONGEST) val);
1192 deprecated_write_register_gen (regnum, buf);
1196 write_register_pid (int regnum, CORE_ADDR val, ptid_t ptid)
1200 if (ptid_equal (ptid, inferior_ptid))
1202 write_register (regnum, val);
1206 save_ptid = inferior_ptid;
1208 inferior_ptid = ptid;
1210 write_register (regnum, val);
1212 inferior_ptid = save_ptid;
1215 /* FIXME: kettenis/20030828: We should get rid of supply_register and
1216 regcache_collect in favour of regcache_raw_supply and
1217 regcache_raw_collect. */
1219 /* SUPPLY_REGISTER()
1221 Record that register REGNUM contains VAL. This is used when the
1222 value is obtained from the inferior or core dump, so there is no
1223 need to store the value there.
1225 If VAL is a NULL pointer, then it's probably an unsupported register.
1226 We just set its value to all zeros. We might want to record this
1227 fact, and report it to the users of read_register and friends. */
1230 supply_register (int regnum, const void *val)
1232 regcache_raw_supply (current_regcache, regnum, val);
1234 /* On some architectures, e.g. HPPA, there are a few stray bits in
1235 some registers, that the rest of the code would like to ignore. */
1237 /* NOTE: cagney/2001-03-16: The macro CLEAN_UP_REGISTER_VALUE is
1238 going to be deprecated. Instead architectures will leave the raw
1239 register value as is and instead clean things up as they pass
1240 through the method gdbarch_pseudo_register_read() clean up the
1243 #ifdef DEPRECATED_CLEAN_UP_REGISTER_VALUE
1244 DEPRECATED_CLEAN_UP_REGISTER_VALUE \
1245 (regnum, register_buffer (current_regcache, regnum));
1250 regcache_collect (int regnum, void *buf)
1252 regcache_raw_collect (current_regcache, regnum, buf);
1255 /* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
1258 regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
1263 gdb_assert (regcache != NULL);
1264 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
1265 gdb_assert (!regcache->readonly_p);
1267 /* FIXME: kettenis/20030828: It shouldn't be necessary to handle
1268 CURRENT_REGCACHE specially here. */
1269 if (regcache == current_regcache
1270 && !ptid_equal (registers_ptid, inferior_ptid))
1272 registers_changed ();
1273 registers_ptid = inferior_ptid;
1276 regbuf = register_buffer (regcache, regnum);
1277 size = regcache->descr->sizeof_register[regnum];
1280 memcpy (regbuf, buf, size);
1282 memset (regbuf, 0, size);
1284 /* Mark the register as cached. */
1285 regcache->register_valid_p[regnum] = 1;
1288 /* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1291 regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
1296 gdb_assert (regcache != NULL && buf != NULL);
1297 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
1299 regbuf = register_buffer (regcache, regnum);
1300 size = regcache->descr->sizeof_register[regnum];
1301 memcpy (buf, regbuf, size);
1305 /* read_pc, write_pc, read_sp, deprecated_read_fp, etc. Special
1306 handling for registers PC, SP, and FP. */
1308 /* NOTE: cagney/2001-02-18: The functions read_pc_pid(), read_pc(),
1309 read_sp(), and deprecated_read_fp(), will eventually be replaced by
1310 per-frame methods. Instead of relying on the global INFERIOR_PTID,
1311 they will use the contextual information provided by the FRAME.
1312 These functions do not belong in the register cache. */
1314 /* NOTE: cagney/2003-06-07: The functions generic_target_write_pc(),
1315 write_pc_pid(), write_pc(), and deprecated_read_fp(), all need to
1316 be replaced by something that does not rely on global state. But
1320 read_pc_pid (ptid_t ptid)
1322 ptid_t saved_inferior_ptid;
1325 /* In case ptid != inferior_ptid. */
1326 saved_inferior_ptid = inferior_ptid;
1327 inferior_ptid = ptid;
1329 if (TARGET_READ_PC_P ())
1330 pc_val = TARGET_READ_PC (ptid);
1331 /* Else use per-frame method on get_current_frame. */
1332 else if (PC_REGNUM >= 0)
1334 CORE_ADDR raw_val = read_register_pid (PC_REGNUM, ptid);
1335 CORE_ADDR pc_val = ADDR_BITS_REMOVE (raw_val);
1339 internal_error (__FILE__, __LINE__, "read_pc_pid: Unable to find PC");
1341 inferior_ptid = saved_inferior_ptid;
1348 return read_pc_pid (inferior_ptid);
1352 generic_target_write_pc (CORE_ADDR pc, ptid_t ptid)
1355 write_register_pid (PC_REGNUM, pc, ptid);
1357 internal_error (__FILE__, __LINE__,
1358 "generic_target_write_pc");
1362 write_pc_pid (CORE_ADDR pc, ptid_t ptid)
1364 ptid_t saved_inferior_ptid;
1366 /* In case ptid != inferior_ptid. */
1367 saved_inferior_ptid = inferior_ptid;
1368 inferior_ptid = ptid;
1370 TARGET_WRITE_PC (pc, ptid);
1372 inferior_ptid = saved_inferior_ptid;
1376 write_pc (CORE_ADDR pc)
1378 write_pc_pid (pc, inferior_ptid);
1381 /* Cope with strage ways of getting to the stack and frame pointers */
1386 if (TARGET_READ_SP_P ())
1387 return TARGET_READ_SP ();
1388 else if (gdbarch_unwind_sp_p (current_gdbarch))
1389 return get_frame_sp (get_current_frame ());
1390 else if (SP_REGNUM >= 0)
1391 /* Try SP_REGNUM last: this makes all sorts of [wrong] assumptions
1392 about the architecture so put it at the end. */
1393 return read_register (SP_REGNUM);
1394 internal_error (__FILE__, __LINE__, "read_sp: Unable to find SP");
1398 deprecated_write_sp (CORE_ADDR val)
1400 gdb_assert (SP_REGNUM >= 0);
1401 write_register (SP_REGNUM, val);
1405 deprecated_read_fp (void)
1407 if (DEPRECATED_TARGET_READ_FP_P ())
1408 return DEPRECATED_TARGET_READ_FP ();
1409 else if (DEPRECATED_FP_REGNUM >= 0)
1410 return read_register (DEPRECATED_FP_REGNUM);
1412 internal_error (__FILE__, __LINE__, "deprecated_read_fp");
1416 reg_flush_command (char *command, int from_tty)
1418 /* Force-flush the register cache. */
1419 registers_changed ();
1421 printf_filtered ("Register cache flushed.\n");
1425 build_regcache (void)
1427 current_regcache = regcache_xmalloc (current_gdbarch);
1428 current_regcache->readonly_p = 0;
1429 deprecated_registers = deprecated_grub_regcache_for_registers (current_regcache);
1430 deprecated_register_valid = current_regcache->register_valid_p;
1434 dump_endian_bytes (struct ui_file *file, enum bfd_endian endian,
1435 const unsigned char *buf, long len)
1440 case BFD_ENDIAN_BIG:
1441 for (i = 0; i < len; i++)
1442 fprintf_unfiltered (file, "%02x", buf[i]);
1444 case BFD_ENDIAN_LITTLE:
1445 for (i = len - 1; i >= 0; i--)
1446 fprintf_unfiltered (file, "%02x", buf[i]);
1449 internal_error (__FILE__, __LINE__, "Bad switch");
1453 enum regcache_dump_what
1455 regcache_dump_none, regcache_dump_raw, regcache_dump_cooked, regcache_dump_groups
1459 regcache_dump (struct regcache *regcache, struct ui_file *file,
1460 enum regcache_dump_what what_to_dump)
1462 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
1463 struct gdbarch *gdbarch = regcache->descr->gdbarch;
1465 int footnote_nr = 0;
1466 int footnote_register_size = 0;
1467 int footnote_register_offset = 0;
1468 int footnote_register_type_name_null = 0;
1469 long register_offset = 0;
1470 unsigned char buf[MAX_REGISTER_SIZE];
1473 fprintf_unfiltered (file, "legacy_p %d\n", regcache->descr->legacy_p);
1474 fprintf_unfiltered (file, "nr_raw_registers %d\n",
1475 regcache->descr->nr_raw_registers);
1476 fprintf_unfiltered (file, "nr_cooked_registers %d\n",
1477 regcache->descr->nr_cooked_registers);
1478 fprintf_unfiltered (file, "sizeof_raw_registers %ld\n",
1479 regcache->descr->sizeof_raw_registers);
1480 fprintf_unfiltered (file, "sizeof_raw_register_valid_p %ld\n",
1481 regcache->descr->sizeof_raw_register_valid_p);
1482 fprintf_unfiltered (file, "NUM_REGS %d\n", NUM_REGS);
1483 fprintf_unfiltered (file, "NUM_PSEUDO_REGS %d\n", NUM_PSEUDO_REGS);
1486 gdb_assert (regcache->descr->nr_cooked_registers
1487 == (NUM_REGS + NUM_PSEUDO_REGS));
1489 for (regnum = -1; regnum < regcache->descr->nr_cooked_registers; regnum++)
1493 fprintf_unfiltered (file, " %-10s", "Name");
1496 const char *p = REGISTER_NAME (regnum);
1499 else if (p[0] == '\0')
1501 fprintf_unfiltered (file, " %-10s", p);
1506 fprintf_unfiltered (file, " %4s", "Nr");
1508 fprintf_unfiltered (file, " %4d", regnum);
1510 /* Relative number. */
1512 fprintf_unfiltered (file, " %4s", "Rel");
1513 else if (regnum < NUM_REGS)
1514 fprintf_unfiltered (file, " %4d", regnum);
1516 fprintf_unfiltered (file, " %4d", (regnum - NUM_REGS));
1520 fprintf_unfiltered (file, " %6s ", "Offset");
1523 fprintf_unfiltered (file, " %6ld",
1524 regcache->descr->register_offset[regnum]);
1525 if (register_offset != regcache->descr->register_offset[regnum]
1526 || register_offset != DEPRECATED_REGISTER_BYTE (regnum)
1528 && (regcache->descr->register_offset[regnum]
1529 != (regcache->descr->register_offset[regnum - 1]
1530 + regcache->descr->sizeof_register[regnum - 1])))
1533 if (!footnote_register_offset)
1534 footnote_register_offset = ++footnote_nr;
1535 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1538 fprintf_unfiltered (file, " ");
1539 register_offset = (regcache->descr->register_offset[regnum]
1540 + regcache->descr->sizeof_register[regnum]);
1545 fprintf_unfiltered (file, " %5s ", "Size");
1548 fprintf_unfiltered (file, " %5ld",
1549 regcache->descr->sizeof_register[regnum]);
1550 if ((regcache->descr->sizeof_register[regnum]
1551 != DEPRECATED_REGISTER_RAW_SIZE (regnum))
1552 || (regcache->descr->sizeof_register[regnum]
1553 != DEPRECATED_REGISTER_VIRTUAL_SIZE (regnum))
1554 || (regcache->descr->sizeof_register[regnum]
1555 != TYPE_LENGTH (register_type (regcache->descr->gdbarch,
1559 if (!footnote_register_size)
1560 footnote_register_size = ++footnote_nr;
1561 fprintf_unfiltered (file, "*%d", footnote_register_size);
1564 fprintf_unfiltered (file, " ");
1574 static const char blt[] = "builtin_type";
1575 t = TYPE_NAME (register_type (regcache->descr->gdbarch, regnum));
1579 if (!footnote_register_type_name_null)
1580 footnote_register_type_name_null = ++footnote_nr;
1581 xasprintf (&n, "*%d", footnote_register_type_name_null);
1582 make_cleanup (xfree, n);
1585 /* Chop a leading builtin_type. */
1586 if (strncmp (t, blt, strlen (blt)) == 0)
1589 fprintf_unfiltered (file, " %-15s", t);
1592 /* Leading space always present. */
1593 fprintf_unfiltered (file, " ");
1596 if (what_to_dump == regcache_dump_raw)
1599 fprintf_unfiltered (file, "Raw value");
1600 else if (regnum >= regcache->descr->nr_raw_registers)
1601 fprintf_unfiltered (file, "<cooked>");
1602 else if (!regcache_valid_p (regcache, regnum))
1603 fprintf_unfiltered (file, "<invalid>");
1606 regcache_raw_read (regcache, regnum, buf);
1607 fprintf_unfiltered (file, "0x");
1608 dump_endian_bytes (file, TARGET_BYTE_ORDER, buf,
1609 DEPRECATED_REGISTER_RAW_SIZE (regnum));
1613 /* Value, cooked. */
1614 if (what_to_dump == regcache_dump_cooked)
1617 fprintf_unfiltered (file, "Cooked value");
1620 regcache_cooked_read (regcache, regnum, buf);
1621 fprintf_unfiltered (file, "0x");
1622 dump_endian_bytes (file, TARGET_BYTE_ORDER, buf,
1623 DEPRECATED_REGISTER_VIRTUAL_SIZE (regnum));
1627 /* Group members. */
1628 if (what_to_dump == regcache_dump_groups)
1631 fprintf_unfiltered (file, "Groups");
1634 const char *sep = "";
1635 struct reggroup *group;
1636 for (group = reggroup_next (gdbarch, NULL);
1638 group = reggroup_next (gdbarch, group))
1640 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1642 fprintf_unfiltered (file, "%s%s", sep, reggroup_name (group));
1649 fprintf_unfiltered (file, "\n");
1652 if (footnote_register_size)
1653 fprintf_unfiltered (file, "*%d: Inconsistent register sizes.\n",
1654 footnote_register_size);
1655 if (footnote_register_offset)
1656 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1657 footnote_register_offset);
1658 if (footnote_register_type_name_null)
1659 fprintf_unfiltered (file,
1660 "*%d: Register type's name NULL.\n",
1661 footnote_register_type_name_null);
1662 do_cleanups (cleanups);
1666 regcache_print (char *args, enum regcache_dump_what what_to_dump)
1669 regcache_dump (current_regcache, gdb_stdout, what_to_dump);
1672 struct ui_file *file = gdb_fopen (args, "w");
1674 perror_with_name ("maintenance print architecture");
1675 regcache_dump (current_regcache, file, what_to_dump);
1676 ui_file_delete (file);
1681 maintenance_print_registers (char *args, int from_tty)
1683 regcache_print (args, regcache_dump_none);
1687 maintenance_print_raw_registers (char *args, int from_tty)
1689 regcache_print (args, regcache_dump_raw);
1693 maintenance_print_cooked_registers (char *args, int from_tty)
1695 regcache_print (args, regcache_dump_cooked);
1699 maintenance_print_register_groups (char *args, int from_tty)
1701 regcache_print (args, regcache_dump_groups);
1704 extern initialize_file_ftype _initialize_regcache; /* -Wmissing-prototype */
1707 _initialize_regcache (void)
1709 regcache_descr_handle = register_gdbarch_data (init_regcache_descr);
1710 REGISTER_GDBARCH_SWAP (current_regcache);
1711 register_gdbarch_swap (&deprecated_registers, sizeof (deprecated_registers), NULL);
1712 register_gdbarch_swap (&deprecated_register_valid, sizeof (deprecated_register_valid), NULL);
1713 register_gdbarch_swap (NULL, 0, build_regcache);
1715 add_com ("flushregs", class_maintenance, reg_flush_command,
1716 "Force gdb to flush its register cache (maintainer command)");
1718 /* Initialize the thread/process associated with the current set of
1719 registers. For now, -1 is special, and means `no current process'. */
1720 registers_ptid = pid_to_ptid (-1);
1722 add_cmd ("registers", class_maintenance,
1723 maintenance_print_registers,
1724 "Print the internal register configuration.\
1725 Takes an optional file parameter.",
1726 &maintenanceprintlist);
1727 add_cmd ("raw-registers", class_maintenance,
1728 maintenance_print_raw_registers,
1729 "Print the internal register configuration including raw values.\
1730 Takes an optional file parameter.",
1731 &maintenanceprintlist);
1732 add_cmd ("cooked-registers", class_maintenance,
1733 maintenance_print_cooked_registers,
1734 "Print the internal register configuration including cooked values.\
1735 Takes an optional file parameter.",
1736 &maintenanceprintlist);
1737 add_cmd ("register-groups", class_maintenance,
1738 maintenance_print_register_groups,
1739 "Print the internal register configuration including each register's group.\
1740 Takes an optional file parameter.",
1741 &maintenanceprintlist);