remote: Move discard_pending_stop_replies call
[deliverable/binutils-gdb.git] / gdb / regcache.c
CommitLineData
32178cab 1/* Cache and manage the values of registers for GDB, the GNU debugger.
3fadccb3 2
e2882c85 3 Copyright (C) 1986-2018 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"
76727919 27#include "observable.h"
0b309272 28#include "regset.h"
94bb8dfe 29#include <forward_list>
32178cab
MS
30
31/*
32 * DATA STRUCTURE
33 *
34 * Here is the actual register cache.
35 */
36
3fadccb3 37/* Per-architecture object describing the layout of a register cache.
0df8b418 38 Computed once when the architecture is created. */
3fadccb3
AC
39
40struct gdbarch_data *regcache_descr_handle;
41
42struct regcache_descr
43{
44 /* The architecture this descriptor belongs to. */
45 struct gdbarch *gdbarch;
46
bb1db049
AC
47 /* The raw register cache. Each raw (or hard) register is supplied
48 by the target interface. The raw cache should not contain
49 redundant information - if the PC is constructed from two
d2f0b918 50 registers then those registers and not the PC lives in the raw
bb1db049 51 cache. */
3fadccb3 52 long sizeof_raw_registers;
3fadccb3 53
d138e37a
AC
54 /* The cooked register space. Each cooked register in the range
55 [0..NR_RAW_REGISTERS) is direct-mapped onto the corresponding raw
56 register. The remaining [NR_RAW_REGISTERS
02f60eae 57 .. NR_COOKED_REGISTERS) (a.k.a. pseudo registers) are mapped onto
d138e37a 58 both raw registers and memory by the architecture methods
02f60eae 59 gdbarch_pseudo_register_read and gdbarch_pseudo_register_write. */
d138e37a 60 int nr_cooked_registers;
067df2e5 61 long sizeof_cooked_registers;
d138e37a 62
86d31898 63 /* Offset and size (in 8 bit bytes), of each register in the
d138e37a 64 register cache. All registers (including those in the range
99e42fd8
PA
65 [NR_RAW_REGISTERS .. NR_COOKED_REGISTERS) are given an
66 offset. */
3fadccb3 67 long *register_offset;
3fadccb3 68 long *sizeof_register;
3fadccb3 69
bb425013
AC
70 /* Cached table containing the type of each register. */
71 struct type **register_type;
3fadccb3
AC
72};
73
3fadccb3
AC
74static void *
75init_regcache_descr (struct gdbarch *gdbarch)
76{
77 int i;
78 struct regcache_descr *descr;
79 gdb_assert (gdbarch != NULL);
80
bb425013 81 /* Create an initial, zero filled, table. */
116f06ea 82 descr = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct regcache_descr);
3fadccb3 83 descr->gdbarch = gdbarch;
3fadccb3 84
d138e37a
AC
85 /* Total size of the register space. The raw registers are mapped
86 directly onto the raw register cache while the pseudo's are
3fadccb3 87 either mapped onto raw-registers or memory. */
214e098a
UW
88 descr->nr_cooked_registers = gdbarch_num_regs (gdbarch)
89 + gdbarch_num_pseudo_regs (gdbarch);
3fadccb3 90
bb425013 91 /* Fill in a table of register types. */
116f06ea 92 descr->register_type
3e43a32a
MS
93 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers,
94 struct type *);
bb425013 95 for (i = 0; i < descr->nr_cooked_registers; i++)
336a3131 96 descr->register_type[i] = gdbarch_register_type (gdbarch, i);
bb425013 97
bb1db049
AC
98 /* Construct a strictly RAW register cache. Don't allow pseudo's
99 into the register cache. */
bb1db049 100
067df2e5 101 /* Lay out the register cache.
3fadccb3 102
bb425013
AC
103 NOTE: cagney/2002-05-22: Only register_type() is used when
104 constructing the register cache. It is assumed that the
105 register's raw size, virtual size and type length are all the
106 same. */
3fadccb3
AC
107
108 {
109 long offset = 0;
123f5f96 110
116f06ea
AC
111 descr->sizeof_register
112 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
113 descr->register_offset
114 = GDBARCH_OBSTACK_CALLOC (gdbarch, descr->nr_cooked_registers, long);
d999647b 115 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
99e42fd8
PA
116 {
117 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
118 descr->register_offset[i] = offset;
119 offset += descr->sizeof_register[i];
99e42fd8
PA
120 }
121 /* Set the real size of the raw register cache buffer. */
122 descr->sizeof_raw_registers = offset;
123
124 for (; i < descr->nr_cooked_registers; i++)
3fadccb3 125 {
bb425013 126 descr->sizeof_register[i] = TYPE_LENGTH (descr->register_type[i]);
3fadccb3
AC
127 descr->register_offset[i] = offset;
128 offset += descr->sizeof_register[i];
3fadccb3 129 }
99e42fd8 130 /* Set the real size of the readonly register cache buffer. */
067df2e5 131 descr->sizeof_cooked_registers = offset;
3fadccb3
AC
132 }
133
3fadccb3
AC
134 return descr;
135}
136
137static struct regcache_descr *
138regcache_descr (struct gdbarch *gdbarch)
139{
19ba03f4
SM
140 return (struct regcache_descr *) gdbarch_data (gdbarch,
141 regcache_descr_handle);
3fadccb3
AC
142}
143
bb425013
AC
144/* Utility functions returning useful register attributes stored in
145 the regcache descr. */
146
147struct type *
148register_type (struct gdbarch *gdbarch, int regnum)
149{
150 struct regcache_descr *descr = regcache_descr (gdbarch);
123f5f96 151
bb425013
AC
152 gdb_assert (regnum >= 0 && regnum < descr->nr_cooked_registers);
153 return descr->register_type[regnum];
154}
155
0ed04cce
AC
156/* Utility functions returning useful register attributes stored in
157 the regcache descr. */
158
08a617da
AC
159int
160register_size (struct gdbarch *gdbarch, int regnum)
161{
162 struct regcache_descr *descr = regcache_descr (gdbarch);
163 int size;
123f5f96 164
f57d151a 165 gdb_assert (regnum >= 0
214e098a
UW
166 && regnum < (gdbarch_num_regs (gdbarch)
167 + gdbarch_num_pseudo_regs (gdbarch)));
08a617da 168 size = descr->sizeof_register[regnum];
08a617da
AC
169 return size;
170}
171
8d689ee5
YQ
172/* See common/common-regcache.h. */
173
174int
175regcache_register_size (const struct regcache *regcache, int n)
176{
ac7936df 177 return register_size (regcache->arch (), n);
8d689ee5
YQ
178}
179
31716595
YQ
180reg_buffer::reg_buffer (gdbarch *gdbarch, bool has_pseudo)
181 : m_has_pseudo (has_pseudo)
3fadccb3 182{
ef79d9a3
YQ
183 gdb_assert (gdbarch != NULL);
184 m_descr = regcache_descr (gdbarch);
4621115f 185
31716595 186 if (has_pseudo)
4621115f 187 {
ef79d9a3
YQ
188 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_cooked_registers);
189 m_register_status = XCNEWVEC (signed char,
6c5218df 190 m_descr->nr_cooked_registers);
4621115f
YQ
191 }
192 else
193 {
ef79d9a3 194 m_registers = XCNEWVEC (gdb_byte, m_descr->sizeof_raw_registers);
d999647b 195 m_register_status = XCNEWVEC (signed char, gdbarch_num_regs (gdbarch));
4621115f 196 }
31716595
YQ
197}
198
796bb026
YQ
199regcache::regcache (gdbarch *gdbarch, const address_space *aspace_)
200/* The register buffers. A read/write register cache can only hold
201 [0 .. gdbarch_num_regs). */
202 : detached_regcache (gdbarch, false), m_aspace (aspace_)
31716595 203{
ef79d9a3
YQ
204 m_ptid = minus_one_ptid;
205}
4621115f 206
deb1fa3e
YQ
207static enum register_status
208do_cooked_read (void *src, int regnum, gdb_byte *buf)
209{
210 struct regcache *regcache = (struct regcache *) src;
211
212 return regcache_cooked_read (regcache, regnum, buf);
213}
214
daf6667d
YQ
215readonly_detached_regcache::readonly_detached_regcache (const regcache &src)
216 : readonly_detached_regcache (src.arch (), do_cooked_read, (void *) &src)
217{
218}
219
ef79d9a3 220gdbarch *
31716595 221reg_buffer::arch () const
ef79d9a3
YQ
222{
223 return m_descr->gdbarch;
224}
3fadccb3 225
ddaaf0fb
SM
226/* See regcache.h. */
227
228ptid_t
229regcache_get_ptid (const struct regcache *regcache)
230{
ef79d9a3 231 gdb_assert (!ptid_equal (regcache->ptid (), minus_one_ptid));
ddaaf0fb 232
ef79d9a3 233 return regcache->ptid ();
ddaaf0fb
SM
234}
235
b292235f 236/* Cleanup class for invalidating a register. */
b94ade42 237
b292235f 238class regcache_invalidator
b94ade42 239{
b292235f 240public:
b94ade42 241
b292235f
TT
242 regcache_invalidator (struct regcache *regcache, int regnum)
243 : m_regcache (regcache),
244 m_regnum (regnum)
245 {
246 }
b94ade42 247
b292235f
TT
248 ~regcache_invalidator ()
249 {
250 if (m_regcache != nullptr)
251 regcache_invalidate (m_regcache, m_regnum);
252 }
b94ade42 253
b292235f 254 DISABLE_COPY_AND_ASSIGN (regcache_invalidator);
b94ade42 255
b292235f
TT
256 void release ()
257 {
258 m_regcache = nullptr;
259 }
260
261private:
262
263 struct regcache *m_regcache;
264 int m_regnum;
265};
b94ade42 266
51b1fe4e
AC
267/* Return a pointer to register REGNUM's buffer cache. */
268
ef79d9a3 269gdb_byte *
31716595 270reg_buffer::register_buffer (int regnum) const
51b1fe4e 271{
ef79d9a3 272 return m_registers + m_descr->register_offset[regnum];
51b1fe4e
AC
273}
274
ef79d9a3 275void
daf6667d
YQ
276reg_buffer::save (regcache_cooked_read_ftype *cooked_read,
277 void *src)
ef79d9a3
YQ
278{
279 struct gdbarch *gdbarch = m_descr->gdbarch;
2d28509a 280 int regnum;
123f5f96 281
daf6667d
YQ
282 /* It should have pseudo registers. */
283 gdb_assert (m_has_pseudo);
2d28509a 284 /* Clear the dest. */
ef79d9a3 285 memset (m_registers, 0, m_descr->sizeof_cooked_registers);
6c5218df 286 memset (m_register_status, 0, m_descr->nr_cooked_registers);
2d28509a 287 /* Copy over any registers (identified by their membership in the
f57d151a
UW
288 save_reggroup) and mark them as valid. The full [0 .. gdbarch_num_regs +
289 gdbarch_num_pseudo_regs) range is checked since some architectures need
5602984a 290 to save/restore `cooked' registers that live in memory. */
ef79d9a3 291 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
2d28509a
AC
292 {
293 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
294 {
50d6adef
AH
295 gdb_byte *dst_buf = register_buffer (regnum);
296 enum register_status status = cooked_read (src, regnum, dst_buf);
123f5f96 297
50d6adef
AH
298 gdb_assert (status != REG_UNKNOWN);
299
300 if (status != REG_VALID)
301 memset (dst_buf, 0, register_size (gdbarch, regnum));
05d1431c 302
ef79d9a3 303 m_register_status[regnum] = status;
2d28509a
AC
304 }
305 }
306}
307
ef79d9a3 308void
daf6667d 309regcache::restore (readonly_detached_regcache *src)
2d28509a 310{
ef79d9a3 311 struct gdbarch *gdbarch = m_descr->gdbarch;
2d28509a 312 int regnum;
123f5f96 313
fc5b8736 314 gdb_assert (src != NULL);
daf6667d 315 gdb_assert (src->m_has_pseudo);
fc5b8736
YQ
316
317 gdb_assert (gdbarch == src->arch ());
318
2d28509a 319 /* Copy over any registers, being careful to only restore those that
f57d151a
UW
320 were both saved and need to be restored. The full [0 .. gdbarch_num_regs
321 + gdbarch_num_pseudo_regs) range is checked since some architectures need
5602984a 322 to save/restore `cooked' registers that live in memory. */
ef79d9a3 323 for (regnum = 0; regnum < m_descr->nr_cooked_registers; regnum++)
2d28509a 324 {
5602984a 325 if (gdbarch_register_reggroup_p (gdbarch, regnum, restore_reggroup))
2d28509a 326 {
ef79d9a3
YQ
327 if (src->m_register_status[regnum] == REG_VALID)
328 cooked_write (regnum, src->register_buffer (regnum));
2d28509a
AC
329 }
330 }
331}
332
39181896 333enum register_status
ee99023e 334regcache_register_status (const struct regcache *regcache, int regnum)
3fadccb3
AC
335{
336 gdb_assert (regcache != NULL);
ef79d9a3
YQ
337 return regcache->get_register_status (regnum);
338}
339
340enum register_status
c8ec2f33 341reg_buffer::get_register_status (int regnum) const
ef79d9a3 342{
c8ec2f33 343 assert_regnum (regnum);
6ed7ea50 344
ef79d9a3 345 return (enum register_status) m_register_status[regnum];
3fadccb3
AC
346}
347
9c5ea4d9
UW
348void
349regcache_invalidate (struct regcache *regcache, int regnum)
350{
351 gdb_assert (regcache != NULL);
ef79d9a3 352 regcache->invalidate (regnum);
9c5ea4d9
UW
353}
354
ef79d9a3 355void
796bb026 356detached_regcache::invalidate (int regnum)
ef79d9a3 357{
4e888c28 358 assert_regnum (regnum);
ef79d9a3
YQ
359 m_register_status[regnum] = REG_UNKNOWN;
360}
9c5ea4d9 361
4e888c28 362void
31716595 363reg_buffer::assert_regnum (int regnum) const
4e888c28 364{
31716595
YQ
365 gdb_assert (regnum >= 0);
366 if (m_has_pseudo)
367 gdb_assert (regnum < m_descr->nr_cooked_registers);
368 else
369 gdb_assert (regnum < gdbarch_num_regs (arch ()));
4e888c28
YQ
370}
371
3fadccb3 372/* Global structure containing the current regcache. */
3fadccb3 373
5ebd2499 374/* NOTE: this is a write-through cache. There is no "dirty" bit for
32178cab
MS
375 recording if the register values have been changed (eg. by the
376 user). Therefore all registers must be written back to the
377 target when appropriate. */
e521e87e 378std::forward_list<regcache *> regcache::current_regcache;
c2250ad1
UW
379
380struct regcache *
e2d96639
YQ
381get_thread_arch_aspace_regcache (ptid_t ptid, struct gdbarch *gdbarch,
382 struct address_space *aspace)
c2250ad1 383{
e521e87e 384 for (const auto &regcache : regcache::current_regcache)
94bb8dfe
YQ
385 if (ptid_equal (regcache->ptid (), ptid) && regcache->arch () == gdbarch)
386 return regcache;
594f7785 387
796bb026 388 regcache *new_regcache = new regcache (gdbarch, aspace);
594f7785 389
e521e87e 390 regcache::current_regcache.push_front (new_regcache);
ef79d9a3 391 new_regcache->set_ptid (ptid);
e2d96639 392
e2d96639
YQ
393 return new_regcache;
394}
395
396struct regcache *
397get_thread_arch_regcache (ptid_t ptid, struct gdbarch *gdbarch)
398{
ed4227b7 399 address_space *aspace = target_thread_address_space (ptid);
b78974c3 400
e2d96639 401 return get_thread_arch_aspace_regcache (ptid, gdbarch, aspace);
594f7785
UW
402}
403
c2250ad1
UW
404static ptid_t current_thread_ptid;
405static struct gdbarch *current_thread_arch;
406
407struct regcache *
408get_thread_regcache (ptid_t ptid)
409{
410 if (!current_thread_arch || !ptid_equal (current_thread_ptid, ptid))
411 {
412 current_thread_ptid = ptid;
413 current_thread_arch = target_thread_architecture (ptid);
414 }
415
416 return get_thread_arch_regcache (ptid, current_thread_arch);
417}
418
419struct regcache *
420get_current_regcache (void)
594f7785
UW
421{
422 return get_thread_regcache (inferior_ptid);
423}
32178cab 424
361c8ade
GB
425/* See common/common-regcache.h. */
426
427struct regcache *
428get_thread_regcache_for_ptid (ptid_t ptid)
429{
430 return get_thread_regcache (ptid);
431}
32178cab 432
f4c5303c
OF
433/* Observer for the target_changed event. */
434
2c0b251b 435static void
f4c5303c
OF
436regcache_observer_target_changed (struct target_ops *target)
437{
438 registers_changed ();
439}
440
5231c1fd
PA
441/* Update global variables old ptids to hold NEW_PTID if they were
442 holding OLD_PTID. */
e521e87e
YQ
443void
444regcache::regcache_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
5231c1fd 445{
e521e87e 446 for (auto &regcache : regcache::current_regcache)
94bb8dfe
YQ
447 {
448 if (ptid_equal (regcache->ptid (), old_ptid))
449 regcache->set_ptid (new_ptid);
450 }
5231c1fd
PA
451}
452
32178cab
MS
453/* Low level examining and depositing of registers.
454
455 The caller is responsible for making sure that the inferior is
456 stopped before calling the fetching routines, or it will get
457 garbage. (a change from GDB version 3, in which the caller got the
458 value from the last stop). */
459
460/* REGISTERS_CHANGED ()
461
462 Indicate that registers may have changed, so invalidate the cache. */
463
464void
e66408ed 465registers_changed_ptid (ptid_t ptid)
32178cab 466{
e521e87e 467 for (auto oit = regcache::current_regcache.before_begin (),
94bb8dfe 468 it = std::next (oit);
e521e87e 469 it != regcache::current_regcache.end ();
94bb8dfe 470 )
c2250ad1 471 {
94bb8dfe 472 if (ptid_match ((*it)->ptid (), ptid))
e66408ed 473 {
94bb8dfe 474 delete *it;
e521e87e 475 it = regcache::current_regcache.erase_after (oit);
e66408ed 476 }
94bb8dfe
YQ
477 else
478 oit = it++;
c2250ad1 479 }
32178cab 480
c34fd852 481 if (ptid_match (current_thread_ptid, ptid))
041274d8
PA
482 {
483 current_thread_ptid = null_ptid;
484 current_thread_arch = NULL;
485 }
32178cab 486
c34fd852 487 if (ptid_match (inferior_ptid, ptid))
041274d8
PA
488 {
489 /* We just deleted the regcache of the current thread. Need to
490 forget about any frames we have cached, too. */
491 reinit_frame_cache ();
492 }
493}
c2250ad1 494
041274d8
PA
495void
496registers_changed (void)
497{
498 registers_changed_ptid (minus_one_ptid);
a5d9d57d 499
32178cab
MS
500 /* Force cleanup of any alloca areas if using C alloca instead of
501 a builtin alloca. This particular call is used to clean up
502 areas allocated by low level target code which may build up
503 during lengthy interactions between gdb and the target before
504 gdb gives control to the user (ie watchpoints). */
505 alloca (0);
32178cab
MS
506}
507
8e368124
AH
508void
509regcache_raw_update (struct regcache *regcache, int regnum)
61a0eb5b 510{
8e368124 511 gdb_assert (regcache != NULL);
ef79d9a3
YQ
512
513 regcache->raw_update (regnum);
514}
515
516void
517regcache::raw_update (int regnum)
518{
4e888c28 519 assert_regnum (regnum);
8e368124 520
3fadccb3
AC
521 /* Make certain that the register cache is up-to-date with respect
522 to the current thread. This switching shouldn't be necessary
523 only there is still only one target side register cache. Sigh!
524 On the bright side, at least there is a regcache object. */
8e368124 525
796bb026 526 if (get_register_status (regnum) == REG_UNKNOWN)
3fadccb3 527 {
ef79d9a3 528 target_fetch_registers (this, regnum);
788c8b10
PA
529
530 /* A number of targets can't access the whole set of raw
531 registers (because the debug API provides no means to get at
532 them). */
ef79d9a3
YQ
533 if (m_register_status[regnum] == REG_UNKNOWN)
534 m_register_status[regnum] = REG_UNAVAILABLE;
3fadccb3 535 }
8e368124
AH
536}
537
538enum register_status
539regcache_raw_read (struct regcache *regcache, int regnum, gdb_byte *buf)
ef79d9a3
YQ
540{
541 return regcache->raw_read (regnum, buf);
542}
543
544enum register_status
849d0ba8 545readable_regcache::raw_read (int regnum, gdb_byte *buf)
8e368124
AH
546{
547 gdb_assert (buf != NULL);
ef79d9a3 548 raw_update (regnum);
05d1431c 549
ef79d9a3
YQ
550 if (m_register_status[regnum] != REG_VALID)
551 memset (buf, 0, m_descr->sizeof_register[regnum]);
05d1431c 552 else
ef79d9a3
YQ
553 memcpy (buf, register_buffer (regnum),
554 m_descr->sizeof_register[regnum]);
05d1431c 555
ef79d9a3 556 return (enum register_status) m_register_status[regnum];
61a0eb5b
AC
557}
558
05d1431c 559enum register_status
28fc6740 560regcache_raw_read_signed (struct regcache *regcache, int regnum, LONGEST *val)
ef79d9a3
YQ
561{
562 gdb_assert (regcache != NULL);
6f98355c 563 return regcache->raw_read (regnum, val);
ef79d9a3
YQ
564}
565
6f98355c 566template<typename T, typename>
ef79d9a3 567enum register_status
849d0ba8 568readable_regcache::raw_read (int regnum, T *val)
28fc6740 569{
2d522557 570 gdb_byte *buf;
05d1431c 571 enum register_status status;
123f5f96 572
4e888c28 573 assert_regnum (regnum);
ef79d9a3
YQ
574 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
575 status = raw_read (regnum, buf);
05d1431c 576 if (status == REG_VALID)
6f98355c
YQ
577 *val = extract_integer<T> (buf,
578 m_descr->sizeof_register[regnum],
579 gdbarch_byte_order (m_descr->gdbarch));
05d1431c
PA
580 else
581 *val = 0;
582 return status;
28fc6740
AC
583}
584
05d1431c 585enum register_status
28fc6740
AC
586regcache_raw_read_unsigned (struct regcache *regcache, int regnum,
587 ULONGEST *val)
ef79d9a3
YQ
588{
589 gdb_assert (regcache != NULL);
6f98355c 590 return regcache->raw_read (regnum, val);
28fc6740
AC
591}
592
c00dcbe9
MK
593void
594regcache_raw_write_signed (struct regcache *regcache, int regnum, LONGEST val)
ef79d9a3
YQ
595{
596 gdb_assert (regcache != NULL);
6f98355c 597 regcache->raw_write (regnum, val);
ef79d9a3
YQ
598}
599
6f98355c 600template<typename T, typename>
ef79d9a3 601void
6f98355c 602regcache::raw_write (int regnum, T val)
c00dcbe9 603{
7c543f7b 604 gdb_byte *buf;
123f5f96 605
4e888c28 606 assert_regnum (regnum);
ef79d9a3 607 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
6f98355c
YQ
608 store_integer (buf, m_descr->sizeof_register[regnum],
609 gdbarch_byte_order (m_descr->gdbarch), val);
ef79d9a3 610 raw_write (regnum, buf);
c00dcbe9
MK
611}
612
613void
614regcache_raw_write_unsigned (struct regcache *regcache, int regnum,
615 ULONGEST val)
ef79d9a3
YQ
616{
617 gdb_assert (regcache != NULL);
6f98355c 618 regcache->raw_write (regnum, val);
c00dcbe9
MK
619}
620
9fd15b2e
YQ
621LONGEST
622regcache_raw_get_signed (struct regcache *regcache, int regnum)
623{
624 LONGEST value;
625 enum register_status status;
626
627 status = regcache_raw_read_signed (regcache, regnum, &value);
628 if (status == REG_UNAVAILABLE)
629 throw_error (NOT_AVAILABLE_ERROR,
630 _("Register %d is not available"), regnum);
631 return value;
632}
633
05d1431c 634enum register_status
2d522557 635regcache_cooked_read (struct regcache *regcache, int regnum, gdb_byte *buf)
ef79d9a3
YQ
636{
637 return regcache->cooked_read (regnum, buf);
638}
639
640enum register_status
849d0ba8 641readable_regcache::cooked_read (int regnum, gdb_byte *buf)
68365089 642{
d138e37a 643 gdb_assert (regnum >= 0);
ef79d9a3 644 gdb_assert (regnum < m_descr->nr_cooked_registers);
d999647b 645 if (regnum < num_raw_registers ())
ef79d9a3 646 return raw_read (regnum, buf);
849d0ba8 647 else if (m_has_pseudo
ef79d9a3 648 && m_register_status[regnum] != REG_UNKNOWN)
05d1431c 649 {
ef79d9a3
YQ
650 if (m_register_status[regnum] == REG_VALID)
651 memcpy (buf, register_buffer (regnum),
652 m_descr->sizeof_register[regnum]);
05d1431c 653 else
ef79d9a3 654 memset (buf, 0, m_descr->sizeof_register[regnum]);
05d1431c 655
ef79d9a3 656 return (enum register_status) m_register_status[regnum];
05d1431c 657 }
ef79d9a3 658 else if (gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
3543a589
TT
659 {
660 struct value *mark, *computed;
661 enum register_status result = REG_VALID;
662
663 mark = value_mark ();
664
ef79d9a3
YQ
665 computed = gdbarch_pseudo_register_read_value (m_descr->gdbarch,
666 this, regnum);
3543a589
TT
667 if (value_entirely_available (computed))
668 memcpy (buf, value_contents_raw (computed),
ef79d9a3 669 m_descr->sizeof_register[regnum]);
3543a589
TT
670 else
671 {
ef79d9a3 672 memset (buf, 0, m_descr->sizeof_register[regnum]);
3543a589
TT
673 result = REG_UNAVAILABLE;
674 }
675
676 value_free_to_mark (mark);
677
678 return result;
679 }
d138e37a 680 else
ef79d9a3 681 return gdbarch_pseudo_register_read (m_descr->gdbarch, this,
05d1431c 682 regnum, buf);
61a0eb5b
AC
683}
684
3543a589
TT
685struct value *
686regcache_cooked_read_value (struct regcache *regcache, int regnum)
ef79d9a3
YQ
687{
688 return regcache->cooked_read_value (regnum);
689}
690
691struct value *
849d0ba8 692readable_regcache::cooked_read_value (int regnum)
3543a589
TT
693{
694 gdb_assert (regnum >= 0);
ef79d9a3 695 gdb_assert (regnum < m_descr->nr_cooked_registers);
3543a589 696
d999647b 697 if (regnum < num_raw_registers ()
849d0ba8 698 || (m_has_pseudo && m_register_status[regnum] != REG_UNKNOWN)
ef79d9a3 699 || !gdbarch_pseudo_register_read_value_p (m_descr->gdbarch))
3543a589
TT
700 {
701 struct value *result;
702
ef79d9a3 703 result = allocate_value (register_type (m_descr->gdbarch, regnum));
3543a589
TT
704 VALUE_LVAL (result) = lval_register;
705 VALUE_REGNUM (result) = regnum;
706
707 /* It is more efficient in general to do this delegation in this
708 direction than in the other one, even though the value-based
709 API is preferred. */
ef79d9a3
YQ
710 if (cooked_read (regnum,
711 value_contents_raw (result)) == REG_UNAVAILABLE)
3543a589
TT
712 mark_value_bytes_unavailable (result, 0,
713 TYPE_LENGTH (value_type (result)));
714
715 return result;
716 }
717 else
ef79d9a3
YQ
718 return gdbarch_pseudo_register_read_value (m_descr->gdbarch,
719 this, regnum);
3543a589
TT
720}
721
05d1431c 722enum register_status
a378f419
AC
723regcache_cooked_read_signed (struct regcache *regcache, int regnum,
724 LONGEST *val)
ef79d9a3
YQ
725{
726 gdb_assert (regcache != NULL);
6f98355c 727 return regcache->cooked_read (regnum, val);
ef79d9a3
YQ
728}
729
6f98355c 730template<typename T, typename>
ef79d9a3 731enum register_status
849d0ba8 732readable_regcache::cooked_read (int regnum, T *val)
a378f419 733{
05d1431c 734 enum register_status status;
2d522557 735 gdb_byte *buf;
123f5f96 736
ef79d9a3
YQ
737 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
738 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
739 status = cooked_read (regnum, buf);
05d1431c 740 if (status == REG_VALID)
6f98355c
YQ
741 *val = extract_integer<T> (buf, m_descr->sizeof_register[regnum],
742 gdbarch_byte_order (m_descr->gdbarch));
05d1431c
PA
743 else
744 *val = 0;
745 return status;
a378f419
AC
746}
747
05d1431c 748enum register_status
a378f419
AC
749regcache_cooked_read_unsigned (struct regcache *regcache, int regnum,
750 ULONGEST *val)
ef79d9a3
YQ
751{
752 gdb_assert (regcache != NULL);
6f98355c 753 return regcache->cooked_read (regnum, val);
a378f419
AC
754}
755
a66a9c23
AC
756void
757regcache_cooked_write_signed (struct regcache *regcache, int regnum,
758 LONGEST val)
ef79d9a3
YQ
759{
760 gdb_assert (regcache != NULL);
6f98355c 761 regcache->cooked_write (regnum, val);
ef79d9a3
YQ
762}
763
6f98355c 764template<typename T, typename>
ef79d9a3 765void
6f98355c 766regcache::cooked_write (int regnum, T val)
a66a9c23 767{
7c543f7b 768 gdb_byte *buf;
123f5f96 769
ef79d9a3
YQ
770 gdb_assert (regnum >=0 && regnum < m_descr->nr_cooked_registers);
771 buf = (gdb_byte *) alloca (m_descr->sizeof_register[regnum]);
6f98355c
YQ
772 store_integer (buf, m_descr->sizeof_register[regnum],
773 gdbarch_byte_order (m_descr->gdbarch), val);
ef79d9a3 774 cooked_write (regnum, buf);
a66a9c23
AC
775}
776
777void
778regcache_cooked_write_unsigned (struct regcache *regcache, int regnum,
779 ULONGEST val)
ef79d9a3
YQ
780{
781 gdb_assert (regcache != NULL);
6f98355c 782 regcache->cooked_write (regnum, val);
a66a9c23
AC
783}
784
61a0eb5b 785void
2d522557
AC
786regcache_raw_write (struct regcache *regcache, int regnum,
787 const gdb_byte *buf)
ef79d9a3
YQ
788{
789 gdb_assert (regcache != NULL && buf != NULL);
790 regcache->raw_write (regnum, buf);
791}
792
793void
794regcache::raw_write (int regnum, const gdb_byte *buf)
61a0eb5b 795{
594f7785 796
ef79d9a3 797 gdb_assert (buf != NULL);
4e888c28 798 assert_regnum (regnum);
3fadccb3 799
3fadccb3
AC
800 /* On the sparc, writing %g0 is a no-op, so we don't even want to
801 change the registers array if something writes to this register. */
ef79d9a3 802 if (gdbarch_cannot_store_register (arch (), regnum))
3fadccb3
AC
803 return;
804
3fadccb3 805 /* If we have a valid copy of the register, and new value == old
0df8b418 806 value, then don't bother doing the actual store. */
ef79d9a3
YQ
807 if (get_register_status (regnum) == REG_VALID
808 && (memcmp (register_buffer (regnum), buf,
809 m_descr->sizeof_register[regnum]) == 0))
3fadccb3
AC
810 return;
811
ef79d9a3 812 target_prepare_to_store (this);
c8ec2f33 813 raw_supply (regnum, buf);
b94ade42 814
b292235f
TT
815 /* Invalidate the register after it is written, in case of a
816 failure. */
817 regcache_invalidator invalidator (this, regnum);
b94ade42 818
ef79d9a3 819 target_store_registers (this, regnum);
594f7785 820
b292235f
TT
821 /* The target did not throw an error so we can discard invalidating
822 the register. */
823 invalidator.release ();
61a0eb5b
AC
824}
825
68365089 826void
2d522557
AC
827regcache_cooked_write (struct regcache *regcache, int regnum,
828 const gdb_byte *buf)
ef79d9a3
YQ
829{
830 regcache->cooked_write (regnum, buf);
831}
832
833void
834regcache::cooked_write (int regnum, const gdb_byte *buf)
68365089 835{
d138e37a 836 gdb_assert (regnum >= 0);
ef79d9a3 837 gdb_assert (regnum < m_descr->nr_cooked_registers);
d999647b 838 if (regnum < num_raw_registers ())
ef79d9a3 839 raw_write (regnum, buf);
d138e37a 840 else
ef79d9a3 841 gdbarch_pseudo_register_write (m_descr->gdbarch, this,
d8124050 842 regnum, buf);
61a0eb5b
AC
843}
844
06c0b04e
AC
845/* Perform a partial register transfer using a read, modify, write
846 operation. */
847
ef79d9a3 848enum register_status
849d0ba8
YQ
849readable_regcache::read_part (int regnum, int offset, int len, void *in,
850 bool is_raw)
851{
852 struct gdbarch *gdbarch = arch ();
853 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
854
855 gdb_assert (in != NULL);
856 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
857 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
858 /* Something to do? */
859 if (offset + len == 0)
860 return REG_VALID;
861 /* Read (when needed) ... */
862 enum register_status status;
863
864 if (is_raw)
865 status = raw_read (regnum, reg);
866 else
867 status = cooked_read (regnum, reg);
868 if (status != REG_VALID)
869 return status;
870
871 /* ... modify ... */
872 memcpy (in, reg + offset, len);
873
874 return REG_VALID;
875}
876
877enum register_status
878regcache::write_part (int regnum, int offset, int len,
d3037ba6 879 const void *out, bool is_raw)
ef79d9a3
YQ
880{
881 struct gdbarch *gdbarch = arch ();
9890e433 882 gdb_byte *reg = (gdb_byte *) alloca (register_size (gdbarch, regnum));
123f5f96 883
849d0ba8 884 gdb_assert (out != NULL);
ef79d9a3
YQ
885 gdb_assert (offset >= 0 && offset <= m_descr->sizeof_register[regnum]);
886 gdb_assert (len >= 0 && offset + len <= m_descr->sizeof_register[regnum]);
06c0b04e
AC
887 /* Something to do? */
888 if (offset + len == 0)
05d1431c 889 return REG_VALID;
0df8b418 890 /* Read (when needed) ... */
849d0ba8 891 if (offset > 0
ef79d9a3 892 || offset + len < m_descr->sizeof_register[regnum])
06c0b04e 893 {
05d1431c
PA
894 enum register_status status;
895
d3037ba6
YQ
896 if (is_raw)
897 status = raw_read (regnum, reg);
898 else
899 status = cooked_read (regnum, reg);
05d1431c
PA
900 if (status != REG_VALID)
901 return status;
06c0b04e 902 }
849d0ba8
YQ
903
904 memcpy (reg + offset, out, len);
06c0b04e 905 /* ... write (when needed). */
849d0ba8
YQ
906 if (is_raw)
907 raw_write (regnum, reg);
908 else
909 cooked_write (regnum, reg);
05d1431c
PA
910
911 return REG_VALID;
06c0b04e
AC
912}
913
05d1431c 914enum register_status
06c0b04e 915regcache_raw_read_part (struct regcache *regcache, int regnum,
2d522557 916 int offset, int len, gdb_byte *buf)
06c0b04e 917{
ef79d9a3
YQ
918 return regcache->raw_read_part (regnum, offset, len, buf);
919}
123f5f96 920
ef79d9a3 921enum register_status
849d0ba8 922readable_regcache::raw_read_part (int regnum, int offset, int len, gdb_byte *buf)
ef79d9a3 923{
4e888c28 924 assert_regnum (regnum);
849d0ba8 925 return read_part (regnum, offset, len, buf, true);
06c0b04e
AC
926}
927
928void
929regcache_raw_write_part (struct regcache *regcache, int regnum,
2d522557 930 int offset, int len, const gdb_byte *buf)
06c0b04e 931{
ef79d9a3
YQ
932 regcache->raw_write_part (regnum, offset, len, buf);
933}
123f5f96 934
ef79d9a3
YQ
935void
936regcache::raw_write_part (int regnum, int offset, int len,
937 const gdb_byte *buf)
938{
4e888c28 939 assert_regnum (regnum);
849d0ba8 940 write_part (regnum, offset, len, buf, true);
06c0b04e
AC
941}
942
05d1431c 943enum register_status
06c0b04e 944regcache_cooked_read_part (struct regcache *regcache, int regnum,
2d522557 945 int offset, int len, gdb_byte *buf)
06c0b04e 946{
ef79d9a3
YQ
947 return regcache->cooked_read_part (regnum, offset, len, buf);
948}
123f5f96 949
ef79d9a3
YQ
950
951enum register_status
849d0ba8
YQ
952readable_regcache::cooked_read_part (int regnum, int offset, int len,
953 gdb_byte *buf)
ef79d9a3
YQ
954{
955 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
849d0ba8 956 return read_part (regnum, offset, len, buf, false);
06c0b04e
AC
957}
958
959void
960regcache_cooked_write_part (struct regcache *regcache, int regnum,
2d522557 961 int offset, int len, const gdb_byte *buf)
06c0b04e 962{
ef79d9a3
YQ
963 regcache->cooked_write_part (regnum, offset, len, buf);
964}
123f5f96 965
ef79d9a3
YQ
966void
967regcache::cooked_write_part (int regnum, int offset, int len,
968 const gdb_byte *buf)
969{
970 gdb_assert (regnum >= 0 && regnum < m_descr->nr_cooked_registers);
849d0ba8 971 write_part (regnum, offset, len, buf, false);
06c0b04e 972}
32178cab 973
a16d75cc 974/* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
9a661b68
MK
975
976void
6618125d 977regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
ef79d9a3
YQ
978{
979 gdb_assert (regcache != NULL);
980 regcache->raw_supply (regnum, buf);
981}
982
983void
c8ec2f33 984detached_regcache::raw_supply (int regnum, const void *buf)
9a661b68
MK
985{
986 void *regbuf;
987 size_t size;
988
4e888c28 989 assert_regnum (regnum);
9a661b68 990
ef79d9a3
YQ
991 regbuf = register_buffer (regnum);
992 size = m_descr->sizeof_register[regnum];
9a661b68
MK
993
994 if (buf)
ee99023e
PA
995 {
996 memcpy (regbuf, buf, size);
ef79d9a3 997 m_register_status[regnum] = REG_VALID;
ee99023e 998 }
9a661b68 999 else
ee99023e
PA
1000 {
1001 /* This memset not strictly necessary, but better than garbage
1002 in case the register value manages to escape somewhere (due
1003 to a bug, no less). */
1004 memset (regbuf, 0, size);
ef79d9a3 1005 m_register_status[regnum] = REG_UNAVAILABLE;
ee99023e 1006 }
9a661b68
MK
1007}
1008
b057297a
AH
1009/* Supply register REGNUM to REGCACHE. Value to supply is an integer stored at
1010 address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED. If
1011 the register size is greater than ADDR_LEN, then the integer will be sign or
1012 zero extended. If the register size is smaller than the integer, then the
1013 most significant bytes of the integer will be truncated. */
1014
1015void
796bb026
YQ
1016detached_regcache::raw_supply_integer (int regnum, const gdb_byte *addr,
1017 int addr_len, bool is_signed)
b057297a
AH
1018{
1019 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1020 gdb_byte *regbuf;
1021 size_t regsize;
1022
4e888c28 1023 assert_regnum (regnum);
b057297a
AH
1024
1025 regbuf = register_buffer (regnum);
1026 regsize = m_descr->sizeof_register[regnum];
1027
1028 copy_integer_to_size (regbuf, regsize, addr, addr_len, is_signed,
1029 byte_order);
1030 m_register_status[regnum] = REG_VALID;
1031}
1032
f81fdd35
AH
1033/* Supply register REGNUM with zeroed value to REGCACHE. This is not the same
1034 as calling raw_supply with NULL (which will set the state to
1035 unavailable). */
1036
1037void
796bb026 1038detached_regcache::raw_supply_zeroed (int regnum)
f81fdd35
AH
1039{
1040 void *regbuf;
1041 size_t size;
1042
4e888c28 1043 assert_regnum (regnum);
f81fdd35
AH
1044
1045 regbuf = register_buffer (regnum);
1046 size = m_descr->sizeof_register[regnum];
1047
1048 memset (regbuf, 0, size);
1049 m_register_status[regnum] = REG_VALID;
1050}
1051
9a661b68
MK
1052/* Collect register REGNUM from REGCACHE and store its contents in BUF. */
1053
1054void
6618125d 1055regcache_raw_collect (const struct regcache *regcache, int regnum, void *buf)
ef79d9a3
YQ
1056{
1057 gdb_assert (regcache != NULL && buf != NULL);
1058 regcache->raw_collect (regnum, buf);
1059}
1060
1061void
1062regcache::raw_collect (int regnum, void *buf) const
9a661b68
MK
1063{
1064 const void *regbuf;
1065 size_t size;
1066
ef79d9a3 1067 gdb_assert (buf != NULL);
4e888c28 1068 assert_regnum (regnum);
9a661b68 1069
ef79d9a3
YQ
1070 regbuf = register_buffer (regnum);
1071 size = m_descr->sizeof_register[regnum];
9a661b68
MK
1072 memcpy (buf, regbuf, size);
1073}
1074
0b309272
AA
1075/* Transfer a single or all registers belonging to a certain register
1076 set to or from a buffer. This is the main worker function for
1077 regcache_supply_regset and regcache_collect_regset. */
1078
b057297a
AH
1079/* Collect register REGNUM from REGCACHE. Store collected value as an integer
1080 at address ADDR, in target endian, with length ADDR_LEN and sign IS_SIGNED.
1081 If ADDR_LEN is greater than the register size, then the integer will be sign
1082 or zero extended. If ADDR_LEN is smaller than the register size, then the
1083 most significant bytes of the integer will be truncated. */
1084
1085void
1086regcache::raw_collect_integer (int regnum, gdb_byte *addr, int addr_len,
1087 bool is_signed) const
1088{
1089 enum bfd_endian byte_order = gdbarch_byte_order (m_descr->gdbarch);
1090 const gdb_byte *regbuf;
1091 size_t regsize;
1092
4e888c28 1093 assert_regnum (regnum);
b057297a
AH
1094
1095 regbuf = register_buffer (regnum);
1096 regsize = m_descr->sizeof_register[regnum];
1097
1098 copy_integer_to_size (addr, addr_len, regbuf, regsize, is_signed,
1099 byte_order);
1100}
1101
ef79d9a3
YQ
1102void
1103regcache::transfer_regset (const struct regset *regset,
1104 struct regcache *out_regcache,
1105 int regnum, const void *in_buf,
1106 void *out_buf, size_t size) const
0b309272
AA
1107{
1108 const struct regcache_map_entry *map;
1109 int offs = 0, count;
1110
19ba03f4
SM
1111 for (map = (const struct regcache_map_entry *) regset->regmap;
1112 (count = map->count) != 0;
1113 map++)
0b309272
AA
1114 {
1115 int regno = map->regno;
1116 int slot_size = map->size;
1117
1118 if (slot_size == 0 && regno != REGCACHE_MAP_SKIP)
ef79d9a3 1119 slot_size = m_descr->sizeof_register[regno];
0b309272
AA
1120
1121 if (regno == REGCACHE_MAP_SKIP
1122 || (regnum != -1
1123 && (regnum < regno || regnum >= regno + count)))
1124 offs += count * slot_size;
1125
1126 else if (regnum == -1)
1127 for (; count--; regno++, offs += slot_size)
1128 {
1129 if (offs + slot_size > size)
1130 break;
1131
1132 if (out_buf)
ef79d9a3 1133 raw_collect (regno, (gdb_byte *) out_buf + offs);
0b309272 1134 else
ef79d9a3
YQ
1135 out_regcache->raw_supply (regno, in_buf
1136 ? (const gdb_byte *) in_buf + offs
1137 : NULL);
0b309272
AA
1138 }
1139 else
1140 {
1141 /* Transfer a single register and return. */
1142 offs += (regnum - regno) * slot_size;
1143 if (offs + slot_size > size)
1144 return;
1145
1146 if (out_buf)
ef79d9a3 1147 raw_collect (regnum, (gdb_byte *) out_buf + offs);
0b309272 1148 else
ef79d9a3
YQ
1149 out_regcache->raw_supply (regnum, in_buf
1150 ? (const gdb_byte *) in_buf + offs
1151 : NULL);
0b309272
AA
1152 return;
1153 }
1154 }
1155}
1156
1157/* Supply register REGNUM from BUF to REGCACHE, using the register map
1158 in REGSET. If REGNUM is -1, do this for all registers in REGSET.
1159 If BUF is NULL, set the register(s) to "unavailable" status. */
1160
1161void
1162regcache_supply_regset (const struct regset *regset,
1163 struct regcache *regcache,
1164 int regnum, const void *buf, size_t size)
1165{
ef79d9a3
YQ
1166 regcache->supply_regset (regset, regnum, buf, size);
1167}
1168
1169void
1170regcache::supply_regset (const struct regset *regset,
1171 int regnum, const void *buf, size_t size)
1172{
1173 transfer_regset (regset, this, regnum, buf, NULL, size);
0b309272
AA
1174}
1175
1176/* Collect register REGNUM from REGCACHE to BUF, using the register
1177 map in REGSET. If REGNUM is -1, do this for all registers in
1178 REGSET. */
1179
1180void
1181regcache_collect_regset (const struct regset *regset,
1182 const struct regcache *regcache,
1183 int regnum, void *buf, size_t size)
1184{
ef79d9a3
YQ
1185 regcache->collect_regset (regset, regnum, buf, size);
1186}
1187
1188void
1189regcache::collect_regset (const struct regset *regset,
1190 int regnum, void *buf, size_t size) const
1191{
1192 transfer_regset (regset, NULL, regnum, NULL, buf, size);
0b309272
AA
1193}
1194
193cb69f 1195
515630c5 1196/* Special handling for register PC. */
32178cab
MS
1197
1198CORE_ADDR
515630c5 1199regcache_read_pc (struct regcache *regcache)
32178cab 1200{
ac7936df 1201 struct gdbarch *gdbarch = regcache->arch ();
61a1198a 1202
32178cab
MS
1203 CORE_ADDR pc_val;
1204
61a1198a
UW
1205 if (gdbarch_read_pc_p (gdbarch))
1206 pc_val = gdbarch_read_pc (gdbarch, regcache);
cde9ea48 1207 /* Else use per-frame method on get_current_frame. */
214e098a 1208 else if (gdbarch_pc_regnum (gdbarch) >= 0)
cde9ea48 1209 {
61a1198a 1210 ULONGEST raw_val;
123f5f96 1211
05d1431c
PA
1212 if (regcache_cooked_read_unsigned (regcache,
1213 gdbarch_pc_regnum (gdbarch),
1214 &raw_val) == REG_UNAVAILABLE)
1215 throw_error (NOT_AVAILABLE_ERROR, _("PC register is not available"));
1216
214e098a 1217 pc_val = gdbarch_addr_bits_remove (gdbarch, raw_val);
cde9ea48
AC
1218 }
1219 else
515630c5
UW
1220 internal_error (__FILE__, __LINE__,
1221 _("regcache_read_pc: Unable to find PC"));
32178cab
MS
1222 return pc_val;
1223}
1224
32178cab 1225void
515630c5 1226regcache_write_pc (struct regcache *regcache, CORE_ADDR pc)
32178cab 1227{
ac7936df 1228 struct gdbarch *gdbarch = regcache->arch ();
61a1198a 1229
61a1198a
UW
1230 if (gdbarch_write_pc_p (gdbarch))
1231 gdbarch_write_pc (gdbarch, regcache, pc);
214e098a 1232 else if (gdbarch_pc_regnum (gdbarch) >= 0)
3e8c568d 1233 regcache_cooked_write_unsigned (regcache,
214e098a 1234 gdbarch_pc_regnum (gdbarch), pc);
61a1198a
UW
1235 else
1236 internal_error (__FILE__, __LINE__,
515630c5 1237 _("regcache_write_pc: Unable to update PC"));
edb3359d
DJ
1238
1239 /* Writing the PC (for instance, from "load") invalidates the
1240 current frame. */
1241 reinit_frame_cache ();
32178cab
MS
1242}
1243
d999647b 1244int
31716595 1245reg_buffer::num_raw_registers () const
d999647b
YQ
1246{
1247 return gdbarch_num_regs (arch ());
1248}
1249
ed771251 1250void
ef79d9a3 1251regcache::debug_print_register (const char *func, int regno)
ed771251 1252{
ef79d9a3 1253 struct gdbarch *gdbarch = arch ();
ed771251
AH
1254
1255 fprintf_unfiltered (gdb_stdlog, "%s ", func);
1256 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
1257 && gdbarch_register_name (gdbarch, regno) != NULL
1258 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
1259 fprintf_unfiltered (gdb_stdlog, "(%s)",
1260 gdbarch_register_name (gdbarch, regno));
1261 else
1262 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
1263 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
1264 {
1265 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1266 int size = register_size (gdbarch, regno);
ef79d9a3 1267 gdb_byte *buf = register_buffer (regno);
ed771251
AH
1268
1269 fprintf_unfiltered (gdb_stdlog, " = ");
1270 for (int i = 0; i < size; i++)
1271 {
1272 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1273 }
1274 if (size <= sizeof (LONGEST))
1275 {
1276 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
1277
1278 fprintf_unfiltered (gdb_stdlog, " %s %s",
1279 core_addr_to_string_nz (val), plongest (val));
1280 }
1281 }
1282 fprintf_unfiltered (gdb_stdlog, "\n");
1283}
32178cab 1284
705152c5 1285static void
0b39b52e 1286reg_flush_command (const char *command, int from_tty)
705152c5
MS
1287{
1288 /* Force-flush the register cache. */
1289 registers_changed ();
1290 if (from_tty)
a3f17187 1291 printf_filtered (_("Register cache flushed.\n"));
705152c5
MS
1292}
1293
4c74fe6b
YQ
1294void
1295register_dump::dump (ui_file *file)
af030b9a 1296{
4c74fe6b
YQ
1297 auto descr = regcache_descr (m_gdbarch);
1298 int regnum;
1299 int footnote_nr = 0;
1300 int footnote_register_offset = 0;
1301 int footnote_register_type_name_null = 0;
1302 long register_offset = 0;
af030b9a 1303
4c74fe6b
YQ
1304 gdb_assert (descr->nr_cooked_registers
1305 == (gdbarch_num_regs (m_gdbarch)
1306 + gdbarch_num_pseudo_regs (m_gdbarch)));
af030b9a 1307
4c74fe6b
YQ
1308 for (regnum = -1; regnum < descr->nr_cooked_registers; regnum++)
1309 {
1310 /* Name. */
1311 if (regnum < 0)
1312 fprintf_unfiltered (file, " %-10s", "Name");
1313 else
1314 {
1315 const char *p = gdbarch_register_name (m_gdbarch, regnum);
123f5f96 1316
4c74fe6b
YQ
1317 if (p == NULL)
1318 p = "";
1319 else if (p[0] == '\0')
1320 p = "''";
1321 fprintf_unfiltered (file, " %-10s", p);
1322 }
af030b9a 1323
4c74fe6b
YQ
1324 /* Number. */
1325 if (regnum < 0)
1326 fprintf_unfiltered (file, " %4s", "Nr");
1327 else
1328 fprintf_unfiltered (file, " %4d", regnum);
af030b9a 1329
4c74fe6b
YQ
1330 /* Relative number. */
1331 if (regnum < 0)
1332 fprintf_unfiltered (file, " %4s", "Rel");
1333 else if (regnum < gdbarch_num_regs (m_gdbarch))
1334 fprintf_unfiltered (file, " %4d", regnum);
1335 else
1336 fprintf_unfiltered (file, " %4d",
1337 (regnum - gdbarch_num_regs (m_gdbarch)));
af030b9a 1338
4c74fe6b
YQ
1339 /* Offset. */
1340 if (regnum < 0)
1341 fprintf_unfiltered (file, " %6s ", "Offset");
1342 else
af030b9a 1343 {
4c74fe6b
YQ
1344 fprintf_unfiltered (file, " %6ld",
1345 descr->register_offset[regnum]);
1346 if (register_offset != descr->register_offset[regnum]
1347 || (regnum > 0
1348 && (descr->register_offset[regnum]
1349 != (descr->register_offset[regnum - 1]
1350 + descr->sizeof_register[regnum - 1])))
1351 )
af030b9a 1352 {
4c74fe6b
YQ
1353 if (!footnote_register_offset)
1354 footnote_register_offset = ++footnote_nr;
1355 fprintf_unfiltered (file, "*%d", footnote_register_offset);
af030b9a 1356 }
4c74fe6b
YQ
1357 else
1358 fprintf_unfiltered (file, " ");
1359 register_offset = (descr->register_offset[regnum]
1360 + descr->sizeof_register[regnum]);
af030b9a
AC
1361 }
1362
4c74fe6b
YQ
1363 /* Size. */
1364 if (regnum < 0)
1365 fprintf_unfiltered (file, " %5s ", "Size");
1366 else
1367 fprintf_unfiltered (file, " %5ld", descr->sizeof_register[regnum]);
f3384e66 1368
4c74fe6b 1369 /* Type. */
f3384e66 1370 {
4c74fe6b
YQ
1371 const char *t;
1372 std::string name_holder;
b59ff9d5 1373
4c74fe6b
YQ
1374 if (regnum < 0)
1375 t = "Type";
215c69dc
YQ
1376 else
1377 {
4c74fe6b 1378 static const char blt[] = "builtin_type";
123f5f96 1379
4c74fe6b
YQ
1380 t = TYPE_NAME (register_type (m_gdbarch, regnum));
1381 if (t == NULL)
f3384e66 1382 {
4c74fe6b
YQ
1383 if (!footnote_register_type_name_null)
1384 footnote_register_type_name_null = ++footnote_nr;
1385 name_holder = string_printf ("*%d",
1386 footnote_register_type_name_null);
1387 t = name_holder.c_str ();
f3384e66 1388 }
4c74fe6b
YQ
1389 /* Chop a leading builtin_type. */
1390 if (startswith (t, blt))
1391 t += strlen (blt);
f3384e66 1392 }
4c74fe6b 1393 fprintf_unfiltered (file, " %-15s", t);
f3384e66 1394 }
f3384e66 1395
4c74fe6b
YQ
1396 /* Leading space always present. */
1397 fprintf_unfiltered (file, " ");
af030b9a 1398
4c74fe6b 1399 dump_reg (file, regnum);
ed4227b7 1400
4c74fe6b 1401 fprintf_unfiltered (file, "\n");
ed4227b7
PA
1402 }
1403
4c74fe6b
YQ
1404 if (footnote_register_offset)
1405 fprintf_unfiltered (file, "*%d: Inconsistent register offsets.\n",
1406 footnote_register_offset);
1407 if (footnote_register_type_name_null)
1408 fprintf_unfiltered (file,
1409 "*%d: Register type's name NULL.\n",
1410 footnote_register_type_name_null);
c21236dc
PA
1411}
1412
8248946c
YQ
1413#if GDB_SELF_TEST
1414#include "selftest.h"
1b30aaa5
YQ
1415#include "selftest-arch.h"
1416#include "gdbthread.h"
ec7a5fcb 1417#include "target-float.h"
8248946c
YQ
1418
1419namespace selftests {
1420
e521e87e 1421class regcache_access : public regcache
8248946c 1422{
e521e87e
YQ
1423public:
1424
1425 /* Return the number of elements in current_regcache. */
1426
1427 static size_t
1428 current_regcache_size ()
1429 {
1430 return std::distance (regcache::current_regcache.begin (),
1431 regcache::current_regcache.end ());
1432 }
1433};
8248946c
YQ
1434
1435static void
1436current_regcache_test (void)
1437{
1438 /* It is empty at the start. */
e521e87e 1439 SELF_CHECK (regcache_access::current_regcache_size () == 0);
8248946c
YQ
1440
1441 ptid_t ptid1 (1), ptid2 (2), ptid3 (3);
1442
1443 /* Get regcache from ptid1, a new regcache is added to
1444 current_regcache. */
1445 regcache *regcache = get_thread_arch_aspace_regcache (ptid1,
1446 target_gdbarch (),
1447 NULL);
1448
1449 SELF_CHECK (regcache != NULL);
1450 SELF_CHECK (regcache->ptid () == ptid1);
e521e87e 1451 SELF_CHECK (regcache_access::current_regcache_size () == 1);
8248946c
YQ
1452
1453 /* Get regcache from ptid2, a new regcache is added to
1454 current_regcache. */
1455 regcache = get_thread_arch_aspace_regcache (ptid2,
1456 target_gdbarch (),
1457 NULL);
1458 SELF_CHECK (regcache != NULL);
1459 SELF_CHECK (regcache->ptid () == ptid2);
e521e87e 1460 SELF_CHECK (regcache_access::current_regcache_size () == 2);
8248946c
YQ
1461
1462 /* Get regcache from ptid3, a new regcache is added to
1463 current_regcache. */
1464 regcache = get_thread_arch_aspace_regcache (ptid3,
1465 target_gdbarch (),
1466 NULL);
1467 SELF_CHECK (regcache != NULL);
1468 SELF_CHECK (regcache->ptid () == ptid3);
e521e87e 1469 SELF_CHECK (regcache_access::current_regcache_size () == 3);
8248946c
YQ
1470
1471 /* Get regcache from ptid2 again, nothing is added to
1472 current_regcache. */
1473 regcache = get_thread_arch_aspace_regcache (ptid2,
1474 target_gdbarch (),
1475 NULL);
1476 SELF_CHECK (regcache != NULL);
1477 SELF_CHECK (regcache->ptid () == ptid2);
e521e87e 1478 SELF_CHECK (regcache_access::current_regcache_size () == 3);
8248946c
YQ
1479
1480 /* Mark ptid2 is changed, so regcache of ptid2 should be removed from
1481 current_regcache. */
1482 registers_changed_ptid (ptid2);
e521e87e 1483 SELF_CHECK (regcache_access::current_regcache_size () == 2);
8248946c
YQ
1484}
1485
1b30aaa5
YQ
1486class target_ops_no_register : public test_target_ops
1487{
1488public:
1489 target_ops_no_register ()
1490 : test_target_ops {}
f6ac5f3d 1491 {}
1b30aaa5
YQ
1492
1493 void reset ()
1494 {
1495 fetch_registers_called = 0;
1496 store_registers_called = 0;
1497 xfer_partial_called = 0;
1498 }
1499
f6ac5f3d
PA
1500 void fetch_registers (regcache *regs, int regno) override;
1501 void store_registers (regcache *regs, int regno) override;
1502
1503 enum target_xfer_status xfer_partial (enum target_object object,
1504 const char *annex, gdb_byte *readbuf,
1505 const gdb_byte *writebuf,
1506 ULONGEST offset, ULONGEST len,
1507 ULONGEST *xfered_len) override;
1508
1b30aaa5
YQ
1509 unsigned int fetch_registers_called = 0;
1510 unsigned int store_registers_called = 0;
1511 unsigned int xfer_partial_called = 0;
1512};
1513
f6ac5f3d
PA
1514void
1515target_ops_no_register::fetch_registers (regcache *regs, int regno)
1b30aaa5 1516{
1b30aaa5
YQ
1517 /* Mark register available. */
1518 regs->raw_supply_zeroed (regno);
f6ac5f3d 1519 this->fetch_registers_called++;
1b30aaa5
YQ
1520}
1521
f6ac5f3d
PA
1522void
1523target_ops_no_register::store_registers (regcache *regs, int regno)
1b30aaa5 1524{
f6ac5f3d 1525 this->store_registers_called++;
1b30aaa5
YQ
1526}
1527
f6ac5f3d
PA
1528enum target_xfer_status
1529target_ops_no_register::xfer_partial (enum target_object object,
1530 const char *annex, gdb_byte *readbuf,
1531 const gdb_byte *writebuf,
1532 ULONGEST offset, ULONGEST len,
1533 ULONGEST *xfered_len)
1b30aaa5 1534{
f6ac5f3d 1535 this->xfer_partial_called++;
1b30aaa5
YQ
1536
1537 *xfered_len = len;
1538 return TARGET_XFER_OK;
1539}
1540
1541class readwrite_regcache : public regcache
1542{
1543public:
1544 readwrite_regcache (struct gdbarch *gdbarch)
796bb026 1545 : regcache (gdbarch, nullptr)
1b30aaa5
YQ
1546 {}
1547};
1548
1549/* Test regcache::cooked_read gets registers from raw registers and
1550 memory instead of target to_{fetch,store}_registers. */
1551
1552static void
1553cooked_read_test (struct gdbarch *gdbarch)
1554{
1555 /* Error out if debugging something, because we're going to push the
1556 test target, which would pop any existing target. */
f6ac5f3d 1557 if (target_stack->to_stratum >= process_stratum)
1b30aaa5
YQ
1558 error (_("target already pushed"));
1559
1560 /* Create a mock environment. An inferior with a thread, with a
1561 process_stratum target pushed. */
1562
1563 target_ops_no_register mock_target;
1564 ptid_t mock_ptid (1, 1);
1565 inferior mock_inferior (mock_ptid.pid ());
1566 address_space mock_aspace {};
1567 mock_inferior.gdbarch = gdbarch;
1568 mock_inferior.aspace = &mock_aspace;
1569 thread_info mock_thread (&mock_inferior, mock_ptid);
1570
1571 scoped_restore restore_thread_list
1572 = make_scoped_restore (&thread_list, &mock_thread);
1573
1574 /* Add the mock inferior to the inferior list so that look ups by
1575 target+ptid can find it. */
1576 scoped_restore restore_inferior_list
1577 = make_scoped_restore (&inferior_list);
1578 inferior_list = &mock_inferior;
1579
1580 /* Switch to the mock inferior. */
1581 scoped_restore_current_inferior restore_current_inferior;
1582 set_current_inferior (&mock_inferior);
1583
1584 /* Push the process_stratum target so we can mock accessing
1585 registers. */
1586 push_target (&mock_target);
1587
1588 /* Pop it again on exit (return/exception). */
1589 struct on_exit
1590 {
1591 ~on_exit ()
1592 {
1593 pop_all_targets_at_and_above (process_stratum);
1594 }
1595 } pop_targets;
1596
1597 /* Switch to the mock thread. */
1598 scoped_restore restore_inferior_ptid
1599 = make_scoped_restore (&inferior_ptid, mock_ptid);
1600
1601 /* Test that read one raw register from regcache_no_target will go
1602 to the target layer. */
1603 int regnum;
1604
1605 /* Find a raw register which size isn't zero. */
1606 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1607 {
1608 if (register_size (gdbarch, regnum) != 0)
1609 break;
1610 }
1611
1612 readwrite_regcache readwrite (gdbarch);
1613 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1614
1615 readwrite.raw_read (regnum, buf.data ());
1616
1617 /* raw_read calls target_fetch_registers. */
1618 SELF_CHECK (mock_target.fetch_registers_called > 0);
1619 mock_target.reset ();
1620
1621 /* Mark all raw registers valid, so the following raw registers
1622 accesses won't go to target. */
1623 for (auto i = 0; i < gdbarch_num_regs (gdbarch); i++)
1624 readwrite.raw_update (i);
1625
1626 mock_target.reset ();
1627 /* Then, read all raw and pseudo registers, and don't expect calling
1628 to_{fetch,store}_registers. */
1629 for (int regnum = 0;
1630 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1631 regnum++)
1632 {
1633 if (register_size (gdbarch, regnum) == 0)
1634 continue;
1635
1636 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1637
1638 SELF_CHECK (REG_VALID == readwrite.cooked_read (regnum, buf.data ()));
1639
dc711524
YQ
1640 SELF_CHECK (mock_target.fetch_registers_called == 0);
1641 SELF_CHECK (mock_target.store_registers_called == 0);
1b30aaa5
YQ
1642
1643 /* Some SPU pseudo registers are got via TARGET_OBJECT_SPU. */
1644 if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu)
1645 SELF_CHECK (mock_target.xfer_partial_called == 0);
1646
1647 mock_target.reset ();
1648 }
a63f2d2f 1649
215c69dc 1650 readonly_detached_regcache readonly (readwrite);
a63f2d2f
YQ
1651
1652 /* GDB may go to target layer to fetch all registers and memory for
1653 readonly regcache. */
1654 mock_target.reset ();
1655
1656 for (int regnum = 0;
1657 regnum < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1658 regnum++)
1659 {
a63f2d2f
YQ
1660 if (register_size (gdbarch, regnum) == 0)
1661 continue;
1662
1663 gdb::def_vector<gdb_byte> buf (register_size (gdbarch, regnum));
1664 enum register_status status = readonly.cooked_read (regnum,
1665 buf.data ());
1666
1667 if (regnum < gdbarch_num_regs (gdbarch))
1668 {
1669 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1670
1671 if (bfd_arch == bfd_arch_frv || bfd_arch == bfd_arch_h8300
1672 || bfd_arch == bfd_arch_m32c || bfd_arch == bfd_arch_sh
1673 || bfd_arch == bfd_arch_alpha || bfd_arch == bfd_arch_v850
1674 || bfd_arch == bfd_arch_msp430 || bfd_arch == bfd_arch_mep
1675 || bfd_arch == bfd_arch_mips || bfd_arch == bfd_arch_v850_rh850
1676 || bfd_arch == bfd_arch_tic6x || bfd_arch == bfd_arch_mn10300
ea005f31
AB
1677 || bfd_arch == bfd_arch_rl78 || bfd_arch == bfd_arch_score
1678 || bfd_arch == bfd_arch_riscv)
a63f2d2f
YQ
1679 {
1680 /* Raw registers. If raw registers are not in save_reggroup,
1681 their status are unknown. */
1682 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1683 SELF_CHECK (status == REG_VALID);
1684 else
1685 SELF_CHECK (status == REG_UNKNOWN);
1686 }
1687 else
1688 SELF_CHECK (status == REG_VALID);
1689 }
1690 else
1691 {
1692 if (gdbarch_register_reggroup_p (gdbarch, regnum, save_reggroup))
1693 SELF_CHECK (status == REG_VALID);
1694 else
1695 {
1696 /* If pseudo registers are not in save_reggroup, some of
1697 them can be computed from saved raw registers, but some
1698 of them are unknown. */
1699 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1700
1701 if (bfd_arch == bfd_arch_frv
1702 || bfd_arch == bfd_arch_m32c
1703 || bfd_arch == bfd_arch_mep
1704 || bfd_arch == bfd_arch_sh)
1705 SELF_CHECK (status == REG_VALID || status == REG_UNKNOWN);
1706 else if (bfd_arch == bfd_arch_mips
1707 || bfd_arch == bfd_arch_h8300)
1708 SELF_CHECK (status == REG_UNKNOWN);
1709 else
1710 SELF_CHECK (status == REG_VALID);
1711 }
1712 }
1713
1714 SELF_CHECK (mock_target.fetch_registers_called == 0);
1715 SELF_CHECK (mock_target.store_registers_called == 0);
1716 SELF_CHECK (mock_target.xfer_partial_called == 0);
1717
1718 mock_target.reset ();
1719 }
1b30aaa5
YQ
1720}
1721
ec7a5fcb
YQ
1722/* Test regcache::cooked_write by writing some expected contents to
1723 registers, and checking that contents read from registers and the
1724 expected contents are the same. */
1725
1726static void
1727cooked_write_test (struct gdbarch *gdbarch)
1728{
1729 /* Error out if debugging something, because we're going to push the
1730 test target, which would pop any existing target. */
f6ac5f3d 1731 if (target_stack->to_stratum >= process_stratum)
ec7a5fcb
YQ
1732 error (_("target already pushed"));
1733
1734 /* Create a mock environment. A process_stratum target pushed. */
1735
1736 target_ops_no_register mock_target;
1737
1738 /* Push the process_stratum target so we can mock accessing
1739 registers. */
1740 push_target (&mock_target);
1741
1742 /* Pop it again on exit (return/exception). */
1743 struct on_exit
1744 {
1745 ~on_exit ()
1746 {
1747 pop_all_targets_at_and_above (process_stratum);
1748 }
1749 } pop_targets;
1750
1751 readwrite_regcache readwrite (gdbarch);
1752
1753 const int num_regs = (gdbarch_num_regs (gdbarch)
1754 + gdbarch_num_pseudo_regs (gdbarch));
1755
1756 for (auto regnum = 0; regnum < num_regs; regnum++)
1757 {
1758 if (register_size (gdbarch, regnum) == 0
1759 || gdbarch_cannot_store_register (gdbarch, regnum))
1760 continue;
1761
1762 auto bfd_arch = gdbarch_bfd_arch_info (gdbarch)->arch;
1763
1764 if ((bfd_arch == bfd_arch_sparc
1765 /* SPARC64_CWP_REGNUM, SPARC64_PSTATE_REGNUM,
1766 SPARC64_ASI_REGNUM and SPARC64_CCR_REGNUM are hard to test. */
1767 && gdbarch_ptr_bit (gdbarch) == 64
1768 && (regnum >= gdbarch_num_regs (gdbarch)
1769 && regnum <= gdbarch_num_regs (gdbarch) + 4))
ec7a5fcb
YQ
1770 || (bfd_arch == bfd_arch_spu
1771 /* SPU pseudo registers except SPU_SP_REGNUM are got by
1772 TARGET_OBJECT_SPU. */
1773 && regnum >= gdbarch_num_regs (gdbarch) && regnum != 130))
1774 continue;
1775
1776 std::vector<gdb_byte> expected (register_size (gdbarch, regnum), 0);
1777 std::vector<gdb_byte> buf (register_size (gdbarch, regnum), 0);
1778 const auto type = register_type (gdbarch, regnum);
1779
1780 if (TYPE_CODE (type) == TYPE_CODE_FLT
1781 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1782 {
1783 /* Generate valid float format. */
1784 target_float_from_string (expected.data (), type, "1.25");
1785 }
1786 else if (TYPE_CODE (type) == TYPE_CODE_INT
1787 || TYPE_CODE (type) == TYPE_CODE_ARRAY
1788 || TYPE_CODE (type) == TYPE_CODE_PTR
1789 || TYPE_CODE (type) == TYPE_CODE_UNION
1790 || TYPE_CODE (type) == TYPE_CODE_STRUCT)
1791 {
1792 if (bfd_arch == bfd_arch_ia64
1793 || (regnum >= gdbarch_num_regs (gdbarch)
1794 && (bfd_arch == bfd_arch_xtensa
1795 || bfd_arch == bfd_arch_bfin
1796 || bfd_arch == bfd_arch_m32c
1797 /* m68hc11 pseudo registers are in memory. */
1798 || bfd_arch == bfd_arch_m68hc11
1799 || bfd_arch == bfd_arch_m68hc12
1800 || bfd_arch == bfd_arch_s390))
1801 || (bfd_arch == bfd_arch_frv
1802 /* FRV pseudo registers except iacc0. */
1803 && regnum > gdbarch_num_regs (gdbarch)))
1804 {
1805 /* Skip setting the expected values for some architecture
1806 registers. */
1807 }
1808 else if (bfd_arch == bfd_arch_rl78 && regnum == 40)
1809 {
1810 /* RL78_PC_REGNUM */
1811 for (auto j = 0; j < register_size (gdbarch, regnum) - 1; j++)
1812 expected[j] = j;
1813 }
1814 else
1815 {
1816 for (auto j = 0; j < register_size (gdbarch, regnum); j++)
1817 expected[j] = j;
1818 }
1819 }
1820 else if (TYPE_CODE (type) == TYPE_CODE_FLAGS)
1821 {
1822 /* No idea how to test flags. */
1823 continue;
1824 }
1825 else
1826 {
1827 /* If we don't know how to create the expected value for the
1828 this type, make it fail. */
1829 SELF_CHECK (0);
1830 }
1831
1832 readwrite.cooked_write (regnum, expected.data ());
1833
1834 SELF_CHECK (readwrite.cooked_read (regnum, buf.data ()) == REG_VALID);
1835 SELF_CHECK (expected == buf);
1836 }
1837}
1838
8248946c
YQ
1839} // namespace selftests
1840#endif /* GDB_SELF_TEST */
1841
32178cab
MS
1842void
1843_initialize_regcache (void)
1844{
3e43a32a
MS
1845 regcache_descr_handle
1846 = gdbarch_data_register_post_init (init_regcache_descr);
705152c5 1847
76727919
TT
1848 gdb::observers::target_changed.attach (regcache_observer_target_changed);
1849 gdb::observers::thread_ptid_changed.attach
1850 (regcache::regcache_thread_ptid_changed);
f4c5303c 1851
705152c5 1852 add_com ("flushregs", class_maintenance, reg_flush_command,
1bedd215 1853 _("Force gdb to flush its register cache (maintainer command)"));
39f77062 1854
8248946c 1855#if GDB_SELF_TEST
1526853e 1856 selftests::register_test ("current_regcache", selftests::current_regcache_test);
1b30aaa5
YQ
1857
1858 selftests::register_test_foreach_arch ("regcache::cooked_read_test",
1859 selftests::cooked_read_test);
ec7a5fcb
YQ
1860 selftests::register_test_foreach_arch ("regcache::cooked_write_test",
1861 selftests::cooked_write_test);
8248946c 1862#endif
32178cab 1863}
This page took 1.801463 seconds and 4 git commands to generate.