]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb/record: Define new version of the record-save section
authorGuinevere Larsen <guinevere@redhat.com>
Wed, 15 Apr 2026 13:17:29 +0000 (10:17 -0300)
committerGuinevere Larsen <guinevere@redhat.com>
Fri, 3 Jul 2026 13:33:22 +0000 (10:33 -0300)
With the changes to the internal representation of the history, we can
no longer support the previous record save format. This commit makes it
official, documenting the new format and changing the magic number.

Reviewed-By: Christina Schimpe <christina.schimpe@intel.com>
Reviewed-by: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Approved-By: Guinevere Larsen <guinevere@redhat.com>
gdb/NEWS
gdb/record-full.c

index d5214a98a5750642ccc0b214defaee581c97643c..343828a85dd83d64a0470dccff40b4bb9f2b7e06 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
 
 * Support for the binary file format dbx has been removed.
 
+* The format for a saved execution record, created when the command
+  'record save' is used, has been updated, and previous formats are
+  no longer supported.
+
 * When connected to an extended-remote target GDB can now
   automatically set the 'remote exec-file' in some cases.  GDB will
   auto set the remote exec-file only if the remote wasn't started with
index 956134ad9c5562b8321f1a55f013e1d39083dded..e6942b13dbac393c9821de77f236eea2d155fdc2 100644 (file)
@@ -79,7 +79,8 @@
   ((record_full_next_insn != record_full_list.size ()) \
     || ::execution_direction == EXEC_REVERSE)
 
-#define RECORD_FULL_FILE_MAGIC netorder32(0x20091016)
+#define RECORD_FULL_FILE_MAGIC_OLD     netorder32(0x20091016)
+#define RECORD_FULL_FILE_MAGIC netorder32(0x20260415)
 
 /* These are the core structs of the process record functionality.
 
@@ -2249,6 +2250,27 @@ record_full_core_target::has_execution (inferior *inf)
        8 bytes: memory address (network byte order).
        n bytes: memory value (n == memory length).
 
+   Version 3 (all numbers are in network order).
+     4 bytes: Magic number (0x20260415).
+       NOTE: be sure to change whenever this file format changes!
+
+    Records:
+      record_full_instruction:
+       1 byte: signal.
+       4 bytes: number of reg and mem entries for this instruction.
+       4 bytes: instruction sequence number.
+       4 bytes: PC register ID.
+       N bytes: PC address of instruction (N == size of PC).
+       Effects:
+         record_full_reg:
+           1 byte: record_type (record_full_reg, see enum record_full_type).
+           4 bytes: Register ID.
+           n bytes: register value (n == actual register size).
+         record_full_mem:
+           1 byte: record_type (record_full_mem, see enum record_full_type).
+           4 bytes: memory length.
+           8 bytes: memory address.
+           n bytes: memory value (n = memory length).
 */
 
 /* bfdcore_read -- read bytes from a core file section.  */
@@ -2444,9 +2466,14 @@ record_full_restore (struct bfd &cbfd)
   /* Check the magic code.  */
   bfdcore_read (&cbfd, osec, &magic, sizeof (magic), &bfd_offset);
   if (magic != RECORD_FULL_FILE_MAGIC)
-    error (_("Version mismatch or file format error in core file %ps."),
-          styled_string (file_name_style.style (),
-                         bfd_get_filename (&cbfd)));
+    {
+      if (magic == RECORD_FULL_FILE_MAGIC_OLD)
+       error (_("This old recording format is no longer supported."));
+      else
+       error (_("Version mismatch or file format error in core file %ps."),
+              styled_string (file_name_style.style (),
+                             bfd_get_filename (&cbfd)));
+    }
   if (record_debug)
     gdb_printf (gdb_stdlog,
                "  Reading 4-byte magic cookie "