* spu-tdep.c (spu_catch_start): Pass non-NULL breakpoint ops
[deliverable/binutils-gdb.git] / gdb / regcache.c
CommitLineData
32178cab 1/* Cache and manage the values of registers for GDB, the GNU debugger.
3fadccb3 2
6aba47ca 3 Copyright (C) 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000, 2001,
7b6bb8da 4 2002, 2004, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
32178cab
MS
5
6 This file is part of GDB.
7
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
32178cab
MS
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
32178cab
MS
20
21#include "defs.h"
32178cab
MS
22#include "inferior.h"
23#include "target.h"
24#include "gdbarch.h"
705152c5 25#include "gdbcmd.h"
4e052eda 26#include "regcache.h"
b59ff9d5 27#include "reggroups.h"
61a0eb5b 28#include "gdb_assert.h"
b66d6d2e 29#include "gdb_string.h"
af030b9a 30#include "gdbcmd.h" /* For maintenanceprintlist. */
f4c5303c 31#include "observer.h"
05d1431c 32#include "exceptions.h"
c21236dc 33#include "remote.h"
32178cab
MS
34
35/*
36 * DATA STRUCTURE
37 *
38 * Here is the actual register cache.
39 */
40
3fadccb3 41/* Per-architecture object describing the layout of a register cache.
0df8b418 42 Computed once when the architecture is created. */
3fadccb3
AC
43
44struct gdbarch_data *regcache_descr_handle;
45
46struct regcache_descr
47{
48 /* The architecture this descriptor belongs to. */
49 struct gdbarch *gdbarch;
50
bb1db049
AC
51 /* The raw register cache. Each raw (or hard) register is supplied
52 by the target interface. The raw cache should not contain
53 redundant information - if the PC is constructed from two
d2f0b918 54 registers then those registers and not the PC lives in the raw
bb1db049 55 cache. */
3fadccb3
AC
56 int nr_raw_registers;
57 long sizeof_raw_registers;
ee99023e 58 long sizeof_raw_register_status;
3fadccb3 59
d138e37a
AC
60 /* The cooked register space. Each cooked register in the range
61 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
62 register. The remaining [NR_RAW_REGISTERS
02f60eae 63 .. NR_COOKED_REGISTERS) (a.k.a. pseudo registers) are mapped onto
d138e37a 64 both raw registers and memory by the architecture methods
02f60eae 65 gdbarch_pseudo_register_read and gdbarch_pseudo_register_write. */
d138e37a 66 int nr_cooked_registers;
067df2e5 67 long sizeof_cooked_registers;
ee99023e 68 long sizeof_cooked_register_status;
d138e37a 69
86d31898 70 /* Offset and size (in 8 bit bytes), of each register in the
d138e37a 71 register cache. All registers (including those in the range
99e42fd8
PA
72 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an
73 offset. */
3fadccb3 74 long *register_offset;
3fadccb3 75 long *sizeof_register;
3fadccb3 76
bb425013
AC
77 /* Cached table containing the type of each register. */
78 struct type **register_type;
3fadccb3
AC
79};
80
3fadccb3
AC
81static void *
82init_regcache_descr (struct gdbarch *gdbarch)
83{
84 int i;
85 struct regcache_descr *descr;
86 gdb_assert (gdbarch != NULL);
87
bb425013 88 /* Create an initial, zero filled, table. */
116f06ea 89 descr = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct regcache_descr);
3fadccb3 90 descr->gdbarch = gdbarch;
3fadccb3 91
d138e37a
AC
92 /* Total size of the register space. The raw registers are mapped
93 directly onto the raw register cache while the pseudo's are
3fadccb3 94 either mapped onto raw-registers or memory. */
214e098a
UW
95 descr->nr_cooked_registers = gdbarch_num_regs (gdbarch)
96 + gdbarch_num_pseudo_regs (gdbarch);
ee99023e
PA
97 descr->sizeof_cooked_register_status
98 = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
3fadccb3 99
bb425013 100 /* Fill in a table of register types. */
116f06ea 101 descr->register_type
3e43a32a
MS
102 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers,
103 struct type *);
bb425013 104 for (i = 0; i < descr->nr_cooked_registers; i++)
336a3131 105 descr->register_type[i] = gdbarch_register_type (gdbarch, i);
bb425013 106
bb1db049
AC
107 /* Construct a strictly RAW register cache. Don't allow pseudo's
108 into the register cache. */
214e098a 109 descr->nr_raw_registers = gdbarch_num_regs (gdbarch);
ee99023e 110 descr->sizeof_raw_register_status = gdbarch_num_regs (gdbarch);
bb1db049 111
067df2e5 112 /* Lay out the register cache.
3fadccb3 113
bb425013
AC
114 NOTE: cagney/2002-05-22: Only register_type() is used when
115 constructing the register cache. It is assumed that the
116 register's raw size, virtual size and type length are all the
117 same. */
3fadccb3
AC
118
119 {
120 long offset = 0;
123f5f96 121
116f06ea
AC
122 descr->sizeof_register
123 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
124 descr->register_offset
125 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
99e42fd8
PA
126 for (i = 0; i < descr->nr_raw_registers; i++)
127 {
128 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
129 descr->register_offset[i] = offset;
130 offset += descr->sizeof_register[i];
131 gdb_assert (MAX_REGISTER_SIZE >= descr->sizeof_register[i]);
132 }
133 /* Set the real size of the raw register cache buffer. */
134 descr->sizeof_raw_registers = offset;
135
136 for (; i < descr->nr_cooked_registers; i++)
3fadccb3 137 {
bb425013 138 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
3fadccb3
AC
139 descr->register_offset[i] = offset;
140 offset += descr->sizeof_register[i];
123a958e 141 gdb_assert (MAX_REGISTER_SIZE >= descr->sizeof_register[i]);
3fadccb3 142 }
99e42fd8 143 /* Set the real size of the readonly register cache buffer. */
067df2e5 144 descr->sizeof_cooked_registers = offset;
3fadccb3
AC
145 }
146
3fadccb3
AC
147 return descr;
148}
149
150static struct regcache_descr *
151regcache_descr (struct gdbarch *gdbarch)
152{
153 return gdbarch_data (gdbarch, regcache_descr_handle);
154}
155
bb425013
AC
156/* Utility functions returning useful register attributes stored in
157 the regcache descr. */
158
159struct type *
160register_type (struct gdbarch *gdbarch, int regnum)
161{
162 struct regcache_descr *descr = regcache_descr (gdbarch);
123f5f96 163
bb425013
AC
164 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
165 return descr->register_type[regnum];
166}
167
0ed04cce
AC
168/* Utility functions returning useful register attributes stored in
169 the regcache descr. */
170
08a617da
AC
171int
172register_size (struct gdbarch *gdbarch, int regnum)
173{
174 struct regcache_descr *descr = regcache_descr (gdbarch);
175 int size;
123f5f96 176
f57d151a 177 gdb_assert (regnum >= 0
214e098a
UW
178 && regnum < (gdbarch_num_regs (gdbarch)
179 + gdbarch_num_pseudo_regs (gdbarch)));
08a617da 180 size = descr->sizeof_register[regnum];
08a617da
AC
181 return size;
182}
183
3fadccb3
AC
184/* The register cache for storing raw register values. */
185
186struct regcache
187{
188 struct regcache_descr *descr;
6c95b8df
PA
189
190 /* The address space of this register cache (for registers where it
191 makes sense, like PC or SP). */
192 struct address_space *aspace;
193
51b1fe4e 194 /* The register buffers. A read-only register cache can hold the
f57d151a
UW
195 full [0 .. gdbarch_num_regs + gdbarch_num_pseudo_regs) while a read/write
196 register cache can only hold [0 .. gdbarch_num_regs). */
2d522557 197 gdb_byte *registers;
ee99023e
PA
198 /* Register cache status. */
199 signed char *register_status;
2d28509a
AC
200 /* Is this a read-only cache? A read-only cache is used for saving
201 the target's register state (e.g, across an inferior function
202 call or just before forcing a function return). A read-only
203 cache can only be updated via the methods regcache_dup() and
204 regcache_cpy(). The actual contents are determined by the
205 reggroup_save and reggroup_restore methods. */
206 int readonly_p;
594f7785
UW
207 /* If this is a read-write cache, which thread's registers is
208 it connected to? */
209 ptid_t ptid;
3fadccb3
AC
210};
211
99e42fd8
PA
212static struct regcache *
213regcache_xmalloc_1 (struct gdbarch *gdbarch, struct address_space *aspace,
214 int readonly_p)
3fadccb3
AC
215{
216 struct regcache_descr *descr;
217 struct regcache *regcache;
123f5f96 218
3fadccb3
AC
219 gdb_assert (gdbarch != NULL);
220 descr = regcache_descr (gdbarch);
221 regcache = XMALLOC (struct regcache);
222 regcache->descr = descr;
99e42fd8
PA
223 regcache->readonly_p = readonly_p;
224 if (readonly_p)
225 {
226 regcache->registers
227 = XCALLOC (descr->sizeof_cooked_registers, gdb_byte);
ee99023e
PA
228 regcache->register_status
229 = XCALLOC (descr->sizeof_cooked_register_status, gdb_byte);
99e42fd8
PA
230 }
231 else
232 {
233 regcache->registers
234 = XCALLOC (descr->sizeof_raw_registers, gdb_byte);
ee99023e
PA
235 regcache->register_status
236 = XCALLOC (descr->sizeof_raw_register_status, gdb_byte);
99e42fd8 237 }
d37346f0 238 regcache->aspace = aspace;
594f7785 239 regcache->ptid = minus_one_ptid;
3fadccb3
AC
240 return regcache;
241}
242
99e42fd8
PA
243struct regcache *
244regcache_xmalloc (struct gdbarch *gdbarch, struct address_space *aspace)
245{
246 return regcache_xmalloc_1 (gdbarch, aspace, 1);
247}
248
3fadccb3
AC
249void
250regcache_xfree (struct regcache *regcache)
251{
252 if (regcache == NULL)
253 return;
51b1fe4e 254 xfree (regcache->registers);
ee99023e 255 xfree (regcache->register_status);
3fadccb3
AC
256 xfree (regcache);
257}
258
b9362cc7 259static void
36160dc4
AC
260do_regcache_xfree (void *data)
261{
262 regcache_xfree (data);
263}
264
265struct cleanup *
266make_cleanup_regcache_xfree (struct regcache *regcache)
267{
268 return make_cleanup (do_regcache_xfree, regcache);
269}
270
41d35cb0
MK
271/* Return REGCACHE's architecture. */
272
273struct gdbarch *
274get_regcache_arch (const struct regcache *regcache)
275{
276 return regcache->descr->gdbarch;
277}
278
6c95b8df
PA
279struct address_space *
280get_regcache_aspace (const struct regcache *regcache)
281{
282 return regcache->aspace;
283}
284
51b1fe4e
AC
285/* Return a pointer to register REGNUM's buffer cache. */
286
2d522557 287static gdb_byte *
9a661b68 288register_buffer (const struct regcache *regcache, int regnum)
51b1fe4e
AC
289{
290 return regcache->registers + regcache->descr->register_offset[regnum];
291}
292
2d28509a 293void
5602984a
AC
294regcache_save (struct regcache *dst, regcache_cooked_read_ftype *cooked_read,
295 void *src)
2d28509a
AC
296{
297 struct gdbarch *gdbarch = dst->descr->gdbarch;
2d522557 298 gdb_byte buf[MAX_REGISTER_SIZE];
2d28509a 299 int regnum;
123f5f96 300
2d28509a 301 /* The DST should be `read-only', if it wasn't then the save would
5602984a 302 end up trying to write the register values back out to the
2d28509a 303 target. */
2d28509a
AC
304 gdb_assert (dst->readonly_p);
305 /* Clear the dest. */
306 memset (dst->registers, 0, dst->descr->sizeof_cooked_registers);
ee99023e
PA
307 memset (dst->register_status, 0,
308 dst->descr->sizeof_cooked_register_status);
2d28509a 309 /* Copy over any registers (identified by their membership in the
f57d151a
UW
310 save_reggroup) and mark them as valid. The full [0 .. gdbarch_num_regs +
311 gdbarch_num_pseudo_regs) range is checked since some architectures need
5602984a 312 to save/restore `cooked' registers that live in memory. */
2d28509a
AC
313 for (regnum = 0; regnum < dst->descr->nr_cooked_registers; regnum++)
314 {
315 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
316 {
05d1431c 317 enum register_status status = cooked_read (src, regnum, buf);
123f5f96 318
05d1431c
PA
319 if (status == REG_VALID)
320 memcpy (register_buffer (dst, regnum), buf,
321 register_size (gdbarch, regnum));
322 else
5602984a 323 {
05d1431c
PA
324 gdb_assert (status != REG_UNKNOWN);
325
326 memset (register_buffer (dst, regnum), 0,
5602984a 327 register_size (gdbarch, regnum));
5602984a 328 }
05d1431c 329 dst->register_status[regnum] = status;
2d28509a
AC
330 }
331 }
332}
333
349d1385 334static void
5602984a
AC
335regcache_restore (struct regcache *dst,
336 regcache_cooked_read_ftype *cooked_read,
2d522557 337 void *cooked_read_context)
2d28509a
AC
338{
339 struct gdbarch *gdbarch = dst->descr->gdbarch;
2d522557 340 gdb_byte buf[MAX_REGISTER_SIZE];
2d28509a 341 int regnum;
123f5f96 342
5602984a
AC
343 /* The dst had better not be read-only. If it is, the `restore'
344 doesn't make much sense. */
2d28509a 345 gdb_assert (!dst->readonly_p);
2d28509a 346 /* Copy over any registers, being careful to only restore those that
f57d151a
UW
347 were both saved and need to be restored. The full [0 .. gdbarch_num_regs
348 + gdbarch_num_pseudo_regs) range is checked since some architectures need
5602984a
AC
349 to save/restore `cooked' registers that live in memory. */
350 for (regnum = 0; regnum < dst->descr->nr_cooked_registers; regnum++)
2d28509a 351 {
5602984a 352 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
2d28509a 353 {
349d1385 354 enum register_status status;
123f5f96 355
349d1385
DM
356 status = cooked_read (cooked_read_context, regnum, buf);
357 if (status == REG_VALID)
5602984a 358 regcache_cooked_write (dst, regnum, buf);
2d28509a
AC
359 }
360 }
361}
362
05d1431c 363static enum register_status
2d522557 364do_cooked_read (void *src, int regnum, gdb_byte *buf)
5602984a
AC
365{
366 struct regcache *regcache = src;
123f5f96 367
05d1431c 368 return regcache_cooked_read (regcache, regnum, buf);
5602984a
AC
369}
370
3fadccb3
AC
371void
372regcache_cpy (struct regcache *dst, struct regcache *src)
373{
3fadccb3
AC
374 gdb_assert (src != NULL && dst != NULL);
375 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
376 gdb_assert (src != dst);
2d28509a 377 gdb_assert (src->readonly_p || dst->readonly_p);
6c95b8df 378
2d28509a 379 if (!src->readonly_p)
5602984a 380 regcache_save (dst, do_cooked_read, src);
2d28509a 381 else if (!dst->readonly_p)
5602984a 382 regcache_restore (dst, do_cooked_read, src);
2d28509a
AC
383 else
384 regcache_cpy_no_passthrough (dst, src);
3fadccb3
AC
385}
386
387void
388regcache_cpy_no_passthrough (struct regcache *dst, struct regcache *src)
389{
3fadccb3
AC
390 gdb_assert (src != NULL && dst != NULL);
391 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
392 /* NOTE: cagney/2002-05-17: Don't let the caller do a no-passthrough
ee99023e
PA
393 move of data into a thread's regcache. Doing this would be silly
394 - it would mean that regcache->register_status would be
395 completely invalid. */
99e42fd8 396 gdb_assert (dst->readonly_p && src->readonly_p);
6c95b8df 397
99e42fd8
PA
398 memcpy (dst->registers, src->registers,
399 dst->descr->sizeof_cooked_registers);
ee99023e
PA
400 memcpy (dst->register_status, src->register_status,
401 dst->descr->sizeof_cooked_register_status);
3fadccb3
AC
402}
403
404struct regcache *
405regcache_dup (struct regcache *src)
406{
407 struct regcache *newbuf;
123f5f96 408
d37346f0 409 newbuf = regcache_xmalloc (src->descr->gdbarch, get_regcache_aspace (src));
3fadccb3
AC
410 regcache_cpy (newbuf, src);
411 return newbuf;
412}
413
3fadccb3 414int
ee99023e 415regcache_register_status (const struct regcache *regcache, int regnum)
3fadccb3
AC
416{
417 gdb_assert (regcache != NULL);
6ed7ea50
UW
418 gdb_assert (regnum >= 0);
419 if (regcache->readonly_p)
420 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
421 else
422 gdb_assert (regnum < regcache->descr->nr_raw_registers);
423
ee99023e 424 return regcache->register_status[regnum];
3fadccb3
AC
425}
426
9c5ea4d9
UW
427void
428regcache_invalidate (struct regcache *regcache, int regnum)
429{
430 gdb_assert (regcache != NULL);
431 gdb_assert (regnum >= 0);
432 gdb_assert (!regcache->readonly_p);
433 gdb_assert (regnum < regcache->descr->nr_raw_registers);
ee99023e 434 regcache->register_status[regnum] = REG_UNKNOWN;
9c5ea4d9
UW
435}
436
437
3fadccb3 438/* Global structure containing the current regcache. */
3fadccb3 439
5ebd2499 440/* NOTE: this is a write-through cache. There is no "dirty" bit for
32178cab
MS
441 recording if the register values have been changed (eg. by the
442 user). Therefore all registers must be written back to the
443 target when appropriate. */
444
c2250ad1 445struct regcache_list
594f7785 446{
c2250ad1
UW
447 struct regcache *regcache;
448 struct regcache_list *next;
449};
450
451static struct regcache_list *current_regcache;
452
453struct regcache *
e2d96639
YQ
454get_thread_arch_aspace_regcache (ptid_t ptid, struct gdbarch *gdbarch,
455 struct address_space *aspace)
c2250ad1
UW
456{
457 struct regcache_list *list;
458 struct regcache *new_regcache;
594f7785 459
c2250ad1
UW
460 for (list = current_regcache; list; list = list->next)
461 if (ptid_equal (list->regcache->ptid, ptid)
462 && get_regcache_arch (list->regcache) == gdbarch)
463 return list->regcache;
594f7785 464
e2d96639
YQ
465 new_regcache = regcache_xmalloc_1 (gdbarch, aspace, 0);
466 new_regcache->ptid = ptid;
467
468 list = xmalloc (sizeof (struct regcache_list));
469 list->regcache = new_regcache;
470 list->next = current_regcache;
471 current_regcache = list;
472
473 return new_regcache;
474}
475
476struct regcache *
477get_thread_arch_regcache (ptid_t ptid, struct gdbarch *gdbarch)
478{
479 struct address_space *aspace;
480
b78974c3
PA
481 /* For the benefit of "maint print registers" & co when debugging an
482 executable, allow dumping the regcache even when there is no
483 thread selected (target_thread_address_space internal-errors if
484 no address space is found). Note that normal user commands will
485 fail higher up on the call stack due to no
486 target_has_registers. */
487 aspace = (ptid_equal (null_ptid, ptid)
488 ? NULL
489 : target_thread_address_space (ptid));
490
e2d96639 491 return get_thread_arch_aspace_regcache (ptid, gdbarch, aspace);
594f7785
UW
492}
493
c2250ad1
UW
494static ptid_t current_thread_ptid;
495static struct gdbarch *current_thread_arch;
496
497struct regcache *
498get_thread_regcache (ptid_t ptid)
499{
500 if (!current_thread_arch || !ptid_equal (current_thread_ptid, ptid))
501 {
502 current_thread_ptid = ptid;
503 current_thread_arch = target_thread_architecture (ptid);
504 }
505
506 return get_thread_arch_regcache (ptid, current_thread_arch);
507}
508
509struct regcache *
510get_current_regcache (void)
594f7785
UW
511{
512 return get_thread_regcache (inferior_ptid);
513}
32178cab 514
32178cab 515
f4c5303c
OF
516/* Observer for the target_changed event. */
517
2c0b251b 518static void
f4c5303c
OF
519regcache_observer_target_changed (struct target_ops *target)
520{
521 registers_changed ();
522}
523
5231c1fd
PA
524/* Update global variables old ptids to hold NEW_PTID if they were
525 holding OLD_PTID. */
526static void
527regcache_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
528{
c2250ad1
UW
529 struct regcache_list *list;
530
531 for (list = current_regcache; list; list = list->next)
532 if (ptid_equal (list->regcache->ptid, old_ptid))
533 list->regcache->ptid = new_ptid;
5231c1fd
PA
534}
535
32178cab
MS
536/* Low level examining and depositing of registers.
537
538 The caller is responsible for making sure that the inferior is
539 stopped before calling the fetching routines, or it will get
540 garbage. (a change from GDB version 3, in which the caller got the
541 value from the last stop). */
542
543/* REGISTERS_CHANGED ()
544
545 Indicate that registers may have changed, so invalidate the cache. */
546
547void
e66408ed 548registers_changed_ptid (ptid_t ptid)
32178cab 549{
e66408ed 550 struct regcache_list *list, **list_link;
041274d8 551 int wildcard = ptid_equal (ptid, minus_one_ptid);
c2250ad1 552
e66408ed
PA
553 list = current_regcache;
554 list_link = &current_regcache;
555 while (list)
c2250ad1 556 {
e66408ed
PA
557 if (ptid_match (list->regcache->ptid, ptid))
558 {
559 struct regcache_list *dead = list;
560
561 *list_link = list->next;
562 regcache_xfree (list->regcache);
563 list = *list_link;
564 xfree (dead);
565 continue;
566 }
567
568 list_link = &list->next;
569 list = *list_link;
c2250ad1 570 }
32178cab 571
041274d8
PA
572 if (wildcard || ptid_equal (ptid, current_thread_ptid))
573 {
574 current_thread_ptid = null_ptid;
575 current_thread_arch = NULL;
576 }
32178cab 577
041274d8
PA
578 if (wildcard || ptid_equal (ptid, inferior_ptid))
579 {
580 /* We just deleted the regcache of the current thread. Need to
581 forget about any frames we have cached, too. */
582 reinit_frame_cache ();
583 }
584}
c2250ad1 585
041274d8
PA
586void
587registers_changed (void)
588{
589 registers_changed_ptid (minus_one_ptid);
a5d9d57d 590
32178cab
MS
591 /* Force cleanup of any alloca areas if using C alloca instead of
592 a builtin alloca. This particular call is used to clean up
593 areas allocated by low level target code which may build up
594 during lengthy interactions between gdb and the target before
595 gdb gives control to the user (ie watchpoints). */
596 alloca (0);
32178cab
MS
597}
598
05d1431c 599enum register_status
2d522557 600regcache_raw_read (struct regcache *regcache, int regnum, gdb_byte *buf)
61a0eb5b 601{
3fadccb3
AC
602 gdb_assert (regcache != NULL && buf != NULL);
603 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
3fadccb3
AC
604 /* Make certain that the register cache is up-to-date with respect
605 to the current thread. This switching shouldn't be necessary
606 only there is still only one target side register cache. Sigh!
607 On the bright side, at least there is a regcache object. */
788c8b10
PA
608 if (!regcache->readonly_p
609 && regcache_register_status (regcache, regnum) == REG_UNKNOWN)
3fadccb3 610 {
788c8b10 611 struct cleanup *old_chain = save_inferior_ptid ();
123f5f96 612
788c8b10
PA
613 inferior_ptid = regcache->ptid;
614 target_fetch_registers (regcache, regnum);
615 do_cleanups (old_chain);
616
617 /* A number of targets can't access the whole set of raw
618 registers (because the debug API provides no means to get at
619 them). */
620 if (regcache->register_status[regnum] == REG_UNKNOWN)
621 regcache->register_status[regnum] = REG_UNAVAILABLE;
3fadccb3 622 }
05d1431c
PA
623
624 if (regcache->register_status[regnum] != REG_VALID)
625 memset (buf, 0, regcache->descr->sizeof_register[regnum]);
626 else
627 memcpy (buf, register_buffer (regcache, regnum),
628 regcache->descr->sizeof_register[regnum]);
629
630 return regcache->register_status[regnum];
61a0eb5b
AC
631}
632
05d1431c 633enum register_status
28fc6740
AC
634regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
635{
2d522557 636 gdb_byte *buf;
05d1431c 637 enum register_status status;
123f5f96 638
28fc6740
AC
639 gdb_assert (regcache != NULL);
640 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
641 buf = alloca (regcache->descr->sizeof_register[regnum]);
05d1431c
PA
642 status = regcache_raw_read (regcache, regnum, buf);
643 if (status == REG_VALID)
644 *val = extract_signed_integer
645 (buf, regcache->descr->sizeof_register[regnum],
646 gdbarch_byte_order (regcache->descr->gdbarch));
647 else
648 *val = 0;
649 return status;
28fc6740
AC
650}
651
05d1431c 652enum register_status
28fc6740
AC
653regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
654 ULONGEST *val)
655{
2d522557 656 gdb_byte *buf;
05d1431c 657 enum register_status status;
123f5f96 658
28fc6740
AC
659 gdb_assert (regcache != NULL);
660 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
661 buf = alloca (regcache->descr->sizeof_register[regnum]);
05d1431c
PA
662 status = regcache_raw_read (regcache, regnum, buf);
663 if (status == REG_VALID)
664 *val = extract_unsigned_integer
665 (buf, regcache->descr->sizeof_register[regnum],
666 gdbarch_byte_order (regcache->descr->gdbarch));
667 else
668 *val = 0;
669 return status;
28fc6740
AC
670}
671
c00dcbe9
MK
672void
673regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
674{
675 void *buf;
123f5f96 676
c00dcbe9
MK
677 gdb_assert (regcache != NULL);
678 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_raw_registers);
679 buf = alloca (regcache->descr->sizeof_register[regnum]);
e17a4113
UW
680 store_signed_integer (buf, regcache->descr->sizeof_register[regnum],
681 gdbarch_byte_order (regcache->descr->gdbarch), val);
c00dcbe9
MK
682 regcache_raw_write (regcache, regnum, buf);
683}
684
685void
686regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
687 ULONGEST val)
688{
689 void *buf;
123f5f96 690
c00dcbe9
MK
691 gdb_assert (regcache != NULL);
692 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_raw_registers);
693 buf = alloca (regcache->descr->sizeof_register[regnum]);
e17a4113
UW
694 store_unsigned_integer (buf, regcache->descr->sizeof_register[regnum],
695 gdbarch_byte_order (regcache->descr->gdbarch), val);
c00dcbe9
MK
696 regcache_raw_write (regcache, regnum, buf);
697}
698
05d1431c 699enum register_status
2d522557 700regcache_cooked_read (struct regcache *regcache, int regnum, gdb_byte *buf)
68365089 701{
d138e37a 702 gdb_assert (regnum >= 0);
68365089
AC
703 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
704 if (regnum < regcache->descr->nr_raw_registers)
05d1431c 705 return regcache_raw_read (regcache, regnum, buf);
2d28509a 706 else if (regcache->readonly_p
05d1431c
PA
707 && regcache->register_status[regnum] != REG_UNKNOWN)
708 {
709 /* Read-only register cache, perhaps the cooked value was
710 cached? */
711 struct gdbarch *gdbarch = regcache->descr->gdbarch;
712
713 if (regcache->register_status[regnum] == REG_VALID)
714 memcpy (buf, register_buffer (regcache, regnum),
715 regcache->descr->sizeof_register[regnum]);
716 else
717 memset (buf, 0, regcache->descr->sizeof_register[regnum]);
718
719 return regcache->register_status[regnum];
720 }
3543a589
TT
721 else if (gdbarch_pseudo_register_read_value_p (regcache->descr->gdbarch))
722 {
723 struct value *mark, *computed;
724 enum register_status result = REG_VALID;
725
726 mark = value_mark ();
727
728 computed = gdbarch_pseudo_register_read_value (regcache->descr->gdbarch,
729 regcache, regnum);
730 if (value_entirely_available (computed))
731 memcpy (buf, value_contents_raw (computed),
732 regcache->descr->sizeof_register[regnum]);
733 else
734 {
735 memset (buf, 0, regcache->descr->sizeof_register[regnum]);
736 result = REG_UNAVAILABLE;
737 }
738
739 value_free_to_mark (mark);
740
741 return result;
742 }
d138e37a 743 else
05d1431c
PA
744 return gdbarch_pseudo_register_read (regcache->descr->gdbarch, regcache,
745 regnum, buf);
61a0eb5b
AC
746}
747
3543a589
TT
748struct value *
749regcache_cooked_read_value (struct regcache *regcache, int regnum)
750{
751 gdb_assert (regnum >= 0);
752 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
753
754 if (regnum < regcache->descr->nr_raw_registers
755 || (regcache->readonly_p
756 && regcache->register_status[regnum] != REG_UNKNOWN)
757 || !gdbarch_pseudo_register_read_value_p (regcache->descr->gdbarch))
758 {
759 struct value *result;
760
761 result = allocate_value (register_type (regcache->descr->gdbarch,
762 regnum));
763 VALUE_LVAL (result) = lval_register;
764 VALUE_REGNUM (result) = regnum;
765
766 /* It is more efficient in general to do this delegation in this
767 direction than in the other one, even though the value-based
768 API is preferred. */
769 if (regcache_cooked_read (regcache, regnum,
770 value_contents_raw (result)) == REG_UNAVAILABLE)
771 mark_value_bytes_unavailable (result, 0,
772 TYPE_LENGTH (value_type (result)));
773
774 return result;
775 }
776 else
777 return gdbarch_pseudo_register_read_value (regcache->descr->gdbarch,
778 regcache, regnum);
779}
780
05d1431c 781enum register_status
a378f419
AC
782regcache_cooked_read_signed (struct regcache *regcache, int regnum,
783 LONGEST *val)
784{
05d1431c 785 enum register_status status;
2d522557 786 gdb_byte *buf;
123f5f96 787
a378f419 788 gdb_assert (regcache != NULL);
a66a9c23 789 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_cooked_registers);
a378f419 790 buf = alloca (regcache->descr->sizeof_register[regnum]);
05d1431c
PA
791 status = regcache_cooked_read (regcache, regnum, buf);
792 if (status == REG_VALID)
793 *val = extract_signed_integer
794 (buf, regcache->descr->sizeof_register[regnum],
795 gdbarch_byte_order (regcache->descr->gdbarch));
796 else
797 *val = 0;
798 return status;
a378f419
AC
799}
800
05d1431c 801enum register_status
a378f419
AC
802regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
803 ULONGEST *val)
804{
05d1431c 805 enum register_status status;
2d522557 806 gdb_byte *buf;
123f5f96 807
a378f419 808 gdb_assert (regcache != NULL);
a66a9c23 809 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_cooked_registers);
a378f419 810 buf = alloca (regcache->descr->sizeof_register[regnum]);
05d1431c
PA
811 status = regcache_cooked_read (regcache, regnum, buf);
812 if (status == REG_VALID)
813 *val = extract_unsigned_integer
814 (buf, regcache->descr->sizeof_register[regnum],
815 gdbarch_byte_order (regcache->descr->gdbarch));
816 else
817 *val = 0;
818 return status;
a378f419
AC
819}
820
a66a9c23
AC
821void
822regcache_cooked_write_signed (struct regcache *regcache, int regnum,
823 LONGEST val)
824{
825 void *buf;
123f5f96 826
a66a9c23
AC
827 gdb_assert (regcache != NULL);
828 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_cooked_registers);
829 buf = alloca (regcache->descr->sizeof_register[regnum]);
e17a4113
UW
830 store_signed_integer (buf, regcache->descr->sizeof_register[regnum],
831 gdbarch_byte_order (regcache->descr->gdbarch), val);
a66a9c23
AC
832 regcache_cooked_write (regcache, regnum, buf);
833}
834
835void
836regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
837 ULONGEST val)
838{
839 void *buf;
123f5f96 840
a66a9c23
AC
841 gdb_assert (regcache != NULL);
842 gdb_assert (regnum >=0 && regnum < regcache->descr->nr_cooked_registers);
843 buf = alloca (regcache->descr->sizeof_register[regnum]);
e17a4113
UW
844 store_unsigned_integer (buf, regcache->descr->sizeof_register[regnum],
845 gdbarch_byte_order (regcache->descr->gdbarch), val);
a66a9c23
AC
846 regcache_cooked_write (regcache, regnum, buf);
847}
848
61a0eb5b 849void
2d522557
AC
850regcache_raw_write (struct regcache *regcache, int regnum,
851 const gdb_byte *buf)
61a0eb5b 852{
594f7785
UW
853 struct cleanup *old_chain;
854
3fadccb3
AC
855 gdb_assert (regcache != NULL && buf != NULL);
856 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
2d28509a 857 gdb_assert (!regcache->readonly_p);
3fadccb3 858
3fadccb3
AC
859 /* On the sparc, writing %g0 is a no-op, so we don't even want to
860 change the registers array if something writes to this register. */
214e098a 861 if (gdbarch_cannot_store_register (get_regcache_arch (regcache), regnum))
3fadccb3
AC
862 return;
863
3fadccb3 864 /* If we have a valid copy of the register, and new value == old
0df8b418 865 value, then don't bother doing the actual store. */
ee99023e 866 if (regcache_register_status (regcache, regnum) == REG_VALID
3fadccb3
AC
867 && (memcmp (register_buffer (regcache, regnum), buf,
868 regcache->descr->sizeof_register[regnum]) == 0))
869 return;
870
594f7785
UW
871 old_chain = save_inferior_ptid ();
872 inferior_ptid = regcache->ptid;
873
316f2060 874 target_prepare_to_store (regcache);
3fadccb3
AC
875 memcpy (register_buffer (regcache, regnum), buf,
876 regcache->descr->sizeof_register[regnum]);
ee99023e 877 regcache->register_status[regnum] = REG_VALID;
56be3814 878 target_store_registers (regcache, regnum);
594f7785
UW
879
880 do_cleanups (old_chain);
61a0eb5b
AC
881}
882
68365089 883void
2d522557
AC
884regcache_cooked_write (struct regcache *regcache, int regnum,
885 const gdb_byte *buf)
68365089 886{
d138e37a 887 gdb_assert (regnum >= 0);
68365089
AC
888 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
889 if (regnum < regcache->descr->nr_raw_registers)
890 regcache_raw_write (regcache, regnum, buf);
d138e37a 891 else
68365089 892 gdbarch_pseudo_register_write (regcache->descr->gdbarch, regcache,
d8124050 893 regnum, buf);
61a0eb5b
AC
894}
895
06c0b04e
AC
896/* Perform a partial register transfer using a read, modify, write
897 operation. */
898
899typedef void (regcache_read_ftype) (struct regcache *regcache, int regnum,
900 void *buf);
901typedef void (regcache_write_ftype) (struct regcache *regcache, int regnum,
902 const void *buf);
903
05d1431c 904static enum register_status
06c0b04e
AC
905regcache_xfer_part (struct regcache *regcache, int regnum,
906 int offset, int len, void *in, const void *out,
05d1431c
PA
907 enum register_status (*read) (struct regcache *regcache,
908 int regnum,
909 gdb_byte *buf),
2d522557
AC
910 void (*write) (struct regcache *regcache, int regnum,
911 const gdb_byte *buf))
06c0b04e
AC
912{
913 struct regcache_descr *descr = regcache->descr;
fc1a4b47 914 gdb_byte reg[MAX_REGISTER_SIZE];
123f5f96 915
06c0b04e
AC
916 gdb_assert (offset >= 0 && offset <= descr->sizeof_register[regnum]);
917 gdb_assert (len >= 0 && offset + len <= descr->sizeof_register[regnum]);
918 /* Something to do? */
919 if (offset + len == 0)
05d1431c 920 return REG_VALID;
0df8b418 921 /* Read (when needed) ... */
06c0b04e
AC
922 if (in != NULL
923 || offset > 0
924 || offset + len < descr->sizeof_register[regnum])
925 {
05d1431c
PA
926 enum register_status status;
927
06c0b04e 928 gdb_assert (read != NULL);
05d1431c
PA
929 status = read (regcache, regnum, reg);
930 if (status != REG_VALID)
931 return status;
06c0b04e 932 }
0df8b418 933 /* ... modify ... */
06c0b04e
AC
934 if (in != NULL)
935 memcpy (in, reg + offset, len);
936 if (out != NULL)
937 memcpy (reg + offset, out, len);
938 /* ... write (when needed). */
939 if (out != NULL)
940 {
941 gdb_assert (write != NULL);
942 write (regcache, regnum, reg);
943 }
05d1431c
PA
944
945 return REG_VALID;
06c0b04e
AC
946}
947
05d1431c 948enum register_status
06c0b04e 949regcache_raw_read_part (struct regcache *regcache, int regnum,
2d522557 950 int offset, int len, gdb_byte *buf)
06c0b04e
AC
951{
952 struct regcache_descr *descr = regcache->descr;
123f5f96 953
06c0b04e 954 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
05d1431c
PA
955 return regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
956 regcache_raw_read, regcache_raw_write);
06c0b04e
AC
957}
958
959void
960regcache_raw_write_part (struct regcache *regcache, int regnum,
2d522557 961 int offset, int len, const gdb_byte *buf)
06c0b04e
AC
962{
963 struct regcache_descr *descr = regcache->descr;
123f5f96 964
06c0b04e
AC
965 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
966 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
967 regcache_raw_read, regcache_raw_write);
968}
969
05d1431c 970enum register_status
06c0b04e 971regcache_cooked_read_part (struct regcache *regcache, int regnum,
2d522557 972 int offset, int len, gdb_byte *buf)
06c0b04e
AC
973{
974 struct regcache_descr *descr = regcache->descr;
123f5f96 975
06c0b04e 976 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
05d1431c
PA
977 return regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
978 regcache_cooked_read, regcache_cooked_write);
06c0b04e
AC
979}
980
981void
982regcache_cooked_write_part (struct regcache *regcache, int regnum,
2d522557 983 int offset, int len, const gdb_byte *buf)
06c0b04e
AC
984{
985 struct regcache_descr *descr = regcache->descr;
123f5f96 986
06c0b04e
AC
987 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
988 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
989 regcache_cooked_read, regcache_cooked_write);
990}
32178cab 991
a16d75cc 992/* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
9a661b68
MK
993
994void
6618125d 995regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
9a661b68
MK
996{
997 void *regbuf;
998 size_t size;
999
a16d75cc 1000 gdb_assert (regcache != NULL);
9a661b68
MK
1001 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
1002 gdb_assert (!regcache->readonly_p);
1003
9a661b68
MK
1004 regbuf = register_buffer (regcache, regnum);
1005 size = regcache->descr->sizeof_register[regnum];
1006
1007 if (buf)
ee99023e
PA
1008 {
1009 memcpy (regbuf, buf, size);
1010 regcache->register_status[regnum] = REG_VALID;
1011 }
9a661b68 1012 else
ee99023e
PA
1013 {
1014 /* This memset not strictly necessary, but better than garbage
1015 in case the register value manages to escape somewhere (due
1016 to a bug, no less). */
1017 memset (regbuf, 0, size);
1018 regcache->register_status[regnum] = REG_UNAVAILABLE;
1019 }
9a661b68
MK
1020}
1021
1022/* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1023
1024void
6618125d 1025regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
9a661b68
MK
1026{
1027 const void *regbuf;
1028 size_t size;
1029
1030 gdb_assert (regcache != NULL && buf != NULL);
1031 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
1032
1033 regbuf = register_buffer (regcache, regnum);
1034 size = regcache->descr->sizeof_register[regnum];
1035 memcpy (buf, regbuf, size);
1036}
1037
193cb69f 1038
515630c5 1039/* Special handling for register PC. */
32178cab
MS
1040
1041CORE_ADDR
515630c5 1042regcache_read_pc (struct regcache *regcache)
32178cab 1043{
61a1198a
UW
1044 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1045
32178cab
MS
1046 CORE_ADDR pc_val;
1047
61a1198a
UW
1048 if (gdbarch_read_pc_p (gdbarch))
1049 pc_val = gdbarch_read_pc (gdbarch, regcache);
cde9ea48 1050 /* Else use per-frame method on get_current_frame. */
214e098a 1051 else if (gdbarch_pc_regnum (gdbarch) >= 0)
cde9ea48 1052 {
61a1198a 1053 ULONGEST raw_val;
123f5f96 1054
05d1431c
PA
1055 if (regcache_cooked_read_unsigned (regcache,
1056 gdbarch_pc_regnum (gdbarch),
1057 &raw_val) == REG_UNAVAILABLE)
1058 throw_error (NOT_AVAILABLE_ERROR, _("PC register is not available"));
1059
214e098a 1060 pc_val = gdbarch_addr_bits_remove (gdbarch, raw_val);
cde9ea48
AC
1061 }
1062 else
515630c5
UW
1063 internal_error (__FILE__, __LINE__,
1064 _("regcache_read_pc: Unable to find PC"));
32178cab
MS
1065 return pc_val;
1066}
1067
32178cab 1068void
515630c5 1069regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
32178cab 1070{
61a1198a
UW
1071 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1072
61a1198a
UW
1073 if (gdbarch_write_pc_p (gdbarch))
1074 gdbarch_write_pc (gdbarch, regcache, pc);
214e098a 1075 else if (gdbarch_pc_regnum (gdbarch) >= 0)
3e8c568d 1076 regcache_cooked_write_unsigned (regcache,
214e098a 1077 gdbarch_pc_regnum (gdbarch), pc);
61a1198a
UW
1078 else
1079 internal_error (__FILE__, __LINE__,
515630c5 1080 _("regcache_write_pc: Unable to update PC"));
edb3359d
DJ
1081
1082 /* Writing the PC (for instance, from "load") invalidates the
1083 current frame. */
1084 reinit_frame_cache ();
32178cab
MS
1085}
1086
32178cab 1087
705152c5
MS
1088static void
1089reg_flush_command (char *command, int from_tty)
1090{
1091 /* Force-flush the register cache. */
1092 registers_changed ();
1093 if (from_tty)
a3f17187 1094 printf_filtered (_("Register cache flushed.\n"));
705152c5
MS
1095}
1096
af030b9a
AC
1097static void
1098dump_endian_bytes (struct ui_file *file, enum bfd_endian endian,
1099 const unsigned char *buf, long len)
1100{
1101 int i;
123f5f96 1102
af030b9a
AC
1103 switch (endian)
1104 {
1105 case BFD_ENDIAN_BIG:
1106 for (i = 0; i < len; i++)
1107 fprintf_unfiltered (file, "%02x", buf[i]);
1108 break;
1109 case BFD_ENDIAN_LITTLE:
1110 for (i = len - 1; i >= 0; i--)
1111 fprintf_unfiltered (file, "%02x", buf[i]);
1112 break;
1113 default:
e2e0b3e5 1114 internal_error (__FILE__, __LINE__, _("Bad switch"));
af030b9a
AC
1115 }
1116}
1117
1118enum regcache_dump_what
1119{
3e43a32a 1120 regcache_dump_none, regcache_dump_raw,
c21236dc
PA
1121 regcache_dump_cooked, regcache_dump_groups,
1122 regcache_dump_remote
af030b9a
AC
1123};
1124
1125static void
1126regcache_dump (struct regcache *regcache, struct ui_file *file,
1127 enum regcache_dump_what what_to_dump)
1128{
1129 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
b59ff9d5 1130 struct gdbarch *gdbarch = regcache->descr->gdbarch;
af030b9a
AC
1131 int regnum;
1132 int footnote_nr = 0;
1133 int footnote_register_size = 0;
1134 int footnote_register_offset = 0;
1135 int footnote_register_type_name_null = 0;
1136 long register_offset = 0;
123a958e 1137 unsigned char buf[MAX_REGISTER_SIZE];
af030b9a
AC
1138
1139#if 0
af030b9a
AC
1140 fprintf_unfiltered (file, "nr_raw_registers %d\n",
1141 regcache->descr->nr_raw_registers);
1142 fprintf_unfiltered (file, "nr_cooked_registers %d\n",
1143 regcache->descr->nr_cooked_registers);
1144 fprintf_unfiltered (file, "sizeof_raw_registers %ld\n",
1145 regcache->descr->sizeof_raw_registers);
ee99023e
PA
1146 fprintf_unfiltered (file, "sizeof_raw_register_status %ld\n",
1147 regcache->descr->sizeof_raw_register_status);
f57d151a 1148 fprintf_unfiltered (file, "gdbarch_num_regs %d\n",
214e098a 1149 gdbarch_num_regs (gdbarch));
f57d151a 1150 fprintf_unfiltered (file, "gdbarch_num_pseudo_regs %d\n",
214e098a 1151 gdbarch_num_pseudo_regs (gdbarch));
af030b9a
AC
1152#endif
1153
1154 gdb_assert (regcache->descr->nr_cooked_registers
214e098a
UW
1155 == (gdbarch_num_regs (gdbarch)
1156 + gdbarch_num_pseudo_regs (gdbarch)));
af030b9a
AC
1157
1158 for (regnum = -1; regnum < regcache->descr->nr_cooked_registers; regnum++)
1159 {
1160 /* Name. */
1161 if (regnum < 0)
1162 fprintf_unfiltered (file, " %-10s", "Name");
1163 else
1164 {
214e098a 1165 const char *p = gdbarch_register_name (gdbarch, regnum);
123f5f96 1166
af030b9a
AC
1167 if (p == NULL)
1168 p = "";
1169 else if (p[0] == '\0')
1170 p = "''";
1171 fprintf_unfiltered (file, " %-10s", p);
1172 }
1173
1174 /* Number. */
1175 if (regnum < 0)
1176 fprintf_unfiltered (file, " %4s", "Nr");
1177 else
1178 fprintf_unfiltered (file, " %4d", regnum);
1179
1180 /* Relative number. */
1181 if (regnum < 0)
1182 fprintf_unfiltered (file, " %4s", "Rel");
214e098a 1183 else if (regnum < gdbarch_num_regs (gdbarch))
af030b9a
AC
1184 fprintf_unfiltered (file, " %4d", regnum);
1185 else
f57d151a 1186 fprintf_unfiltered (file, " %4d",
214e098a 1187 (regnum - gdbarch_num_regs (gdbarch)));
af030b9a
AC
1188
1189 /* Offset. */
1190 if (regnum < 0)
1191 fprintf_unfiltered (file, " %6s ", "Offset");
1192 else
1193 {
1194 fprintf_unfiltered (file, " %6ld",
1195 regcache->descr->register_offset[regnum]);
a7e3c2ad 1196 if (register_offset != regcache->descr->register_offset[regnum]
d3b22ed5
AC
1197 || (regnum > 0
1198 && (regcache->descr->register_offset[regnum]
1199 != (regcache->descr->register_offset[regnum - 1]
1200 + regcache->descr->sizeof_register[regnum - 1])))
1201 )
af030b9a
AC
1202 {
1203 if (!footnote_register_offset)
1204 footnote_register_offset = ++footnote_nr;
1205 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1206 }
1207 else
1208 fprintf_unfiltered (file, " ");
1209 register_offset = (regcache->descr->register_offset[regnum]
1210 + regcache->descr->sizeof_register[regnum]);
1211 }
1212
1213 /* Size. */
1214 if (regnum < 0)
1215 fprintf_unfiltered (file, " %5s ", "Size");
1216 else
01e1877c
AC
1217 fprintf_unfiltered (file, " %5ld",
1218 regcache->descr->sizeof_register[regnum]);
af030b9a
AC
1219
1220 /* Type. */
b59ff9d5
AC
1221 {
1222 const char *t;
123f5f96 1223
b59ff9d5
AC
1224 if (regnum < 0)
1225 t = "Type";
1226 else
1227 {
1228 static const char blt[] = "builtin_type";
123f5f96 1229
b59ff9d5
AC
1230 t = TYPE_NAME (register_type (regcache->descr->gdbarch, regnum));
1231 if (t == NULL)
1232 {
1233 char *n;
123f5f96 1234
b59ff9d5
AC
1235 if (!footnote_register_type_name_null)
1236 footnote_register_type_name_null = ++footnote_nr;
b435e160 1237 n = xstrprintf ("*%d", footnote_register_type_name_null);
b59ff9d5
AC
1238 make_cleanup (xfree, n);
1239 t = n;
1240 }
1241 /* Chop a leading builtin_type. */
1242 if (strncmp (t, blt, strlen (blt)) == 0)
1243 t += strlen (blt);
1244 }
1245 fprintf_unfiltered (file, " %-15s", t);
1246 }
1247
1248 /* Leading space always present. */
1249 fprintf_unfiltered (file, " ");
af030b9a
AC
1250
1251 /* Value, raw. */
1252 if (what_to_dump == regcache_dump_raw)
1253 {
1254 if (regnum < 0)
1255 fprintf_unfiltered (file, "Raw value");
1256 else if (regnum >= regcache->descr->nr_raw_registers)
1257 fprintf_unfiltered (file, "<cooked>");
ee99023e 1258 else if (regcache_register_status (regcache, regnum) == REG_UNKNOWN)
af030b9a 1259 fprintf_unfiltered (file, "<invalid>");
ee99023e
PA
1260 else if (regcache_register_status (regcache, regnum) == REG_UNAVAILABLE)
1261 fprintf_unfiltered (file, "<unavailable>");
af030b9a
AC
1262 else
1263 {
1264 regcache_raw_read (regcache, regnum, buf);
1265 fprintf_unfiltered (file, "0x");
0d20ae72 1266 dump_endian_bytes (file,
214e098a 1267 gdbarch_byte_order (gdbarch), buf,
01e1877c 1268 regcache->descr->sizeof_register[regnum]);
af030b9a
AC
1269 }
1270 }
1271
1272 /* Value, cooked. */
1273 if (what_to_dump == regcache_dump_cooked)
1274 {
1275 if (regnum < 0)
1276 fprintf_unfiltered (file, "Cooked value");
1277 else
1278 {
05d1431c
PA
1279 enum register_status status;
1280
1281 status = regcache_cooked_read (regcache, regnum, buf);
1282 if (status == REG_UNKNOWN)
1283 fprintf_unfiltered (file, "<invalid>");
1284 else if (status == REG_UNAVAILABLE)
1285 fprintf_unfiltered (file, "<unavailable>");
1286 else
1287 {
1288 fprintf_unfiltered (file, "0x");
1289 dump_endian_bytes (file,
1290 gdbarch_byte_order (gdbarch), buf,
1291 regcache->descr->sizeof_register[regnum]);
1292 }
af030b9a
AC
1293 }
1294 }
1295
b59ff9d5
AC
1296 /* Group members. */
1297 if (what_to_dump == regcache_dump_groups)
1298 {
1299 if (regnum < 0)
1300 fprintf_unfiltered (file, "Groups");
1301 else
1302 {
b59ff9d5 1303 const char *sep = "";
6c7d17ba 1304 struct reggroup *group;
123f5f96 1305
6c7d17ba
AC
1306 for (group = reggroup_next (gdbarch, NULL);
1307 group != NULL;
1308 group = reggroup_next (gdbarch, group))
b59ff9d5 1309 {
6c7d17ba 1310 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
b59ff9d5 1311 {
3e43a32a
MS
1312 fprintf_unfiltered (file,
1313 "%s%s", sep, reggroup_name (group));
b59ff9d5
AC
1314 sep = ",";
1315 }
1316 }
1317 }
1318 }
1319
c21236dc
PA
1320 /* Remote packet configuration. */
1321 if (what_to_dump == regcache_dump_remote)
1322 {
1323 if (regnum < 0)
1324 {
1325 fprintf_unfiltered (file, "Rmt Nr g/G Offset");
1326 }
1327 else if (regnum < regcache->descr->nr_raw_registers)
1328 {
1329 int pnum, poffset;
1330
1331 if (remote_register_number_and_offset (get_regcache_arch (regcache), regnum,
1332 &pnum, &poffset))
1333 fprintf_unfiltered (file, "%7d %11d", pnum, poffset);
1334 }
1335 }
1336
af030b9a
AC
1337 fprintf_unfiltered (file, "\n");
1338 }
1339
1340 if (footnote_register_size)
1341 fprintf_unfiltered (file, "*%d: Inconsistent register sizes.\n",
1342 footnote_register_size);
1343 if (footnote_register_offset)
1344 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1345 footnote_register_offset);
1346 if (footnote_register_type_name_null)
1347 fprintf_unfiltered (file,
1348 "*%d: Register type's name NULL.\n",
1349 footnote_register_type_name_null);
1350 do_cleanups (cleanups);
1351}
1352
1353static void
1354regcache_print (char *args, enum regcache_dump_what what_to_dump)
1355{
1356 if (args == NULL)
28c38f10 1357 regcache_dump (get_current_regcache (), gdb_stdout, what_to_dump);
af030b9a
AC
1358 else
1359 {
724b958c 1360 struct cleanup *cleanups;
af030b9a 1361 struct ui_file *file = gdb_fopen (args, "w");
123f5f96 1362
af030b9a 1363 if (file == NULL)
e2e0b3e5 1364 perror_with_name (_("maintenance print architecture"));
724b958c 1365 cleanups = make_cleanup_ui_file_delete (file);
28c38f10 1366 regcache_dump (get_current_regcache (), file, what_to_dump);
724b958c 1367 do_cleanups (cleanups);
af030b9a
AC
1368 }
1369}
1370
1371static void
1372maintenance_print_registers (char *args, int from_tty)
1373{
1374 regcache_print (args, regcache_dump_none);
1375}
1376
1377static void
1378maintenance_print_raw_registers (char *args, int from_tty)
1379{
1380 regcache_print (args, regcache_dump_raw);
1381}
1382
1383static void
1384maintenance_print_cooked_registers (char *args, int from_tty)
1385{
1386 regcache_print (args, regcache_dump_cooked);
1387}
1388
b59ff9d5
AC
1389static void
1390maintenance_print_register_groups (char *args, int from_tty)
1391{
1392 regcache_print (args, regcache_dump_groups);
1393}
1394
c21236dc
PA
1395static void
1396maintenance_print_remote_registers (char *args, int from_tty)
1397{
1398 regcache_print (args, regcache_dump_remote);
1399}
1400
b9362cc7
AC
1401extern initialize_file_ftype _initialize_regcache; /* -Wmissing-prototype */
1402
32178cab
MS
1403void
1404_initialize_regcache (void)
1405{
3e43a32a
MS
1406 regcache_descr_handle
1407 = gdbarch_data_register_post_init (init_regcache_descr);
705152c5 1408
f4c5303c 1409 observer_attach_target_changed (regcache_observer_target_changed);
5231c1fd 1410 observer_attach_thread_ptid_changed (regcache_thread_ptid_changed);
f4c5303c 1411
705152c5 1412 add_com ("flushregs", class_maintenance, reg_flush_command,
1bedd215 1413 _("Force gdb to flush its register cache (maintainer command)"));
39f77062 1414
3e43a32a
MS
1415 add_cmd ("registers", class_maintenance, maintenance_print_registers,
1416 _("Print the internal register configuration.\n"
1417 "Takes an optional file parameter."), &maintenanceprintlist);
af030b9a 1418 add_cmd ("raw-registers", class_maintenance,
3e43a32a
MS
1419 maintenance_print_raw_registers,
1420 _("Print the internal register configuration "
1421 "including raw values.\n"
1422 "Takes an optional file parameter."), &maintenanceprintlist);
af030b9a 1423 add_cmd ("cooked-registers", class_maintenance,
3e43a32a
MS
1424 maintenance_print_cooked_registers,
1425 _("Print the internal register configuration "
1426 "including cooked values.\n"
1427 "Takes an optional file parameter."), &maintenanceprintlist);
b59ff9d5 1428 add_cmd ("register-groups", class_maintenance,
3e43a32a
MS
1429 maintenance_print_register_groups,
1430 _("Print the internal register configuration "
1431 "including each register's group.\n"
1432 "Takes an optional file parameter."),
af030b9a 1433 &maintenanceprintlist);
c21236dc
PA
1434 add_cmd ("remote-registers", class_maintenance,
1435 maintenance_print_remote_registers, _("\
1436Print the internal register configuration including each register's\n\
1437remote register number and buffer offset in the g/G packets.\n\
1438Takes an optional file parameter."),
1439 &maintenanceprintlist);
af030b9a 1440
32178cab 1441}
This page took 1.192238 seconds and 4 git commands to generate.