2002-08-25 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / regcache.c
1 /* Cache and manage the values of registers for GDB, the GNU debugger.
2
3 Copyright 1986, 1987, 1989, 1991, 1994, 1995, 1996, 1998, 2000,
4 2001, 2002 Free Software Foundation, Inc.
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
10 the Free Software Foundation; either version 2 of the License, or
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
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. */
22
23 #include "defs.h"
24 #include "inferior.h"
25 #include "target.h"
26 #include "gdbarch.h"
27 #include "gdbcmd.h"
28 #include "regcache.h"
29 #include "gdb_assert.h"
30 #include "gdb_string.h"
31 #include "gdbcmd.h" /* For maintenanceprintlist. */
32
33 /*
34 * DATA STRUCTURE
35 *
36 * Here is the actual register cache.
37 */
38
39 /* Per-architecture object describing the layout of a register cache.
40 Computed once when the architecture is created */
41
42 struct gdbarch_data *regcache_descr_handle;
43
44 struct regcache_descr
45 {
46 /* The architecture this descriptor belongs to. */
47 struct gdbarch *gdbarch;
48
49 /* Is this a ``legacy'' register cache? Such caches reserve space
50 for raw and pseudo registers and allow access to both. */
51 int legacy_p;
52
53 /* The raw register cache. This should contain just [0
54 .. NUM_RAW_REGISTERS). However, for older targets, it contains
55 space for the full [0 .. NUM_RAW_REGISTERS +
56 NUM_PSEUDO_REGISTERS). */
57 int nr_raw_registers;
58 long sizeof_raw_registers;
59 long sizeof_raw_register_valid_p;
60
61 /* The cooked register space. Each cooked register in the range
62 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
63 register. The remaining [NR_RAW_REGISTERS
64 .. NR_COOKED_REGISTERS) (a.k.a. pseudo regiters) are mapped onto
65 both raw registers and memory by the architecture methods
66 gdbarch_register_read and gdbarch_register_write. */
67 int nr_cooked_registers;
68
69 /* Offset and size (in 8 bit bytes), of reach register in the
70 register cache. All registers (including those in the range
71 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an offset.
72 Assigning all registers an offset makes it possible to keep
73 legacy code, such as that found in read_register_bytes() and
74 write_register_bytes() working. */
75 long *register_offset;
76 long *sizeof_register;
77
78 /* Useful constant. Largest of all the registers. */
79 long max_register_size;
80
81 /* Cached table containing the type of each register. */
82 struct type **register_type;
83 };
84
85 void
86 init_legacy_regcache_descr (struct gdbarch *gdbarch,
87 struct regcache_descr *descr)
88 {
89 int i;
90 /* FIXME: cagney/2002-05-11: gdbarch_data() should take that
91 ``gdbarch'' as a parameter. */
92 gdb_assert (gdbarch != NULL);
93
94 /* FIXME: cagney/2002-05-11: Shouldn't be including pseudo-registers
95 in the register buffer. Unfortunatly some architectures do. */
96 descr->nr_raw_registers = descr->nr_cooked_registers;
97 descr->sizeof_raw_register_valid_p = descr->nr_cooked_registers;
98
99 /* FIXME: cagney/2002-05-11: Instead of using REGISTER_BYTE() this
100 code should compute the offets et.al. at runtime. This currently
101 isn't possible because some targets overlap register locations -
102 see the mess in read_register_bytes() and write_register_bytes()
103 registers. */
104 descr->sizeof_register = XCALLOC (descr->nr_cooked_registers, long);
105 descr->register_offset = XCALLOC (descr->nr_cooked_registers, long);
106 descr->max_register_size = 0;
107 for (i = 0; i < descr->nr_cooked_registers; i++)
108 {
109 descr->register_offset[i] = REGISTER_BYTE (i);
110 descr->sizeof_register[i] = REGISTER_RAW_SIZE (i);
111 if (descr->max_register_size < REGISTER_RAW_SIZE (i))
112 descr->max_register_size = REGISTER_RAW_SIZE (i);
113 if (descr->max_register_size < REGISTER_VIRTUAL_SIZE (i))
114 descr->max_register_size = REGISTER_VIRTUAL_SIZE (i);
115 }
116
117 /* Come up with the real size of the registers buffer. */
118 descr->sizeof_raw_registers = REGISTER_BYTES; /* OK use. */
119 for (i = 0; i < descr->nr_cooked_registers; i++)
120 {
121 long regend;
122 /* Keep extending the buffer so that there is always enough
123 space for all registers. The comparison is necessary since
124 legacy code is free to put registers in random places in the
125 buffer separated by holes. Once REGISTER_BYTE() is killed
126 this can be greatly simplified. */
127 /* FIXME: cagney/2001-12-04: This code shouldn't need to use
128 REGISTER_BYTE(). Unfortunatly, legacy code likes to lay the
129 buffer out so that certain registers just happen to overlap.
130 Ulgh! New targets use gdbarch's register read/write and
131 entirely avoid this uglyness. */
132 regend = descr->register_offset[i] + descr->sizeof_register[i];
133 if (descr->sizeof_raw_registers < regend)
134 descr->sizeof_raw_registers = regend;
135 }
136 }
137
138 static void *
139 init_regcache_descr (struct gdbarch *gdbarch)
140 {
141 int i;
142 struct regcache_descr *descr;
143 gdb_assert (gdbarch != NULL);
144
145 /* Create an initial, zero filled, table. */
146 descr = XCALLOC (1, struct regcache_descr);
147 descr->gdbarch = gdbarch;
148
149 /* Total size of the register space. The raw registers are mapped
150 directly onto the raw register cache while the pseudo's are
151 either mapped onto raw-registers or memory. */
152 descr->nr_cooked_registers = NUM_REGS + NUM_PSEUDO_REGS;
153
154 /* Fill in a table of register types. */
155 descr->register_type = XCALLOC (descr->nr_cooked_registers,
156 struct type *);
157 for (i = 0; i < descr->nr_cooked_registers; i++)
158 {
159 descr->register_type[i] = REGISTER_VIRTUAL_TYPE (i);
160 }
161
162 /* If an old style architecture, fill in the remainder of the
163 register cache descriptor using the register macros. */
164 if (!gdbarch_pseudo_register_read_p (gdbarch)
165 && !gdbarch_pseudo_register_write_p (gdbarch))
166 {
167 descr->legacy_p = 1;
168 init_legacy_regcache_descr (gdbarch, descr);
169 return descr;
170 }
171
172 /* Construct a strictly RAW register cache. Don't allow pseudo's
173 into the register cache. */
174 descr->nr_raw_registers = NUM_REGS;
175
176 /* FIXME: cagney/2002-08-13: Overallocate the register_valid_p
177 array. This pretects GDB from erant code that accesses elements
178 of the global register_valid_p[] array in the range [NUM_REGS
179 .. NUM_REGS + NUM_PSEUDO_REGS). */
180 descr->sizeof_raw_register_valid_p = NUM_REGS + NUM_PSEUDO_REGS;
181
182 /* Lay out the register cache. The pseud-registers are included in
183 the layout even though their value isn't stored in the register
184 cache. Some code, via read_register_bytes() access a register
185 using an offset/length rather than a register number.
186
187 NOTE: cagney/2002-05-22: Only register_type() is used when
188 constructing the register cache. It is assumed that the
189 register's raw size, virtual size and type length are all the
190 same. */
191
192 {
193 long offset = 0;
194 descr->sizeof_register = XCALLOC (descr->nr_cooked_registers, long);
195 descr->register_offset = XCALLOC (descr->nr_cooked_registers, long);
196 descr->max_register_size = 0;
197 for (i = 0; i < descr->nr_cooked_registers; i++)
198 {
199 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
200 descr->register_offset[i] = offset;
201 offset += descr->sizeof_register[i];
202 if (descr->max_register_size < descr->sizeof_register[i])
203 descr->max_register_size = descr->sizeof_register[i];
204 }
205 /* Set the real size of the register cache buffer. */
206 /* FIXME: cagney/2002-05-22: Should only need to allocate space
207 for the raw registers. Unfortunatly some code still accesses
208 the register array directly using the global registers[].
209 Until that code has been purged, play safe and over allocating
210 the register buffer. Ulgh! */
211 descr->sizeof_raw_registers = offset;
212 /* = descr->register_offset[descr->nr_raw_registers]; */
213 }
214
215 #if 0
216 /* Sanity check. Confirm that the assumptions about gdbarch are
217 true. The REGCACHE_DESCR_HANDLE is set before doing the checks
218 so that targets using the generic methods supplied by regcache
219 don't go into infinite recursion trying to, again, create the
220 regcache. */
221 set_gdbarch_data (gdbarch, regcache_descr_handle, descr);
222 for (i = 0; i < descr->nr_cooked_registers; i++)
223 {
224 gdb_assert (descr->sizeof_register[i] == REGISTER_RAW_SIZE (i));
225 gdb_assert (descr->sizeof_register[i] == REGISTER_VIRTUAL_SIZE (i));
226 gdb_assert (descr->register_offset[i] == REGISTER_BYTE (i));
227 }
228 /* gdb_assert (descr->sizeof_raw_registers == REGISTER_BYTES (i)); */
229 #endif
230
231 return descr;
232 }
233
234 static struct regcache_descr *
235 regcache_descr (struct gdbarch *gdbarch)
236 {
237 return gdbarch_data (gdbarch, regcache_descr_handle);
238 }
239
240 static void
241 xfree_regcache_descr (struct gdbarch *gdbarch, void *ptr)
242 {
243 struct regcache_descr *descr = ptr;
244 if (descr == NULL)
245 return;
246 xfree (descr->register_offset);
247 xfree (descr->sizeof_register);
248 descr->register_offset = NULL;
249 descr->sizeof_register = NULL;
250 xfree (descr);
251 }
252
253 /* Utility functions returning useful register attributes stored in
254 the regcache descr. */
255
256 struct type *
257 register_type (struct gdbarch *gdbarch, int regnum)
258 {
259 struct regcache_descr *descr = regcache_descr (gdbarch);
260 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
261 return descr->register_type[regnum];
262 }
263
264 /* Utility functions returning useful register attributes stored in
265 the regcache descr. */
266
267 int
268 max_register_size (struct gdbarch *gdbarch)
269 {
270 struct regcache_descr *descr = regcache_descr (gdbarch);
271 return descr->max_register_size;
272 }
273
274 /* The register cache for storing raw register values. */
275
276 struct regcache
277 {
278 struct regcache_descr *descr;
279 char *raw_registers;
280 char *raw_register_valid_p;
281 /* If a value isn't in the cache should the corresponding target be
282 queried for a value. */
283 int passthrough_p;
284 };
285
286 struct regcache *
287 regcache_xmalloc (struct gdbarch *gdbarch)
288 {
289 struct regcache_descr *descr;
290 struct regcache *regcache;
291 gdb_assert (gdbarch != NULL);
292 descr = regcache_descr (gdbarch);
293 regcache = XMALLOC (struct regcache);
294 regcache->descr = descr;
295 regcache->raw_registers
296 = XCALLOC (descr->sizeof_raw_registers, char);
297 regcache->raw_register_valid_p
298 = XCALLOC (descr->sizeof_raw_register_valid_p, char);
299 regcache->passthrough_p = 0;
300 return regcache;
301 }
302
303 void
304 regcache_xfree (struct regcache *regcache)
305 {
306 if (regcache == NULL)
307 return;
308 xfree (regcache->raw_registers);
309 xfree (regcache->raw_register_valid_p);
310 xfree (regcache);
311 }
312
313 void
314 do_regcache_xfree (void *data)
315 {
316 regcache_xfree (data);
317 }
318
319 struct cleanup *
320 make_cleanup_regcache_xfree (struct regcache *regcache)
321 {
322 return make_cleanup (do_regcache_xfree, regcache);
323 }
324
325 void
326 regcache_cpy (struct regcache *dst, struct regcache *src)
327 {
328 int i;
329 char *buf;
330 gdb_assert (src != NULL && dst != NULL);
331 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
332 gdb_assert (src != dst);
333 /* FIXME: cagney/2002-05-17: To say this bit is bad is being polite.
334 It keeps the existing code working where things rely on going
335 through to the register cache. */
336 if (src == current_regcache && src->descr->legacy_p)
337 {
338 /* ULGH!!!! Old way. Use REGISTER bytes and let code below
339 untangle fetch. */
340 read_register_bytes (0, dst->raw_registers, REGISTER_BYTES);
341 return;
342 }
343 /* FIXME: cagney/2002-05-17: To say this bit is bad is being polite.
344 It keeps the existing code working where things rely on going
345 through to the register cache. */
346 if (dst == current_regcache && dst->descr->legacy_p)
347 {
348 /* ULGH!!!! Old way. Use REGISTER bytes and let code below
349 untangle fetch. */
350 write_register_bytes (0, src->raw_registers, REGISTER_BYTES);
351 return;
352 }
353 buf = alloca (src->descr->max_register_size);
354 for (i = 0; i < src->descr->nr_raw_registers; i++)
355 {
356 /* Should we worry about the valid bit here? */
357 regcache_raw_read (src, i, buf);
358 regcache_raw_write (dst, i, buf);
359 }
360 }
361
362 void
363 regcache_cpy_no_passthrough (struct regcache *dst, struct regcache *src)
364 {
365 int i;
366 gdb_assert (src != NULL && dst != NULL);
367 gdb_assert (src->descr->gdbarch == dst->descr->gdbarch);
368 /* NOTE: cagney/2002-05-17: Don't let the caller do a no-passthrough
369 move of data into the current_regcache(). Doing this would be
370 silly - it would mean that valid_p would be completly invalid. */
371 gdb_assert (dst != current_regcache);
372 memcpy (dst->raw_registers, src->raw_registers,
373 dst->descr->sizeof_raw_registers);
374 memcpy (dst->raw_register_valid_p, src->raw_register_valid_p,
375 dst->descr->sizeof_raw_register_valid_p);
376 }
377
378 struct regcache *
379 regcache_dup (struct regcache *src)
380 {
381 struct regcache *newbuf;
382 gdb_assert (current_regcache != NULL);
383 newbuf = regcache_xmalloc (src->descr->gdbarch);
384 regcache_cpy (newbuf, src);
385 return newbuf;
386 }
387
388 struct regcache *
389 regcache_dup_no_passthrough (struct regcache *src)
390 {
391 struct regcache *newbuf;
392 gdb_assert (current_regcache != NULL);
393 newbuf = regcache_xmalloc (src->descr->gdbarch);
394 regcache_cpy_no_passthrough (newbuf, src);
395 return newbuf;
396 }
397
398 int
399 regcache_valid_p (struct regcache *regcache, int regnum)
400 {
401 gdb_assert (regcache != NULL);
402 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
403 return regcache->raw_register_valid_p[regnum];
404 }
405
406 char *
407 deprecated_grub_regcache_for_registers (struct regcache *regcache)
408 {
409 return regcache->raw_registers;
410 }
411
412 char *
413 deprecated_grub_regcache_for_register_valid (struct regcache *regcache)
414 {
415 return regcache->raw_register_valid_p;
416 }
417
418 /* Global structure containing the current regcache. */
419 /* FIXME: cagney/2002-05-11: The two global arrays registers[] and
420 register_valid[] currently point into this structure. */
421 struct regcache *current_regcache;
422
423 /* NOTE: this is a write-through cache. There is no "dirty" bit for
424 recording if the register values have been changed (eg. by the
425 user). Therefore all registers must be written back to the
426 target when appropriate. */
427
428 /* REGISTERS contains the cached register values (in target byte order). */
429
430 char *registers;
431
432 /* REGISTER_VALID is 0 if the register needs to be fetched,
433 1 if it has been fetched, and
434 -1 if the register value was not available.
435
436 "Not available" indicates that the target is not not able to supply
437 the register at this state. The register may become available at a
438 later time (after the next resume). This often occures when GDB is
439 manipulating a target that contains only a snapshot of the entire
440 system being debugged - some of the registers in such a system may
441 not have been saved. */
442
443 signed char *register_valid;
444
445 /* The thread/process associated with the current set of registers. */
446
447 static ptid_t registers_ptid;
448
449 /*
450 * FUNCTIONS:
451 */
452
453 /* REGISTER_CACHED()
454
455 Returns 0 if the value is not in the cache (needs fetch).
456 >0 if the value is in the cache.
457 <0 if the value is permanently unavailable (don't ask again). */
458
459 int
460 register_cached (int regnum)
461 {
462 return register_valid[regnum];
463 }
464
465 /* Record that REGNUM's value is cached if STATE is >0, uncached but
466 fetchable if STATE is 0, and uncached and unfetchable if STATE is <0. */
467
468 void
469 set_register_cached (int regnum, int state)
470 {
471 gdb_assert (regnum >= 0);
472 gdb_assert (regnum < current_regcache->descr->nr_raw_registers);
473 current_regcache->raw_register_valid_p[regnum] = state;
474 }
475
476 /* REGISTER_CHANGED
477
478 invalidate a single register REGNUM in the cache */
479 void
480 register_changed (int regnum)
481 {
482 set_register_cached (regnum, 0);
483 }
484
485 /* If REGNUM >= 0, return a pointer to register REGNUM's cache buffer area,
486 else return a pointer to the start of the cache buffer. */
487
488 static char *
489 register_buffer (struct regcache *regcache, int regnum)
490 {
491 return regcache->raw_registers + regcache->descr->register_offset[regnum];
492 }
493
494 /* Return whether register REGNUM is a real register. */
495
496 static int
497 real_register (int regnum)
498 {
499 return regnum >= 0 && regnum < NUM_REGS;
500 }
501
502 /* Low level examining and depositing of registers.
503
504 The caller is responsible for making sure that the inferior is
505 stopped before calling the fetching routines, or it will get
506 garbage. (a change from GDB version 3, in which the caller got the
507 value from the last stop). */
508
509 /* REGISTERS_CHANGED ()
510
511 Indicate that registers may have changed, so invalidate the cache. */
512
513 void
514 registers_changed (void)
515 {
516 int i;
517
518 registers_ptid = pid_to_ptid (-1);
519
520 /* Force cleanup of any alloca areas if using C alloca instead of
521 a builtin alloca. This particular call is used to clean up
522 areas allocated by low level target code which may build up
523 during lengthy interactions between gdb and the target before
524 gdb gives control to the user (ie watchpoints). */
525 alloca (0);
526
527 for (i = 0; i < current_regcache->descr->nr_raw_registers; i++)
528 set_register_cached (i, 0);
529
530 if (registers_changed_hook)
531 registers_changed_hook ();
532 }
533
534 /* REGISTERS_FETCHED ()
535
536 Indicate that all registers have been fetched, so mark them all valid. */
537
538 /* NOTE: cagney/2001-12-04: This function does not set valid on the
539 pseudo-register range since pseudo registers are always supplied
540 using supply_register(). */
541 /* FIXME: cagney/2001-12-04: This function is DEPRECATED. The target
542 code was blatting the registers[] array and then calling this.
543 Since targets should only be using supply_register() the need for
544 this function/hack is eliminated. */
545
546 void
547 registers_fetched (void)
548 {
549 int i;
550
551 for (i = 0; i < NUM_REGS; i++)
552 set_register_cached (i, 1);
553 /* Do not assume that the pseudo-regs have also been fetched.
554 Fetching all real regs NEVER accounts for pseudo-regs. */
555 }
556
557 /* read_register_bytes and write_register_bytes are generally a *BAD*
558 idea. They are inefficient because they need to check for partial
559 updates, which can only be done by scanning through all of the
560 registers and seeing if the bytes that are being read/written fall
561 inside of an invalid register. [The main reason this is necessary
562 is that register sizes can vary, so a simple index won't suffice.]
563 It is far better to call read_register_gen and write_register_gen
564 if you want to get at the raw register contents, as it only takes a
565 regnum as an argument, and therefore can't do a partial register
566 update.
567
568 Prior to the recent fixes to check for partial updates, both read
569 and write_register_bytes always checked to see if any registers
570 were stale, and then called target_fetch_registers (-1) to update
571 the whole set. This caused really slowed things down for remote
572 targets. */
573
574 /* Copy INLEN bytes of consecutive data from registers
575 starting with the INREGBYTE'th byte of register data
576 into memory at MYADDR. */
577
578 void
579 read_register_bytes (int in_start, char *in_buf, int in_len)
580 {
581 int in_end = in_start + in_len;
582 int regnum;
583 char *reg_buf = alloca (MAX_REGISTER_RAW_SIZE);
584
585 /* See if we are trying to read bytes from out-of-date registers. If so,
586 update just those registers. */
587
588 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
589 {
590 int reg_start;
591 int reg_end;
592 int reg_len;
593 int start;
594 int end;
595 int byte;
596
597 reg_start = REGISTER_BYTE (regnum);
598 reg_len = REGISTER_RAW_SIZE (regnum);
599 reg_end = reg_start + reg_len;
600
601 if (reg_end <= in_start || in_end <= reg_start)
602 /* The range the user wants to read doesn't overlap with regnum. */
603 continue;
604
605 if (REGISTER_NAME (regnum) != NULL && *REGISTER_NAME (regnum) != '\0')
606 /* Force the cache to fetch the entire register. */
607 read_register_gen (regnum, reg_buf);
608 else
609 /* Legacy note: even though this register is ``invalid'' we
610 still need to return something. It would appear that some
611 code relies on apparent gaps in the register array also
612 being returned. */
613 /* FIXME: cagney/2001-08-18: This is just silly. It defeats
614 the entire register read/write flow of control. Must
615 resist temptation to return 0xdeadbeef. */
616 memcpy (reg_buf, registers + reg_start, reg_len);
617
618 /* Legacy note: This function, for some reason, allows a NULL
619 input buffer. If the buffer is NULL, the registers are still
620 fetched, just the final transfer is skipped. */
621 if (in_buf == NULL)
622 continue;
623
624 /* start = max (reg_start, in_start) */
625 if (reg_start > in_start)
626 start = reg_start;
627 else
628 start = in_start;
629
630 /* end = min (reg_end, in_end) */
631 if (reg_end < in_end)
632 end = reg_end;
633 else
634 end = in_end;
635
636 /* Transfer just the bytes common to both IN_BUF and REG_BUF */
637 for (byte = start; byte < end; byte++)
638 {
639 in_buf[byte - in_start] = reg_buf[byte - reg_start];
640 }
641 }
642 }
643
644 /* Read register REGNUM into memory at MYADDR, which must be large
645 enough for REGISTER_RAW_BYTES (REGNUM). Target byte-order. If the
646 register is known to be the size of a CORE_ADDR or smaller,
647 read_register can be used instead. */
648
649 static void
650 legacy_read_register_gen (int regnum, char *myaddr)
651 {
652 gdb_assert (regnum >= 0 && regnum < (NUM_REGS + NUM_PSEUDO_REGS));
653 if (! ptid_equal (registers_ptid, inferior_ptid))
654 {
655 registers_changed ();
656 registers_ptid = inferior_ptid;
657 }
658
659 if (!register_cached (regnum))
660 target_fetch_registers (regnum);
661
662 memcpy (myaddr, register_buffer (current_regcache, regnum),
663 REGISTER_RAW_SIZE (regnum));
664 }
665
666 void
667 regcache_raw_read (struct regcache *regcache, int regnum, void *buf)
668 {
669 gdb_assert (regcache != NULL && buf != NULL);
670 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
671 if (regcache->descr->legacy_p
672 && regcache->passthrough_p)
673 {
674 gdb_assert (regcache == current_regcache);
675 /* For moment, just use underlying legacy code. Ulgh!!! This
676 silently and very indirectly updates the regcache's regcache
677 via the global register_valid[]. */
678 legacy_read_register_gen (regnum, buf);
679 return;
680 }
681 /* Make certain that the register cache is up-to-date with respect
682 to the current thread. This switching shouldn't be necessary
683 only there is still only one target side register cache. Sigh!
684 On the bright side, at least there is a regcache object. */
685 if (regcache->passthrough_p)
686 {
687 gdb_assert (regcache == current_regcache);
688 if (! ptid_equal (registers_ptid, inferior_ptid))
689 {
690 registers_changed ();
691 registers_ptid = inferior_ptid;
692 }
693 if (!register_cached (regnum))
694 target_fetch_registers (regnum);
695 }
696 /* Copy the value directly into the register cache. */
697 memcpy (buf, (regcache->raw_registers
698 + regcache->descr->register_offset[regnum]),
699 regcache->descr->sizeof_register[regnum]);
700 }
701
702 void
703 regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
704 {
705 char *buf;
706 gdb_assert (regcache != NULL);
707 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
708 buf = alloca (regcache->descr->sizeof_register[regnum]);
709 regcache_raw_read (regcache, regnum, buf);
710 (*val) = extract_signed_integer (buf,
711 regcache->descr->sizeof_register[regnum]);
712 }
713
714 void
715 regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
716 ULONGEST *val)
717 {
718 char *buf;
719 gdb_assert (regcache != NULL);
720 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
721 buf = alloca (regcache->descr->sizeof_register[regnum]);
722 regcache_raw_read (regcache, regnum, buf);
723 (*val) = extract_unsigned_integer (buf,
724 regcache->descr->sizeof_register[regnum]);
725 }
726
727 void
728 read_register_gen (int regnum, char *buf)
729 {
730 gdb_assert (current_regcache != NULL);
731 gdb_assert (current_regcache->descr->gdbarch == current_gdbarch);
732 if (current_regcache->descr->legacy_p)
733 {
734 legacy_read_register_gen (regnum, buf);
735 return;
736 }
737 regcache_cooked_read (current_regcache, regnum, buf);
738 }
739
740 void
741 regcache_cooked_read (struct regcache *regcache, int regnum, void *buf)
742 {
743 gdb_assert (regnum >= 0);
744 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
745 if (regnum < regcache->descr->nr_raw_registers)
746 regcache_raw_read (regcache, regnum, buf);
747 else
748 gdbarch_pseudo_register_read (regcache->descr->gdbarch, regcache,
749 regnum, buf);
750 }
751
752 void
753 regcache_cooked_read_signed (struct regcache *regcache, int regnum,
754 LONGEST *val)
755 {
756 char *buf;
757 gdb_assert (regcache != NULL);
758 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
759 buf = alloca (regcache->descr->sizeof_register[regnum]);
760 regcache_cooked_read (regcache, regnum, buf);
761 (*val) = extract_signed_integer (buf,
762 regcache->descr->sizeof_register[regnum]);
763 }
764
765 void
766 regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
767 ULONGEST *val)
768 {
769 char *buf;
770 gdb_assert (regcache != NULL);
771 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
772 buf = alloca (regcache->descr->sizeof_register[regnum]);
773 regcache_cooked_read (regcache, regnum, buf);
774 (*val) = extract_unsigned_integer (buf,
775 regcache->descr->sizeof_register[regnum]);
776 }
777
778 /* Write register REGNUM at MYADDR to the target. MYADDR points at
779 REGISTER_RAW_BYTES(REGNUM), which must be in target byte-order. */
780
781 static void
782 legacy_write_register_gen (int regnum, const void *myaddr)
783 {
784 int size;
785 gdb_assert (regnum >= 0 && regnum < (NUM_REGS + NUM_PSEUDO_REGS));
786
787 /* On the sparc, writing %g0 is a no-op, so we don't even want to
788 change the registers array if something writes to this register. */
789 if (CANNOT_STORE_REGISTER (regnum))
790 return;
791
792 if (! ptid_equal (registers_ptid, inferior_ptid))
793 {
794 registers_changed ();
795 registers_ptid = inferior_ptid;
796 }
797
798 size = REGISTER_RAW_SIZE (regnum);
799
800 if (real_register (regnum))
801 {
802 /* If we have a valid copy of the register, and new value == old
803 value, then don't bother doing the actual store. */
804 if (register_cached (regnum)
805 && (memcmp (register_buffer (current_regcache, regnum), myaddr, size)
806 == 0))
807 return;
808 else
809 target_prepare_to_store ();
810 }
811
812 memcpy (register_buffer (current_regcache, regnum), myaddr, size);
813
814 set_register_cached (regnum, 1);
815 target_store_registers (regnum);
816 }
817
818 void
819 regcache_raw_write (struct regcache *regcache, int regnum, const void *buf)
820 {
821 gdb_assert (regcache != NULL && buf != NULL);
822 gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
823
824 if (regcache->passthrough_p
825 && regcache->descr->legacy_p)
826 {
827 /* For moment, just use underlying legacy code. Ulgh!!! This
828 silently and very indirectly updates the regcache's buffers
829 via the globals register_valid[] and registers[]. */
830 gdb_assert (regcache == current_regcache);
831 legacy_write_register_gen (regnum, buf);
832 return;
833 }
834
835 /* On the sparc, writing %g0 is a no-op, so we don't even want to
836 change the registers array if something writes to this register. */
837 if (CANNOT_STORE_REGISTER (regnum))
838 return;
839
840 /* Handle the simple case first -> not write through so just store
841 value in cache. */
842 if (!regcache->passthrough_p)
843 {
844 memcpy ((regcache->raw_registers
845 + regcache->descr->register_offset[regnum]), buf,
846 regcache->descr->sizeof_register[regnum]);
847 regcache->raw_register_valid_p[regnum] = 1;
848 return;
849 }
850
851 /* Make certain that the correct cache is selected. */
852 gdb_assert (regcache == current_regcache);
853 if (! ptid_equal (registers_ptid, inferior_ptid))
854 {
855 registers_changed ();
856 registers_ptid = inferior_ptid;
857 }
858
859 /* If we have a valid copy of the register, and new value == old
860 value, then don't bother doing the actual store. */
861 if (regcache_valid_p (regcache, regnum)
862 && (memcmp (register_buffer (regcache, regnum), buf,
863 regcache->descr->sizeof_register[regnum]) == 0))
864 return;
865
866 target_prepare_to_store ();
867 memcpy (register_buffer (regcache, regnum), buf,
868 regcache->descr->sizeof_register[regnum]);
869 regcache->raw_register_valid_p[regnum] = 1;
870 target_store_registers (regnum);
871 }
872
873 void
874 write_register_gen (int regnum, char *buf)
875 {
876 gdb_assert (current_regcache != NULL);
877 gdb_assert (current_regcache->descr->gdbarch == current_gdbarch);
878 if (current_regcache->descr->legacy_p)
879 {
880 legacy_write_register_gen (regnum, buf);
881 return;
882 }
883 regcache_cooked_write (current_regcache, regnum, buf);
884 }
885
886 void
887 regcache_cooked_write (struct regcache *regcache, int regnum, const void *buf)
888 {
889 gdb_assert (regnum >= 0);
890 gdb_assert (regnum < regcache->descr->nr_cooked_registers);
891 if (regnum < regcache->descr->nr_raw_registers)
892 regcache_raw_write (regcache, regnum, buf);
893 else
894 gdbarch_pseudo_register_write (regcache->descr->gdbarch, regcache,
895 regnum, buf);
896 }
897
898 /* Copy INLEN bytes of consecutive data from memory at MYADDR
899 into registers starting with the MYREGSTART'th byte of register data. */
900
901 void
902 write_register_bytes (int myregstart, char *myaddr, int inlen)
903 {
904 int myregend = myregstart + inlen;
905 int regnum;
906
907 target_prepare_to_store ();
908
909 /* Scan through the registers updating any that are covered by the
910 range myregstart<=>myregend using write_register_gen, which does
911 nice things like handling threads, and avoiding updates when the
912 new and old contents are the same. */
913
914 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
915 {
916 int regstart, regend;
917
918 regstart = REGISTER_BYTE (regnum);
919 regend = regstart + REGISTER_RAW_SIZE (regnum);
920
921 /* Is this register completely outside the range the user is writing? */
922 if (myregend <= regstart || regend <= myregstart)
923 /* do nothing */ ;
924
925 /* Is this register completely within the range the user is writing? */
926 else if (myregstart <= regstart && regend <= myregend)
927 write_register_gen (regnum, myaddr + (regstart - myregstart));
928
929 /* The register partially overlaps the range being written. */
930 else
931 {
932 char *regbuf = (char*) alloca (MAX_REGISTER_RAW_SIZE);
933 /* What's the overlap between this register's bytes and
934 those the caller wants to write? */
935 int overlapstart = max (regstart, myregstart);
936 int overlapend = min (regend, myregend);
937
938 /* We may be doing a partial update of an invalid register.
939 Update it from the target before scribbling on it. */
940 read_register_gen (regnum, regbuf);
941
942 memcpy (registers + overlapstart,
943 myaddr + (overlapstart - myregstart),
944 overlapend - overlapstart);
945
946 target_store_registers (regnum);
947 }
948 }
949 }
950
951 /* Perform a partial register transfer using a read, modify, write
952 operation. */
953
954 typedef void (regcache_read_ftype) (struct regcache *regcache, int regnum,
955 void *buf);
956 typedef void (regcache_write_ftype) (struct regcache *regcache, int regnum,
957 const void *buf);
958
959 void
960 regcache_xfer_part (struct regcache *regcache, int regnum,
961 int offset, int len, void *in, const void *out,
962 regcache_read_ftype *read, regcache_write_ftype *write)
963 {
964 struct regcache_descr *descr = regcache->descr;
965 bfd_byte *reg = alloca (descr->max_register_size);
966 gdb_assert (offset >= 0 && offset <= descr->sizeof_register[regnum]);
967 gdb_assert (len >= 0 && offset + len <= descr->sizeof_register[regnum]);
968 /* Something to do? */
969 if (offset + len == 0)
970 return;
971 /* Read (when needed) ... */
972 if (in != NULL
973 || offset > 0
974 || offset + len < descr->sizeof_register[regnum])
975 {
976 gdb_assert (read != NULL);
977 read (regcache, regnum, reg);
978 }
979 /* ... modify ... */
980 if (in != NULL)
981 memcpy (in, reg + offset, len);
982 if (out != NULL)
983 memcpy (reg + offset, out, len);
984 /* ... write (when needed). */
985 if (out != NULL)
986 {
987 gdb_assert (write != NULL);
988 write (regcache, regnum, reg);
989 }
990 }
991
992 void
993 regcache_raw_read_part (struct regcache *regcache, int regnum,
994 int offset, int len, void *buf)
995 {
996 struct regcache_descr *descr = regcache->descr;
997 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
998 regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
999 regcache_raw_read, regcache_raw_write);
1000 }
1001
1002 void
1003 regcache_raw_write_part (struct regcache *regcache, int regnum,
1004 int offset, int len, const void *buf)
1005 {
1006 struct regcache_descr *descr = regcache->descr;
1007 gdb_assert (regnum >= 0 && regnum < descr->nr_raw_registers);
1008 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
1009 regcache_raw_read, regcache_raw_write);
1010 }
1011
1012 void
1013 regcache_cooked_read_part (struct regcache *regcache, int regnum,
1014 int offset, int len, void *buf)
1015 {
1016 struct regcache_descr *descr = regcache->descr;
1017 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1018 regcache_xfer_part (regcache, regnum, offset, len, buf, NULL,
1019 regcache_cooked_read, regcache_cooked_write);
1020 }
1021
1022 void
1023 regcache_cooked_write_part (struct regcache *regcache, int regnum,
1024 int offset, int len, const void *buf)
1025 {
1026 struct regcache_descr *descr = regcache->descr;
1027 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1028 regcache_xfer_part (regcache, regnum, offset, len, NULL, buf,
1029 regcache_cooked_read, regcache_cooked_write);
1030 }
1031
1032 /* Hack to keep code that view the register buffer as raw bytes
1033 working. */
1034
1035 int
1036 register_offset_hack (struct gdbarch *gdbarch, int regnum)
1037 {
1038 struct regcache_descr *descr = regcache_descr (gdbarch);
1039 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
1040 return descr->register_offset[regnum];
1041 }
1042
1043 static void
1044 cooked_xfer_using_offset_hack (struct regcache *regcache,
1045 int buf_start, int buf_len, void *in_b,
1046 const void *out_b)
1047 {
1048 struct regcache_descr *descr = regcache->descr;
1049 struct gdbarch *gdbarch = descr->gdbarch;
1050 bfd_byte *in_buf = in_b;
1051 const bfd_byte *out_buf = out_b;
1052 int buf_end = buf_start + buf_len;
1053 int regnum;
1054 char *reg_buf = alloca (descr->max_register_size);
1055
1056 /* NOTE: cagney/2002-08-17: This code assumes that the register
1057 offsets are strictly increasing and do not overlap. If this
1058 isn't the case then the bug is in the target architecture and NOT
1059 this code. */
1060
1061 /* NOTE: cagney/2002-08-17: This code assumes that only the
1062 registers covered by BUF_START:BUF_LEN should be transfered. If,
1063 for some reason, there is a gap between two registers, then that
1064 gap isn't transfered. (The gap shouldn't be there but that is
1065 another story.) */
1066
1067 /* Iterate through all registers looking for those that lie within
1068 BUF_START:BUF_LEN. */
1069
1070 for (regnum = 0; regnum < descr->nr_cooked_registers; regnum++)
1071 {
1072 /* The register's location. */
1073 int reg_start = descr->register_offset[regnum];
1074 int reg_len = descr->sizeof_register[regnum];
1075 int reg_end = reg_start + reg_len;
1076
1077 /* The START, END and LEN that falls within the current
1078 register. */
1079 int xfer_start;
1080 int xfer_end;
1081 int xfer_len;
1082
1083 /* start = max (reg_start, buf_start) */
1084 if (reg_start > buf_start)
1085 xfer_start = reg_start;
1086 else
1087 xfer_start = buf_start;
1088
1089 /* end = min (reg_end, buf_end) */
1090 if (reg_end < buf_end)
1091 xfer_end = reg_end;
1092 else
1093 xfer_end = buf_end;
1094
1095 /* The number of bytes to transfer. If there isn't anything to
1096 transfer (the end is before the start) this will be -ve. */
1097 xfer_len = xfer_end - xfer_start;
1098
1099 if (xfer_len > 0)
1100 regcache_xfer_part (regcache, regnum, xfer_start - reg_start,
1101 xfer_len, in_b, out_b, regcache_cooked_read,
1102 regcache_cooked_write);
1103 }
1104 }
1105
1106 void
1107 regcache_cooked_read_using_offset_hack (struct regcache *regcache,
1108 int buf_start, int buf_len, void *b)
1109 {
1110 cooked_xfer_using_offset_hack (regcache, buf_start, buf_len, b, NULL);
1111 }
1112
1113 void
1114 regcache_cooked_write_using_offset_hack (struct regcache *regcache,
1115 int buf_start, int buf_len,
1116 const void *b)
1117 {
1118 cooked_xfer_using_offset_hack (regcache, buf_start, buf_len, NULL, b);
1119 }
1120
1121 /* Return the contents of register REGNUM as an unsigned integer. */
1122
1123 ULONGEST
1124 read_register (int regnum)
1125 {
1126 char *buf = alloca (REGISTER_RAW_SIZE (regnum));
1127 read_register_gen (regnum, buf);
1128 return (extract_unsigned_integer (buf, REGISTER_RAW_SIZE (regnum)));
1129 }
1130
1131 ULONGEST
1132 read_register_pid (int regnum, ptid_t ptid)
1133 {
1134 ptid_t save_ptid;
1135 int save_pid;
1136 CORE_ADDR retval;
1137
1138 if (ptid_equal (ptid, inferior_ptid))
1139 return read_register (regnum);
1140
1141 save_ptid = inferior_ptid;
1142
1143 inferior_ptid = ptid;
1144
1145 retval = read_register (regnum);
1146
1147 inferior_ptid = save_ptid;
1148
1149 return retval;
1150 }
1151
1152 /* Return the contents of register REGNUM as a signed integer. */
1153
1154 LONGEST
1155 read_signed_register (int regnum)
1156 {
1157 void *buf = alloca (REGISTER_RAW_SIZE (regnum));
1158 read_register_gen (regnum, buf);
1159 return (extract_signed_integer (buf, REGISTER_RAW_SIZE (regnum)));
1160 }
1161
1162 LONGEST
1163 read_signed_register_pid (int regnum, ptid_t ptid)
1164 {
1165 ptid_t save_ptid;
1166 LONGEST retval;
1167
1168 if (ptid_equal (ptid, inferior_ptid))
1169 return read_signed_register (regnum);
1170
1171 save_ptid = inferior_ptid;
1172
1173 inferior_ptid = ptid;
1174
1175 retval = read_signed_register (regnum);
1176
1177 inferior_ptid = save_ptid;
1178
1179 return retval;
1180 }
1181
1182 /* Store VALUE into the raw contents of register number REGNUM. */
1183
1184 void
1185 write_register (int regnum, LONGEST val)
1186 {
1187 void *buf;
1188 int size;
1189 size = REGISTER_RAW_SIZE (regnum);
1190 buf = alloca (size);
1191 store_signed_integer (buf, size, (LONGEST) val);
1192 write_register_gen (regnum, buf);
1193 }
1194
1195 void
1196 write_register_pid (int regnum, CORE_ADDR val, ptid_t ptid)
1197 {
1198 ptid_t save_ptid;
1199
1200 if (ptid_equal (ptid, inferior_ptid))
1201 {
1202 write_register (regnum, val);
1203 return;
1204 }
1205
1206 save_ptid = inferior_ptid;
1207
1208 inferior_ptid = ptid;
1209
1210 write_register (regnum, val);
1211
1212 inferior_ptid = save_ptid;
1213 }
1214
1215 /* SUPPLY_REGISTER()
1216
1217 Record that register REGNUM contains VAL. This is used when the
1218 value is obtained from the inferior or core dump, so there is no
1219 need to store the value there.
1220
1221 If VAL is a NULL pointer, then it's probably an unsupported register.
1222 We just set its value to all zeros. We might want to record this
1223 fact, and report it to the users of read_register and friends. */
1224
1225 void
1226 supply_register (int regnum, const void *val)
1227 {
1228 #if 1
1229 if (! ptid_equal (registers_ptid, inferior_ptid))
1230 {
1231 registers_changed ();
1232 registers_ptid = inferior_ptid;
1233 }
1234 #endif
1235
1236 set_register_cached (regnum, 1);
1237 if (val)
1238 memcpy (register_buffer (current_regcache, regnum), val,
1239 REGISTER_RAW_SIZE (regnum));
1240 else
1241 memset (register_buffer (current_regcache, regnum), '\000',
1242 REGISTER_RAW_SIZE (regnum));
1243
1244 /* On some architectures, e.g. HPPA, there are a few stray bits in
1245 some registers, that the rest of the code would like to ignore. */
1246
1247 /* NOTE: cagney/2001-03-16: The macro CLEAN_UP_REGISTER_VALUE is
1248 going to be deprecated. Instead architectures will leave the raw
1249 register value as is and instead clean things up as they pass
1250 through the method gdbarch_pseudo_register_read() clean up the
1251 values. */
1252
1253 #ifdef DEPRECATED_CLEAN_UP_REGISTER_VALUE
1254 DEPRECATED_CLEAN_UP_REGISTER_VALUE \
1255 (regnum, register_buffer (current_regcache, regnum));
1256 #endif
1257 }
1258
1259 void
1260 regcache_collect (int regnum, void *buf)
1261 {
1262 memcpy (buf, register_buffer (current_regcache, regnum),
1263 REGISTER_RAW_SIZE (regnum));
1264 }
1265
1266
1267 /* read_pc, write_pc, read_sp, write_sp, read_fp, etc. Special
1268 handling for registers PC, SP, and FP. */
1269
1270 /* NOTE: cagney/2001-02-18: The functions generic_target_read_pc(),
1271 read_pc_pid(), read_pc(), generic_target_write_pc(),
1272 write_pc_pid(), write_pc(), generic_target_read_sp(), read_sp(),
1273 generic_target_write_sp(), write_sp(), generic_target_read_fp() and
1274 read_fp(), will eventually be moved out of the reg-cache into
1275 either frame.[hc] or to the multi-arch framework. The are not part
1276 of the raw register cache. */
1277
1278 /* This routine is getting awfully cluttered with #if's. It's probably
1279 time to turn this into READ_PC and define it in the tm.h file.
1280 Ditto for write_pc.
1281
1282 1999-06-08: The following were re-written so that it assumes the
1283 existence of a TARGET_READ_PC et.al. macro. A default generic
1284 version of that macro is made available where needed.
1285
1286 Since the ``TARGET_READ_PC'' et.al. macro is going to be controlled
1287 by the multi-arch framework, it will eventually be possible to
1288 eliminate the intermediate read_pc_pid(). The client would call
1289 TARGET_READ_PC directly. (cagney). */
1290
1291 CORE_ADDR
1292 generic_target_read_pc (ptid_t ptid)
1293 {
1294 #ifdef PC_REGNUM
1295 if (PC_REGNUM >= 0)
1296 {
1297 CORE_ADDR pc_val = ADDR_BITS_REMOVE ((CORE_ADDR) read_register_pid (PC_REGNUM, ptid));
1298 return pc_val;
1299 }
1300 #endif
1301 internal_error (__FILE__, __LINE__,
1302 "generic_target_read_pc");
1303 return 0;
1304 }
1305
1306 CORE_ADDR
1307 read_pc_pid (ptid_t ptid)
1308 {
1309 ptid_t saved_inferior_ptid;
1310 CORE_ADDR pc_val;
1311
1312 /* In case ptid != inferior_ptid. */
1313 saved_inferior_ptid = inferior_ptid;
1314 inferior_ptid = ptid;
1315
1316 pc_val = TARGET_READ_PC (ptid);
1317
1318 inferior_ptid = saved_inferior_ptid;
1319 return pc_val;
1320 }
1321
1322 CORE_ADDR
1323 read_pc (void)
1324 {
1325 return read_pc_pid (inferior_ptid);
1326 }
1327
1328 void
1329 generic_target_write_pc (CORE_ADDR pc, ptid_t ptid)
1330 {
1331 #ifdef PC_REGNUM
1332 if (PC_REGNUM >= 0)
1333 write_register_pid (PC_REGNUM, pc, ptid);
1334 if (NPC_REGNUM >= 0)
1335 write_register_pid (NPC_REGNUM, pc + 4, ptid);
1336 #else
1337 internal_error (__FILE__, __LINE__,
1338 "generic_target_write_pc");
1339 #endif
1340 }
1341
1342 void
1343 write_pc_pid (CORE_ADDR pc, ptid_t ptid)
1344 {
1345 ptid_t saved_inferior_ptid;
1346
1347 /* In case ptid != inferior_ptid. */
1348 saved_inferior_ptid = inferior_ptid;
1349 inferior_ptid = ptid;
1350
1351 TARGET_WRITE_PC (pc, ptid);
1352
1353 inferior_ptid = saved_inferior_ptid;
1354 }
1355
1356 void
1357 write_pc (CORE_ADDR pc)
1358 {
1359 write_pc_pid (pc, inferior_ptid);
1360 }
1361
1362 /* Cope with strage ways of getting to the stack and frame pointers */
1363
1364 CORE_ADDR
1365 generic_target_read_sp (void)
1366 {
1367 #ifdef SP_REGNUM
1368 if (SP_REGNUM >= 0)
1369 return read_register (SP_REGNUM);
1370 #endif
1371 internal_error (__FILE__, __LINE__,
1372 "generic_target_read_sp");
1373 }
1374
1375 CORE_ADDR
1376 read_sp (void)
1377 {
1378 return TARGET_READ_SP ();
1379 }
1380
1381 void
1382 generic_target_write_sp (CORE_ADDR val)
1383 {
1384 #ifdef SP_REGNUM
1385 if (SP_REGNUM >= 0)
1386 {
1387 write_register (SP_REGNUM, val);
1388 return;
1389 }
1390 #endif
1391 internal_error (__FILE__, __LINE__,
1392 "generic_target_write_sp");
1393 }
1394
1395 void
1396 write_sp (CORE_ADDR val)
1397 {
1398 TARGET_WRITE_SP (val);
1399 }
1400
1401 CORE_ADDR
1402 generic_target_read_fp (void)
1403 {
1404 #ifdef FP_REGNUM
1405 if (FP_REGNUM >= 0)
1406 return read_register (FP_REGNUM);
1407 #endif
1408 internal_error (__FILE__, __LINE__,
1409 "generic_target_read_fp");
1410 }
1411
1412 CORE_ADDR
1413 read_fp (void)
1414 {
1415 return TARGET_READ_FP ();
1416 }
1417
1418 /* ARGSUSED */
1419 static void
1420 reg_flush_command (char *command, int from_tty)
1421 {
1422 /* Force-flush the register cache. */
1423 registers_changed ();
1424 if (from_tty)
1425 printf_filtered ("Register cache flushed.\n");
1426 }
1427
1428 static void
1429 build_regcache (void)
1430 {
1431 current_regcache = regcache_xmalloc (current_gdbarch);
1432 current_regcache->passthrough_p = 1;
1433 registers = deprecated_grub_regcache_for_registers (current_regcache);
1434 register_valid = deprecated_grub_regcache_for_register_valid (current_regcache);
1435 }
1436
1437 static void
1438 dump_endian_bytes (struct ui_file *file, enum bfd_endian endian,
1439 const unsigned char *buf, long len)
1440 {
1441 int i;
1442 switch (endian)
1443 {
1444 case BFD_ENDIAN_BIG:
1445 for (i = 0; i < len; i++)
1446 fprintf_unfiltered (file, "%02x", buf[i]);
1447 break;
1448 case BFD_ENDIAN_LITTLE:
1449 for (i = len - 1; i >= 0; i--)
1450 fprintf_unfiltered (file, "%02x", buf[i]);
1451 break;
1452 default:
1453 internal_error (__FILE__, __LINE__, "Bad switch");
1454 }
1455 }
1456
1457 enum regcache_dump_what
1458 {
1459 regcache_dump_none, regcache_dump_raw, regcache_dump_cooked
1460 };
1461
1462 static void
1463 regcache_dump (struct regcache *regcache, struct ui_file *file,
1464 enum regcache_dump_what what_to_dump)
1465 {
1466 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
1467 int regnum;
1468 int footnote_nr = 0;
1469 int footnote_register_size = 0;
1470 int footnote_register_offset = 0;
1471 int footnote_register_type_name_null = 0;
1472 long register_offset = 0;
1473 unsigned char *buf = alloca (regcache->descr->max_register_size);
1474
1475 #if 0
1476 fprintf_unfiltered (file, "legacy_p %d\n", regcache->descr->legacy_p);
1477 fprintf_unfiltered (file, "nr_raw_registers %d\n",
1478 regcache->descr->nr_raw_registers);
1479 fprintf_unfiltered (file, "nr_cooked_registers %d\n",
1480 regcache->descr->nr_cooked_registers);
1481 fprintf_unfiltered (file, "sizeof_raw_registers %ld\n",
1482 regcache->descr->sizeof_raw_registers);
1483 fprintf_unfiltered (file, "sizeof_raw_register_valid_p %ld\n",
1484 regcache->descr->sizeof_raw_register_valid_p);
1485 fprintf_unfiltered (file, "max_register_size %ld\n",
1486 regcache->descr->max_register_size);
1487 fprintf_unfiltered (file, "NUM_REGS %d\n", NUM_REGS);
1488 fprintf_unfiltered (file, "NUM_PSEUDO_REGS %d\n", NUM_PSEUDO_REGS);
1489 #endif
1490
1491 gdb_assert (regcache->descr->nr_cooked_registers
1492 == (NUM_REGS + NUM_PSEUDO_REGS));
1493
1494 for (regnum = -1; regnum < regcache->descr->nr_cooked_registers; regnum++)
1495 {
1496 /* Name. */
1497 if (regnum < 0)
1498 fprintf_unfiltered (file, " %-10s", "Name");
1499 else
1500 {
1501 const char *p = REGISTER_NAME (regnum);
1502 if (p == NULL)
1503 p = "";
1504 else if (p[0] == '\0')
1505 p = "''";
1506 fprintf_unfiltered (file, " %-10s", p);
1507 }
1508
1509 /* Number. */
1510 if (regnum < 0)
1511 fprintf_unfiltered (file, " %4s", "Nr");
1512 else
1513 fprintf_unfiltered (file, " %4d", regnum);
1514
1515 /* Relative number. */
1516 if (regnum < 0)
1517 fprintf_unfiltered (file, " %4s", "Rel");
1518 else if (regnum < NUM_REGS)
1519 fprintf_unfiltered (file, " %4d", regnum);
1520 else
1521 fprintf_unfiltered (file, " %4d", (regnum - NUM_REGS));
1522
1523 /* Offset. */
1524 if (regnum < 0)
1525 fprintf_unfiltered (file, " %6s ", "Offset");
1526 else
1527 {
1528 fprintf_unfiltered (file, " %6ld",
1529 regcache->descr->register_offset[regnum]);
1530 if (register_offset != regcache->descr->register_offset[regnum]
1531 || register_offset != REGISTER_BYTE (regnum)
1532 || (regnum > 0
1533 && (regcache->descr->register_offset[regnum]
1534 != (regcache->descr->register_offset[regnum - 1]
1535 + regcache->descr->sizeof_register[regnum - 1])))
1536 )
1537 {
1538 if (!footnote_register_offset)
1539 footnote_register_offset = ++footnote_nr;
1540 fprintf_unfiltered (file, "*%d", footnote_register_offset);
1541 }
1542 else
1543 fprintf_unfiltered (file, " ");
1544 register_offset = (regcache->descr->register_offset[regnum]
1545 + regcache->descr->sizeof_register[regnum]);
1546 }
1547
1548 /* Size. */
1549 if (regnum < 0)
1550 fprintf_unfiltered (file, " %5s ", "Size");
1551 else
1552 {
1553 fprintf_unfiltered (file, " %5ld",
1554 regcache->descr->sizeof_register[regnum]);
1555 if ((regcache->descr->sizeof_register[regnum]
1556 != REGISTER_RAW_SIZE (regnum))
1557 || (regcache->descr->sizeof_register[regnum]
1558 != REGISTER_VIRTUAL_SIZE (regnum))
1559 || (regcache->descr->sizeof_register[regnum]
1560 != TYPE_LENGTH (register_type (regcache->descr->gdbarch,
1561 regnum)))
1562 )
1563 {
1564 if (!footnote_register_size)
1565 footnote_register_size = ++footnote_nr;
1566 fprintf_unfiltered (file, "*%d", footnote_register_size);
1567 }
1568 else
1569 fprintf_unfiltered (file, " ");
1570 }
1571
1572 /* Type. */
1573 if (regnum < 0)
1574 fprintf_unfiltered (file, " %-20s", "Type");
1575 else
1576 {
1577 static const char blt[] = "builtin_type";
1578 const char *t = TYPE_NAME (register_type (regcache->descr->gdbarch,
1579 regnum));
1580 if (t == NULL)
1581 {
1582 char *n;
1583 if (!footnote_register_type_name_null)
1584 footnote_register_type_name_null = ++footnote_nr;
1585 xasprintf (&n, "*%d", footnote_register_type_name_null);
1586 make_cleanup (xfree, n);
1587 t = n;
1588 }
1589 /* Chop a leading builtin_type. */
1590 if (strncmp (t, blt, strlen (blt)) == 0)
1591 t += strlen (blt);
1592 fprintf_unfiltered (file, " %-20s", t);
1593 }
1594
1595 /* Value, raw. */
1596 if (what_to_dump == regcache_dump_raw)
1597 {
1598 if (regnum < 0)
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>");
1604 else
1605 {
1606 regcache_raw_read (regcache, regnum, buf);
1607 fprintf_unfiltered (file, "0x");
1608 dump_endian_bytes (file, TARGET_BYTE_ORDER, buf,
1609 REGISTER_RAW_SIZE (regnum));
1610 }
1611 }
1612
1613 /* Value, cooked. */
1614 if (what_to_dump == regcache_dump_cooked)
1615 {
1616 if (regnum < 0)
1617 fprintf_unfiltered (file, "Cooked value");
1618 else
1619 {
1620 regcache_cooked_read (regcache, regnum, buf);
1621 fprintf_unfiltered (file, "0x");
1622 dump_endian_bytes (file, TARGET_BYTE_ORDER, buf,
1623 REGISTER_VIRTUAL_SIZE (regnum));
1624 }
1625 }
1626
1627 fprintf_unfiltered (file, "\n");
1628 }
1629
1630 if (footnote_register_size)
1631 fprintf_unfiltered (file, "*%d: Inconsistent register sizes.\n",
1632 footnote_register_size);
1633 if (footnote_register_offset)
1634 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1635 footnote_register_offset);
1636 if (footnote_register_type_name_null)
1637 fprintf_unfiltered (file,
1638 "*%d: Register type's name NULL.\n",
1639 footnote_register_type_name_null);
1640 do_cleanups (cleanups);
1641 }
1642
1643 static void
1644 regcache_print (char *args, enum regcache_dump_what what_to_dump)
1645 {
1646 if (args == NULL)
1647 regcache_dump (current_regcache, gdb_stdout, what_to_dump);
1648 else
1649 {
1650 struct ui_file *file = gdb_fopen (args, "w");
1651 if (file == NULL)
1652 perror_with_name ("maintenance print architecture");
1653 regcache_dump (current_regcache, file, what_to_dump);
1654 ui_file_delete (file);
1655 }
1656 }
1657
1658 static void
1659 maintenance_print_registers (char *args, int from_tty)
1660 {
1661 regcache_print (args, regcache_dump_none);
1662 }
1663
1664 static void
1665 maintenance_print_raw_registers (char *args, int from_tty)
1666 {
1667 regcache_print (args, regcache_dump_raw);
1668 }
1669
1670 static void
1671 maintenance_print_cooked_registers (char *args, int from_tty)
1672 {
1673 regcache_print (args, regcache_dump_cooked);
1674 }
1675
1676 void
1677 _initialize_regcache (void)
1678 {
1679 regcache_descr_handle = register_gdbarch_data (init_regcache_descr,
1680 xfree_regcache_descr);
1681 REGISTER_GDBARCH_SWAP (current_regcache);
1682 register_gdbarch_swap (&registers, sizeof (registers), NULL);
1683 register_gdbarch_swap (&register_valid, sizeof (register_valid), NULL);
1684 register_gdbarch_swap (NULL, 0, build_regcache);
1685
1686 add_com ("flushregs", class_maintenance, reg_flush_command,
1687 "Force gdb to flush its register cache (maintainer command)");
1688
1689 /* Initialize the thread/process associated with the current set of
1690 registers. For now, -1 is special, and means `no current process'. */
1691 registers_ptid = pid_to_ptid (-1);
1692
1693 add_cmd ("registers", class_maintenance,
1694 maintenance_print_registers,
1695 "Print the internal register configuration.\
1696 Takes an optional file parameter.",
1697 &maintenanceprintlist);
1698 add_cmd ("raw-registers", class_maintenance,
1699 maintenance_print_raw_registers,
1700 "Print the internal register configuration including raw values.\
1701 Takes an optional file parameter.",
1702 &maintenanceprintlist);
1703 add_cmd ("cooked-registers", class_maintenance,
1704 maintenance_print_cooked_registers,
1705 "Print the internal register configuration including cooked values.\
1706 Takes an optional file parameter.",
1707 &maintenanceprintlist);
1708
1709 }
This page took 0.089788 seconds and 4 git commands to generate.