Fix leak in print_one_catch_syscall.
[deliverable/binutils-gdb.git] / gdb / record-full.c
CommitLineData
d02ed0bb
MM
1/* Process record and replay target for GDB, the GNU debugger.
2
42a4f53d 3 Copyright (C) 2013-2019 Free Software Foundation, Inc.
d02ed0bb
MM
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
9 the Free Software Foundation; either version 3 of the License, or
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
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "gdbcmd.h"
22#include "regcache.h"
23#include "gdbthread.h"
00431a78 24#include "inferior.h"
d02ed0bb 25#include "event-top.h"
d02ed0bb
MM
26#include "completer.h"
27#include "arch-utils.h"
28#include "gdbcore.h"
29#include "exec.h"
30#include "record.h"
31#include "record-full.h"
32#include "elf-bfd.h"
33#include "gcore.h"
34#include "event-loop.h"
35#include "inf-loop.h"
36#include "gdb_bfd.h"
76727919 37#include "observable.h"
45741a9c 38#include "infrun.h"
bef155c3 39#include "common/gdb_unlinker.h"
d7dcbefc 40#include "common/byte-vector.h"
d02ed0bb
MM
41
42#include <signal.h>
43
44/* This module implements "target record-full", also known as "process
45 record and replay". This target sits on top of a "normal" target
46 (a target that "has execution"), and provides a record and replay
47 functionality, including reverse debugging.
48
49 Target record has two modes: recording, and replaying.
50
f6ac5f3d 51 In record mode, we intercept the resume and wait methods.
d02ed0bb
MM
52 Whenever gdb resumes the target, we run the target in single step
53 mode, and we build up an execution log in which, for each executed
54 instruction, we record all changes in memory and register state.
55 This is invisible to the user, to whom it just looks like an
56 ordinary debugging session (except for performance degredation).
57
58 In replay mode, instead of actually letting the inferior run as a
59 process, we simulate its execution by playing back the recorded
60 execution log. For each instruction in the log, we simulate the
61 instruction's side effects by duplicating the changes that it would
62 have made on memory and registers. */
63
88d1aa9d 64#define DEFAULT_RECORD_FULL_INSN_MAX_NUM 200000
d02ed0bb 65
88d1aa9d 66#define RECORD_FULL_IS_REPLAY \
f6ac5f3d 67 (record_full_list->next || ::execution_direction == EXEC_REVERSE)
d02ed0bb 68
88d1aa9d 69#define RECORD_FULL_FILE_MAGIC netorder32(0x20091016)
d02ed0bb
MM
70
71/* These are the core structs of the process record functionality.
72
88d1aa9d
MM
73 A record_full_entry is a record of the value change of a register
74 ("record_full_reg") or a part of memory ("record_full_mem"). And each
75 instruction must have a struct record_full_entry ("record_full_end")
76 that indicates that this is the last struct record_full_entry of this
d02ed0bb
MM
77 instruction.
78
88d1aa9d
MM
79 Each struct record_full_entry is linked to "record_full_list" by "prev"
80 and "next" pointers. */
d02ed0bb 81
88d1aa9d 82struct record_full_mem_entry
d02ed0bb
MM
83{
84 CORE_ADDR addr;
85 int len;
86 /* Set this flag if target memory for this entry
87 can no longer be accessed. */
88 int mem_entry_not_accessible;
89 union
90 {
91 gdb_byte *ptr;
92 gdb_byte buf[sizeof (gdb_byte *)];
93 } u;
94};
95
88d1aa9d 96struct record_full_reg_entry
d02ed0bb
MM
97{
98 unsigned short num;
99 unsigned short len;
100 union
101 {
102 gdb_byte *ptr;
103 gdb_byte buf[2 * sizeof (gdb_byte *)];
104 } u;
105};
106
88d1aa9d 107struct record_full_end_entry
d02ed0bb
MM
108{
109 enum gdb_signal sigval;
110 ULONGEST insn_num;
111};
112
88d1aa9d 113enum record_full_type
d02ed0bb 114{
88d1aa9d
MM
115 record_full_end = 0,
116 record_full_reg,
117 record_full_mem
d02ed0bb
MM
118};
119
120/* This is the data structure that makes up the execution log.
121
122 The execution log consists of a single linked list of entries
88d1aa9d 123 of type "struct record_full_entry". It is doubly linked so that it
d02ed0bb
MM
124 can be traversed in either direction.
125
126 The start of the list is anchored by a struct called
88d1aa9d
MM
127 "record_full_first". The pointer "record_full_list" either points
128 to the last entry that was added to the list (in record mode), or to
129 the next entry in the list that will be executed (in replay mode).
d02ed0bb 130
88d1aa9d
MM
131 Each list element (struct record_full_entry), in addition to next
132 and prev pointers, consists of a union of three entry types: mem,
133 reg, and end. A field called "type" determines which entry type is
d02ed0bb
MM
134 represented by a given list element.
135
136 Each instruction that is added to the execution log is represented
137 by a variable number of list elements ('entries'). The instruction
138 will have one "reg" entry for each register that is changed by
139 executing the instruction (including the PC in every case). It
140 will also have one "mem" entry for each memory change. Finally,
141 each instruction will have an "end" entry that separates it from
142 the changes associated with the next instruction. */
143
88d1aa9d 144struct record_full_entry
d02ed0bb 145{
88d1aa9d
MM
146 struct record_full_entry *prev;
147 struct record_full_entry *next;
148 enum record_full_type type;
d02ed0bb
MM
149 union
150 {
151 /* reg */
88d1aa9d 152 struct record_full_reg_entry reg;
d02ed0bb 153 /* mem */
88d1aa9d 154 struct record_full_mem_entry mem;
d02ed0bb 155 /* end */
88d1aa9d 156 struct record_full_end_entry end;
d02ed0bb
MM
157 } u;
158};
159
160/* If true, query if PREC cannot record memory
161 change of next instruction. */
25ea693b 162int record_full_memory_query = 0;
d02ed0bb 163
88d1aa9d 164struct record_full_core_buf_entry
d02ed0bb 165{
88d1aa9d 166 struct record_full_core_buf_entry *prev;
d02ed0bb
MM
167 struct target_section *p;
168 bfd_byte *buf;
169};
170
171/* Record buf with core target. */
c8ec2f33 172static detached_regcache *record_full_core_regbuf = NULL;
88d1aa9d
MM
173static struct target_section *record_full_core_start;
174static struct target_section *record_full_core_end;
175static struct record_full_core_buf_entry *record_full_core_buf_list = NULL;
d02ed0bb
MM
176
177/* The following variables are used for managing the linked list that
178 represents the execution log.
179
88d1aa9d
MM
180 record_full_first is the anchor that holds down the beginning of
181 the list.
d02ed0bb 182
88d1aa9d 183 record_full_list serves two functions:
d02ed0bb
MM
184 1) In record mode, it anchors the end of the list.
185 2) In replay mode, it traverses the list and points to
186 the next instruction that must be emulated.
187
88d1aa9d
MM
188 record_full_arch_list_head and record_full_arch_list_tail are used
189 to manage a separate list, which is used to build up the change
190 elements of the currently executing instruction during record mode.
191 When this instruction has been completely annotated in the "arch
192 list", it will be appended to the main execution log. */
d02ed0bb 193
88d1aa9d
MM
194static struct record_full_entry record_full_first;
195static struct record_full_entry *record_full_list = &record_full_first;
196static struct record_full_entry *record_full_arch_list_head = NULL;
197static struct record_full_entry *record_full_arch_list_tail = NULL;
d02ed0bb 198
88d1aa9d
MM
199/* 1 ask user. 0 auto delete the last struct record_full_entry. */
200static int record_full_stop_at_limit = 1;
d02ed0bb 201/* Maximum allowed number of insns in execution log. */
88d1aa9d
MM
202static unsigned int record_full_insn_max_num
203 = DEFAULT_RECORD_FULL_INSN_MAX_NUM;
d02ed0bb 204/* Actual count of insns presently in execution log. */
7ee70bf5 205static unsigned int record_full_insn_num = 0;
d02ed0bb
MM
206/* Count of insns logged so far (may be larger
207 than count of insns presently in execution log). */
88d1aa9d 208static ULONGEST record_full_insn_count;
d02ed0bb 209
d9f719f1
PA
210static const char record_longname[]
211 = N_("Process record and replay target");
212static const char record_doc[]
213 = N_("Log program while executing and replay execution from log.");
214
f6ac5f3d
PA
215/* Base class implementing functionality common to both the
216 "record-full" and "record-core" targets. */
217
218class record_full_base_target : public target_ops
219{
220public:
d9f719f1 221 const target_info &info () const override = 0;
f6ac5f3d 222
66b4deae
PA
223 strata stratum () const override { return record_stratum; }
224
f6ac5f3d
PA
225 void close () override;
226 void async (int) override;
227 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
57810aa7
PA
228 bool stopped_by_watchpoint () override;
229 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 230
57810aa7
PA
231 bool stopped_by_sw_breakpoint () override;
232 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 233
57810aa7
PA
234 bool stopped_by_hw_breakpoint () override;
235 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 236
57810aa7 237 bool can_execute_reverse () override;
f6ac5f3d
PA
238
239 /* Add bookmark target methods. */
240 gdb_byte *get_bookmark (const char *, int) override;
241 void goto_bookmark (const gdb_byte *, int) override;
242 enum exec_direction_kind execution_direction () override;
243 enum record_method record_method (ptid_t ptid) override;
244 void info_record () override;
245 void save_record (const char *filename) override;
246 bool supports_delete_record () override;
247 void delete_record () override;
57810aa7
PA
248 bool record_is_replaying (ptid_t ptid) override;
249 bool record_will_replay (ptid_t ptid, int dir) override;
f6ac5f3d
PA
250 void record_stop_replaying () override;
251 void goto_record_begin () override;
252 void goto_record_end () override;
253 void goto_record (ULONGEST insn) override;
254};
255
256/* The "record-full" target. */
257
d9f719f1
PA
258static const target_info record_full_target_info = {
259 "record-full",
260 record_longname,
261 record_doc,
262};
263
f6ac5f3d
PA
264class record_full_target final : public record_full_base_target
265{
266public:
d9f719f1
PA
267 const target_info &info () const override
268 { return record_full_target_info; }
f6ac5f3d
PA
269
270 void commit_resume () override;
271 void resume (ptid_t, int, enum gdb_signal) override;
272 void disconnect (const char *, int) override;
273 void detach (inferior *, int) override;
274 void mourn_inferior () override;
275 void kill () override;
276 void store_registers (struct regcache *, int) override;
277 enum target_xfer_status xfer_partial (enum target_object object,
278 const char *annex,
279 gdb_byte *readbuf,
280 const gdb_byte *writebuf,
281 ULONGEST offset, ULONGEST len,
282 ULONGEST *xfered_len) override;
283 int insert_breakpoint (struct gdbarch *,
284 struct bp_target_info *) override;
285 int remove_breakpoint (struct gdbarch *,
286 struct bp_target_info *,
287 enum remove_bp_reason) override;
288};
289
290/* The "record-core" target. */
291
d9f719f1
PA
292static const target_info record_full_core_target_info = {
293 "record-core",
294 record_longname,
295 record_doc,
296};
297
f6ac5f3d
PA
298class record_full_core_target final : public record_full_base_target
299{
300public:
d9f719f1
PA
301 const target_info &info () const override
302 { return record_full_core_target_info; }
f6ac5f3d
PA
303
304 void resume (ptid_t, int, enum gdb_signal) override;
305 void disconnect (const char *, int) override;
306 void kill () override;
307 void fetch_registers (struct regcache *regcache, int regno) override;
308 void prepare_to_store (struct regcache *regcache) override;
309 void store_registers (struct regcache *, int) override;
310 enum target_xfer_status xfer_partial (enum target_object object,
311 const char *annex,
312 gdb_byte *readbuf,
313 const gdb_byte *writebuf,
314 ULONGEST offset, ULONGEST len,
315 ULONGEST *xfered_len) override;
316 int insert_breakpoint (struct gdbarch *,
317 struct bp_target_info *) override;
318 int remove_breakpoint (struct gdbarch *,
319 struct bp_target_info *,
320 enum remove_bp_reason) override;
321
57810aa7 322 bool has_execution (ptid_t) override;
f6ac5f3d
PA
323};
324
325static record_full_target record_full_ops;
326static record_full_core_target record_full_core_ops;
327
328void
329record_full_target::detach (inferior *inf, int from_tty)
330{
331 record_detach (this, inf, from_tty);
332}
333
334void
335record_full_target::disconnect (const char *args, int from_tty)
336{
337 record_disconnect (this, args, from_tty);
338}
339
340void
341record_full_core_target::disconnect (const char *args, int from_tty)
342{
343 record_disconnect (this, args, from_tty);
344}
345
346void
347record_full_target::mourn_inferior ()
348{
349 record_mourn_inferior (this);
350}
351
352void
353record_full_target::kill ()
354{
355 record_kill (this);
356}
d02ed0bb 357
8213266a
PA
358/* See record-full.h. */
359
360int
361record_full_is_used (void)
362{
363 struct target_ops *t;
364
365 t = find_record_target ();
366 return (t == &record_full_ops
367 || t == &record_full_core_ops);
368}
369
370
d02ed0bb
MM
371/* Command lists for "set/show record full". */
372static struct cmd_list_element *set_record_full_cmdlist;
373static struct cmd_list_element *show_record_full_cmdlist;
374
375/* Command list for "record full". */
376static struct cmd_list_element *record_full_cmdlist;
377
88d1aa9d
MM
378static void record_full_goto_insn (struct record_full_entry *entry,
379 enum exec_direction_kind dir);
88d1aa9d
MM
380
381/* Alloc and free functions for record_full_reg, record_full_mem, and
382 record_full_end entries. */
383
384/* Alloc a record_full_reg record entry. */
385
386static inline struct record_full_entry *
387record_full_reg_alloc (struct regcache *regcache, int regnum)
388{
389 struct record_full_entry *rec;
ac7936df 390 struct gdbarch *gdbarch = regcache->arch ();
d02ed0bb 391
8d749320 392 rec = XCNEW (struct record_full_entry);
88d1aa9d 393 rec->type = record_full_reg;
d02ed0bb
MM
394 rec->u.reg.num = regnum;
395 rec->u.reg.len = register_size (gdbarch, regnum);
396 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
397 rec->u.reg.u.ptr = (gdb_byte *) xmalloc (rec->u.reg.len);
398
399 return rec;
400}
401
88d1aa9d 402/* Free a record_full_reg record entry. */
d02ed0bb
MM
403
404static inline void
88d1aa9d 405record_full_reg_release (struct record_full_entry *rec)
d02ed0bb 406{
88d1aa9d 407 gdb_assert (rec->type == record_full_reg);
d02ed0bb
MM
408 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
409 xfree (rec->u.reg.u.ptr);
410 xfree (rec);
411}
412
88d1aa9d 413/* Alloc a record_full_mem record entry. */
d02ed0bb 414
88d1aa9d
MM
415static inline struct record_full_entry *
416record_full_mem_alloc (CORE_ADDR addr, int len)
d02ed0bb 417{
88d1aa9d 418 struct record_full_entry *rec;
d02ed0bb 419
8d749320 420 rec = XCNEW (struct record_full_entry);
88d1aa9d 421 rec->type = record_full_mem;
d02ed0bb
MM
422 rec->u.mem.addr = addr;
423 rec->u.mem.len = len;
424 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
425 rec->u.mem.u.ptr = (gdb_byte *) xmalloc (len);
426
427 return rec;
428}
429
88d1aa9d 430/* Free a record_full_mem record entry. */
d02ed0bb
MM
431
432static inline void
88d1aa9d 433record_full_mem_release (struct record_full_entry *rec)
d02ed0bb 434{
88d1aa9d 435 gdb_assert (rec->type == record_full_mem);
d02ed0bb
MM
436 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
437 xfree (rec->u.mem.u.ptr);
438 xfree (rec);
439}
440
88d1aa9d 441/* Alloc a record_full_end record entry. */
d02ed0bb 442
88d1aa9d
MM
443static inline struct record_full_entry *
444record_full_end_alloc (void)
d02ed0bb 445{
88d1aa9d 446 struct record_full_entry *rec;
d02ed0bb 447
8d749320 448 rec = XCNEW (struct record_full_entry);
88d1aa9d 449 rec->type = record_full_end;
d02ed0bb
MM
450
451 return rec;
452}
453
88d1aa9d 454/* Free a record_full_end record entry. */
d02ed0bb
MM
455
456static inline void
88d1aa9d 457record_full_end_release (struct record_full_entry *rec)
d02ed0bb
MM
458{
459 xfree (rec);
460}
461
462/* Free one record entry, any type.
463 Return entry->type, in case caller wants to know. */
464
88d1aa9d
MM
465static inline enum record_full_type
466record_full_entry_release (struct record_full_entry *rec)
d02ed0bb 467{
88d1aa9d 468 enum record_full_type type = rec->type;
d02ed0bb
MM
469
470 switch (type) {
88d1aa9d
MM
471 case record_full_reg:
472 record_full_reg_release (rec);
d02ed0bb 473 break;
88d1aa9d
MM
474 case record_full_mem:
475 record_full_mem_release (rec);
d02ed0bb 476 break;
88d1aa9d
MM
477 case record_full_end:
478 record_full_end_release (rec);
d02ed0bb
MM
479 break;
480 }
481 return type;
482}
483
484/* Free all record entries in list pointed to by REC. */
485
486static void
88d1aa9d 487record_full_list_release (struct record_full_entry *rec)
d02ed0bb
MM
488{
489 if (!rec)
490 return;
491
492 while (rec->next)
493 rec = rec->next;
494
495 while (rec->prev)
496 {
497 rec = rec->prev;
88d1aa9d 498 record_full_entry_release (rec->next);
d02ed0bb
MM
499 }
500
88d1aa9d 501 if (rec == &record_full_first)
d02ed0bb 502 {
88d1aa9d
MM
503 record_full_insn_num = 0;
504 record_full_first.next = NULL;
d02ed0bb
MM
505 }
506 else
88d1aa9d 507 record_full_entry_release (rec);
d02ed0bb
MM
508}
509
510/* Free all record entries forward of the given list position. */
511
512static void
88d1aa9d 513record_full_list_release_following (struct record_full_entry *rec)
d02ed0bb 514{
88d1aa9d 515 struct record_full_entry *tmp = rec->next;
d02ed0bb
MM
516
517 rec->next = NULL;
518 while (tmp)
519 {
520 rec = tmp->next;
88d1aa9d 521 if (record_full_entry_release (tmp) == record_full_end)
d02ed0bb 522 {
88d1aa9d
MM
523 record_full_insn_num--;
524 record_full_insn_count--;
d02ed0bb
MM
525 }
526 tmp = rec;
527 }
528}
529
530/* Delete the first instruction from the beginning of the log, to make
531 room for adding a new instruction at the end of the log.
532
88d1aa9d 533 Note -- this function does not modify record_full_insn_num. */
d02ed0bb
MM
534
535static void
88d1aa9d 536record_full_list_release_first (void)
d02ed0bb 537{
88d1aa9d 538 struct record_full_entry *tmp;
d02ed0bb 539
88d1aa9d 540 if (!record_full_first.next)
d02ed0bb
MM
541 return;
542
88d1aa9d 543 /* Loop until a record_full_end. */
d02ed0bb
MM
544 while (1)
545 {
88d1aa9d
MM
546 /* Cut record_full_first.next out of the linked list. */
547 tmp = record_full_first.next;
548 record_full_first.next = tmp->next;
549 tmp->next->prev = &record_full_first;
d02ed0bb
MM
550
551 /* tmp is now isolated, and can be deleted. */
88d1aa9d
MM
552 if (record_full_entry_release (tmp) == record_full_end)
553 break; /* End loop at first record_full_end. */
d02ed0bb 554
88d1aa9d 555 if (!record_full_first.next)
d02ed0bb 556 {
88d1aa9d 557 gdb_assert (record_full_insn_num == 1);
d02ed0bb
MM
558 break; /* End loop when list is empty. */
559 }
560 }
561}
562
88d1aa9d 563/* Add a struct record_full_entry to record_full_arch_list. */
d02ed0bb
MM
564
565static void
88d1aa9d 566record_full_arch_list_add (struct record_full_entry *rec)
d02ed0bb
MM
567{
568 if (record_debug > 1)
569 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 570 "Process record: record_full_arch_list_add %s.\n",
d02ed0bb
MM
571 host_address_to_string (rec));
572
88d1aa9d 573 if (record_full_arch_list_tail)
d02ed0bb 574 {
88d1aa9d
MM
575 record_full_arch_list_tail->next = rec;
576 rec->prev = record_full_arch_list_tail;
577 record_full_arch_list_tail = rec;
d02ed0bb
MM
578 }
579 else
580 {
88d1aa9d
MM
581 record_full_arch_list_head = rec;
582 record_full_arch_list_tail = rec;
d02ed0bb
MM
583 }
584}
585
586/* Return the value storage location of a record entry. */
587static inline gdb_byte *
88d1aa9d 588record_full_get_loc (struct record_full_entry *rec)
d02ed0bb
MM
589{
590 switch (rec->type) {
88d1aa9d 591 case record_full_mem:
d02ed0bb
MM
592 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
593 return rec->u.mem.u.ptr;
594 else
595 return rec->u.mem.u.buf;
88d1aa9d 596 case record_full_reg:
d02ed0bb
MM
597 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
598 return rec->u.reg.u.ptr;
599 else
600 return rec->u.reg.u.buf;
88d1aa9d 601 case record_full_end:
d02ed0bb 602 default:
88d1aa9d 603 gdb_assert_not_reached ("unexpected record_full_entry type");
d02ed0bb
MM
604 return NULL;
605 }
606}
607
88d1aa9d 608/* Record the value of a register NUM to record_full_arch_list. */
d02ed0bb
MM
609
610int
25ea693b 611record_full_arch_list_add_reg (struct regcache *regcache, int regnum)
d02ed0bb 612{
88d1aa9d 613 struct record_full_entry *rec;
d02ed0bb
MM
614
615 if (record_debug > 1)
616 fprintf_unfiltered (gdb_stdlog,
617 "Process record: add register num = %d to "
618 "record list.\n",
619 regnum);
620
88d1aa9d 621 rec = record_full_reg_alloc (regcache, regnum);
d02ed0bb 622
0b883586 623 regcache->raw_read (regnum, record_full_get_loc (rec));
d02ed0bb 624
88d1aa9d 625 record_full_arch_list_add (rec);
d02ed0bb
MM
626
627 return 0;
628}
629
630/* Record the value of a region of memory whose address is ADDR and
88d1aa9d 631 length is LEN to record_full_arch_list. */
d02ed0bb
MM
632
633int
25ea693b 634record_full_arch_list_add_mem (CORE_ADDR addr, int len)
d02ed0bb 635{
88d1aa9d 636 struct record_full_entry *rec;
d02ed0bb
MM
637
638 if (record_debug > 1)
639 fprintf_unfiltered (gdb_stdlog,
640 "Process record: add mem addr = %s len = %d to "
641 "record list.\n",
642 paddress (target_gdbarch (), addr), len);
643
644 if (!addr) /* FIXME: Why? Some arch must permit it... */
645 return 0;
646
88d1aa9d 647 rec = record_full_mem_alloc (addr, len);
d02ed0bb 648
88d1aa9d
MM
649 if (record_read_memory (target_gdbarch (), addr,
650 record_full_get_loc (rec), len))
d02ed0bb 651 {
88d1aa9d 652 record_full_mem_release (rec);
d02ed0bb
MM
653 return -1;
654 }
655
88d1aa9d 656 record_full_arch_list_add (rec);
d02ed0bb
MM
657
658 return 0;
659}
660
88d1aa9d
MM
661/* Add a record_full_end type struct record_full_entry to
662 record_full_arch_list. */
d02ed0bb
MM
663
664int
25ea693b 665record_full_arch_list_add_end (void)
d02ed0bb 666{
88d1aa9d 667 struct record_full_entry *rec;
d02ed0bb
MM
668
669 if (record_debug > 1)
670 fprintf_unfiltered (gdb_stdlog,
671 "Process record: add end to arch list.\n");
672
88d1aa9d 673 rec = record_full_end_alloc ();
d02ed0bb 674 rec->u.end.sigval = GDB_SIGNAL_0;
88d1aa9d 675 rec->u.end.insn_num = ++record_full_insn_count;
d02ed0bb 676
88d1aa9d 677 record_full_arch_list_add (rec);
d02ed0bb
MM
678
679 return 0;
680}
681
682static void
651ce16a 683record_full_check_insn_num (void)
d02ed0bb 684{
7ee70bf5 685 if (record_full_insn_num == record_full_insn_max_num)
d02ed0bb 686 {
7ee70bf5
PA
687 /* Ask user what to do. */
688 if (record_full_stop_at_limit)
d02ed0bb 689 {
651ce16a 690 if (!yquery (_("Do you want to auto delete previous execution "
7ee70bf5 691 "log entries when record/replay buffer becomes "
651ce16a 692 "full (record full stop-at-limit)?")))
7ee70bf5 693 error (_("Process record: stopped by user."));
651ce16a 694 record_full_stop_at_limit = 0;
d02ed0bb
MM
695 }
696 }
697}
698
d02ed0bb
MM
699/* Before inferior step (when GDB record the running message, inferior
700 only can step), GDB will call this function to record the values to
88d1aa9d 701 record_full_list. This function will call gdbarch_process_record to
d02ed0bb 702 record the running message of inferior and set them to
88d1aa9d 703 record_full_arch_list, and add it to record_full_list. */
d02ed0bb 704
bf469271 705static void
88d1aa9d 706record_full_message (struct regcache *regcache, enum gdb_signal signal)
d02ed0bb
MM
707{
708 int ret;
ac7936df 709 struct gdbarch *gdbarch = regcache->arch ();
d02ed0bb 710
1ddbba9d
TT
711 TRY
712 {
713 record_full_arch_list_head = NULL;
714 record_full_arch_list_tail = NULL;
d02ed0bb 715
1ddbba9d
TT
716 /* Check record_full_insn_num. */
717 record_full_check_insn_num ();
718
719 /* If gdb sends a signal value to target_resume,
720 save it in the 'end' field of the previous instruction.
d02ed0bb 721
1ddbba9d
TT
722 Maybe process record should record what really happened,
723 rather than what gdb pretends has happened.
d02ed0bb 724
1ddbba9d
TT
725 So if Linux delivered the signal to the child process during
726 the record mode, we will record it and deliver it again in
727 the replay mode.
d02ed0bb 728
1ddbba9d
TT
729 If user says "ignore this signal" during the record mode, then
730 it will be ignored again during the replay mode (no matter if
731 the user says something different, like "deliver this signal"
732 during the replay mode).
d02ed0bb 733
1ddbba9d
TT
734 User should understand that nothing he does during the replay
735 mode will change the behavior of the child. If he tries,
736 then that is a user error.
d02ed0bb 737
1ddbba9d
TT
738 But we should still deliver the signal to gdb during the replay,
739 if we delivered it during the recording. Therefore we should
740 record the signal during record_full_wait, not
741 record_full_resume. */
742 if (record_full_list != &record_full_first) /* FIXME better way
743 to check */
744 {
745 gdb_assert (record_full_list->type == record_full_end);
746 record_full_list->u.end.sigval = signal;
747 }
d02ed0bb 748
1ddbba9d
TT
749 if (signal == GDB_SIGNAL_0
750 || !gdbarch_process_record_signal_p (gdbarch))
751 ret = gdbarch_process_record (gdbarch,
752 regcache,
753 regcache_read_pc (regcache));
754 else
755 ret = gdbarch_process_record_signal (gdbarch,
756 regcache,
757 signal);
758
759 if (ret > 0)
760 error (_("Process record: inferior program stopped."));
761 if (ret < 0)
762 error (_("Process record: failed to record execution log."));
763 }
764 CATCH (ex, RETURN_MASK_ALL)
d02ed0bb 765 {
1ddbba9d
TT
766 record_full_list_release (record_full_arch_list_tail);
767 throw_exception (ex);
d02ed0bb 768 }
1ddbba9d 769 END_CATCH
d02ed0bb 770
88d1aa9d
MM
771 record_full_list->next = record_full_arch_list_head;
772 record_full_arch_list_head->prev = record_full_list;
773 record_full_list = record_full_arch_list_tail;
d02ed0bb 774
7ee70bf5 775 if (record_full_insn_num == record_full_insn_max_num)
88d1aa9d 776 record_full_list_release_first ();
d02ed0bb 777 else
88d1aa9d 778 record_full_insn_num++;
d02ed0bb
MM
779}
780
bf469271 781static bool
88d1aa9d
MM
782record_full_message_wrapper_safe (struct regcache *regcache,
783 enum gdb_signal signal)
d02ed0bb 784{
bf469271
PA
785 TRY
786 {
787 record_full_message (regcache, signal);
788 }
789 CATCH (ex, RETURN_MASK_ALL)
790 {
791 exception_print (gdb_stderr, ex);
792 return false;
793 }
794 END_CATCH
d02ed0bb 795
bf469271 796 return true;
d02ed0bb
MM
797}
798
88d1aa9d 799/* Set to 1 if record_full_store_registers and record_full_xfer_partial
d02ed0bb
MM
800 doesn't need record. */
801
88d1aa9d 802static int record_full_gdb_operation_disable = 0;
d02ed0bb 803
07036511 804scoped_restore_tmpl<int>
25ea693b 805record_full_gdb_operation_disable_set (void)
d02ed0bb 806{
07036511 807 return make_scoped_restore (&record_full_gdb_operation_disable, 1);
d02ed0bb
MM
808}
809
810/* Flag set to TRUE for target_stopped_by_watchpoint. */
9e8915c6
PA
811static enum target_stop_reason record_full_stop_reason
812 = TARGET_STOPPED_BY_NO_REASON;
d02ed0bb
MM
813
814/* Execute one instruction from the record log. Each instruction in
815 the log will be represented by an arbitrary sequence of register
816 entries and memory entries, followed by an 'end' entry. */
817
818static inline void
88d1aa9d
MM
819record_full_exec_insn (struct regcache *regcache,
820 struct gdbarch *gdbarch,
821 struct record_full_entry *entry)
d02ed0bb
MM
822{
823 switch (entry->type)
824 {
88d1aa9d 825 case record_full_reg: /* reg */
d02ed0bb 826 {
d7dcbefc 827 gdb::byte_vector reg (entry->u.reg.len);
d02ed0bb
MM
828
829 if (record_debug > 1)
830 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 831 "Process record: record_full_reg %s to "
d02ed0bb
MM
832 "inferior num = %d.\n",
833 host_address_to_string (entry),
834 entry->u.reg.num);
835
dca08e1f 836 regcache->cooked_read (entry->u.reg.num, reg.data ());
b66f5587 837 regcache->cooked_write (entry->u.reg.num, record_full_get_loc (entry));
d7dcbefc 838 memcpy (record_full_get_loc (entry), reg.data (), entry->u.reg.len);
d02ed0bb
MM
839 }
840 break;
841
88d1aa9d 842 case record_full_mem: /* mem */
d02ed0bb
MM
843 {
844 /* Nothing to do if the entry is flagged not_accessible. */
845 if (!entry->u.mem.mem_entry_not_accessible)
846 {
a2b2bc12 847 gdb::byte_vector mem (entry->u.mem.len);
d02ed0bb
MM
848
849 if (record_debug > 1)
850 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 851 "Process record: record_full_mem %s to "
d02ed0bb
MM
852 "inferior addr = %s len = %d.\n",
853 host_address_to_string (entry),
854 paddress (gdbarch, entry->u.mem.addr),
855 entry->u.mem.len);
856
857 if (record_read_memory (gdbarch,
a2b2bc12
TT
858 entry->u.mem.addr, mem.data (),
859 entry->u.mem.len))
d02ed0bb
MM
860 entry->u.mem.mem_entry_not_accessible = 1;
861 else
862 {
863 if (target_write_memory (entry->u.mem.addr,
88d1aa9d 864 record_full_get_loc (entry),
d02ed0bb
MM
865 entry->u.mem.len))
866 {
867 entry->u.mem.mem_entry_not_accessible = 1;
868 if (record_debug)
869 warning (_("Process record: error writing memory at "
870 "addr = %s len = %d."),
871 paddress (gdbarch, entry->u.mem.addr),
872 entry->u.mem.len);
873 }
874 else
875 {
a2b2bc12 876 memcpy (record_full_get_loc (entry), mem.data (),
88d1aa9d 877 entry->u.mem.len);
d02ed0bb
MM
878
879 /* We've changed memory --- check if a hardware
880 watchpoint should trap. Note that this
881 presently assumes the target beneath supports
882 continuable watchpoints. On non-continuable
883 watchpoints target, we'll want to check this
884 _before_ actually doing the memory change, and
885 not doing the change at all if the watchpoint
886 traps. */
887 if (hardware_watchpoint_inserted_in_range
a01bda52 888 (regcache->aspace (),
d02ed0bb 889 entry->u.mem.addr, entry->u.mem.len))
9e8915c6 890 record_full_stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
d02ed0bb
MM
891 }
892 }
893 }
894 }
895 break;
896 }
897}
898
88d1aa9d 899static void record_full_restore (void);
d02ed0bb
MM
900
901/* Asynchronous signal handle registered as event loop source for when
902 we have pending events ready to be passed to the core. */
903
88d1aa9d 904static struct async_event_handler *record_full_async_inferior_event_token;
d02ed0bb
MM
905
906static void
88d1aa9d 907record_full_async_inferior_event_handler (gdb_client_data data)
d02ed0bb
MM
908{
909 inferior_event_handler (INF_REG_EVENT, NULL);
910}
911
d9f719f1 912/* Open the process record target for 'core' files. */
d02ed0bb
MM
913
914static void
014f9477 915record_full_core_open_1 (const char *name, int from_tty)
d02ed0bb
MM
916{
917 struct regcache *regcache = get_current_regcache ();
ac7936df 918 int regnum = gdbarch_num_regs (regcache->arch ());
d02ed0bb
MM
919 int i;
920
88d1aa9d 921 /* Get record_full_core_regbuf. */
d02ed0bb 922 target_fetch_registers (regcache, -1);
c8ec2f33
YQ
923 record_full_core_regbuf = new detached_regcache (regcache->arch (), false);
924
d02ed0bb 925 for (i = 0; i < regnum; i ++)
c8ec2f33 926 record_full_core_regbuf->raw_supply (i, *regcache);
d02ed0bb 927
88d1aa9d
MM
928 /* Get record_full_core_start and record_full_core_end. */
929 if (build_section_table (core_bfd, &record_full_core_start,
930 &record_full_core_end))
d02ed0bb 931 {
c8ec2f33 932 delete record_full_core_regbuf;
88d1aa9d 933 record_full_core_regbuf = NULL;
d02ed0bb
MM
934 error (_("\"%s\": Can't find sections: %s"),
935 bfd_get_filename (core_bfd), bfd_errmsg (bfd_get_error ()));
936 }
937
88d1aa9d
MM
938 push_target (&record_full_core_ops);
939 record_full_restore ();
d02ed0bb
MM
940}
941
d9f719f1 942/* Open the process record target for 'live' processes. */
d02ed0bb
MM
943
944static void
014f9477 945record_full_open_1 (const char *name, int from_tty)
d02ed0bb
MM
946{
947 if (record_debug)
0a0640e3 948 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_open_1\n");
d02ed0bb
MM
949
950 /* check exec */
951 if (!target_has_execution)
952 error (_("Process record: the program is not being run."));
953 if (non_stop)
954 error (_("Process record target can't debug inferior in non-stop mode "
955 "(non-stop)."));
956
957 if (!gdbarch_process_record_p (target_gdbarch ()))
958 error (_("Process record: the current architecture doesn't support "
959 "record function."));
960
88d1aa9d 961 push_target (&record_full_ops);
d02ed0bb
MM
962}
963
88d1aa9d 964static void record_full_init_record_breakpoints (void);
d02ed0bb 965
d9f719f1 966/* Open the process record target. */
d02ed0bb 967
d9f719f1
PA
968static void
969record_full_open (const char *name, int from_tty)
d02ed0bb 970{
d02ed0bb 971 if (record_debug)
88d1aa9d 972 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_open\n");
d02ed0bb 973
8213266a 974 record_preopen ();
d02ed0bb 975
d02ed0bb 976 /* Reset */
88d1aa9d
MM
977 record_full_insn_num = 0;
978 record_full_insn_count = 0;
979 record_full_list = &record_full_first;
980 record_full_list->next = NULL;
d02ed0bb 981
d02ed0bb 982 if (core_bfd)
88d1aa9d 983 record_full_core_open_1 (name, from_tty);
d02ed0bb 984 else
88d1aa9d 985 record_full_open_1 (name, from_tty);
d02ed0bb
MM
986
987 /* Register extra event sources in the event loop. */
88d1aa9d
MM
988 record_full_async_inferior_event_token
989 = create_async_event_handler (record_full_async_inferior_event_handler,
d02ed0bb
MM
990 NULL);
991
88d1aa9d 992 record_full_init_record_breakpoints ();
d02ed0bb 993
76727919 994 gdb::observers::record_changed.notify (current_inferior (), 1, "full", NULL);
d02ed0bb
MM
995}
996
f6ac5f3d 997/* "close" target method. Close the process record target. */
d02ed0bb 998
f6ac5f3d
PA
999void
1000record_full_base_target::close ()
d02ed0bb 1001{
88d1aa9d 1002 struct record_full_core_buf_entry *entry;
d02ed0bb
MM
1003
1004 if (record_debug)
88d1aa9d 1005 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_close\n");
d02ed0bb 1006
88d1aa9d 1007 record_full_list_release (record_full_list);
d02ed0bb 1008
88d1aa9d
MM
1009 /* Release record_full_core_regbuf. */
1010 if (record_full_core_regbuf)
d02ed0bb 1011 {
c8ec2f33 1012 delete record_full_core_regbuf;
88d1aa9d 1013 record_full_core_regbuf = NULL;
d02ed0bb
MM
1014 }
1015
88d1aa9d
MM
1016 /* Release record_full_core_buf_list. */
1017 if (record_full_core_buf_list)
d02ed0bb 1018 {
88d1aa9d
MM
1019 for (entry = record_full_core_buf_list->prev; entry;
1020 entry = entry->prev)
d02ed0bb 1021 {
88d1aa9d
MM
1022 xfree (record_full_core_buf_list);
1023 record_full_core_buf_list = entry;
d02ed0bb 1024 }
88d1aa9d 1025 record_full_core_buf_list = NULL;
d02ed0bb
MM
1026 }
1027
88d1aa9d
MM
1028 if (record_full_async_inferior_event_token)
1029 delete_async_event_handler (&record_full_async_inferior_event_token);
d02ed0bb
MM
1030}
1031
f6ac5f3d 1032/* "async" target method. */
b7d2e916 1033
f6ac5f3d
PA
1034void
1035record_full_base_target::async (int enable)
b7d2e916 1036{
6a3753b3 1037 if (enable)
b7d2e916
PA
1038 mark_async_event_handler (record_full_async_inferior_event_token);
1039 else
1040 clear_async_event_handler (record_full_async_inferior_event_token);
1041
b6a8c27b 1042 beneath ()->async (enable);
b7d2e916
PA
1043}
1044
88d1aa9d 1045static int record_full_resume_step = 0;
d02ed0bb 1046
88d1aa9d
MM
1047/* True if we've been resumed, and so each record_full_wait call should
1048 advance execution. If this is false, record_full_wait will return a
d02ed0bb 1049 TARGET_WAITKIND_IGNORE. */
88d1aa9d 1050static int record_full_resumed = 0;
d02ed0bb
MM
1051
1052/* The execution direction of the last resume we got. This is
1053 necessary for async mode. Vis (order is not strictly accurate):
1054
1055 1. user has the global execution direction set to forward
1056 2. user does a reverse-step command
88d1aa9d 1057 3. record_full_resume is called with global execution direction
d02ed0bb
MM
1058 temporarily switched to reverse
1059 4. GDB's execution direction is reverted back to forward
1060 5. target record notifies event loop there's an event to handle
1061 6. infrun asks the target which direction was it going, and switches
1062 the global execution direction accordingly (to reverse)
1063 7. infrun polls an event out of the record target, and handles it
1064 8. GDB goes back to the event loop, and goto #4.
1065*/
88d1aa9d 1066static enum exec_direction_kind record_full_execution_dir = EXEC_FORWARD;
d02ed0bb 1067
f6ac5f3d 1068/* "resume" target method. Resume the process record target. */
d02ed0bb 1069
f6ac5f3d
PA
1070void
1071record_full_target::resume (ptid_t ptid, int step, enum gdb_signal signal)
d02ed0bb 1072{
88d1aa9d
MM
1073 record_full_resume_step = step;
1074 record_full_resumed = 1;
f6ac5f3d 1075 record_full_execution_dir = ::execution_direction;
d02ed0bb 1076
88d1aa9d 1077 if (!RECORD_FULL_IS_REPLAY)
d02ed0bb
MM
1078 {
1079 struct gdbarch *gdbarch = target_thread_architecture (ptid);
1080
88d1aa9d 1081 record_full_message (get_current_regcache (), signal);
d02ed0bb
MM
1082
1083 if (!step)
1084 {
1085 /* This is not hard single step. */
1086 if (!gdbarch_software_single_step_p (gdbarch))
1087 {
1088 /* This is a normal continue. */
1089 step = 1;
1090 }
1091 else
1092 {
8ce9efb0 1093 /* This arch supports soft single step. */
34b7e8a6 1094 if (thread_has_single_step_breakpoints_set (inferior_thread ()))
d02ed0bb
MM
1095 {
1096 /* This is a soft single step. */
88d1aa9d 1097 record_full_resume_step = 1;
d02ed0bb
MM
1098 }
1099 else
93f9a11f 1100 step = !insert_single_step_breakpoints (gdbarch);
d02ed0bb
MM
1101 }
1102 }
1103
1104 /* Make sure the target beneath reports all signals. */
1105 target_pass_signals (0, NULL);
1106
b6a8c27b 1107 this->beneath ()->resume (ptid, step, signal);
d02ed0bb
MM
1108 }
1109
1110 /* We are about to start executing the inferior (or simulate it),
1111 let's register it with the event loop. */
1112 if (target_can_async_p ())
6a3753b3 1113 target_async (1);
d02ed0bb
MM
1114}
1115
f6ac5f3d 1116/* "commit_resume" method for process record target. */
85ad3aaf 1117
f6ac5f3d
PA
1118void
1119record_full_target::commit_resume ()
85ad3aaf
PA
1120{
1121 if (!RECORD_FULL_IS_REPLAY)
b6a8c27b 1122 beneath ()->commit_resume ();
85ad3aaf
PA
1123}
1124
88d1aa9d 1125static int record_full_get_sig = 0;
d02ed0bb 1126
f6ac5f3d 1127/* SIGINT signal handler, registered by "wait" method. */
d02ed0bb
MM
1128
1129static void
88d1aa9d 1130record_full_sig_handler (int signo)
d02ed0bb
MM
1131{
1132 if (record_debug)
1133 fprintf_unfiltered (gdb_stdlog, "Process record: get a signal\n");
1134
1135 /* It will break the running inferior in replay mode. */
88d1aa9d 1136 record_full_resume_step = 1;
d02ed0bb 1137
88d1aa9d 1138 /* It will let record_full_wait set inferior status to get the signal
d02ed0bb 1139 SIGINT. */
88d1aa9d 1140 record_full_get_sig = 1;
d02ed0bb
MM
1141}
1142
f6ac5f3d 1143/* "wait" target method for process record target.
d02ed0bb
MM
1144
1145 In record mode, the target is always run in singlestep mode
f6ac5f3d 1146 (even when gdb says to continue). The wait method intercepts
d02ed0bb
MM
1147 the stop events and determines which ones are to be passed on to
1148 gdb. Most stop events are just singlestep events that gdb is not
f6ac5f3d 1149 to know about, so the wait method just records them and keeps
d02ed0bb
MM
1150 singlestepping.
1151
1152 In replay mode, this function emulates the recorded execution log,
1153 one instruction at a time (forward or backward), and determines
1154 where to stop. */
1155
1156static ptid_t
88d1aa9d
MM
1157record_full_wait_1 (struct target_ops *ops,
1158 ptid_t ptid, struct target_waitstatus *status,
1159 int options)
d02ed0bb 1160{
07036511
TT
1161 scoped_restore restore_operation_disable
1162 = record_full_gdb_operation_disable_set ();
d02ed0bb
MM
1163
1164 if (record_debug)
1165 fprintf_unfiltered (gdb_stdlog,
88d1aa9d
MM
1166 "Process record: record_full_wait "
1167 "record_full_resume_step = %d, "
1168 "record_full_resumed = %d, direction=%s\n",
1169 record_full_resume_step, record_full_resumed,
1170 record_full_execution_dir == EXEC_FORWARD
1171 ? "forward" : "reverse");
1172
1173 if (!record_full_resumed)
d02ed0bb
MM
1174 {
1175 gdb_assert ((options & TARGET_WNOHANG) != 0);
1176
1177 /* No interesting event. */
1178 status->kind = TARGET_WAITKIND_IGNORE;
1179 return minus_one_ptid;
1180 }
1181
88d1aa9d
MM
1182 record_full_get_sig = 0;
1183 signal (SIGINT, record_full_sig_handler);
d02ed0bb 1184
9e8915c6
PA
1185 record_full_stop_reason = TARGET_STOPPED_BY_NO_REASON;
1186
88d1aa9d 1187 if (!RECORD_FULL_IS_REPLAY && ops != &record_full_core_ops)
d02ed0bb 1188 {
88d1aa9d 1189 if (record_full_resume_step)
d02ed0bb
MM
1190 {
1191 /* This is a single step. */
b6a8c27b 1192 return ops->beneath ()->wait (ptid, status, options);
d02ed0bb
MM
1193 }
1194 else
1195 {
1196 /* This is not a single step. */
1197 ptid_t ret;
1198 CORE_ADDR tmp_pc;
1199 struct gdbarch *gdbarch = target_thread_architecture (inferior_ptid);
1200
1201 while (1)
1202 {
b6a8c27b 1203 ret = ops->beneath ()->wait (ptid, status, options);
d02ed0bb
MM
1204 if (status->kind == TARGET_WAITKIND_IGNORE)
1205 {
1206 if (record_debug)
1207 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 1208 "Process record: record_full_wait "
d02ed0bb
MM
1209 "target beneath not done yet\n");
1210 return ret;
1211 }
1212
08036331 1213 for (thread_info *tp : all_non_exited_threads ())
34b7e8a6 1214 delete_single_step_breakpoints (tp);
d02ed0bb 1215
88d1aa9d 1216 if (record_full_resume_step)
d02ed0bb
MM
1217 return ret;
1218
1219 /* Is this a SIGTRAP? */
1220 if (status->kind == TARGET_WAITKIND_STOPPED
1221 && status->value.sig == GDB_SIGNAL_TRAP)
1222 {
1223 struct regcache *regcache;
9e8915c6
PA
1224 enum target_stop_reason *stop_reason_p
1225 = &record_full_stop_reason;
d02ed0bb
MM
1226
1227 /* Yes -- this is likely our single-step finishing,
1228 but check if there's any reason the core would be
1229 interested in the event. */
1230
1231 registers_changed ();
1232 regcache = get_current_regcache ();
1233 tmp_pc = regcache_read_pc (regcache);
8b86c959 1234 const struct address_space *aspace = regcache->aspace ();
d02ed0bb
MM
1235
1236 if (target_stopped_by_watchpoint ())
1237 {
1238 /* Always interested in watchpoints. */
1239 }
9e8915c6
PA
1240 else if (record_check_stopped_by_breakpoint (aspace, tmp_pc,
1241 stop_reason_p))
d02ed0bb
MM
1242 {
1243 /* There is a breakpoint here. Let the core
1244 handle it. */
d02ed0bb
MM
1245 }
1246 else
1247 {
1248 /* This is a single-step trap. Record the
1249 insn and issue another step.
1250 FIXME: this part can be a random SIGTRAP too.
1251 But GDB cannot handle it. */
1252 int step = 1;
1253
88d1aa9d
MM
1254 if (!record_full_message_wrapper_safe (regcache,
1255 GDB_SIGNAL_0))
d02ed0bb
MM
1256 {
1257 status->kind = TARGET_WAITKIND_STOPPED;
1258 status->value.sig = GDB_SIGNAL_0;
1259 break;
1260 }
1261
1262 if (gdbarch_software_single_step_p (gdbarch))
1263 {
1264 /* Try to insert the software single step breakpoint.
1265 If insert success, set step to 0. */
1266 set_executing (inferior_ptid, 0);
1267 reinit_frame_cache ();
93f9a11f
YQ
1268
1269 step = !insert_single_step_breakpoints (gdbarch);
1270
d02ed0bb
MM
1271 set_executing (inferior_ptid, 1);
1272 }
1273
1274 if (record_debug)
1275 fprintf_unfiltered (gdb_stdlog,
88d1aa9d
MM
1276 "Process record: record_full_wait "
1277 "issuing one more step in the "
1278 "target beneath\n");
b6a8c27b
PA
1279 ops->beneath ()->resume (ptid, step, GDB_SIGNAL_0);
1280 ops->beneath ()->commit_resume ();
d02ed0bb
MM
1281 continue;
1282 }
1283 }
1284
1285 /* The inferior is broken by a breakpoint or a signal. */
1286 break;
1287 }
1288
1289 return ret;
1290 }
1291 }
1292 else
1293 {
1294 struct regcache *regcache = get_current_regcache ();
ac7936df 1295 struct gdbarch *gdbarch = regcache->arch ();
8b86c959 1296 const struct address_space *aspace = regcache->aspace ();
d02ed0bb 1297 int continue_flag = 1;
88d1aa9d 1298 int first_record_full_end = 1;
d02ed0bb 1299
1ddbba9d 1300 TRY
d02ed0bb 1301 {
1ddbba9d 1302 CORE_ADDR tmp_pc;
d02ed0bb 1303
1ddbba9d
TT
1304 record_full_stop_reason = TARGET_STOPPED_BY_NO_REASON;
1305 status->kind = TARGET_WAITKIND_STOPPED;
d02ed0bb 1306
1ddbba9d
TT
1307 /* Check breakpoint when forward execute. */
1308 if (execution_direction == EXEC_FORWARD)
d02ed0bb 1309 {
1ddbba9d
TT
1310 tmp_pc = regcache_read_pc (regcache);
1311 if (record_check_stopped_by_breakpoint (aspace, tmp_pc,
1312 &record_full_stop_reason))
1313 {
1314 if (record_debug)
1315 fprintf_unfiltered (gdb_stdlog,
1316 "Process record: break at %s.\n",
1317 paddress (gdbarch, tmp_pc));
1318 goto replay_out;
1319 }
d02ed0bb
MM
1320 }
1321
1ddbba9d
TT
1322 /* If GDB is in terminal_inferior mode, it will not get the
1323 signal. And in GDB replay mode, GDB doesn't need to be
1324 in terminal_inferior mode, because inferior will not
1325 executed. Then set it to terminal_ours to make GDB get
1326 the signal. */
1327 target_terminal::ours ();
1328
1329 /* In EXEC_FORWARD mode, record_full_list points to the tail of prev
1330 instruction. */
1331 if (execution_direction == EXEC_FORWARD && record_full_list->next)
1332 record_full_list = record_full_list->next;
1333
1334 /* Loop over the record_full_list, looking for the next place to
1335 stop. */
1336 do
d02ed0bb 1337 {
1ddbba9d
TT
1338 /* Check for beginning and end of log. */
1339 if (execution_direction == EXEC_REVERSE
1340 && record_full_list == &record_full_first)
d02ed0bb 1341 {
1ddbba9d
TT
1342 /* Hit beginning of record log in reverse. */
1343 status->kind = TARGET_WAITKIND_NO_HISTORY;
1344 break;
d02ed0bb 1345 }
1ddbba9d
TT
1346 if (execution_direction != EXEC_REVERSE
1347 && !record_full_list->next)
1348 {
1349 /* Hit end of record log going forward. */
1350 status->kind = TARGET_WAITKIND_NO_HISTORY;
1351 break;
1352 }
1353
1354 record_full_exec_insn (regcache, gdbarch, record_full_list);
1355
1356 if (record_full_list->type == record_full_end)
d02ed0bb 1357 {
1ddbba9d
TT
1358 if (record_debug > 1)
1359 fprintf_unfiltered
1360 (gdb_stdlog,
1361 "Process record: record_full_end %s to "
1362 "inferior.\n",
1363 host_address_to_string (record_full_list));
1364
1365 if (first_record_full_end
1366 && execution_direction == EXEC_REVERSE)
d02ed0bb 1367 {
1ddbba9d
TT
1368 /* When reverse excute, the first
1369 record_full_end is the part of current
1370 instruction. */
1371 first_record_full_end = 0;
d02ed0bb 1372 }
1ddbba9d 1373 else
d02ed0bb 1374 {
1ddbba9d
TT
1375 /* In EXEC_REVERSE mode, this is the
1376 record_full_end of prev instruction. In
1377 EXEC_FORWARD mode, this is the
1378 record_full_end of current instruction. */
1379 /* step */
1380 if (record_full_resume_step)
1381 {
1382 if (record_debug > 1)
1383 fprintf_unfiltered (gdb_stdlog,
1384 "Process record: step.\n");
1385 continue_flag = 0;
1386 }
9e8915c6 1387
1ddbba9d
TT
1388 /* check breakpoint */
1389 tmp_pc = regcache_read_pc (regcache);
1390 if (record_check_stopped_by_breakpoint
1391 (aspace, tmp_pc, &record_full_stop_reason))
1392 {
1393 if (record_debug)
1394 fprintf_unfiltered (gdb_stdlog,
1395 "Process record: break "
1396 "at %s.\n",
1397 paddress (gdbarch, tmp_pc));
d02ed0bb 1398
1ddbba9d
TT
1399 continue_flag = 0;
1400 }
1401
1402 if (record_full_stop_reason
1403 == TARGET_STOPPED_BY_WATCHPOINT)
1404 {
1405 if (record_debug)
1406 fprintf_unfiltered (gdb_stdlog,
1407 "Process record: hit hw "
1408 "watchpoint.\n");
1409 continue_flag = 0;
1410 }
1411 /* Check target signal */
1412 if (record_full_list->u.end.sigval != GDB_SIGNAL_0)
1413 /* FIXME: better way to check */
1414 continue_flag = 0;
d02ed0bb 1415 }
d02ed0bb 1416 }
d02ed0bb 1417
1ddbba9d 1418 if (continue_flag)
d02ed0bb 1419 {
1ddbba9d
TT
1420 if (execution_direction == EXEC_REVERSE)
1421 {
1422 if (record_full_list->prev)
1423 record_full_list = record_full_list->prev;
1424 }
1425 else
1426 {
1427 if (record_full_list->next)
1428 record_full_list = record_full_list->next;
1429 }
d02ed0bb
MM
1430 }
1431 }
1ddbba9d
TT
1432 while (continue_flag);
1433
1434 replay_out:
1435 if (record_full_get_sig)
1436 status->value.sig = GDB_SIGNAL_INT;
1437 else if (record_full_list->u.end.sigval != GDB_SIGNAL_0)
1438 /* FIXME: better way to check */
1439 status->value.sig = record_full_list->u.end.sigval;
1440 else
1441 status->value.sig = GDB_SIGNAL_TRAP;
d02ed0bb 1442 }
1ddbba9d
TT
1443 CATCH (ex, RETURN_MASK_ALL)
1444 {
1445 if (execution_direction == EXEC_REVERSE)
1446 {
1447 if (record_full_list->next)
1448 record_full_list = record_full_list->next;
1449 }
1450 else
1451 record_full_list = record_full_list->prev;
d02ed0bb 1452
1ddbba9d
TT
1453 throw_exception (ex);
1454 }
1455 END_CATCH
d02ed0bb
MM
1456 }
1457
1458 signal (SIGINT, handle_sigint);
1459
d02ed0bb
MM
1460 return inferior_ptid;
1461}
1462
f6ac5f3d
PA
1463ptid_t
1464record_full_base_target::wait (ptid_t ptid, struct target_waitstatus *status,
1465 int options)
d02ed0bb
MM
1466{
1467 ptid_t return_ptid;
1468
f6ac5f3d 1469 return_ptid = record_full_wait_1 (this, ptid, status, options);
d02ed0bb
MM
1470 if (status->kind != TARGET_WAITKIND_IGNORE)
1471 {
1472 /* We're reporting a stop. Make sure any spurious
1473 target_wait(WNOHANG) doesn't advance the target until the
1474 core wants us resumed again. */
88d1aa9d 1475 record_full_resumed = 0;
d02ed0bb
MM
1476 }
1477 return return_ptid;
1478}
1479
57810aa7 1480bool
f6ac5f3d 1481record_full_base_target::stopped_by_watchpoint ()
d02ed0bb 1482{
88d1aa9d 1483 if (RECORD_FULL_IS_REPLAY)
9e8915c6 1484 return record_full_stop_reason == TARGET_STOPPED_BY_WATCHPOINT;
d02ed0bb 1485 else
b6a8c27b 1486 return beneath ()->stopped_by_watchpoint ();
d02ed0bb
MM
1487}
1488
57810aa7 1489bool
f6ac5f3d 1490record_full_base_target::stopped_data_address (CORE_ADDR *addr_p)
d02ed0bb 1491{
88d1aa9d 1492 if (RECORD_FULL_IS_REPLAY)
57810aa7 1493 return false;
d02ed0bb 1494 else
b6a8c27b 1495 return this->beneath ()->stopped_data_address (addr_p);
d02ed0bb
MM
1496}
1497
f6ac5f3d 1498/* The stopped_by_sw_breakpoint method of target record-full. */
9e8915c6 1499
57810aa7 1500bool
f6ac5f3d 1501record_full_base_target::stopped_by_sw_breakpoint ()
9e8915c6
PA
1502{
1503 return record_full_stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT;
1504}
1505
f6ac5f3d 1506/* The supports_stopped_by_sw_breakpoint method of target
9e8915c6
PA
1507 record-full. */
1508
57810aa7 1509bool
f6ac5f3d 1510record_full_base_target::supports_stopped_by_sw_breakpoint ()
9e8915c6 1511{
57810aa7 1512 return true;
9e8915c6
PA
1513}
1514
f6ac5f3d 1515/* The stopped_by_hw_breakpoint method of target record-full. */
9e8915c6 1516
57810aa7 1517bool
f6ac5f3d 1518record_full_base_target::stopped_by_hw_breakpoint ()
9e8915c6
PA
1519{
1520 return record_full_stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT;
1521}
1522
f6ac5f3d 1523/* The supports_stopped_by_sw_breakpoint method of target
9e8915c6
PA
1524 record-full. */
1525
57810aa7 1526bool
f6ac5f3d 1527record_full_base_target::supports_stopped_by_hw_breakpoint ()
9e8915c6 1528{
57810aa7 1529 return true;
9e8915c6
PA
1530}
1531
d02ed0bb
MM
1532/* Record registers change (by user or by GDB) to list as an instruction. */
1533
1534static void
88d1aa9d 1535record_full_registers_change (struct regcache *regcache, int regnum)
d02ed0bb 1536{
88d1aa9d 1537 /* Check record_full_insn_num. */
651ce16a 1538 record_full_check_insn_num ();
d02ed0bb 1539
88d1aa9d
MM
1540 record_full_arch_list_head = NULL;
1541 record_full_arch_list_tail = NULL;
d02ed0bb
MM
1542
1543 if (regnum < 0)
1544 {
1545 int i;
1546
ac7936df 1547 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
d02ed0bb 1548 {
25ea693b 1549 if (record_full_arch_list_add_reg (regcache, i))
d02ed0bb 1550 {
88d1aa9d 1551 record_full_list_release (record_full_arch_list_tail);
d02ed0bb
MM
1552 error (_("Process record: failed to record execution log."));
1553 }
1554 }
1555 }
1556 else
1557 {
25ea693b 1558 if (record_full_arch_list_add_reg (regcache, regnum))
d02ed0bb 1559 {
88d1aa9d 1560 record_full_list_release (record_full_arch_list_tail);
d02ed0bb
MM
1561 error (_("Process record: failed to record execution log."));
1562 }
1563 }
25ea693b 1564 if (record_full_arch_list_add_end ())
d02ed0bb 1565 {
88d1aa9d 1566 record_full_list_release (record_full_arch_list_tail);
d02ed0bb
MM
1567 error (_("Process record: failed to record execution log."));
1568 }
88d1aa9d
MM
1569 record_full_list->next = record_full_arch_list_head;
1570 record_full_arch_list_head->prev = record_full_list;
1571 record_full_list = record_full_arch_list_tail;
d02ed0bb 1572
7ee70bf5 1573 if (record_full_insn_num == record_full_insn_max_num)
88d1aa9d 1574 record_full_list_release_first ();
d02ed0bb 1575 else
88d1aa9d 1576 record_full_insn_num++;
d02ed0bb
MM
1577}
1578
f6ac5f3d 1579/* "store_registers" method for process record target. */
d02ed0bb 1580
f6ac5f3d
PA
1581void
1582record_full_target::store_registers (struct regcache *regcache, int regno)
d02ed0bb 1583{
88d1aa9d 1584 if (!record_full_gdb_operation_disable)
d02ed0bb 1585 {
88d1aa9d 1586 if (RECORD_FULL_IS_REPLAY)
d02ed0bb
MM
1587 {
1588 int n;
1589
1590 /* Let user choose if he wants to write register or not. */
1591 if (regno < 0)
1592 n =
1593 query (_("Because GDB is in replay mode, changing the "
1594 "value of a register will make the execution "
1595 "log unusable from this point onward. "
1596 "Change all registers?"));
1597 else
1598 n =
1599 query (_("Because GDB is in replay mode, changing the value "
1600 "of a register will make the execution log unusable "
1601 "from this point onward. Change register %s?"),
ac7936df 1602 gdbarch_register_name (regcache->arch (),
d02ed0bb
MM
1603 regno));
1604
1605 if (!n)
1606 {
1607 /* Invalidate the value of regcache that was set in function
1608 "regcache_raw_write". */
1609 if (regno < 0)
1610 {
1611 int i;
1612
1613 for (i = 0;
ac7936df 1614 i < gdbarch_num_regs (regcache->arch ());
d02ed0bb 1615 i++)
6aa7d724 1616 regcache->invalidate (i);
d02ed0bb
MM
1617 }
1618 else
6aa7d724 1619 regcache->invalidate (regno);
d02ed0bb
MM
1620
1621 error (_("Process record canceled the operation."));
1622 }
1623
1624 /* Destroy the record from here forward. */
88d1aa9d 1625 record_full_list_release_following (record_full_list);
d02ed0bb
MM
1626 }
1627
88d1aa9d 1628 record_full_registers_change (regcache, regno);
d02ed0bb 1629 }
b6a8c27b 1630 this->beneath ()->store_registers (regcache, regno);
d02ed0bb
MM
1631}
1632
f6ac5f3d 1633/* "xfer_partial" method. Behavior is conditional on
88d1aa9d 1634 RECORD_FULL_IS_REPLAY.
d02ed0bb
MM
1635 In replay mode, we cannot write memory unles we are willing to
1636 invalidate the record/replay log from this point forward. */
1637
f6ac5f3d
PA
1638enum target_xfer_status
1639record_full_target::xfer_partial (enum target_object object,
1640 const char *annex, gdb_byte *readbuf,
1641 const gdb_byte *writebuf, ULONGEST offset,
1642 ULONGEST len, ULONGEST *xfered_len)
d02ed0bb 1643{
88d1aa9d 1644 if (!record_full_gdb_operation_disable
d02ed0bb
MM
1645 && (object == TARGET_OBJECT_MEMORY
1646 || object == TARGET_OBJECT_RAW_MEMORY) && writebuf)
1647 {
88d1aa9d 1648 if (RECORD_FULL_IS_REPLAY)
d02ed0bb
MM
1649 {
1650 /* Let user choose if he wants to write memory or not. */
1651 if (!query (_("Because GDB is in replay mode, writing to memory "
1652 "will make the execution log unusable from this "
1653 "point onward. Write memory at address %s?"),
1654 paddress (target_gdbarch (), offset)))
1655 error (_("Process record canceled the operation."));
1656
1657 /* Destroy the record from here forward. */
88d1aa9d 1658 record_full_list_release_following (record_full_list);
d02ed0bb
MM
1659 }
1660
88d1aa9d 1661 /* Check record_full_insn_num */
651ce16a 1662 record_full_check_insn_num ();
d02ed0bb
MM
1663
1664 /* Record registers change to list as an instruction. */
88d1aa9d
MM
1665 record_full_arch_list_head = NULL;
1666 record_full_arch_list_tail = NULL;
25ea693b 1667 if (record_full_arch_list_add_mem (offset, len))
d02ed0bb 1668 {
88d1aa9d 1669 record_full_list_release (record_full_arch_list_tail);
d02ed0bb
MM
1670 if (record_debug)
1671 fprintf_unfiltered (gdb_stdlog,
1672 "Process record: failed to record "
1673 "execution log.");
2ed4b548 1674 return TARGET_XFER_E_IO;
d02ed0bb 1675 }
25ea693b 1676 if (record_full_arch_list_add_end ())
d02ed0bb 1677 {
88d1aa9d 1678 record_full_list_release (record_full_arch_list_tail);
d02ed0bb
MM
1679 if (record_debug)
1680 fprintf_unfiltered (gdb_stdlog,
1681 "Process record: failed to record "
1682 "execution log.");
2ed4b548 1683 return TARGET_XFER_E_IO;
d02ed0bb 1684 }
88d1aa9d
MM
1685 record_full_list->next = record_full_arch_list_head;
1686 record_full_arch_list_head->prev = record_full_list;
1687 record_full_list = record_full_arch_list_tail;
d02ed0bb 1688
7ee70bf5 1689 if (record_full_insn_num == record_full_insn_max_num)
88d1aa9d 1690 record_full_list_release_first ();
d02ed0bb 1691 else
88d1aa9d 1692 record_full_insn_num++;
d02ed0bb
MM
1693 }
1694
b6a8c27b
PA
1695 return this->beneath ()->xfer_partial (object, annex, readbuf, writebuf,
1696 offset, len, xfered_len);
d02ed0bb
MM
1697}
1698
1699/* This structure represents a breakpoint inserted while the record
1700 target is active. We use this to know when to install/remove
1701 breakpoints in/from the target beneath. For example, a breakpoint
1702 may be inserted while recording, but removed when not replaying nor
1703 recording. In that case, the breakpoint had not been inserted on
1704 the target beneath, so we should not try to remove it there. */
1705
88d1aa9d 1706struct record_full_breakpoint
d02ed0bb 1707{
219605fd
TT
1708 record_full_breakpoint (struct address_space *address_space_,
1709 CORE_ADDR addr_,
1710 bool in_target_beneath_)
1711 : address_space (address_space_),
1712 addr (addr_),
1713 in_target_beneath (in_target_beneath_)
1714 {
1715 }
1716
d02ed0bb
MM
1717 /* The address and address space the breakpoint was set at. */
1718 struct address_space *address_space;
1719 CORE_ADDR addr;
1720
1721 /* True when the breakpoint has been also installed in the target
1722 beneath. This will be false for breakpoints set during replay or
1723 when recording. */
219605fd 1724 bool in_target_beneath;
d02ed0bb
MM
1725};
1726
d02ed0bb
MM
1727/* The list of breakpoints inserted while the record target is
1728 active. */
219605fd 1729static std::vector<record_full_breakpoint> record_full_breakpoints;
d02ed0bb
MM
1730
1731static void
88d1aa9d 1732record_full_sync_record_breakpoints (struct bp_location *loc, void *data)
d02ed0bb
MM
1733{
1734 if (loc->loc_type != bp_loc_software_breakpoint)
1735 return;
1736
1737 if (loc->inserted)
1738 {
219605fd
TT
1739 record_full_breakpoints.emplace_back
1740 (loc->target_info.placed_address_space,
1741 loc->target_info.placed_address,
1742 1);
d02ed0bb
MM
1743 }
1744}
1745
88d1aa9d 1746/* Sync existing breakpoints to record_full_breakpoints. */
d02ed0bb
MM
1747
1748static void
88d1aa9d 1749record_full_init_record_breakpoints (void)
d02ed0bb 1750{
219605fd 1751 record_full_breakpoints.clear ();
d02ed0bb 1752
88d1aa9d 1753 iterate_over_bp_locations (record_full_sync_record_breakpoints);
d02ed0bb
MM
1754}
1755
88d1aa9d 1756/* Behavior is conditional on RECORD_FULL_IS_REPLAY. We will not actually
d02ed0bb
MM
1757 insert or remove breakpoints in the real target when replaying, nor
1758 when recording. */
1759
f6ac5f3d
PA
1760int
1761record_full_target::insert_breakpoint (struct gdbarch *gdbarch,
1762 struct bp_target_info *bp_tgt)
d02ed0bb 1763{
219605fd 1764 bool in_target_beneath = false;
d02ed0bb 1765
88d1aa9d 1766 if (!RECORD_FULL_IS_REPLAY)
d02ed0bb
MM
1767 {
1768 /* When recording, we currently always single-step, so we don't
1769 really need to install regular breakpoints in the inferior.
1770 However, we do have to insert software single-step
1771 breakpoints, in case the target can't hardware step. To keep
f99bd5f2 1772 things simple, we always insert. */
d02ed0bb 1773
07036511
TT
1774 scoped_restore restore_operation_disable
1775 = record_full_gdb_operation_disable_set ();
d02ed0bb 1776
b6a8c27b 1777 int ret = this->beneath ()->insert_breakpoint (gdbarch, bp_tgt);
d02ed0bb
MM
1778 if (ret != 0)
1779 return ret;
1780
219605fd 1781 in_target_beneath = true;
d02ed0bb
MM
1782 }
1783
e390720b
YQ
1784 /* Use the existing entries if found in order to avoid duplication
1785 in record_full_breakpoints. */
1786
19f3f25f 1787 for (const record_full_breakpoint &bp : record_full_breakpoints)
e390720b 1788 {
219605fd
TT
1789 if (bp.addr == bp_tgt->placed_address
1790 && bp.address_space == bp_tgt->placed_address_space)
e390720b 1791 {
219605fd 1792 gdb_assert (bp.in_target_beneath == in_target_beneath);
e390720b
YQ
1793 return 0;
1794 }
1795 }
1796
219605fd
TT
1797 record_full_breakpoints.emplace_back (bp_tgt->placed_address_space,
1798 bp_tgt->placed_address,
1799 in_target_beneath);
d02ed0bb
MM
1800 return 0;
1801}
1802
f6ac5f3d 1803/* "remove_breakpoint" method for process record target. */
d02ed0bb 1804
f6ac5f3d
PA
1805int
1806record_full_target::remove_breakpoint (struct gdbarch *gdbarch,
1807 struct bp_target_info *bp_tgt,
1808 enum remove_bp_reason reason)
d02ed0bb 1809{
219605fd
TT
1810 for (auto iter = record_full_breakpoints.begin ();
1811 iter != record_full_breakpoints.end ();
1812 ++iter)
d02ed0bb 1813 {
219605fd
TT
1814 struct record_full_breakpoint &bp = *iter;
1815
1816 if (bp.addr == bp_tgt->placed_address
1817 && bp.address_space == bp_tgt->placed_address_space)
d02ed0bb 1818 {
219605fd 1819 if (bp.in_target_beneath)
d02ed0bb 1820 {
07036511
TT
1821 scoped_restore restore_operation_disable
1822 = record_full_gdb_operation_disable_set ();
f6ac5f3d 1823
b6a8c27b
PA
1824 int ret = this->beneath ()->remove_breakpoint (gdbarch, bp_tgt,
1825 reason);
d02ed0bb
MM
1826 if (ret != 0)
1827 return ret;
1828 }
1829
01d3dedf 1830 if (reason == REMOVE_BREAKPOINT)
219605fd 1831 unordered_remove (record_full_breakpoints, iter);
d02ed0bb
MM
1832 return 0;
1833 }
1834 }
1835
1836 gdb_assert_not_reached ("removing unknown breakpoint");
1837}
1838
f6ac5f3d 1839/* "can_execute_reverse" method for process record target. */
d02ed0bb 1840
57810aa7 1841bool
f6ac5f3d 1842record_full_base_target::can_execute_reverse ()
d02ed0bb 1843{
57810aa7 1844 return true;
d02ed0bb
MM
1845}
1846
f6ac5f3d 1847/* "get_bookmark" method for process record and prec over core. */
d02ed0bb 1848
f6ac5f3d
PA
1849gdb_byte *
1850record_full_base_target::get_bookmark (const char *args, int from_tty)
d02ed0bb 1851{
0f928d68 1852 char *ret = NULL;
d02ed0bb
MM
1853
1854 /* Return stringified form of instruction count. */
88d1aa9d
MM
1855 if (record_full_list && record_full_list->type == record_full_end)
1856 ret = xstrdup (pulongest (record_full_list->u.end.insn_num));
d02ed0bb
MM
1857
1858 if (record_debug)
1859 {
1860 if (ret)
1861 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 1862 "record_full_get_bookmark returns %s\n", ret);
d02ed0bb
MM
1863 else
1864 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 1865 "record_full_get_bookmark returns NULL\n");
d02ed0bb 1866 }
0f928d68 1867 return (gdb_byte *) ret;
d02ed0bb
MM
1868}
1869
f6ac5f3d 1870/* "goto_bookmark" method for process record and prec over core. */
d02ed0bb 1871
f6ac5f3d
PA
1872void
1873record_full_base_target::goto_bookmark (const gdb_byte *raw_bookmark,
1874 int from_tty)
d02ed0bb 1875{
c2bcbb1d 1876 const char *bookmark = (const char *) raw_bookmark;
0f928d68 1877
d02ed0bb
MM
1878 if (record_debug)
1879 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 1880 "record_full_goto_bookmark receives %s\n", bookmark);
d02ed0bb 1881
a2b2bc12 1882 std::string name_holder;
d02ed0bb
MM
1883 if (bookmark[0] == '\'' || bookmark[0] == '\"')
1884 {
1885 if (bookmark[strlen (bookmark) - 1] != bookmark[0])
1886 error (_("Unbalanced quotes: %s"), bookmark);
1887
a2b2bc12
TT
1888 name_holder = std::string (bookmark + 1, strlen (bookmark) - 2);
1889 bookmark = name_holder.c_str ();
d02ed0bb
MM
1890 }
1891
c2bcbb1d 1892 record_goto (bookmark);
d02ed0bb
MM
1893}
1894
f6ac5f3d
PA
1895enum exec_direction_kind
1896record_full_base_target::execution_direction ()
d02ed0bb 1897{
88d1aa9d 1898 return record_full_execution_dir;
d02ed0bb
MM
1899}
1900
f6ac5f3d 1901/* The record_method method of target record-full. */
b158a20f
TW
1902
1903enum record_method
f6ac5f3d 1904record_full_base_target::record_method (ptid_t ptid)
b158a20f
TW
1905{
1906 return RECORD_METHOD_FULL;
1907}
1908
f6ac5f3d
PA
1909void
1910record_full_base_target::info_record ()
d02ed0bb 1911{
88d1aa9d 1912 struct record_full_entry *p;
d02ed0bb 1913
88d1aa9d 1914 if (RECORD_FULL_IS_REPLAY)
d02ed0bb
MM
1915 printf_filtered (_("Replay mode:\n"));
1916 else
1917 printf_filtered (_("Record mode:\n"));
1918
1919 /* Find entry for first actual instruction in the log. */
88d1aa9d
MM
1920 for (p = record_full_first.next;
1921 p != NULL && p->type != record_full_end;
d02ed0bb
MM
1922 p = p->next)
1923 ;
1924
1925 /* Do we have a log at all? */
88d1aa9d 1926 if (p != NULL && p->type == record_full_end)
d02ed0bb
MM
1927 {
1928 /* Display instruction number for first instruction in the log. */
1929 printf_filtered (_("Lowest recorded instruction number is %s.\n"),
1930 pulongest (p->u.end.insn_num));
1931
1932 /* If in replay mode, display where we are in the log. */
88d1aa9d 1933 if (RECORD_FULL_IS_REPLAY)
d02ed0bb 1934 printf_filtered (_("Current instruction number is %s.\n"),
88d1aa9d 1935 pulongest (record_full_list->u.end.insn_num));
d02ed0bb
MM
1936
1937 /* Display instruction number for last instruction in the log. */
1938 printf_filtered (_("Highest recorded instruction number is %s.\n"),
88d1aa9d 1939 pulongest (record_full_insn_count));
d02ed0bb
MM
1940
1941 /* Display log count. */
7ee70bf5 1942 printf_filtered (_("Log contains %u instructions.\n"),
88d1aa9d 1943 record_full_insn_num);
d02ed0bb
MM
1944 }
1945 else
1946 printf_filtered (_("No instructions have been logged.\n"));
1947
1948 /* Display max log size. */
7ee70bf5 1949 printf_filtered (_("Max logged instructions is %u.\n"),
88d1aa9d 1950 record_full_insn_max_num);
d02ed0bb
MM
1951}
1952
f6ac5f3d
PA
1953bool
1954record_full_base_target::supports_delete_record ()
1955{
1956 return true;
1957}
d02ed0bb 1958
f6ac5f3d
PA
1959/* The "delete_record" target method. */
1960
1961void
1962record_full_base_target::delete_record ()
d02ed0bb 1963{
88d1aa9d 1964 record_full_list_release_following (record_full_list);
d02ed0bb
MM
1965}
1966
f6ac5f3d 1967/* The "record_is_replaying" target method. */
d02ed0bb 1968
57810aa7 1969bool
f6ac5f3d 1970record_full_base_target::record_is_replaying (ptid_t ptid)
d02ed0bb 1971{
88d1aa9d 1972 return RECORD_FULL_IS_REPLAY;
d02ed0bb
MM
1973}
1974
f6ac5f3d 1975/* The "record_will_replay" target method. */
7ff27e9b 1976
57810aa7 1977bool
f6ac5f3d 1978record_full_base_target::record_will_replay (ptid_t ptid, int dir)
7ff27e9b
MM
1979{
1980 /* We can currently only record when executing forwards. Should we be able
1981 to record when executing backwards on targets that support reverse
1982 execution, this needs to be changed. */
1983
1984 return RECORD_FULL_IS_REPLAY || dir == EXEC_REVERSE;
1985}
1986
d02ed0bb
MM
1987/* Go to a specific entry. */
1988
1989static void
88d1aa9d 1990record_full_goto_entry (struct record_full_entry *p)
d02ed0bb
MM
1991{
1992 if (p == NULL)
1993 error (_("Target insn not found."));
88d1aa9d 1994 else if (p == record_full_list)
d02ed0bb 1995 error (_("Already at target insn."));
88d1aa9d 1996 else if (p->u.end.insn_num > record_full_list->u.end.insn_num)
d02ed0bb
MM
1997 {
1998 printf_filtered (_("Go forward to insn number %s\n"),
1999 pulongest (p->u.end.insn_num));
88d1aa9d 2000 record_full_goto_insn (p, EXEC_FORWARD);
d02ed0bb
MM
2001 }
2002 else
2003 {
2004 printf_filtered (_("Go backward to insn number %s\n"),
2005 pulongest (p->u.end.insn_num));
88d1aa9d 2006 record_full_goto_insn (p, EXEC_REVERSE);
d02ed0bb
MM
2007 }
2008
2009 registers_changed ();
2010 reinit_frame_cache ();
f2ffa92b
PA
2011 inferior_thread ()->suspend.stop_pc
2012 = regcache_read_pc (get_current_regcache ());
08d72866 2013 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
d02ed0bb
MM
2014}
2015
f6ac5f3d 2016/* The "goto_record_begin" target method. */
d02ed0bb 2017
f6ac5f3d
PA
2018void
2019record_full_base_target::goto_record_begin ()
d02ed0bb 2020{
88d1aa9d 2021 struct record_full_entry *p = NULL;
d02ed0bb 2022
88d1aa9d
MM
2023 for (p = &record_full_first; p != NULL; p = p->next)
2024 if (p->type == record_full_end)
d02ed0bb
MM
2025 break;
2026
88d1aa9d 2027 record_full_goto_entry (p);
d02ed0bb
MM
2028}
2029
f6ac5f3d 2030/* The "goto_record_end" target method. */
d02ed0bb 2031
f6ac5f3d
PA
2032void
2033record_full_base_target::goto_record_end ()
d02ed0bb 2034{
88d1aa9d 2035 struct record_full_entry *p = NULL;
d02ed0bb 2036
88d1aa9d 2037 for (p = record_full_list; p->next != NULL; p = p->next)
d02ed0bb
MM
2038 ;
2039 for (; p!= NULL; p = p->prev)
88d1aa9d 2040 if (p->type == record_full_end)
d02ed0bb
MM
2041 break;
2042
88d1aa9d 2043 record_full_goto_entry (p);
d02ed0bb
MM
2044}
2045
f6ac5f3d 2046/* The "goto_record" target method. */
d02ed0bb 2047
f6ac5f3d
PA
2048void
2049record_full_base_target::goto_record (ULONGEST target_insn)
d02ed0bb 2050{
88d1aa9d 2051 struct record_full_entry *p = NULL;
d02ed0bb 2052
88d1aa9d
MM
2053 for (p = &record_full_first; p != NULL; p = p->next)
2054 if (p->type == record_full_end && p->u.end.insn_num == target_insn)
d02ed0bb
MM
2055 break;
2056
88d1aa9d 2057 record_full_goto_entry (p);
d02ed0bb
MM
2058}
2059
f6ac5f3d 2060/* The "record_stop_replaying" target method. */
797094dd 2061
f6ac5f3d
PA
2062void
2063record_full_base_target::record_stop_replaying ()
797094dd 2064{
f6ac5f3d 2065 goto_record_end ();
797094dd
MM
2066}
2067
f6ac5f3d 2068/* "resume" method for prec over corefile. */
d02ed0bb 2069
f6ac5f3d
PA
2070void
2071record_full_core_target::resume (ptid_t ptid, int step,
2072 enum gdb_signal signal)
d02ed0bb 2073{
88d1aa9d
MM
2074 record_full_resume_step = step;
2075 record_full_resumed = 1;
f6ac5f3d 2076 record_full_execution_dir = ::execution_direction;
d02ed0bb
MM
2077
2078 /* We are about to start executing the inferior (or simulate it),
2079 let's register it with the event loop. */
2080 if (target_can_async_p ())
6a3753b3 2081 target_async (1);
d02ed0bb
MM
2082}
2083
f6ac5f3d 2084/* "kill" method for prec over corefile. */
d02ed0bb 2085
f6ac5f3d
PA
2086void
2087record_full_core_target::kill ()
d02ed0bb
MM
2088{
2089 if (record_debug)
88d1aa9d 2090 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_core_kill\n");
d02ed0bb 2091
f6ac5f3d 2092 unpush_target (this);
d02ed0bb
MM
2093}
2094
f6ac5f3d 2095/* "fetch_registers" method for prec over corefile. */
d02ed0bb 2096
f6ac5f3d
PA
2097void
2098record_full_core_target::fetch_registers (struct regcache *regcache,
2099 int regno)
d02ed0bb
MM
2100{
2101 if (regno < 0)
2102 {
ac7936df 2103 int num = gdbarch_num_regs (regcache->arch ());
d02ed0bb
MM
2104 int i;
2105
2106 for (i = 0; i < num; i ++)
c8ec2f33 2107 regcache->raw_supply (i, *record_full_core_regbuf);
d02ed0bb
MM
2108 }
2109 else
c8ec2f33 2110 regcache->raw_supply (regno, *record_full_core_regbuf);
d02ed0bb
MM
2111}
2112
f6ac5f3d 2113/* "prepare_to_store" method for prec over corefile. */
d02ed0bb 2114
f6ac5f3d
PA
2115void
2116record_full_core_target::prepare_to_store (struct regcache *regcache)
d02ed0bb
MM
2117{
2118}
2119
f6ac5f3d 2120/* "store_registers" method for prec over corefile. */
d02ed0bb 2121
f6ac5f3d
PA
2122void
2123record_full_core_target::store_registers (struct regcache *regcache,
2124 int regno)
d02ed0bb 2125{
88d1aa9d 2126 if (record_full_gdb_operation_disable)
c8ec2f33 2127 record_full_core_regbuf->raw_supply (regno, *regcache);
d02ed0bb
MM
2128 else
2129 error (_("You can't do that without a process to debug."));
2130}
2131
f6ac5f3d 2132/* "xfer_partial" method for prec over corefile. */
d02ed0bb 2133
f6ac5f3d
PA
2134enum target_xfer_status
2135record_full_core_target::xfer_partial (enum target_object object,
2136 const char *annex, gdb_byte *readbuf,
2137 const gdb_byte *writebuf, ULONGEST offset,
2138 ULONGEST len, ULONGEST *xfered_len)
d02ed0bb
MM
2139{
2140 if (object == TARGET_OBJECT_MEMORY)
2141 {
88d1aa9d 2142 if (record_full_gdb_operation_disable || !writebuf)
d02ed0bb
MM
2143 {
2144 struct target_section *p;
2145
88d1aa9d 2146 for (p = record_full_core_start; p < record_full_core_end; p++)
d02ed0bb
MM
2147 {
2148 if (offset >= p->addr)
2149 {
88d1aa9d 2150 struct record_full_core_buf_entry *entry;
d02ed0bb
MM
2151 ULONGEST sec_offset;
2152
2153 if (offset >= p->endaddr)
2154 continue;
2155
2156 if (offset + len > p->endaddr)
2157 len = p->endaddr - offset;
2158
2159 sec_offset = offset - p->addr;
2160
2161 /* Read readbuf or write writebuf p, offset, len. */
2162 /* Check flags. */
2163 if (p->the_bfd_section->flags & SEC_CONSTRUCTOR
2164 || (p->the_bfd_section->flags & SEC_HAS_CONTENTS) == 0)
2165 {
2166 if (readbuf)
2167 memset (readbuf, 0, len);
9b409511
YQ
2168
2169 *xfered_len = len;
2170 return TARGET_XFER_OK;
d02ed0bb 2171 }
88d1aa9d
MM
2172 /* Get record_full_core_buf_entry. */
2173 for (entry = record_full_core_buf_list; entry;
d02ed0bb
MM
2174 entry = entry->prev)
2175 if (entry->p == p)
2176 break;
2177 if (writebuf)
2178 {
2179 if (!entry)
2180 {
2181 /* Add a new entry. */
8d749320 2182 entry = XNEW (struct record_full_core_buf_entry);
d02ed0bb 2183 entry->p = p;
2b2848e2
DE
2184 if (!bfd_malloc_and_get_section
2185 (p->the_bfd_section->owner,
2186 p->the_bfd_section,
2187 &entry->buf))
d02ed0bb
MM
2188 {
2189 xfree (entry);
9b409511 2190 return TARGET_XFER_EOF;
d02ed0bb 2191 }
88d1aa9d
MM
2192 entry->prev = record_full_core_buf_list;
2193 record_full_core_buf_list = entry;
d02ed0bb
MM
2194 }
2195
2196 memcpy (entry->buf + sec_offset, writebuf,
2197 (size_t) len);
2198 }
2199 else
2200 {
2201 if (!entry)
b6a8c27b
PA
2202 return this->beneath ()->xfer_partial (object, annex,
2203 readbuf, writebuf,
2204 offset, len,
2205 xfered_len);
d02ed0bb
MM
2206
2207 memcpy (readbuf, entry->buf + sec_offset,
2208 (size_t) len);
2209 }
2210
9b409511
YQ
2211 *xfered_len = len;
2212 return TARGET_XFER_OK;
d02ed0bb
MM
2213 }
2214 }
2215
2ed4b548 2216 return TARGET_XFER_E_IO;
d02ed0bb
MM
2217 }
2218 else
2219 error (_("You can't do that without a process to debug."));
2220 }
2221
b6a8c27b
PA
2222 return this->beneath ()->xfer_partial (object, annex,
2223 readbuf, writebuf, offset, len,
2224 xfered_len);
d02ed0bb
MM
2225}
2226
f6ac5f3d 2227/* "insert_breakpoint" method for prec over corefile. */
d02ed0bb 2228
f6ac5f3d
PA
2229int
2230record_full_core_target::insert_breakpoint (struct gdbarch *gdbarch,
2231 struct bp_target_info *bp_tgt)
d02ed0bb
MM
2232{
2233 return 0;
2234}
2235
f6ac5f3d 2236/* "remove_breakpoint" method for prec over corefile. */
d02ed0bb 2237
f6ac5f3d
PA
2238int
2239record_full_core_target::remove_breakpoint (struct gdbarch *gdbarch,
2240 struct bp_target_info *bp_tgt,
2241 enum remove_bp_reason reason)
d02ed0bb
MM
2242{
2243 return 0;
2244}
2245
f6ac5f3d 2246/* "has_execution" method for prec over corefile. */
d02ed0bb 2247
57810aa7 2248bool
f6ac5f3d 2249record_full_core_target::has_execution (ptid_t the_ptid)
d02ed0bb 2250{
57810aa7 2251 return true;
d02ed0bb
MM
2252}
2253
d02ed0bb
MM
2254/* Record log save-file format
2255 Version 1 (never released)
2256
2257 Header:
2258 4 bytes: magic number htonl(0x20090829).
2259 NOTE: be sure to change whenever this file format changes!
2260
2261 Records:
88d1aa9d
MM
2262 record_full_end:
2263 1 byte: record type (record_full_end, see enum record_full_type).
2264 record_full_reg:
2265 1 byte: record type (record_full_reg, see enum record_full_type).
d02ed0bb
MM
2266 8 bytes: register id (network byte order).
2267 MAX_REGISTER_SIZE bytes: register value.
88d1aa9d
MM
2268 record_full_mem:
2269 1 byte: record type (record_full_mem, see enum record_full_type).
d02ed0bb
MM
2270 8 bytes: memory length (network byte order).
2271 8 bytes: memory address (network byte order).
2272 n bytes: memory value (n == memory length).
2273
2274 Version 2
2275 4 bytes: magic number netorder32(0x20091016).
2276 NOTE: be sure to change whenever this file format changes!
2277
2278 Records:
88d1aa9d
MM
2279 record_full_end:
2280 1 byte: record type (record_full_end, see enum record_full_type).
d02ed0bb
MM
2281 4 bytes: signal
2282 4 bytes: instruction count
88d1aa9d
MM
2283 record_full_reg:
2284 1 byte: record type (record_full_reg, see enum record_full_type).
d02ed0bb
MM
2285 4 bytes: register id (network byte order).
2286 n bytes: register value (n == actual register size).
2287 (eg. 4 bytes for x86 general registers).
88d1aa9d
MM
2288 record_full_mem:
2289 1 byte: record type (record_full_mem, see enum record_full_type).
d02ed0bb
MM
2290 4 bytes: memory length (network byte order).
2291 8 bytes: memory address (network byte order).
2292 n bytes: memory value (n == memory length).
2293
2294*/
2295
2296/* bfdcore_read -- read bytes from a core file section. */
2297
2298static inline void
2299bfdcore_read (bfd *obfd, asection *osec, void *buf, int len, int *offset)
2300{
2301 int ret = bfd_get_section_contents (obfd, osec, buf, *offset, len);
2302
2303 if (ret)
2304 *offset += len;
2305 else
2306 error (_("Failed to read %d bytes from core file %s ('%s')."),
2307 len, bfd_get_filename (obfd),
2308 bfd_errmsg (bfd_get_error ()));
2309}
2310
2311static inline uint64_t
2312netorder64 (uint64_t input)
2313{
2314 uint64_t ret;
2315
2316 store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret),
2317 BFD_ENDIAN_BIG, input);
2318 return ret;
2319}
2320
2321static inline uint32_t
2322netorder32 (uint32_t input)
2323{
2324 uint32_t ret;
2325
d02ed0bb
MM
2326 store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret),
2327 BFD_ENDIAN_BIG, input);
2328 return ret;
2329}
2330
2331/* Restore the execution log from a core_bfd file. */
2332static void
88d1aa9d 2333record_full_restore (void)
d02ed0bb
MM
2334{
2335 uint32_t magic;
88d1aa9d 2336 struct record_full_entry *rec;
d02ed0bb
MM
2337 asection *osec;
2338 uint32_t osec_size;
2339 int bfd_offset = 0;
2340 struct regcache *regcache;
2341
2342 /* We restore the execution log from the open core bfd,
2343 if there is one. */
2344 if (core_bfd == NULL)
2345 return;
2346
88d1aa9d
MM
2347 /* "record_full_restore" can only be called when record list is empty. */
2348 gdb_assert (record_full_first.next == NULL);
d02ed0bb
MM
2349
2350 if (record_debug)
2351 fprintf_unfiltered (gdb_stdlog, "Restoring recording from core file.\n");
2352
2353 /* Now need to find our special note section. */
2354 osec = bfd_get_section_by_name (core_bfd, "null0");
2355 if (record_debug)
2356 fprintf_unfiltered (gdb_stdlog, "Find precord section %s.\n",
2357 osec ? "succeeded" : "failed");
2358 if (osec == NULL)
2359 return;
2360 osec_size = bfd_section_size (core_bfd, osec);
2361 if (record_debug)
2362 fprintf_unfiltered (gdb_stdlog, "%s", bfd_section_name (core_bfd, osec));
2363
2364 /* Check the magic code. */
2365 bfdcore_read (core_bfd, osec, &magic, sizeof (magic), &bfd_offset);
88d1aa9d 2366 if (magic != RECORD_FULL_FILE_MAGIC)
d02ed0bb
MM
2367 error (_("Version mis-match or file format error in core file %s."),
2368 bfd_get_filename (core_bfd));
2369 if (record_debug)
2370 fprintf_unfiltered (gdb_stdlog,
2371 " Reading 4-byte magic cookie "
88d1aa9d 2372 "RECORD_FULL_FILE_MAGIC (0x%s)\n",
d02ed0bb
MM
2373 phex_nz (netorder32 (magic), 4));
2374
88d1aa9d
MM
2375 /* Restore the entries in recfd into record_full_arch_list_head and
2376 record_full_arch_list_tail. */
2377 record_full_arch_list_head = NULL;
2378 record_full_arch_list_tail = NULL;
2379 record_full_insn_num = 0;
d02ed0bb 2380
1ddbba9d 2381 TRY
d02ed0bb 2382 {
1ddbba9d
TT
2383 regcache = get_current_regcache ();
2384
2385 while (1)
2386 {
2387 uint8_t rectype;
2388 uint32_t regnum, len, signal, count;
2389 uint64_t addr;
d02ed0bb 2390
1ddbba9d
TT
2391 /* We are finished when offset reaches osec_size. */
2392 if (bfd_offset >= osec_size)
2393 break;
2394 bfdcore_read (core_bfd, osec, &rectype, sizeof (rectype), &bfd_offset);
d02ed0bb 2395
1ddbba9d
TT
2396 switch (rectype)
2397 {
2398 case record_full_reg: /* reg */
2399 /* Get register number to regnum. */
2400 bfdcore_read (core_bfd, osec, &regnum,
2401 sizeof (regnum), &bfd_offset);
2402 regnum = netorder32 (regnum);
d02ed0bb 2403
1ddbba9d 2404 rec = record_full_reg_alloc (regcache, regnum);
d02ed0bb 2405
1ddbba9d
TT
2406 /* Get val. */
2407 bfdcore_read (core_bfd, osec, record_full_get_loc (rec),
2408 rec->u.reg.len, &bfd_offset);
d02ed0bb 2409
1ddbba9d
TT
2410 if (record_debug)
2411 fprintf_unfiltered (gdb_stdlog,
2412 " Reading register %d (1 "
2413 "plus %lu plus %d bytes)\n",
2414 rec->u.reg.num,
2415 (unsigned long) sizeof (regnum),
2416 rec->u.reg.len);
2417 break;
d02ed0bb 2418
1ddbba9d
TT
2419 case record_full_mem: /* mem */
2420 /* Get len. */
2421 bfdcore_read (core_bfd, osec, &len,
2422 sizeof (len), &bfd_offset);
2423 len = netorder32 (len);
d02ed0bb 2424
1ddbba9d
TT
2425 /* Get addr. */
2426 bfdcore_read (core_bfd, osec, &addr,
2427 sizeof (addr), &bfd_offset);
2428 addr = netorder64 (addr);
2429
2430 rec = record_full_mem_alloc (addr, len);
2431
2432 /* Get val. */
2433 bfdcore_read (core_bfd, osec, record_full_get_loc (rec),
2434 rec->u.mem.len, &bfd_offset);
2435
2436 if (record_debug)
2437 fprintf_unfiltered (gdb_stdlog,
2438 " Reading memory %s (1 plus "
2439 "%lu plus %lu plus %d bytes)\n",
2440 paddress (get_current_arch (),
2441 rec->u.mem.addr),
2442 (unsigned long) sizeof (addr),
2443 (unsigned long) sizeof (len),
2444 rec->u.mem.len);
2445 break;
2446
2447 case record_full_end: /* end */
2448 rec = record_full_end_alloc ();
2449 record_full_insn_num ++;
2450
2451 /* Get signal value. */
2452 bfdcore_read (core_bfd, osec, &signal,
2453 sizeof (signal), &bfd_offset);
2454 signal = netorder32 (signal);
2455 rec->u.end.sigval = (enum gdb_signal) signal;
2456
2457 /* Get insn count. */
2458 bfdcore_read (core_bfd, osec, &count,
2459 sizeof (count), &bfd_offset);
2460 count = netorder32 (count);
2461 rec->u.end.insn_num = count;
2462 record_full_insn_count = count + 1;
2463 if (record_debug)
2464 fprintf_unfiltered (gdb_stdlog,
2465 " Reading record_full_end (1 + "
2466 "%lu + %lu bytes), offset == %s\n",
2467 (unsigned long) sizeof (signal),
2468 (unsigned long) sizeof (count),
2469 paddress (get_current_arch (),
2470 bfd_offset));
2471 break;
2472
2473 default:
2474 error (_("Bad entry type in core file %s."),
2475 bfd_get_filename (core_bfd));
2476 break;
2477 }
d02ed0bb 2478
1ddbba9d
TT
2479 /* Add rec to record arch list. */
2480 record_full_arch_list_add (rec);
2481 }
2482 }
2483 CATCH (ex, RETURN_MASK_ALL)
2484 {
2485 record_full_list_release (record_full_arch_list_tail);
2486 throw_exception (ex);
2487 }
2488 END_CATCH
d02ed0bb 2489
88d1aa9d
MM
2490 /* Add record_full_arch_list_head to the end of record list. */
2491 record_full_first.next = record_full_arch_list_head;
2492 record_full_arch_list_head->prev = &record_full_first;
2493 record_full_arch_list_tail->next = NULL;
2494 record_full_list = &record_full_first;
d02ed0bb 2495
88d1aa9d
MM
2496 /* Update record_full_insn_max_num. */
2497 if (record_full_insn_num > record_full_insn_max_num)
d02ed0bb 2498 {
88d1aa9d 2499 record_full_insn_max_num = record_full_insn_num;
7ee70bf5 2500 warning (_("Auto increase record/replay buffer limit to %u."),
88d1aa9d 2501 record_full_insn_max_num);
d02ed0bb
MM
2502 }
2503
2504 /* Succeeded. */
2505 printf_filtered (_("Restored records from core file %s.\n"),
2506 bfd_get_filename (core_bfd));
2507
08d72866 2508 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
d02ed0bb
MM
2509}
2510
2511/* bfdcore_write -- write bytes into a core file section. */
2512
2513static inline void
2514bfdcore_write (bfd *obfd, asection *osec, void *buf, int len, int *offset)
2515{
2516 int ret = bfd_set_section_contents (obfd, osec, buf, *offset, len);
2517
2518 if (ret)
2519 *offset += len;
2520 else
2521 error (_("Failed to write %d bytes to core file %s ('%s')."),
2522 len, bfd_get_filename (obfd),
2523 bfd_errmsg (bfd_get_error ()));
2524}
2525
2526/* Restore the execution log from a file. We use a modified elf
2527 corefile format, with an extra section for our data. */
2528
2529static void
41243651 2530cmd_record_full_restore (const char *args, int from_tty)
d02ed0bb
MM
2531{
2532 core_file_command (args, from_tty);
d9f719f1 2533 record_full_open (args, from_tty);
d02ed0bb
MM
2534}
2535
d02ed0bb
MM
2536/* Save the execution log to a file. We use a modified elf corefile
2537 format, with an extra section for our data. */
2538
f6ac5f3d
PA
2539void
2540record_full_base_target::save_record (const char *recfilename)
d02ed0bb 2541{
88d1aa9d 2542 struct record_full_entry *cur_record_full_list;
d02ed0bb
MM
2543 uint32_t magic;
2544 struct regcache *regcache;
2545 struct gdbarch *gdbarch;
d02ed0bb
MM
2546 int save_size = 0;
2547 asection *osec = NULL;
2548 int bfd_offset = 0;
2549
2550 /* Open the save file. */
2551 if (record_debug)
2552 fprintf_unfiltered (gdb_stdlog, "Saving execution log to core file '%s'\n",
2553 recfilename);
2554
2555 /* Open the output file. */
bef155c3
TT
2556 gdb_bfd_ref_ptr obfd (create_gcore_bfd (recfilename));
2557
2558 /* Arrange to remove the output file on failure. */
2559 gdb::unlinker unlink_file (recfilename);
d02ed0bb 2560
88d1aa9d
MM
2561 /* Save the current record entry to "cur_record_full_list". */
2562 cur_record_full_list = record_full_list;
d02ed0bb
MM
2563
2564 /* Get the values of regcache and gdbarch. */
2565 regcache = get_current_regcache ();
ac7936df 2566 gdbarch = regcache->arch ();
d02ed0bb
MM
2567
2568 /* Disable the GDB operation record. */
07036511
TT
2569 scoped_restore restore_operation_disable
2570 = record_full_gdb_operation_disable_set ();
d02ed0bb
MM
2571
2572 /* Reverse execute to the begin of record list. */
2573 while (1)
2574 {
2575 /* Check for beginning and end of log. */
88d1aa9d 2576 if (record_full_list == &record_full_first)
d02ed0bb
MM
2577 break;
2578
88d1aa9d 2579 record_full_exec_insn (regcache, gdbarch, record_full_list);
d02ed0bb 2580
88d1aa9d
MM
2581 if (record_full_list->prev)
2582 record_full_list = record_full_list->prev;
d02ed0bb
MM
2583 }
2584
2585 /* Compute the size needed for the extra bfd section. */
2586 save_size = 4; /* magic cookie */
88d1aa9d
MM
2587 for (record_full_list = record_full_first.next; record_full_list;
2588 record_full_list = record_full_list->next)
2589 switch (record_full_list->type)
d02ed0bb 2590 {
88d1aa9d 2591 case record_full_end:
d02ed0bb
MM
2592 save_size += 1 + 4 + 4;
2593 break;
88d1aa9d
MM
2594 case record_full_reg:
2595 save_size += 1 + 4 + record_full_list->u.reg.len;
d02ed0bb 2596 break;
88d1aa9d
MM
2597 case record_full_mem:
2598 save_size += 1 + 4 + 8 + record_full_list->u.mem.len;
d02ed0bb
MM
2599 break;
2600 }
2601
2602 /* Make the new bfd section. */
bef155c3 2603 osec = bfd_make_section_anyway_with_flags (obfd.get (), "precord",
d02ed0bb
MM
2604 SEC_HAS_CONTENTS
2605 | SEC_READONLY);
2606 if (osec == NULL)
2607 error (_("Failed to create 'precord' section for corefile %s: %s"),
2608 recfilename,
2609 bfd_errmsg (bfd_get_error ()));
bef155c3
TT
2610 bfd_set_section_size (obfd.get (), osec, save_size);
2611 bfd_set_section_vma (obfd.get (), osec, 0);
2612 bfd_set_section_alignment (obfd.get (), osec, 0);
2613 bfd_section_lma (obfd.get (), osec) = 0;
d02ed0bb
MM
2614
2615 /* Save corefile state. */
bef155c3 2616 write_gcore_file (obfd.get ());
d02ed0bb
MM
2617
2618 /* Write out the record log. */
2619 /* Write the magic code. */
88d1aa9d 2620 magic = RECORD_FULL_FILE_MAGIC;
d02ed0bb
MM
2621 if (record_debug)
2622 fprintf_unfiltered (gdb_stdlog,
2623 " Writing 4-byte magic cookie "
88d1aa9d 2624 "RECORD_FULL_FILE_MAGIC (0x%s)\n",
d02ed0bb 2625 phex_nz (magic, 4));
bef155c3 2626 bfdcore_write (obfd.get (), osec, &magic, sizeof (magic), &bfd_offset);
d02ed0bb
MM
2627
2628 /* Save the entries to recfd and forward execute to the end of
2629 record list. */
88d1aa9d 2630 record_full_list = &record_full_first;
d02ed0bb
MM
2631 while (1)
2632 {
2633 /* Save entry. */
88d1aa9d 2634 if (record_full_list != &record_full_first)
d02ed0bb
MM
2635 {
2636 uint8_t type;
2637 uint32_t regnum, len, signal, count;
2638 uint64_t addr;
2639
88d1aa9d 2640 type = record_full_list->type;
bef155c3 2641 bfdcore_write (obfd.get (), osec, &type, sizeof (type), &bfd_offset);
d02ed0bb 2642
88d1aa9d 2643 switch (record_full_list->type)
d02ed0bb 2644 {
88d1aa9d 2645 case record_full_reg: /* reg */
d02ed0bb
MM
2646 if (record_debug)
2647 fprintf_unfiltered (gdb_stdlog,
2648 " Writing register %d (1 "
2649 "plus %lu plus %d bytes)\n",
88d1aa9d 2650 record_full_list->u.reg.num,
d02ed0bb 2651 (unsigned long) sizeof (regnum),
88d1aa9d 2652 record_full_list->u.reg.len);
d02ed0bb
MM
2653
2654 /* Write regnum. */
88d1aa9d 2655 regnum = netorder32 (record_full_list->u.reg.num);
bef155c3 2656 bfdcore_write (obfd.get (), osec, &regnum,
d02ed0bb
MM
2657 sizeof (regnum), &bfd_offset);
2658
2659 /* Write regval. */
bef155c3 2660 bfdcore_write (obfd.get (), osec,
88d1aa9d
MM
2661 record_full_get_loc (record_full_list),
2662 record_full_list->u.reg.len, &bfd_offset);
d02ed0bb
MM
2663 break;
2664
88d1aa9d 2665 case record_full_mem: /* mem */
d02ed0bb
MM
2666 if (record_debug)
2667 fprintf_unfiltered (gdb_stdlog,
2668 " Writing memory %s (1 plus "
2669 "%lu plus %lu plus %d bytes)\n",
2670 paddress (gdbarch,
88d1aa9d 2671 record_full_list->u.mem.addr),
d02ed0bb
MM
2672 (unsigned long) sizeof (addr),
2673 (unsigned long) sizeof (len),
88d1aa9d 2674 record_full_list->u.mem.len);
d02ed0bb
MM
2675
2676 /* Write memlen. */
88d1aa9d 2677 len = netorder32 (record_full_list->u.mem.len);
bef155c3
TT
2678 bfdcore_write (obfd.get (), osec, &len, sizeof (len),
2679 &bfd_offset);
d02ed0bb
MM
2680
2681 /* Write memaddr. */
88d1aa9d 2682 addr = netorder64 (record_full_list->u.mem.addr);
bef155c3 2683 bfdcore_write (obfd.get (), osec, &addr,
d02ed0bb
MM
2684 sizeof (addr), &bfd_offset);
2685
2686 /* Write memval. */
bef155c3 2687 bfdcore_write (obfd.get (), osec,
88d1aa9d
MM
2688 record_full_get_loc (record_full_list),
2689 record_full_list->u.mem.len, &bfd_offset);
d02ed0bb
MM
2690 break;
2691
88d1aa9d 2692 case record_full_end:
d02ed0bb
MM
2693 if (record_debug)
2694 fprintf_unfiltered (gdb_stdlog,
88d1aa9d 2695 " Writing record_full_end (1 + "
d02ed0bb
MM
2696 "%lu + %lu bytes)\n",
2697 (unsigned long) sizeof (signal),
2698 (unsigned long) sizeof (count));
2699 /* Write signal value. */
88d1aa9d 2700 signal = netorder32 (record_full_list->u.end.sigval);
bef155c3 2701 bfdcore_write (obfd.get (), osec, &signal,
d02ed0bb
MM
2702 sizeof (signal), &bfd_offset);
2703
2704 /* Write insn count. */
88d1aa9d 2705 count = netorder32 (record_full_list->u.end.insn_num);
bef155c3 2706 bfdcore_write (obfd.get (), osec, &count,
d02ed0bb
MM
2707 sizeof (count), &bfd_offset);
2708 break;
2709 }
2710 }
2711
2712 /* Execute entry. */
88d1aa9d 2713 record_full_exec_insn (regcache, gdbarch, record_full_list);
d02ed0bb 2714
88d1aa9d
MM
2715 if (record_full_list->next)
2716 record_full_list = record_full_list->next;
d02ed0bb
MM
2717 else
2718 break;
2719 }
2720
88d1aa9d 2721 /* Reverse execute to cur_record_full_list. */
d02ed0bb
MM
2722 while (1)
2723 {
2724 /* Check for beginning and end of log. */
88d1aa9d 2725 if (record_full_list == cur_record_full_list)
d02ed0bb
MM
2726 break;
2727
88d1aa9d 2728 record_full_exec_insn (regcache, gdbarch, record_full_list);
d02ed0bb 2729
88d1aa9d
MM
2730 if (record_full_list->prev)
2731 record_full_list = record_full_list->prev;
d02ed0bb
MM
2732 }
2733
bef155c3 2734 unlink_file.keep ();
d02ed0bb
MM
2735
2736 /* Succeeded. */
2737 printf_filtered (_("Saved core file %s with execution log.\n"),
2738 recfilename);
2739}
2740
88d1aa9d 2741/* record_full_goto_insn -- rewind the record log (forward or backward,
d02ed0bb
MM
2742 depending on DIR) to the given entry, changing the program state
2743 correspondingly. */
2744
2745static void
88d1aa9d
MM
2746record_full_goto_insn (struct record_full_entry *entry,
2747 enum exec_direction_kind dir)
d02ed0bb 2748{
07036511
TT
2749 scoped_restore restore_operation_disable
2750 = record_full_gdb_operation_disable_set ();
d02ed0bb 2751 struct regcache *regcache = get_current_regcache ();
ac7936df 2752 struct gdbarch *gdbarch = regcache->arch ();
d02ed0bb
MM
2753
2754 /* Assume everything is valid: we will hit the entry,
2755 and we will not hit the end of the recording. */
2756
2757 if (dir == EXEC_FORWARD)
88d1aa9d 2758 record_full_list = record_full_list->next;
d02ed0bb
MM
2759
2760 do
2761 {
88d1aa9d 2762 record_full_exec_insn (regcache, gdbarch, record_full_list);
d02ed0bb 2763 if (dir == EXEC_REVERSE)
88d1aa9d 2764 record_full_list = record_full_list->prev;
d02ed0bb 2765 else
88d1aa9d
MM
2766 record_full_list = record_full_list->next;
2767 } while (record_full_list != entry);
d02ed0bb
MM
2768}
2769
2770/* Alias for "target record-full". */
2771
2772static void
981a3fb3 2773cmd_record_full_start (const char *args, int from_tty)
d02ed0bb 2774{
95a6b0a1 2775 execute_command ("target record-full", from_tty);
d02ed0bb
MM
2776}
2777
2778static void
eb4c3f4a 2779set_record_full_insn_max_num (const char *args, int from_tty,
88d1aa9d 2780 struct cmd_list_element *c)
d02ed0bb 2781{
7ee70bf5 2782 if (record_full_insn_num > record_full_insn_max_num)
d02ed0bb 2783 {
88d1aa9d
MM
2784 /* Count down record_full_insn_num while releasing records from list. */
2785 while (record_full_insn_num > record_full_insn_max_num)
d02ed0bb 2786 {
88d1aa9d
MM
2787 record_full_list_release_first ();
2788 record_full_insn_num--;
d02ed0bb
MM
2789 }
2790 }
2791}
2792
2793/* The "set record full" command. */
2794
2795static void
981a3fb3 2796set_record_full_command (const char *args, int from_tty)
d02ed0bb
MM
2797{
2798 printf_unfiltered (_("\"set record full\" must be followed "
981a3fb3 2799 "by an appropriate subcommand.\n"));
d02ed0bb
MM
2800 help_list (set_record_full_cmdlist, "set record full ", all_commands,
2801 gdb_stdout);
2802}
2803
2804/* The "show record full" command. */
2805
2806static void
981a3fb3 2807show_record_full_command (const char *args, int from_tty)
d02ed0bb
MM
2808{
2809 cmd_show_list (show_record_full_cmdlist, from_tty, "");
2810}
2811
d02ed0bb
MM
2812void
2813_initialize_record_full (void)
2814{
2815 struct cmd_list_element *c;
2816
88d1aa9d
MM
2817 /* Init record_full_first. */
2818 record_full_first.prev = NULL;
2819 record_full_first.next = NULL;
2820 record_full_first.type = record_full_end;
d02ed0bb 2821
d9f719f1
PA
2822 add_target (record_full_target_info, record_full_open);
2823 add_deprecated_target_alias (record_full_target_info, "record");
2824 add_target (record_full_core_target_info, record_full_open);
d02ed0bb 2825
88d1aa9d 2826 add_prefix_cmd ("full", class_obscure, cmd_record_full_start,
d02ed0bb
MM
2827 _("Start full execution recording."), &record_full_cmdlist,
2828 "record full ", 0, &record_cmdlist);
2829
88d1aa9d 2830 c = add_cmd ("restore", class_obscure, cmd_record_full_restore,
d02ed0bb
MM
2831 _("Restore the execution log from a file.\n\
2832Argument is filename. File must be created with 'record save'."),
2833 &record_full_cmdlist);
2834 set_cmd_completer (c, filename_completer);
2835
2836 /* Deprecate the old version without "full" prefix. */
2837 c = add_alias_cmd ("restore", "full restore", class_obscure, 1,
2838 &record_cmdlist);
2839 set_cmd_completer (c, filename_completer);
2840 deprecate_cmd (c, "record full restore");
2841
2842 add_prefix_cmd ("full", class_support, set_record_full_command,
2843 _("Set record options"), &set_record_full_cmdlist,
2844 "set record full ", 0, &set_record_cmdlist);
2845
2846 add_prefix_cmd ("full", class_support, show_record_full_command,
2847 _("Show record options"), &show_record_full_cmdlist,
2848 "show record full ", 0, &show_record_cmdlist);
2849
2850 /* Record instructions number limit command. */
2851 add_setshow_boolean_cmd ("stop-at-limit", no_class,
88d1aa9d 2852 &record_full_stop_at_limit, _("\
d02ed0bb
MM
2853Set whether record/replay stops when record/replay buffer becomes full."), _("\
2854Show whether record/replay stops when record/replay buffer becomes full."),
2855 _("Default is ON.\n\
2856When ON, if the record/replay buffer becomes full, ask user what to do.\n\
2857When OFF, if the record/replay buffer becomes full,\n\
2858delete the oldest recorded instruction to make room for each new one."),
2859 NULL, NULL,
2860 &set_record_full_cmdlist, &show_record_full_cmdlist);
2861
2862 c = add_alias_cmd ("stop-at-limit", "full stop-at-limit", no_class, 1,
2863 &set_record_cmdlist);
2864 deprecate_cmd (c, "set record full stop-at-limit");
2865
2866 c = add_alias_cmd ("stop-at-limit", "full stop-at-limit", no_class, 1,
2867 &show_record_cmdlist);
2868 deprecate_cmd (c, "show record full stop-at-limit");
2869
88d1aa9d
MM
2870 add_setshow_uinteger_cmd ("insn-number-max", no_class,
2871 &record_full_insn_max_num,
d02ed0bb
MM
2872 _("Set record/replay buffer limit."),
2873 _("Show record/replay buffer limit."), _("\
2874Set the maximum number of instructions to be stored in the\n\
f81d1120
PA
2875record/replay buffer. A value of either \"unlimited\" or zero means no\n\
2876limit. Default is 200000."),
88d1aa9d 2877 set_record_full_insn_max_num,
d02ed0bb
MM
2878 NULL, &set_record_full_cmdlist,
2879 &show_record_full_cmdlist);
2880
2881 c = add_alias_cmd ("insn-number-max", "full insn-number-max", no_class, 1,
2882 &set_record_cmdlist);
2883 deprecate_cmd (c, "set record full insn-number-max");
2884
2885 c = add_alias_cmd ("insn-number-max", "full insn-number-max", no_class, 1,
2886 &show_record_cmdlist);
2887 deprecate_cmd (c, "show record full insn-number-max");
2888
88d1aa9d 2889 add_setshow_boolean_cmd ("memory-query", no_class,
25ea693b 2890 &record_full_memory_query, _("\
d02ed0bb
MM
2891Set whether query if PREC cannot record memory change of next instruction."),
2892 _("\
2893Show whether query if PREC cannot record memory change of next instruction."),
2894 _("\
2895Default is OFF.\n\
2896When ON, query if PREC cannot record memory change of next instruction."),
2897 NULL, NULL,
88d1aa9d
MM
2898 &set_record_full_cmdlist,
2899 &show_record_full_cmdlist);
d02ed0bb
MM
2900
2901 c = add_alias_cmd ("memory-query", "full memory-query", no_class, 1,
2902 &set_record_cmdlist);
2903 deprecate_cmd (c, "set record full memory-query");
2904
2905 c = add_alias_cmd ("memory-query", "full memory-query", no_class, 1,
2906 &show_record_cmdlist);
2907 deprecate_cmd (c, "show record full memory-query");
2908}
This page took 1.11749 seconds and 4 git commands to generate.