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