1 /* Process record and replay target for GDB, the GNU debugger.
3 Copyright (C) 2013-2015 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
23 #include "gdbthread.h"
24 #include "event-top.h"
25 #include "completer.h"
26 #include "arch-utils.h"
30 #include "record-full.h"
33 #include "event-loop.h"
41 /* This module implements "target record-full", also known as "process
42 record and replay". This target sits on top of a "normal" target
43 (a target that "has execution"), and provides a record and replay
44 functionality, including reverse debugging.
46 Target record has two modes: recording, and replaying.
48 In record mode, we intercept the to_resume and to_wait methods.
49 Whenever gdb resumes the target, we run the target in single step
50 mode, and we build up an execution log in which, for each executed
51 instruction, we record all changes in memory and register state.
52 This is invisible to the user, to whom it just looks like an
53 ordinary debugging session (except for performance degredation).
55 In replay mode, instead of actually letting the inferior run as a
56 process, we simulate its execution by playing back the recorded
57 execution log. For each instruction in the log, we simulate the
58 instruction's side effects by duplicating the changes that it would
59 have made on memory and registers. */
61 #define DEFAULT_RECORD_FULL_INSN_MAX_NUM 200000
63 #define RECORD_FULL_IS_REPLAY \
64 (record_full_list->next || execution_direction == EXEC_REVERSE)
66 #define RECORD_FULL_FILE_MAGIC netorder32(0x20091016)
68 /* These are the core structs of the process record functionality.
70 A record_full_entry is a record of the value change of a register
71 ("record_full_reg") or a part of memory ("record_full_mem"). And each
72 instruction must have a struct record_full_entry ("record_full_end")
73 that indicates that this is the last struct record_full_entry of this
76 Each struct record_full_entry is linked to "record_full_list" by "prev"
77 and "next" pointers. */
79 struct record_full_mem_entry
83 /* Set this flag if target memory for this entry
84 can no longer be accessed. */
85 int mem_entry_not_accessible;
89 gdb_byte buf[sizeof (gdb_byte *)];
93 struct record_full_reg_entry
100 gdb_byte buf[2 * sizeof (gdb_byte *)];
104 struct record_full_end_entry
106 enum gdb_signal sigval;
110 enum record_full_type
117 /* This is the data structure that makes up the execution log.
119 The execution log consists of a single linked list of entries
120 of type "struct record_full_entry". It is doubly linked so that it
121 can be traversed in either direction.
123 The start of the list is anchored by a struct called
124 "record_full_first". The pointer "record_full_list" either points
125 to the last entry that was added to the list (in record mode), or to
126 the next entry in the list that will be executed (in replay mode).
128 Each list element (struct record_full_entry), in addition to next
129 and prev pointers, consists of a union of three entry types: mem,
130 reg, and end. A field called "type" determines which entry type is
131 represented by a given list element.
133 Each instruction that is added to the execution log is represented
134 by a variable number of list elements ('entries'). The instruction
135 will have one "reg" entry for each register that is changed by
136 executing the instruction (including the PC in every case). It
137 will also have one "mem" entry for each memory change. Finally,
138 each instruction will have an "end" entry that separates it from
139 the changes associated with the next instruction. */
141 struct record_full_entry
143 struct record_full_entry *prev;
144 struct record_full_entry *next;
145 enum record_full_type type;
149 struct record_full_reg_entry reg;
151 struct record_full_mem_entry mem;
153 struct record_full_end_entry end;
157 /* If true, query if PREC cannot record memory
158 change of next instruction. */
159 int record_full_memory_query = 0;
161 struct record_full_core_buf_entry
163 struct record_full_core_buf_entry *prev;
164 struct target_section *p;
168 /* Record buf with core target. */
169 static gdb_byte *record_full_core_regbuf = NULL;
170 static struct target_section *record_full_core_start;
171 static struct target_section *record_full_core_end;
172 static struct record_full_core_buf_entry *record_full_core_buf_list = NULL;
174 /* The following variables are used for managing the linked list that
175 represents the execution log.
177 record_full_first is the anchor that holds down the beginning of
180 record_full_list serves two functions:
181 1) In record mode, it anchors the end of the list.
182 2) In replay mode, it traverses the list and points to
183 the next instruction that must be emulated.
185 record_full_arch_list_head and record_full_arch_list_tail are used
186 to manage a separate list, which is used to build up the change
187 elements of the currently executing instruction during record mode.
188 When this instruction has been completely annotated in the "arch
189 list", it will be appended to the main execution log. */
191 static struct record_full_entry record_full_first;
192 static struct record_full_entry *record_full_list = &record_full_first;
193 static struct record_full_entry *record_full_arch_list_head = NULL;
194 static struct record_full_entry *record_full_arch_list_tail = NULL;
196 /* 1 ask user. 0 auto delete the last struct record_full_entry. */
197 static int record_full_stop_at_limit = 1;
198 /* Maximum allowed number of insns in execution log. */
199 static unsigned int record_full_insn_max_num
200 = DEFAULT_RECORD_FULL_INSN_MAX_NUM;
201 /* Actual count of insns presently in execution log. */
202 static unsigned int record_full_insn_num = 0;
203 /* Count of insns logged so far (may be larger
204 than count of insns presently in execution log). */
205 static ULONGEST record_full_insn_count;
207 /* The target_ops of process record. */
208 static struct target_ops record_full_ops;
209 static struct target_ops record_full_core_ops;
211 /* See record-full.h. */
214 record_full_is_used (void)
216 struct target_ops *t;
218 t = find_record_target ();
219 return (t == &record_full_ops
220 || t == &record_full_core_ops);
224 /* Command lists for "set/show record full". */
225 static struct cmd_list_element *set_record_full_cmdlist;
226 static struct cmd_list_element *show_record_full_cmdlist;
228 /* Command list for "record full". */
229 static struct cmd_list_element *record_full_cmdlist;
231 static void record_full_goto_insn (struct record_full_entry *entry,
232 enum exec_direction_kind dir);
233 static void record_full_save (struct target_ops *self,
234 const char *recfilename);
236 /* Alloc and free functions for record_full_reg, record_full_mem, and
237 record_full_end entries. */
239 /* Alloc a record_full_reg record entry. */
241 static inline struct record_full_entry *
242 record_full_reg_alloc (struct regcache *regcache, int regnum)
244 struct record_full_entry *rec;
245 struct gdbarch *gdbarch = get_regcache_arch (regcache);
247 rec = XCNEW (struct record_full_entry);
248 rec->type = record_full_reg;
249 rec->u.reg.num = regnum;
250 rec->u.reg.len = register_size (gdbarch, regnum);
251 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
252 rec->u.reg.u.ptr = (gdb_byte *) xmalloc (rec->u.reg.len);
257 /* Free a record_full_reg record entry. */
260 record_full_reg_release (struct record_full_entry *rec)
262 gdb_assert (rec->type == record_full_reg);
263 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
264 xfree (rec->u.reg.u.ptr);
268 /* Alloc a record_full_mem record entry. */
270 static inline struct record_full_entry *
271 record_full_mem_alloc (CORE_ADDR addr, int len)
273 struct record_full_entry *rec;
275 rec = XCNEW (struct record_full_entry);
276 rec->type = record_full_mem;
277 rec->u.mem.addr = addr;
278 rec->u.mem.len = len;
279 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
280 rec->u.mem.u.ptr = (gdb_byte *) xmalloc (len);
285 /* Free a record_full_mem record entry. */
288 record_full_mem_release (struct record_full_entry *rec)
290 gdb_assert (rec->type == record_full_mem);
291 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
292 xfree (rec->u.mem.u.ptr);
296 /* Alloc a record_full_end record entry. */
298 static inline struct record_full_entry *
299 record_full_end_alloc (void)
301 struct record_full_entry *rec;
303 rec = XCNEW (struct record_full_entry);
304 rec->type = record_full_end;
309 /* Free a record_full_end record entry. */
312 record_full_end_release (struct record_full_entry *rec)
317 /* Free one record entry, any type.
318 Return entry->type, in case caller wants to know. */
320 static inline enum record_full_type
321 record_full_entry_release (struct record_full_entry *rec)
323 enum record_full_type type = rec->type;
326 case record_full_reg:
327 record_full_reg_release (rec);
329 case record_full_mem:
330 record_full_mem_release (rec);
332 case record_full_end:
333 record_full_end_release (rec);
339 /* Free all record entries in list pointed to by REC. */
342 record_full_list_release (struct record_full_entry *rec)
353 record_full_entry_release (rec->next);
356 if (rec == &record_full_first)
358 record_full_insn_num = 0;
359 record_full_first.next = NULL;
362 record_full_entry_release (rec);
365 /* Free all record entries forward of the given list position. */
368 record_full_list_release_following (struct record_full_entry *rec)
370 struct record_full_entry *tmp = rec->next;
376 if (record_full_entry_release (tmp) == record_full_end)
378 record_full_insn_num--;
379 record_full_insn_count--;
385 /* Delete the first instruction from the beginning of the log, to make
386 room for adding a new instruction at the end of the log.
388 Note -- this function does not modify record_full_insn_num. */
391 record_full_list_release_first (void)
393 struct record_full_entry *tmp;
395 if (!record_full_first.next)
398 /* Loop until a record_full_end. */
401 /* Cut record_full_first.next out of the linked list. */
402 tmp = record_full_first.next;
403 record_full_first.next = tmp->next;
404 tmp->next->prev = &record_full_first;
406 /* tmp is now isolated, and can be deleted. */
407 if (record_full_entry_release (tmp) == record_full_end)
408 break; /* End loop at first record_full_end. */
410 if (!record_full_first.next)
412 gdb_assert (record_full_insn_num == 1);
413 break; /* End loop when list is empty. */
418 /* Add a struct record_full_entry to record_full_arch_list. */
421 record_full_arch_list_add (struct record_full_entry *rec)
423 if (record_debug > 1)
424 fprintf_unfiltered (gdb_stdlog,
425 "Process record: record_full_arch_list_add %s.\n",
426 host_address_to_string (rec));
428 if (record_full_arch_list_tail)
430 record_full_arch_list_tail->next = rec;
431 rec->prev = record_full_arch_list_tail;
432 record_full_arch_list_tail = rec;
436 record_full_arch_list_head = rec;
437 record_full_arch_list_tail = rec;
441 /* Return the value storage location of a record entry. */
442 static inline gdb_byte *
443 record_full_get_loc (struct record_full_entry *rec)
446 case record_full_mem:
447 if (rec->u.mem.len > sizeof (rec->u.mem.u.buf))
448 return rec->u.mem.u.ptr;
450 return rec->u.mem.u.buf;
451 case record_full_reg:
452 if (rec->u.reg.len > sizeof (rec->u.reg.u.buf))
453 return rec->u.reg.u.ptr;
455 return rec->u.reg.u.buf;
456 case record_full_end:
458 gdb_assert_not_reached ("unexpected record_full_entry type");
463 /* Record the value of a register NUM to record_full_arch_list. */
466 record_full_arch_list_add_reg (struct regcache *regcache, int regnum)
468 struct record_full_entry *rec;
470 if (record_debug > 1)
471 fprintf_unfiltered (gdb_stdlog,
472 "Process record: add register num = %d to "
476 rec = record_full_reg_alloc (regcache, regnum);
478 regcache_raw_read (regcache, regnum, record_full_get_loc (rec));
480 record_full_arch_list_add (rec);
485 /* Record the value of a region of memory whose address is ADDR and
486 length is LEN to record_full_arch_list. */
489 record_full_arch_list_add_mem (CORE_ADDR addr, int len)
491 struct record_full_entry *rec;
493 if (record_debug > 1)
494 fprintf_unfiltered (gdb_stdlog,
495 "Process record: add mem addr = %s len = %d to "
497 paddress (target_gdbarch (), addr), len);
499 if (!addr) /* FIXME: Why? Some arch must permit it... */
502 rec = record_full_mem_alloc (addr, len);
504 if (record_read_memory (target_gdbarch (), addr,
505 record_full_get_loc (rec), len))
507 record_full_mem_release (rec);
511 record_full_arch_list_add (rec);
516 /* Add a record_full_end type struct record_full_entry to
517 record_full_arch_list. */
520 record_full_arch_list_add_end (void)
522 struct record_full_entry *rec;
524 if (record_debug > 1)
525 fprintf_unfiltered (gdb_stdlog,
526 "Process record: add end to arch list.\n");
528 rec = record_full_end_alloc ();
529 rec->u.end.sigval = GDB_SIGNAL_0;
530 rec->u.end.insn_num = ++record_full_insn_count;
532 record_full_arch_list_add (rec);
538 record_full_check_insn_num (int set_terminal)
540 if (record_full_insn_num == record_full_insn_max_num)
542 /* Ask user what to do. */
543 if (record_full_stop_at_limit)
548 target_terminal_ours ();
549 q = yquery (_("Do you want to auto delete previous execution "
550 "log entries when record/replay buffer becomes "
551 "full (record full stop-at-limit)?"));
553 target_terminal_inferior ();
555 record_full_stop_at_limit = 0;
557 error (_("Process record: stopped by user."));
563 record_full_arch_list_cleanups (void *ignore)
565 record_full_list_release (record_full_arch_list_tail);
568 /* Before inferior step (when GDB record the running message, inferior
569 only can step), GDB will call this function to record the values to
570 record_full_list. This function will call gdbarch_process_record to
571 record the running message of inferior and set them to
572 record_full_arch_list, and add it to record_full_list. */
575 record_full_message (struct regcache *regcache, enum gdb_signal signal)
578 struct gdbarch *gdbarch = get_regcache_arch (regcache);
579 struct cleanup *old_cleanups
580 = make_cleanup (record_full_arch_list_cleanups, 0);
582 record_full_arch_list_head = NULL;
583 record_full_arch_list_tail = NULL;
585 /* Check record_full_insn_num. */
586 record_full_check_insn_num (1);
588 /* If gdb sends a signal value to target_resume,
589 save it in the 'end' field of the previous instruction.
591 Maybe process record should record what really happened,
592 rather than what gdb pretends has happened.
594 So if Linux delivered the signal to the child process during
595 the record mode, we will record it and deliver it again in
598 If user says "ignore this signal" during the record mode, then
599 it will be ignored again during the replay mode (no matter if
600 the user says something different, like "deliver this signal"
601 during the replay mode).
603 User should understand that nothing he does during the replay
604 mode will change the behavior of the child. If he tries,
605 then that is a user error.
607 But we should still deliver the signal to gdb during the replay,
608 if we delivered it during the recording. Therefore we should
609 record the signal during record_full_wait, not
610 record_full_resume. */
611 if (record_full_list != &record_full_first) /* FIXME better way to check */
613 gdb_assert (record_full_list->type == record_full_end);
614 record_full_list->u.end.sigval = signal;
617 if (signal == GDB_SIGNAL_0
618 || !gdbarch_process_record_signal_p (gdbarch))
619 ret = gdbarch_process_record (gdbarch,
621 regcache_read_pc (regcache));
623 ret = gdbarch_process_record_signal (gdbarch,
628 error (_("Process record: inferior program stopped."));
630 error (_("Process record: failed to record execution log."));
632 discard_cleanups (old_cleanups);
634 record_full_list->next = record_full_arch_list_head;
635 record_full_arch_list_head->prev = record_full_list;
636 record_full_list = record_full_arch_list_tail;
638 if (record_full_insn_num == record_full_insn_max_num)
639 record_full_list_release_first ();
641 record_full_insn_num++;
646 struct record_full_message_args {
647 struct regcache *regcache;
648 enum gdb_signal signal;
652 record_full_message_wrapper (void *args)
654 struct record_full_message_args *record_full_args = args;
656 return record_full_message (record_full_args->regcache,
657 record_full_args->signal);
661 record_full_message_wrapper_safe (struct regcache *regcache,
662 enum gdb_signal signal)
664 struct record_full_message_args args;
666 args.regcache = regcache;
667 args.signal = signal;
669 return catch_errors (record_full_message_wrapper, &args, NULL,
673 /* Set to 1 if record_full_store_registers and record_full_xfer_partial
674 doesn't need record. */
676 static int record_full_gdb_operation_disable = 0;
679 record_full_gdb_operation_disable_set (void)
681 struct cleanup *old_cleanups = NULL;
684 make_cleanup_restore_integer (&record_full_gdb_operation_disable);
685 record_full_gdb_operation_disable = 1;
690 /* Flag set to TRUE for target_stopped_by_watchpoint. */
691 static enum target_stop_reason record_full_stop_reason
692 = TARGET_STOPPED_BY_NO_REASON;
694 /* Execute one instruction from the record log. Each instruction in
695 the log will be represented by an arbitrary sequence of register
696 entries and memory entries, followed by an 'end' entry. */
699 record_full_exec_insn (struct regcache *regcache,
700 struct gdbarch *gdbarch,
701 struct record_full_entry *entry)
705 case record_full_reg: /* reg */
707 gdb_byte reg[MAX_REGISTER_SIZE];
709 if (record_debug > 1)
710 fprintf_unfiltered (gdb_stdlog,
711 "Process record: record_full_reg %s to "
712 "inferior num = %d.\n",
713 host_address_to_string (entry),
716 regcache_cooked_read (regcache, entry->u.reg.num, reg);
717 regcache_cooked_write (regcache, entry->u.reg.num,
718 record_full_get_loc (entry));
719 memcpy (record_full_get_loc (entry), reg, entry->u.reg.len);
723 case record_full_mem: /* mem */
725 /* Nothing to do if the entry is flagged not_accessible. */
726 if (!entry->u.mem.mem_entry_not_accessible)
728 gdb_byte *mem = alloca (entry->u.mem.len);
730 if (record_debug > 1)
731 fprintf_unfiltered (gdb_stdlog,
732 "Process record: record_full_mem %s to "
733 "inferior addr = %s len = %d.\n",
734 host_address_to_string (entry),
735 paddress (gdbarch, entry->u.mem.addr),
738 if (record_read_memory (gdbarch,
739 entry->u.mem.addr, mem, entry->u.mem.len))
740 entry->u.mem.mem_entry_not_accessible = 1;
743 if (target_write_memory (entry->u.mem.addr,
744 record_full_get_loc (entry),
747 entry->u.mem.mem_entry_not_accessible = 1;
749 warning (_("Process record: error writing memory at "
750 "addr = %s len = %d."),
751 paddress (gdbarch, entry->u.mem.addr),
756 memcpy (record_full_get_loc (entry), mem,
759 /* We've changed memory --- check if a hardware
760 watchpoint should trap. Note that this
761 presently assumes the target beneath supports
762 continuable watchpoints. On non-continuable
763 watchpoints target, we'll want to check this
764 _before_ actually doing the memory change, and
765 not doing the change at all if the watchpoint
767 if (hardware_watchpoint_inserted_in_range
768 (get_regcache_aspace (regcache),
769 entry->u.mem.addr, entry->u.mem.len))
770 record_full_stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
779 static void record_full_restore (void);
781 /* Asynchronous signal handle registered as event loop source for when
782 we have pending events ready to be passed to the core. */
784 static struct async_event_handler *record_full_async_inferior_event_token;
787 record_full_async_inferior_event_handler (gdb_client_data data)
789 inferior_event_handler (INF_REG_EVENT, NULL);
792 /* Open the process record target. */
795 record_full_core_open_1 (const char *name, int from_tty)
797 struct regcache *regcache = get_current_regcache ();
798 int regnum = gdbarch_num_regs (get_regcache_arch (regcache));
801 /* Get record_full_core_regbuf. */
802 target_fetch_registers (regcache, -1);
803 record_full_core_regbuf = xmalloc (MAX_REGISTER_SIZE * regnum);
804 for (i = 0; i < regnum; i ++)
805 regcache_raw_collect (regcache, i,
806 record_full_core_regbuf + MAX_REGISTER_SIZE * i);
808 /* Get record_full_core_start and record_full_core_end. */
809 if (build_section_table (core_bfd, &record_full_core_start,
810 &record_full_core_end))
812 xfree (record_full_core_regbuf);
813 record_full_core_regbuf = NULL;
814 error (_("\"%s\": Can't find sections: %s"),
815 bfd_get_filename (core_bfd), bfd_errmsg (bfd_get_error ()));
818 push_target (&record_full_core_ops);
819 record_full_restore ();
822 /* "to_open" target method for 'live' processes. */
825 record_full_open_1 (const char *name, int from_tty)
828 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_open\n");
831 if (!target_has_execution)
832 error (_("Process record: the program is not being run."));
834 error (_("Process record target can't debug inferior in non-stop mode "
837 if (!gdbarch_process_record_p (target_gdbarch ()))
838 error (_("Process record: the current architecture doesn't support "
839 "record function."));
841 push_target (&record_full_ops);
844 static void record_full_init_record_breakpoints (void);
846 /* "to_open" target method. Open the process record target. */
849 record_full_open (const char *name, int from_tty)
851 struct target_ops *t;
854 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_open\n");
859 record_full_insn_num = 0;
860 record_full_insn_count = 0;
861 record_full_list = &record_full_first;
862 record_full_list->next = NULL;
865 record_full_core_open_1 (name, from_tty);
867 record_full_open_1 (name, from_tty);
869 /* Register extra event sources in the event loop. */
870 record_full_async_inferior_event_token
871 = create_async_event_handler (record_full_async_inferior_event_handler,
874 record_full_init_record_breakpoints ();
876 observer_notify_record_changed (current_inferior (), 1);
879 /* "to_close" target method. Close the process record target. */
882 record_full_close (struct target_ops *self)
884 struct record_full_core_buf_entry *entry;
887 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_close\n");
889 record_full_list_release (record_full_list);
891 /* Release record_full_core_regbuf. */
892 if (record_full_core_regbuf)
894 xfree (record_full_core_regbuf);
895 record_full_core_regbuf = NULL;
898 /* Release record_full_core_buf_list. */
899 if (record_full_core_buf_list)
901 for (entry = record_full_core_buf_list->prev; entry;
904 xfree (record_full_core_buf_list);
905 record_full_core_buf_list = entry;
907 record_full_core_buf_list = NULL;
910 if (record_full_async_inferior_event_token)
911 delete_async_event_handler (&record_full_async_inferior_event_token);
914 /* "to_async" target method. */
917 record_full_async (struct target_ops *ops, int enable)
920 mark_async_event_handler (record_full_async_inferior_event_token);
922 clear_async_event_handler (record_full_async_inferior_event_token);
924 ops->beneath->to_async (ops->beneath, enable);
927 static int record_full_resume_step = 0;
929 /* True if we've been resumed, and so each record_full_wait call should
930 advance execution. If this is false, record_full_wait will return a
931 TARGET_WAITKIND_IGNORE. */
932 static int record_full_resumed = 0;
934 /* The execution direction of the last resume we got. This is
935 necessary for async mode. Vis (order is not strictly accurate):
937 1. user has the global execution direction set to forward
938 2. user does a reverse-step command
939 3. record_full_resume is called with global execution direction
940 temporarily switched to reverse
941 4. GDB's execution direction is reverted back to forward
942 5. target record notifies event loop there's an event to handle
943 6. infrun asks the target which direction was it going, and switches
944 the global execution direction accordingly (to reverse)
945 7. infrun polls an event out of the record target, and handles it
946 8. GDB goes back to the event loop, and goto #4.
948 static enum exec_direction_kind record_full_execution_dir = EXEC_FORWARD;
950 /* "to_resume" target method. Resume the process record target. */
953 record_full_resume (struct target_ops *ops, ptid_t ptid, int step,
954 enum gdb_signal signal)
956 record_full_resume_step = step;
957 record_full_resumed = 1;
958 record_full_execution_dir = execution_direction;
960 if (!RECORD_FULL_IS_REPLAY)
962 struct gdbarch *gdbarch = target_thread_architecture (ptid);
964 record_full_message (get_current_regcache (), signal);
968 /* This is not hard single step. */
969 if (!gdbarch_software_single_step_p (gdbarch))
971 /* This is a normal continue. */
976 /* This arch support soft sigle step. */
977 if (thread_has_single_step_breakpoints_set (inferior_thread ()))
979 /* This is a soft single step. */
980 record_full_resume_step = 1;
984 /* This is a continue.
985 Try to insert a soft single step breakpoint. */
986 if (!gdbarch_software_single_step (gdbarch,
987 get_current_frame ()))
989 /* This system don't want use soft single step.
990 Use hard sigle step. */
997 /* Make sure the target beneath reports all signals. */
998 target_pass_signals (0, NULL);
1000 ops->beneath->to_resume (ops->beneath, ptid, step, signal);
1003 /* We are about to start executing the inferior (or simulate it),
1004 let's register it with the event loop. */
1005 if (target_can_async_p ())
1009 static int record_full_get_sig = 0;
1011 /* SIGINT signal handler, registered by "to_wait" method. */
1014 record_full_sig_handler (int signo)
1017 fprintf_unfiltered (gdb_stdlog, "Process record: get a signal\n");
1019 /* It will break the running inferior in replay mode. */
1020 record_full_resume_step = 1;
1022 /* It will let record_full_wait set inferior status to get the signal
1024 record_full_get_sig = 1;
1028 record_full_wait_cleanups (void *ignore)
1030 if (execution_direction == EXEC_REVERSE)
1032 if (record_full_list->next)
1033 record_full_list = record_full_list->next;
1036 record_full_list = record_full_list->prev;
1039 /* "to_wait" target method for process record target.
1041 In record mode, the target is always run in singlestep mode
1042 (even when gdb says to continue). The to_wait method intercepts
1043 the stop events and determines which ones are to be passed on to
1044 gdb. Most stop events are just singlestep events that gdb is not
1045 to know about, so the to_wait method just records them and keeps
1048 In replay mode, this function emulates the recorded execution log,
1049 one instruction at a time (forward or backward), and determines
1053 record_full_wait_1 (struct target_ops *ops,
1054 ptid_t ptid, struct target_waitstatus *status,
1057 struct cleanup *set_cleanups = record_full_gdb_operation_disable_set ();
1060 fprintf_unfiltered (gdb_stdlog,
1061 "Process record: record_full_wait "
1062 "record_full_resume_step = %d, "
1063 "record_full_resumed = %d, direction=%s\n",
1064 record_full_resume_step, record_full_resumed,
1065 record_full_execution_dir == EXEC_FORWARD
1066 ? "forward" : "reverse");
1068 if (!record_full_resumed)
1070 gdb_assert ((options & TARGET_WNOHANG) != 0);
1072 /* No interesting event. */
1073 status->kind = TARGET_WAITKIND_IGNORE;
1074 return minus_one_ptid;
1077 record_full_get_sig = 0;
1078 signal (SIGINT, record_full_sig_handler);
1080 record_full_stop_reason = TARGET_STOPPED_BY_NO_REASON;
1082 if (!RECORD_FULL_IS_REPLAY && ops != &record_full_core_ops)
1084 if (record_full_resume_step)
1086 /* This is a single step. */
1087 return ops->beneath->to_wait (ops->beneath, ptid, status, options);
1091 /* This is not a single step. */
1094 struct gdbarch *gdbarch = target_thread_architecture (inferior_ptid);
1098 struct thread_info *tp;
1100 ret = ops->beneath->to_wait (ops->beneath, ptid, status, options);
1101 if (status->kind == TARGET_WAITKIND_IGNORE)
1104 fprintf_unfiltered (gdb_stdlog,
1105 "Process record: record_full_wait "
1106 "target beneath not done yet\n");
1110 ALL_NON_EXITED_THREADS (tp)
1111 delete_single_step_breakpoints (tp);
1113 if (record_full_resume_step)
1116 /* Is this a SIGTRAP? */
1117 if (status->kind == TARGET_WAITKIND_STOPPED
1118 && status->value.sig == GDB_SIGNAL_TRAP)
1120 struct regcache *regcache;
1121 struct address_space *aspace;
1122 enum target_stop_reason *stop_reason_p
1123 = &record_full_stop_reason;
1125 /* Yes -- this is likely our single-step finishing,
1126 but check if there's any reason the core would be
1127 interested in the event. */
1129 registers_changed ();
1130 regcache = get_current_regcache ();
1131 tmp_pc = regcache_read_pc (regcache);
1132 aspace = get_regcache_aspace (regcache);
1134 if (target_stopped_by_watchpoint ())
1136 /* Always interested in watchpoints. */
1138 else if (record_check_stopped_by_breakpoint (aspace, tmp_pc,
1141 /* There is a breakpoint here. Let the core
1146 /* This is a single-step trap. Record the
1147 insn and issue another step.
1148 FIXME: this part can be a random SIGTRAP too.
1149 But GDB cannot handle it. */
1152 if (!record_full_message_wrapper_safe (regcache,
1155 status->kind = TARGET_WAITKIND_STOPPED;
1156 status->value.sig = GDB_SIGNAL_0;
1160 if (gdbarch_software_single_step_p (gdbarch))
1162 /* Try to insert the software single step breakpoint.
1163 If insert success, set step to 0. */
1164 set_executing (inferior_ptid, 0);
1165 reinit_frame_cache ();
1166 if (gdbarch_software_single_step (gdbarch,
1167 get_current_frame ()))
1169 set_executing (inferior_ptid, 1);
1173 fprintf_unfiltered (gdb_stdlog,
1174 "Process record: record_full_wait "
1175 "issuing one more step in the "
1176 "target beneath\n");
1177 ops->beneath->to_resume (ops->beneath, ptid, step,
1183 /* The inferior is broken by a breakpoint or a signal. */
1192 struct regcache *regcache = get_current_regcache ();
1193 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1194 struct address_space *aspace = get_regcache_aspace (regcache);
1195 int continue_flag = 1;
1196 int first_record_full_end = 1;
1197 struct cleanup *old_cleanups
1198 = make_cleanup (record_full_wait_cleanups, 0);
1201 record_full_stop_reason = TARGET_STOPPED_BY_NO_REASON;
1202 status->kind = TARGET_WAITKIND_STOPPED;
1204 /* Check breakpoint when forward execute. */
1205 if (execution_direction == EXEC_FORWARD)
1207 tmp_pc = regcache_read_pc (regcache);
1208 if (record_check_stopped_by_breakpoint (aspace, tmp_pc,
1209 &record_full_stop_reason))
1212 fprintf_unfiltered (gdb_stdlog,
1213 "Process record: break at %s.\n",
1214 paddress (gdbarch, tmp_pc));
1219 /* If GDB is in terminal_inferior mode, it will not get the signal.
1220 And in GDB replay mode, GDB doesn't need to be in terminal_inferior
1221 mode, because inferior will not executed.
1222 Then set it to terminal_ours to make GDB get the signal. */
1223 target_terminal_ours ();
1225 /* In EXEC_FORWARD mode, record_full_list points to the tail of prev
1227 if (execution_direction == EXEC_FORWARD && record_full_list->next)
1228 record_full_list = record_full_list->next;
1230 /* Loop over the record_full_list, looking for the next place to
1234 /* Check for beginning and end of log. */
1235 if (execution_direction == EXEC_REVERSE
1236 && record_full_list == &record_full_first)
1238 /* Hit beginning of record log in reverse. */
1239 status->kind = TARGET_WAITKIND_NO_HISTORY;
1242 if (execution_direction != EXEC_REVERSE && !record_full_list->next)
1244 /* Hit end of record log going forward. */
1245 status->kind = TARGET_WAITKIND_NO_HISTORY;
1249 record_full_exec_insn (regcache, gdbarch, record_full_list);
1251 if (record_full_list->type == record_full_end)
1253 if (record_debug > 1)
1254 fprintf_unfiltered (gdb_stdlog,
1255 "Process record: record_full_end %s to "
1257 host_address_to_string (record_full_list));
1259 if (first_record_full_end && execution_direction == EXEC_REVERSE)
1261 /* When reverse excute, the first record_full_end is the
1262 part of current instruction. */
1263 first_record_full_end = 0;
1267 /* In EXEC_REVERSE mode, this is the record_full_end of prev
1269 In EXEC_FORWARD mode, this is the record_full_end of
1270 current instruction. */
1272 if (record_full_resume_step)
1274 if (record_debug > 1)
1275 fprintf_unfiltered (gdb_stdlog,
1276 "Process record: step.\n");
1280 /* check breakpoint */
1281 tmp_pc = regcache_read_pc (regcache);
1282 if (record_check_stopped_by_breakpoint (aspace, tmp_pc,
1283 &record_full_stop_reason))
1286 fprintf_unfiltered (gdb_stdlog,
1287 "Process record: break "
1289 paddress (gdbarch, tmp_pc));
1294 if (record_full_stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
1297 fprintf_unfiltered (gdb_stdlog,
1298 "Process record: hit hw "
1302 /* Check target signal */
1303 if (record_full_list->u.end.sigval != GDB_SIGNAL_0)
1304 /* FIXME: better way to check */
1311 if (execution_direction == EXEC_REVERSE)
1313 if (record_full_list->prev)
1314 record_full_list = record_full_list->prev;
1318 if (record_full_list->next)
1319 record_full_list = record_full_list->next;
1323 while (continue_flag);
1326 if (record_full_get_sig)
1327 status->value.sig = GDB_SIGNAL_INT;
1328 else if (record_full_list->u.end.sigval != GDB_SIGNAL_0)
1329 /* FIXME: better way to check */
1330 status->value.sig = record_full_list->u.end.sigval;
1332 status->value.sig = GDB_SIGNAL_TRAP;
1334 discard_cleanups (old_cleanups);
1337 signal (SIGINT, handle_sigint);
1339 do_cleanups (set_cleanups);
1340 return inferior_ptid;
1344 record_full_wait (struct target_ops *ops,
1345 ptid_t ptid, struct target_waitstatus *status,
1350 return_ptid = record_full_wait_1 (ops, ptid, status, options);
1351 if (status->kind != TARGET_WAITKIND_IGNORE)
1353 /* We're reporting a stop. Make sure any spurious
1354 target_wait(WNOHANG) doesn't advance the target until the
1355 core wants us resumed again. */
1356 record_full_resumed = 0;
1362 record_full_stopped_by_watchpoint (struct target_ops *ops)
1364 if (RECORD_FULL_IS_REPLAY)
1365 return record_full_stop_reason == TARGET_STOPPED_BY_WATCHPOINT;
1367 return ops->beneath->to_stopped_by_watchpoint (ops->beneath);
1371 record_full_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
1373 if (RECORD_FULL_IS_REPLAY)
1376 return ops->beneath->to_stopped_data_address (ops->beneath, addr_p);
1379 /* The to_stopped_by_sw_breakpoint method of target record-full. */
1382 record_full_stopped_by_sw_breakpoint (struct target_ops *ops)
1384 return record_full_stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT;
1387 /* The to_supports_stopped_by_sw_breakpoint method of target
1391 record_full_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
1396 /* The to_stopped_by_hw_breakpoint method of target record-full. */
1399 record_full_stopped_by_hw_breakpoint (struct target_ops *ops)
1401 return record_full_stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT;
1404 /* The to_supports_stopped_by_sw_breakpoint method of target
1408 record_full_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
1413 /* Record registers change (by user or by GDB) to list as an instruction. */
1416 record_full_registers_change (struct regcache *regcache, int regnum)
1418 /* Check record_full_insn_num. */
1419 record_full_check_insn_num (0);
1421 record_full_arch_list_head = NULL;
1422 record_full_arch_list_tail = NULL;
1428 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
1430 if (record_full_arch_list_add_reg (regcache, i))
1432 record_full_list_release (record_full_arch_list_tail);
1433 error (_("Process record: failed to record execution log."));
1439 if (record_full_arch_list_add_reg (regcache, regnum))
1441 record_full_list_release (record_full_arch_list_tail);
1442 error (_("Process record: failed to record execution log."));
1445 if (record_full_arch_list_add_end ())
1447 record_full_list_release (record_full_arch_list_tail);
1448 error (_("Process record: failed to record execution log."));
1450 record_full_list->next = record_full_arch_list_head;
1451 record_full_arch_list_head->prev = record_full_list;
1452 record_full_list = record_full_arch_list_tail;
1454 if (record_full_insn_num == record_full_insn_max_num)
1455 record_full_list_release_first ();
1457 record_full_insn_num++;
1460 /* "to_store_registers" method for process record target. */
1463 record_full_store_registers (struct target_ops *ops,
1464 struct regcache *regcache,
1467 if (!record_full_gdb_operation_disable)
1469 if (RECORD_FULL_IS_REPLAY)
1473 /* Let user choose if he wants to write register or not. */
1476 query (_("Because GDB is in replay mode, changing the "
1477 "value of a register will make the execution "
1478 "log unusable from this point onward. "
1479 "Change all registers?"));
1482 query (_("Because GDB is in replay mode, changing the value "
1483 "of a register will make the execution log unusable "
1484 "from this point onward. Change register %s?"),
1485 gdbarch_register_name (get_regcache_arch (regcache),
1490 /* Invalidate the value of regcache that was set in function
1491 "regcache_raw_write". */
1497 i < gdbarch_num_regs (get_regcache_arch (regcache));
1499 regcache_invalidate (regcache, i);
1502 regcache_invalidate (regcache, regno);
1504 error (_("Process record canceled the operation."));
1507 /* Destroy the record from here forward. */
1508 record_full_list_release_following (record_full_list);
1511 record_full_registers_change (regcache, regno);
1513 ops->beneath->to_store_registers (ops->beneath, regcache, regno);
1516 /* "to_xfer_partial" method. Behavior is conditional on
1517 RECORD_FULL_IS_REPLAY.
1518 In replay mode, we cannot write memory unles we are willing to
1519 invalidate the record/replay log from this point forward. */
1521 static enum target_xfer_status
1522 record_full_xfer_partial (struct target_ops *ops, enum target_object object,
1523 const char *annex, gdb_byte *readbuf,
1524 const gdb_byte *writebuf, ULONGEST offset,
1525 ULONGEST len, ULONGEST *xfered_len)
1527 if (!record_full_gdb_operation_disable
1528 && (object == TARGET_OBJECT_MEMORY
1529 || object == TARGET_OBJECT_RAW_MEMORY) && writebuf)
1531 if (RECORD_FULL_IS_REPLAY)
1533 /* Let user choose if he wants to write memory or not. */
1534 if (!query (_("Because GDB is in replay mode, writing to memory "
1535 "will make the execution log unusable from this "
1536 "point onward. Write memory at address %s?"),
1537 paddress (target_gdbarch (), offset)))
1538 error (_("Process record canceled the operation."));
1540 /* Destroy the record from here forward. */
1541 record_full_list_release_following (record_full_list);
1544 /* Check record_full_insn_num */
1545 record_full_check_insn_num (0);
1547 /* Record registers change to list as an instruction. */
1548 record_full_arch_list_head = NULL;
1549 record_full_arch_list_tail = NULL;
1550 if (record_full_arch_list_add_mem (offset, len))
1552 record_full_list_release (record_full_arch_list_tail);
1554 fprintf_unfiltered (gdb_stdlog,
1555 "Process record: failed to record "
1557 return TARGET_XFER_E_IO;
1559 if (record_full_arch_list_add_end ())
1561 record_full_list_release (record_full_arch_list_tail);
1563 fprintf_unfiltered (gdb_stdlog,
1564 "Process record: failed to record "
1566 return TARGET_XFER_E_IO;
1568 record_full_list->next = record_full_arch_list_head;
1569 record_full_arch_list_head->prev = record_full_list;
1570 record_full_list = record_full_arch_list_tail;
1572 if (record_full_insn_num == record_full_insn_max_num)
1573 record_full_list_release_first ();
1575 record_full_insn_num++;
1578 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1579 readbuf, writebuf, offset,
1583 /* This structure represents a breakpoint inserted while the record
1584 target is active. We use this to know when to install/remove
1585 breakpoints in/from the target beneath. For example, a breakpoint
1586 may be inserted while recording, but removed when not replaying nor
1587 recording. In that case, the breakpoint had not been inserted on
1588 the target beneath, so we should not try to remove it there. */
1590 struct record_full_breakpoint
1592 /* The address and address space the breakpoint was set at. */
1593 struct address_space *address_space;
1596 /* True when the breakpoint has been also installed in the target
1597 beneath. This will be false for breakpoints set during replay or
1599 int in_target_beneath;
1602 typedef struct record_full_breakpoint *record_full_breakpoint_p;
1603 DEF_VEC_P(record_full_breakpoint_p);
1605 /* The list of breakpoints inserted while the record target is
1607 VEC(record_full_breakpoint_p) *record_full_breakpoints = NULL;
1610 record_full_sync_record_breakpoints (struct bp_location *loc, void *data)
1612 if (loc->loc_type != bp_loc_software_breakpoint)
1617 struct record_full_breakpoint *bp = XNEW (struct record_full_breakpoint);
1619 bp->addr = loc->target_info.placed_address;
1620 bp->address_space = loc->target_info.placed_address_space;
1622 bp->in_target_beneath = 1;
1624 VEC_safe_push (record_full_breakpoint_p, record_full_breakpoints, bp);
1628 /* Sync existing breakpoints to record_full_breakpoints. */
1631 record_full_init_record_breakpoints (void)
1633 VEC_free (record_full_breakpoint_p, record_full_breakpoints);
1635 iterate_over_bp_locations (record_full_sync_record_breakpoints);
1638 /* Behavior is conditional on RECORD_FULL_IS_REPLAY. We will not actually
1639 insert or remove breakpoints in the real target when replaying, nor
1643 record_full_insert_breakpoint (struct target_ops *ops,
1644 struct gdbarch *gdbarch,
1645 struct bp_target_info *bp_tgt)
1647 struct record_full_breakpoint *bp;
1648 int in_target_beneath = 0;
1650 if (!RECORD_FULL_IS_REPLAY)
1652 /* When recording, we currently always single-step, so we don't
1653 really need to install regular breakpoints in the inferior.
1654 However, we do have to insert software single-step
1655 breakpoints, in case the target can't hardware step. To keep
1656 things single, we always insert. */
1657 struct cleanup *old_cleanups;
1660 old_cleanups = record_full_gdb_operation_disable_set ();
1661 ret = ops->beneath->to_insert_breakpoint (ops->beneath, gdbarch, bp_tgt);
1662 do_cleanups (old_cleanups);
1667 in_target_beneath = 1;
1670 bp = XNEW (struct record_full_breakpoint);
1671 bp->addr = bp_tgt->placed_address;
1672 bp->address_space = bp_tgt->placed_address_space;
1673 bp->in_target_beneath = in_target_beneath;
1674 VEC_safe_push (record_full_breakpoint_p, record_full_breakpoints, bp);
1678 /* "to_remove_breakpoint" method for process record target. */
1681 record_full_remove_breakpoint (struct target_ops *ops,
1682 struct gdbarch *gdbarch,
1683 struct bp_target_info *bp_tgt)
1685 struct record_full_breakpoint *bp;
1689 VEC_iterate (record_full_breakpoint_p,
1690 record_full_breakpoints, ix, bp);
1693 if (bp->addr == bp_tgt->placed_address
1694 && bp->address_space == bp_tgt->placed_address_space)
1696 if (bp->in_target_beneath)
1698 struct cleanup *old_cleanups;
1701 old_cleanups = record_full_gdb_operation_disable_set ();
1702 ret = ops->beneath->to_remove_breakpoint (ops->beneath, gdbarch,
1704 do_cleanups (old_cleanups);
1710 VEC_unordered_remove (record_full_breakpoint_p,
1711 record_full_breakpoints, ix);
1716 gdb_assert_not_reached ("removing unknown breakpoint");
1719 /* "to_can_execute_reverse" method for process record target. */
1722 record_full_can_execute_reverse (struct target_ops *self)
1727 /* "to_get_bookmark" method for process record and prec over core. */
1730 record_full_get_bookmark (struct target_ops *self, const char *args,
1735 /* Return stringified form of instruction count. */
1736 if (record_full_list && record_full_list->type == record_full_end)
1737 ret = xstrdup (pulongest (record_full_list->u.end.insn_num));
1742 fprintf_unfiltered (gdb_stdlog,
1743 "record_full_get_bookmark returns %s\n", ret);
1745 fprintf_unfiltered (gdb_stdlog,
1746 "record_full_get_bookmark returns NULL\n");
1748 return (gdb_byte *) ret;
1751 /* "to_goto_bookmark" method for process record and prec over core. */
1754 record_full_goto_bookmark (struct target_ops *self,
1755 const gdb_byte *raw_bookmark, int from_tty)
1757 const char *bookmark = (const char *) raw_bookmark;
1758 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
1761 fprintf_unfiltered (gdb_stdlog,
1762 "record_full_goto_bookmark receives %s\n", bookmark);
1764 if (bookmark[0] == '\'' || bookmark[0] == '\"')
1768 if (bookmark[strlen (bookmark) - 1] != bookmark[0])
1769 error (_("Unbalanced quotes: %s"), bookmark);
1772 copy = savestring (bookmark + 1, strlen (bookmark) - 2);
1773 make_cleanup (xfree, copy);
1777 record_goto (bookmark);
1779 do_cleanups (cleanup);
1782 static enum exec_direction_kind
1783 record_full_execution_direction (struct target_ops *self)
1785 return record_full_execution_dir;
1789 record_full_info (struct target_ops *self)
1791 struct record_full_entry *p;
1793 if (RECORD_FULL_IS_REPLAY)
1794 printf_filtered (_("Replay mode:\n"));
1796 printf_filtered (_("Record mode:\n"));
1798 /* Find entry for first actual instruction in the log. */
1799 for (p = record_full_first.next;
1800 p != NULL && p->type != record_full_end;
1804 /* Do we have a log at all? */
1805 if (p != NULL && p->type == record_full_end)
1807 /* Display instruction number for first instruction in the log. */
1808 printf_filtered (_("Lowest recorded instruction number is %s.\n"),
1809 pulongest (p->u.end.insn_num));
1811 /* If in replay mode, display where we are in the log. */
1812 if (RECORD_FULL_IS_REPLAY)
1813 printf_filtered (_("Current instruction number is %s.\n"),
1814 pulongest (record_full_list->u.end.insn_num));
1816 /* Display instruction number for last instruction in the log. */
1817 printf_filtered (_("Highest recorded instruction number is %s.\n"),
1818 pulongest (record_full_insn_count));
1820 /* Display log count. */
1821 printf_filtered (_("Log contains %u instructions.\n"),
1822 record_full_insn_num);
1825 printf_filtered (_("No instructions have been logged.\n"));
1827 /* Display max log size. */
1828 printf_filtered (_("Max logged instructions is %u.\n"),
1829 record_full_insn_max_num);
1832 /* The "to_record_delete" target method. */
1835 record_full_delete (struct target_ops *self)
1837 record_full_list_release_following (record_full_list);
1840 /* The "to_record_is_replaying" target method. */
1843 record_full_is_replaying (struct target_ops *self, ptid_t ptid)
1845 return RECORD_FULL_IS_REPLAY;
1848 /* Go to a specific entry. */
1851 record_full_goto_entry (struct record_full_entry *p)
1854 error (_("Target insn not found."));
1855 else if (p == record_full_list)
1856 error (_("Already at target insn."));
1857 else if (p->u.end.insn_num > record_full_list->u.end.insn_num)
1859 printf_filtered (_("Go forward to insn number %s\n"),
1860 pulongest (p->u.end.insn_num));
1861 record_full_goto_insn (p, EXEC_FORWARD);
1865 printf_filtered (_("Go backward to insn number %s\n"),
1866 pulongest (p->u.end.insn_num));
1867 record_full_goto_insn (p, EXEC_REVERSE);
1870 registers_changed ();
1871 reinit_frame_cache ();
1872 stop_pc = regcache_read_pc (get_current_regcache ());
1873 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
1876 /* The "to_goto_record_begin" target method. */
1879 record_full_goto_begin (struct target_ops *self)
1881 struct record_full_entry *p = NULL;
1883 for (p = &record_full_first; p != NULL; p = p->next)
1884 if (p->type == record_full_end)
1887 record_full_goto_entry (p);
1890 /* The "to_goto_record_end" target method. */
1893 record_full_goto_end (struct target_ops *self)
1895 struct record_full_entry *p = NULL;
1897 for (p = record_full_list; p->next != NULL; p = p->next)
1899 for (; p!= NULL; p = p->prev)
1900 if (p->type == record_full_end)
1903 record_full_goto_entry (p);
1906 /* The "to_goto_record" target method. */
1909 record_full_goto (struct target_ops *self, ULONGEST target_insn)
1911 struct record_full_entry *p = NULL;
1913 for (p = &record_full_first; p != NULL; p = p->next)
1914 if (p->type == record_full_end && p->u.end.insn_num == target_insn)
1917 record_full_goto_entry (p);
1921 init_record_full_ops (void)
1923 record_full_ops.to_shortname = "record-full";
1924 record_full_ops.to_longname = "Process record and replay target";
1925 record_full_ops.to_doc =
1926 "Log program while executing and replay execution from log.";
1927 record_full_ops.to_open = record_full_open;
1928 record_full_ops.to_close = record_full_close;
1929 record_full_ops.to_async = record_full_async;
1930 record_full_ops.to_resume = record_full_resume;
1931 record_full_ops.to_wait = record_full_wait;
1932 record_full_ops.to_disconnect = record_disconnect;
1933 record_full_ops.to_detach = record_detach;
1934 record_full_ops.to_mourn_inferior = record_mourn_inferior;
1935 record_full_ops.to_kill = record_kill;
1936 record_full_ops.to_store_registers = record_full_store_registers;
1937 record_full_ops.to_xfer_partial = record_full_xfer_partial;
1938 record_full_ops.to_insert_breakpoint = record_full_insert_breakpoint;
1939 record_full_ops.to_remove_breakpoint = record_full_remove_breakpoint;
1940 record_full_ops.to_stopped_by_watchpoint = record_full_stopped_by_watchpoint;
1941 record_full_ops.to_stopped_data_address = record_full_stopped_data_address;
1942 record_full_ops.to_stopped_by_sw_breakpoint
1943 = record_full_stopped_by_sw_breakpoint;
1944 record_full_ops.to_supports_stopped_by_sw_breakpoint
1945 = record_full_supports_stopped_by_sw_breakpoint;
1946 record_full_ops.to_stopped_by_hw_breakpoint
1947 = record_full_stopped_by_hw_breakpoint;
1948 record_full_ops.to_supports_stopped_by_hw_breakpoint
1949 = record_full_supports_stopped_by_hw_breakpoint;
1950 record_full_ops.to_can_execute_reverse = record_full_can_execute_reverse;
1951 record_full_ops.to_stratum = record_stratum;
1952 /* Add bookmark target methods. */
1953 record_full_ops.to_get_bookmark = record_full_get_bookmark;
1954 record_full_ops.to_goto_bookmark = record_full_goto_bookmark;
1955 record_full_ops.to_execution_direction = record_full_execution_direction;
1956 record_full_ops.to_info_record = record_full_info;
1957 record_full_ops.to_save_record = record_full_save;
1958 record_full_ops.to_delete_record = record_full_delete;
1959 record_full_ops.to_record_is_replaying = record_full_is_replaying;
1960 record_full_ops.to_goto_record_begin = record_full_goto_begin;
1961 record_full_ops.to_goto_record_end = record_full_goto_end;
1962 record_full_ops.to_goto_record = record_full_goto;
1963 record_full_ops.to_magic = OPS_MAGIC;
1966 /* "to_resume" method for prec over corefile. */
1969 record_full_core_resume (struct target_ops *ops, ptid_t ptid, int step,
1970 enum gdb_signal signal)
1972 record_full_resume_step = step;
1973 record_full_resumed = 1;
1974 record_full_execution_dir = execution_direction;
1976 /* We are about to start executing the inferior (or simulate it),
1977 let's register it with the event loop. */
1978 if (target_can_async_p ())
1982 /* "to_kill" method for prec over corefile. */
1985 record_full_core_kill (struct target_ops *ops)
1988 fprintf_unfiltered (gdb_stdlog, "Process record: record_full_core_kill\n");
1990 unpush_target (&record_full_core_ops);
1993 /* "to_fetch_registers" method for prec over corefile. */
1996 record_full_core_fetch_registers (struct target_ops *ops,
1997 struct regcache *regcache,
2002 int num = gdbarch_num_regs (get_regcache_arch (regcache));
2005 for (i = 0; i < num; i ++)
2006 regcache_raw_supply (regcache, i,
2007 record_full_core_regbuf + MAX_REGISTER_SIZE * i);
2010 regcache_raw_supply (regcache, regno,
2011 record_full_core_regbuf + MAX_REGISTER_SIZE * regno);
2014 /* "to_prepare_to_store" method for prec over corefile. */
2017 record_full_core_prepare_to_store (struct target_ops *self,
2018 struct regcache *regcache)
2022 /* "to_store_registers" method for prec over corefile. */
2025 record_full_core_store_registers (struct target_ops *ops,
2026 struct regcache *regcache,
2029 if (record_full_gdb_operation_disable)
2030 regcache_raw_collect (regcache, regno,
2031 record_full_core_regbuf + MAX_REGISTER_SIZE * regno);
2033 error (_("You can't do that without a process to debug."));
2036 /* "to_xfer_partial" method for prec over corefile. */
2038 static enum target_xfer_status
2039 record_full_core_xfer_partial (struct target_ops *ops,
2040 enum target_object object,
2041 const char *annex, gdb_byte *readbuf,
2042 const gdb_byte *writebuf, ULONGEST offset,
2043 ULONGEST len, ULONGEST *xfered_len)
2045 if (object == TARGET_OBJECT_MEMORY)
2047 if (record_full_gdb_operation_disable || !writebuf)
2049 struct target_section *p;
2051 for (p = record_full_core_start; p < record_full_core_end; p++)
2053 if (offset >= p->addr)
2055 struct record_full_core_buf_entry *entry;
2056 ULONGEST sec_offset;
2058 if (offset >= p->endaddr)
2061 if (offset + len > p->endaddr)
2062 len = p->endaddr - offset;
2064 sec_offset = offset - p->addr;
2066 /* Read readbuf or write writebuf p, offset, len. */
2068 if (p->the_bfd_section->flags & SEC_CONSTRUCTOR
2069 || (p->the_bfd_section->flags & SEC_HAS_CONTENTS) == 0)
2072 memset (readbuf, 0, len);
2075 return TARGET_XFER_OK;
2077 /* Get record_full_core_buf_entry. */
2078 for (entry = record_full_core_buf_list; entry;
2079 entry = entry->prev)
2086 /* Add a new entry. */
2087 entry = XNEW (struct record_full_core_buf_entry);
2089 if (!bfd_malloc_and_get_section
2090 (p->the_bfd_section->owner,
2095 return TARGET_XFER_EOF;
2097 entry->prev = record_full_core_buf_list;
2098 record_full_core_buf_list = entry;
2101 memcpy (entry->buf + sec_offset, writebuf,
2107 return ops->beneath->to_xfer_partial (ops->beneath,
2113 memcpy (readbuf, entry->buf + sec_offset,
2118 return TARGET_XFER_OK;
2122 return TARGET_XFER_E_IO;
2125 error (_("You can't do that without a process to debug."));
2128 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2129 readbuf, writebuf, offset, len,
2133 /* "to_insert_breakpoint" method for prec over corefile. */
2136 record_full_core_insert_breakpoint (struct target_ops *ops,
2137 struct gdbarch *gdbarch,
2138 struct bp_target_info *bp_tgt)
2143 /* "to_remove_breakpoint" method for prec over corefile. */
2146 record_full_core_remove_breakpoint (struct target_ops *ops,
2147 struct gdbarch *gdbarch,
2148 struct bp_target_info *bp_tgt)
2153 /* "to_has_execution" method for prec over corefile. */
2156 record_full_core_has_execution (struct target_ops *ops, ptid_t the_ptid)
2162 init_record_full_core_ops (void)
2164 record_full_core_ops.to_shortname = "record-core";
2165 record_full_core_ops.to_longname = "Process record and replay target";
2166 record_full_core_ops.to_doc =
2167 "Log program while executing and replay execution from log.";
2168 record_full_core_ops.to_open = record_full_open;
2169 record_full_core_ops.to_close = record_full_close;
2170 record_full_core_ops.to_async = record_full_async;
2171 record_full_core_ops.to_resume = record_full_core_resume;
2172 record_full_core_ops.to_wait = record_full_wait;
2173 record_full_core_ops.to_kill = record_full_core_kill;
2174 record_full_core_ops.to_fetch_registers = record_full_core_fetch_registers;
2175 record_full_core_ops.to_prepare_to_store = record_full_core_prepare_to_store;
2176 record_full_core_ops.to_store_registers = record_full_core_store_registers;
2177 record_full_core_ops.to_xfer_partial = record_full_core_xfer_partial;
2178 record_full_core_ops.to_insert_breakpoint
2179 = record_full_core_insert_breakpoint;
2180 record_full_core_ops.to_remove_breakpoint
2181 = record_full_core_remove_breakpoint;
2182 record_full_core_ops.to_stopped_by_watchpoint
2183 = record_full_stopped_by_watchpoint;
2184 record_full_core_ops.to_stopped_data_address
2185 = record_full_stopped_data_address;
2186 record_full_core_ops.to_stopped_by_sw_breakpoint
2187 = record_full_stopped_by_sw_breakpoint;
2188 record_full_core_ops.to_supports_stopped_by_sw_breakpoint
2189 = record_full_supports_stopped_by_sw_breakpoint;
2190 record_full_core_ops.to_stopped_by_hw_breakpoint
2191 = record_full_stopped_by_hw_breakpoint;
2192 record_full_core_ops.to_supports_stopped_by_hw_breakpoint
2193 = record_full_supports_stopped_by_hw_breakpoint;
2194 record_full_core_ops.to_can_execute_reverse
2195 = record_full_can_execute_reverse;
2196 record_full_core_ops.to_has_execution = record_full_core_has_execution;
2197 record_full_core_ops.to_stratum = record_stratum;
2198 /* Add bookmark target methods. */
2199 record_full_core_ops.to_get_bookmark = record_full_get_bookmark;
2200 record_full_core_ops.to_goto_bookmark = record_full_goto_bookmark;
2201 record_full_core_ops.to_execution_direction
2202 = record_full_execution_direction;
2203 record_full_core_ops.to_info_record = record_full_info;
2204 record_full_core_ops.to_delete_record = record_full_delete;
2205 record_full_core_ops.to_record_is_replaying = record_full_is_replaying;
2206 record_full_core_ops.to_goto_record_begin = record_full_goto_begin;
2207 record_full_core_ops.to_goto_record_end = record_full_goto_end;
2208 record_full_core_ops.to_goto_record = record_full_goto;
2209 record_full_core_ops.to_magic = OPS_MAGIC;
2212 /* Record log save-file format
2213 Version 1 (never released)
2216 4 bytes: magic number htonl(0x20090829).
2217 NOTE: be sure to change whenever this file format changes!
2221 1 byte: record type (record_full_end, see enum record_full_type).
2223 1 byte: record type (record_full_reg, see enum record_full_type).
2224 8 bytes: register id (network byte order).
2225 MAX_REGISTER_SIZE bytes: register value.
2227 1 byte: record type (record_full_mem, see enum record_full_type).
2228 8 bytes: memory length (network byte order).
2229 8 bytes: memory address (network byte order).
2230 n bytes: memory value (n == memory length).
2233 4 bytes: magic number netorder32(0x20091016).
2234 NOTE: be sure to change whenever this file format changes!
2238 1 byte: record type (record_full_end, see enum record_full_type).
2240 4 bytes: instruction count
2242 1 byte: record type (record_full_reg, see enum record_full_type).
2243 4 bytes: register id (network byte order).
2244 n bytes: register value (n == actual register size).
2245 (eg. 4 bytes for x86 general registers).
2247 1 byte: record type (record_full_mem, see enum record_full_type).
2248 4 bytes: memory length (network byte order).
2249 8 bytes: memory address (network byte order).
2250 n bytes: memory value (n == memory length).
2254 /* bfdcore_read -- read bytes from a core file section. */
2257 bfdcore_read (bfd *obfd, asection *osec, void *buf, int len, int *offset)
2259 int ret = bfd_get_section_contents (obfd, osec, buf, *offset, len);
2264 error (_("Failed to read %d bytes from core file %s ('%s')."),
2265 len, bfd_get_filename (obfd),
2266 bfd_errmsg (bfd_get_error ()));
2269 static inline uint64_t
2270 netorder64 (uint64_t input)
2274 store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret),
2275 BFD_ENDIAN_BIG, input);
2279 static inline uint32_t
2280 netorder32 (uint32_t input)
2284 store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret),
2285 BFD_ENDIAN_BIG, input);
2289 static inline uint16_t
2290 netorder16 (uint16_t input)
2294 store_unsigned_integer ((gdb_byte *) &ret, sizeof (ret),
2295 BFD_ENDIAN_BIG, input);
2299 /* Restore the execution log from a core_bfd file. */
2301 record_full_restore (void)
2304 struct cleanup *old_cleanups;
2305 struct record_full_entry *rec;
2309 struct regcache *regcache;
2311 /* We restore the execution log from the open core bfd,
2313 if (core_bfd == NULL)
2316 /* "record_full_restore" can only be called when record list is empty. */
2317 gdb_assert (record_full_first.next == NULL);
2320 fprintf_unfiltered (gdb_stdlog, "Restoring recording from core file.\n");
2322 /* Now need to find our special note section. */
2323 osec = bfd_get_section_by_name (core_bfd, "null0");
2325 fprintf_unfiltered (gdb_stdlog, "Find precord section %s.\n",
2326 osec ? "succeeded" : "failed");
2329 osec_size = bfd_section_size (core_bfd, osec);
2331 fprintf_unfiltered (gdb_stdlog, "%s", bfd_section_name (core_bfd, osec));
2333 /* Check the magic code. */
2334 bfdcore_read (core_bfd, osec, &magic, sizeof (magic), &bfd_offset);
2335 if (magic != RECORD_FULL_FILE_MAGIC)
2336 error (_("Version mis-match or file format error in core file %s."),
2337 bfd_get_filename (core_bfd));
2339 fprintf_unfiltered (gdb_stdlog,
2340 " Reading 4-byte magic cookie "
2341 "RECORD_FULL_FILE_MAGIC (0x%s)\n",
2342 phex_nz (netorder32 (magic), 4));
2344 /* Restore the entries in recfd into record_full_arch_list_head and
2345 record_full_arch_list_tail. */
2346 record_full_arch_list_head = NULL;
2347 record_full_arch_list_tail = NULL;
2348 record_full_insn_num = 0;
2349 old_cleanups = make_cleanup (record_full_arch_list_cleanups, 0);
2350 regcache = get_current_regcache ();
2355 uint32_t regnum, len, signal, count;
2358 /* We are finished when offset reaches osec_size. */
2359 if (bfd_offset >= osec_size)
2361 bfdcore_read (core_bfd, osec, &rectype, sizeof (rectype), &bfd_offset);
2365 case record_full_reg: /* reg */
2366 /* Get register number to regnum. */
2367 bfdcore_read (core_bfd, osec, ®num,
2368 sizeof (regnum), &bfd_offset);
2369 regnum = netorder32 (regnum);
2371 rec = record_full_reg_alloc (regcache, regnum);
2374 bfdcore_read (core_bfd, osec, record_full_get_loc (rec),
2375 rec->u.reg.len, &bfd_offset);
2378 fprintf_unfiltered (gdb_stdlog,
2379 " Reading register %d (1 "
2380 "plus %lu plus %d bytes)\n",
2382 (unsigned long) sizeof (regnum),
2386 case record_full_mem: /* mem */
2388 bfdcore_read (core_bfd, osec, &len,
2389 sizeof (len), &bfd_offset);
2390 len = netorder32 (len);
2393 bfdcore_read (core_bfd, osec, &addr,
2394 sizeof (addr), &bfd_offset);
2395 addr = netorder64 (addr);
2397 rec = record_full_mem_alloc (addr, len);
2400 bfdcore_read (core_bfd, osec, record_full_get_loc (rec),
2401 rec->u.mem.len, &bfd_offset);
2404 fprintf_unfiltered (gdb_stdlog,
2405 " Reading memory %s (1 plus "
2406 "%lu plus %lu plus %d bytes)\n",
2407 paddress (get_current_arch (),
2409 (unsigned long) sizeof (addr),
2410 (unsigned long) sizeof (len),
2414 case record_full_end: /* end */
2415 rec = record_full_end_alloc ();
2416 record_full_insn_num ++;
2418 /* Get signal value. */
2419 bfdcore_read (core_bfd, osec, &signal,
2420 sizeof (signal), &bfd_offset);
2421 signal = netorder32 (signal);
2422 rec->u.end.sigval = (enum gdb_signal) signal;
2424 /* Get insn count. */
2425 bfdcore_read (core_bfd, osec, &count,
2426 sizeof (count), &bfd_offset);
2427 count = netorder32 (count);
2428 rec->u.end.insn_num = count;
2429 record_full_insn_count = count + 1;
2431 fprintf_unfiltered (gdb_stdlog,
2432 " Reading record_full_end (1 + "
2433 "%lu + %lu bytes), offset == %s\n",
2434 (unsigned long) sizeof (signal),
2435 (unsigned long) sizeof (count),
2436 paddress (get_current_arch (),
2441 error (_("Bad entry type in core file %s."),
2442 bfd_get_filename (core_bfd));
2446 /* Add rec to record arch list. */
2447 record_full_arch_list_add (rec);
2450 discard_cleanups (old_cleanups);
2452 /* Add record_full_arch_list_head to the end of record list. */
2453 record_full_first.next = record_full_arch_list_head;
2454 record_full_arch_list_head->prev = &record_full_first;
2455 record_full_arch_list_tail->next = NULL;
2456 record_full_list = &record_full_first;
2458 /* Update record_full_insn_max_num. */
2459 if (record_full_insn_num > record_full_insn_max_num)
2461 record_full_insn_max_num = record_full_insn_num;
2462 warning (_("Auto increase record/replay buffer limit to %u."),
2463 record_full_insn_max_num);
2467 printf_filtered (_("Restored records from core file %s.\n"),
2468 bfd_get_filename (core_bfd));
2470 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2473 /* bfdcore_write -- write bytes into a core file section. */
2476 bfdcore_write (bfd *obfd, asection *osec, void *buf, int len, int *offset)
2478 int ret = bfd_set_section_contents (obfd, osec, buf, *offset, len);
2483 error (_("Failed to write %d bytes to core file %s ('%s')."),
2484 len, bfd_get_filename (obfd),
2485 bfd_errmsg (bfd_get_error ()));
2488 /* Restore the execution log from a file. We use a modified elf
2489 corefile format, with an extra section for our data. */
2492 cmd_record_full_restore (char *args, int from_tty)
2494 core_file_command (args, from_tty);
2495 record_full_open (args, from_tty);
2499 record_full_save_cleanups (void *data)
2502 char *pathname = xstrdup (bfd_get_filename (obfd));
2504 gdb_bfd_unref (obfd);
2509 /* Save the execution log to a file. We use a modified elf corefile
2510 format, with an extra section for our data. */
2513 record_full_save (struct target_ops *self, const char *recfilename)
2515 struct record_full_entry *cur_record_full_list;
2517 struct regcache *regcache;
2518 struct gdbarch *gdbarch;
2519 struct cleanup *old_cleanups;
2520 struct cleanup *set_cleanups;
2523 asection *osec = NULL;
2526 /* Open the save file. */
2528 fprintf_unfiltered (gdb_stdlog, "Saving execution log to core file '%s'\n",
2531 /* Open the output file. */
2532 obfd = create_gcore_bfd (recfilename);
2533 old_cleanups = make_cleanup (record_full_save_cleanups, obfd);
2535 /* Save the current record entry to "cur_record_full_list". */
2536 cur_record_full_list = record_full_list;
2538 /* Get the values of regcache and gdbarch. */
2539 regcache = get_current_regcache ();
2540 gdbarch = get_regcache_arch (regcache);
2542 /* Disable the GDB operation record. */
2543 set_cleanups = record_full_gdb_operation_disable_set ();
2545 /* Reverse execute to the begin of record list. */
2548 /* Check for beginning and end of log. */
2549 if (record_full_list == &record_full_first)
2552 record_full_exec_insn (regcache, gdbarch, record_full_list);
2554 if (record_full_list->prev)
2555 record_full_list = record_full_list->prev;
2558 /* Compute the size needed for the extra bfd section. */
2559 save_size = 4; /* magic cookie */
2560 for (record_full_list = record_full_first.next; record_full_list;
2561 record_full_list = record_full_list->next)
2562 switch (record_full_list->type)
2564 case record_full_end:
2565 save_size += 1 + 4 + 4;
2567 case record_full_reg:
2568 save_size += 1 + 4 + record_full_list->u.reg.len;
2570 case record_full_mem:
2571 save_size += 1 + 4 + 8 + record_full_list->u.mem.len;
2575 /* Make the new bfd section. */
2576 osec = bfd_make_section_anyway_with_flags (obfd, "precord",
2580 error (_("Failed to create 'precord' section for corefile %s: %s"),
2582 bfd_errmsg (bfd_get_error ()));
2583 bfd_set_section_size (obfd, osec, save_size);
2584 bfd_set_section_vma (obfd, osec, 0);
2585 bfd_set_section_alignment (obfd, osec, 0);
2586 bfd_section_lma (obfd, osec) = 0;
2588 /* Save corefile state. */
2589 write_gcore_file (obfd);
2591 /* Write out the record log. */
2592 /* Write the magic code. */
2593 magic = RECORD_FULL_FILE_MAGIC;
2595 fprintf_unfiltered (gdb_stdlog,
2596 " Writing 4-byte magic cookie "
2597 "RECORD_FULL_FILE_MAGIC (0x%s)\n",
2598 phex_nz (magic, 4));
2599 bfdcore_write (obfd, osec, &magic, sizeof (magic), &bfd_offset);
2601 /* Save the entries to recfd and forward execute to the end of
2603 record_full_list = &record_full_first;
2607 if (record_full_list != &record_full_first)
2610 uint32_t regnum, len, signal, count;
2613 type = record_full_list->type;
2614 bfdcore_write (obfd, osec, &type, sizeof (type), &bfd_offset);
2616 switch (record_full_list->type)
2618 case record_full_reg: /* reg */
2620 fprintf_unfiltered (gdb_stdlog,
2621 " Writing register %d (1 "
2622 "plus %lu plus %d bytes)\n",
2623 record_full_list->u.reg.num,
2624 (unsigned long) sizeof (regnum),
2625 record_full_list->u.reg.len);
2628 regnum = netorder32 (record_full_list->u.reg.num);
2629 bfdcore_write (obfd, osec, ®num,
2630 sizeof (regnum), &bfd_offset);
2633 bfdcore_write (obfd, osec,
2634 record_full_get_loc (record_full_list),
2635 record_full_list->u.reg.len, &bfd_offset);
2638 case record_full_mem: /* mem */
2640 fprintf_unfiltered (gdb_stdlog,
2641 " Writing memory %s (1 plus "
2642 "%lu plus %lu plus %d bytes)\n",
2644 record_full_list->u.mem.addr),
2645 (unsigned long) sizeof (addr),
2646 (unsigned long) sizeof (len),
2647 record_full_list->u.mem.len);
2650 len = netorder32 (record_full_list->u.mem.len);
2651 bfdcore_write (obfd, osec, &len, sizeof (len), &bfd_offset);
2653 /* Write memaddr. */
2654 addr = netorder64 (record_full_list->u.mem.addr);
2655 bfdcore_write (obfd, osec, &addr,
2656 sizeof (addr), &bfd_offset);
2659 bfdcore_write (obfd, osec,
2660 record_full_get_loc (record_full_list),
2661 record_full_list->u.mem.len, &bfd_offset);
2664 case record_full_end:
2666 fprintf_unfiltered (gdb_stdlog,
2667 " Writing record_full_end (1 + "
2668 "%lu + %lu bytes)\n",
2669 (unsigned long) sizeof (signal),
2670 (unsigned long) sizeof (count));
2671 /* Write signal value. */
2672 signal = netorder32 (record_full_list->u.end.sigval);
2673 bfdcore_write (obfd, osec, &signal,
2674 sizeof (signal), &bfd_offset);
2676 /* Write insn count. */
2677 count = netorder32 (record_full_list->u.end.insn_num);
2678 bfdcore_write (obfd, osec, &count,
2679 sizeof (count), &bfd_offset);
2684 /* Execute entry. */
2685 record_full_exec_insn (regcache, gdbarch, record_full_list);
2687 if (record_full_list->next)
2688 record_full_list = record_full_list->next;
2693 /* Reverse execute to cur_record_full_list. */
2696 /* Check for beginning and end of log. */
2697 if (record_full_list == cur_record_full_list)
2700 record_full_exec_insn (regcache, gdbarch, record_full_list);
2702 if (record_full_list->prev)
2703 record_full_list = record_full_list->prev;
2706 do_cleanups (set_cleanups);
2707 gdb_bfd_unref (obfd);
2708 discard_cleanups (old_cleanups);
2711 printf_filtered (_("Saved core file %s with execution log.\n"),
2715 /* record_full_goto_insn -- rewind the record log (forward or backward,
2716 depending on DIR) to the given entry, changing the program state
2720 record_full_goto_insn (struct record_full_entry *entry,
2721 enum exec_direction_kind dir)
2723 struct cleanup *set_cleanups = record_full_gdb_operation_disable_set ();
2724 struct regcache *regcache = get_current_regcache ();
2725 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2727 /* Assume everything is valid: we will hit the entry,
2728 and we will not hit the end of the recording. */
2730 if (dir == EXEC_FORWARD)
2731 record_full_list = record_full_list->next;
2735 record_full_exec_insn (regcache, gdbarch, record_full_list);
2736 if (dir == EXEC_REVERSE)
2737 record_full_list = record_full_list->prev;
2739 record_full_list = record_full_list->next;
2740 } while (record_full_list != entry);
2741 do_cleanups (set_cleanups);
2744 /* Alias for "target record-full". */
2747 cmd_record_full_start (char *args, int from_tty)
2749 execute_command ("target record-full", from_tty);
2753 set_record_full_insn_max_num (char *args, int from_tty,
2754 struct cmd_list_element *c)
2756 if (record_full_insn_num > record_full_insn_max_num)
2758 /* Count down record_full_insn_num while releasing records from list. */
2759 while (record_full_insn_num > record_full_insn_max_num)
2761 record_full_list_release_first ();
2762 record_full_insn_num--;
2767 /* The "set record full" command. */
2770 set_record_full_command (char *args, int from_tty)
2772 printf_unfiltered (_("\"set record full\" must be followed "
2773 "by an apporpriate subcommand.\n"));
2774 help_list (set_record_full_cmdlist, "set record full ", all_commands,
2778 /* The "show record full" command. */
2781 show_record_full_command (char *args, int from_tty)
2783 cmd_show_list (show_record_full_cmdlist, from_tty, "");
2786 /* Provide a prototype to silence -Wmissing-prototypes. */
2787 extern initialize_file_ftype _initialize_record_full;
2790 _initialize_record_full (void)
2792 struct cmd_list_element *c;
2794 /* Init record_full_first. */
2795 record_full_first.prev = NULL;
2796 record_full_first.next = NULL;
2797 record_full_first.type = record_full_end;
2799 init_record_full_ops ();
2800 add_target (&record_full_ops);
2801 add_deprecated_target_alias (&record_full_ops, "record");
2802 init_record_full_core_ops ();
2803 add_target (&record_full_core_ops);
2805 add_prefix_cmd ("full", class_obscure, cmd_record_full_start,
2806 _("Start full execution recording."), &record_full_cmdlist,
2807 "record full ", 0, &record_cmdlist);
2809 c = add_cmd ("restore", class_obscure, cmd_record_full_restore,
2810 _("Restore the execution log from a file.\n\
2811 Argument is filename. File must be created with 'record save'."),
2812 &record_full_cmdlist);
2813 set_cmd_completer (c, filename_completer);
2815 /* Deprecate the old version without "full" prefix. */
2816 c = add_alias_cmd ("restore", "full restore", class_obscure, 1,
2818 set_cmd_completer (c, filename_completer);
2819 deprecate_cmd (c, "record full restore");
2821 add_prefix_cmd ("full", class_support, set_record_full_command,
2822 _("Set record options"), &set_record_full_cmdlist,
2823 "set record full ", 0, &set_record_cmdlist);
2825 add_prefix_cmd ("full", class_support, show_record_full_command,
2826 _("Show record options"), &show_record_full_cmdlist,
2827 "show record full ", 0, &show_record_cmdlist);
2829 /* Record instructions number limit command. */
2830 add_setshow_boolean_cmd ("stop-at-limit", no_class,
2831 &record_full_stop_at_limit, _("\
2832 Set whether record/replay stops when record/replay buffer becomes full."), _("\
2833 Show whether record/replay stops when record/replay buffer becomes full."),
2834 _("Default is ON.\n\
2835 When ON, if the record/replay buffer becomes full, ask user what to do.\n\
2836 When OFF, if the record/replay buffer becomes full,\n\
2837 delete the oldest recorded instruction to make room for each new one."),
2839 &set_record_full_cmdlist, &show_record_full_cmdlist);
2841 c = add_alias_cmd ("stop-at-limit", "full stop-at-limit", no_class, 1,
2842 &set_record_cmdlist);
2843 deprecate_cmd (c, "set record full stop-at-limit");
2845 c = add_alias_cmd ("stop-at-limit", "full stop-at-limit", no_class, 1,
2846 &show_record_cmdlist);
2847 deprecate_cmd (c, "show record full stop-at-limit");
2849 add_setshow_uinteger_cmd ("insn-number-max", no_class,
2850 &record_full_insn_max_num,
2851 _("Set record/replay buffer limit."),
2852 _("Show record/replay buffer limit."), _("\
2853 Set the maximum number of instructions to be stored in the\n\
2854 record/replay buffer. A value of either \"unlimited\" or zero means no\n\
2855 limit. Default is 200000."),
2856 set_record_full_insn_max_num,
2857 NULL, &set_record_full_cmdlist,
2858 &show_record_full_cmdlist);
2860 c = add_alias_cmd ("insn-number-max", "full insn-number-max", no_class, 1,
2861 &set_record_cmdlist);
2862 deprecate_cmd (c, "set record full insn-number-max");
2864 c = add_alias_cmd ("insn-number-max", "full insn-number-max", no_class, 1,
2865 &show_record_cmdlist);
2866 deprecate_cmd (c, "show record full insn-number-max");
2868 add_setshow_boolean_cmd ("memory-query", no_class,
2869 &record_full_memory_query, _("\
2870 Set whether query if PREC cannot record memory change of next instruction."),
2872 Show whether query if PREC cannot record memory change of next instruction."),
2875 When ON, query if PREC cannot record memory change of next instruction."),
2877 &set_record_full_cmdlist,
2878 &show_record_full_cmdlist);
2880 c = add_alias_cmd ("memory-query", "full memory-query", no_class, 1,
2881 &set_record_cmdlist);
2882 deprecate_cmd (c, "set record full memory-query");
2884 c = add_alias_cmd ("memory-query", "full memory-query", no_class, 1,
2885 &show_record_cmdlist);
2886 deprecate_cmd (c, "show record full memory-query");