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