]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Implement -trace-save.
authorVladimir Prus <vladimir@codesourcery.com>
Tue, 23 Mar 2010 22:05:46 +0000 (22:05 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Tue, 23 Mar 2010 22:05:46 +0000 (22:05 +0000)
* mi-cmds.h (mi_cmds_trace_save): Declare.
* mi-cmds.c (mi_cmds): Register -trace-save.
* mi/mi-main.c (mi_cmd_trace_save): New.
* remote.c (remote_save_trace_data): Take const parameter.
* target.h (struct target_ops::to_save_trace_data): Take
const parameter.
* target.c (update_current_target): Adjust to the above.
* tracepoint.c (trave_save): New, extracted from
(trace_save_command): ...this.
(tfile_trace_find): Remove message that is unnecessary now
that 'tfind' reports found frame.
* tracepoint.h (trace_save): Declare.

gdb/ChangeLog
gdb/mi/mi-cmds.c
gdb/mi/mi-cmds.h
gdb/mi/mi-main.c
gdb/remote.c
gdb/target.c
gdb/target.h
gdb/tracepoint.c
gdb/tracepoint.h

index a50604d0fc18baec72cefc45b6cb67163b509e52..21a1c38204273935cd4e0f9be93263dd03de6a72 100644 (file)
@@ -1,3 +1,20 @@
+2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Implement -trace-save.
+
+       * mi-cmds.h (mi_cmds_trace_save): Declare.
+       * mi-cmds.c (mi_cmds): Register -trace-save.
+       * mi/mi-main.c (mi_cmd_trace_save): New.
+       * remote.c (remote_save_trace_data): Take const parameter.
+       * target.h (struct target_ops::to_save_trace_data): Take
+       const parameter.
+       * target.c (update_current_target): Adjust to the above.
+       * tracepoint.c (trave_save): New, extracted from
+       (trace_save_command): ...this.
+       (tfile_trace_find): Remove message that is unnecessary now
+       that 'tfind' reports found frame.
+       * tracepoint.h (trace_save): Declare.
+
 2010-03-24  Vladimir Prus  <vladimir@codesourcery.com>
 
        Implement -trace-find.
index f43069808c90cc7d5ab154812f6441ecbb5d0faf..92311e8b470072bf7c8d9c45d5b389ba0d942ff8 100644 (file)
@@ -109,6 +109,7 @@ struct mi_cmd mi_cmds[] =
   { "trace-define-variable", { NULL, 0 }, mi_cmd_trace_define_variable },
   { "trace-find", { NULL, 0 }, mi_cmd_trace_find },
   { "trace-list-variables", { NULL, 0 }, mi_cmd_trace_list_variables },
+  { "trace-save", { NULL, 0 }, mi_cmd_trace_save },
   { "trace-start", { NULL, 0 }, mi_cmd_trace_start },
   { "trace-status", { NULL, 0 }, mi_cmd_trace_status },
   { "trace-stop", { NULL, 0 }, mi_cmd_trace_stop },
index 32e0ec44d487832e731e59647b5fd075a78d5b16..5954aef1824c3b7ca6d0065bc70df91fde2bad53 100644 (file)
@@ -92,6 +92,7 @@ extern mi_cmd_argv_ftype mi_cmd_thread_select;
 extern mi_cmd_argv_ftype mi_cmd_trace_define_variable;
 extern mi_cmd_argv_ftype mi_cmd_trace_find;
 extern mi_cmd_argv_ftype mi_cmd_trace_list_variables;
+extern mi_cmd_argv_ftype mi_cmd_trace_save;
 extern mi_cmd_argv_ftype mi_cmd_trace_start;
 extern mi_cmd_argv_ftype mi_cmd_trace_status;
 extern mi_cmd_argv_ftype mi_cmd_trace_stop;
index b016436f6f510a159abbf5151845f247de416456..340ac68ef6cb6ec5e404ef6f4c9c6f17e7cac468 100644 (file)
@@ -2210,6 +2210,32 @@ mi_cmd_trace_find (char *command, char **argv, int argc)
     }
 }
 
+void
+mi_cmd_trace_save (char *command, char **argv, int argc)
+{
+  int target_saves = 0;
+  char *filename;
+
+  if (argc != 1 && argc != 2)
+    error (_("Usage: -trace-save [-r] filename"));
+
+  if (argc == 2)
+    {
+      filename = argv[1];
+      if (strcmp (argv[0], "-r") == 0)
+       target_saves = 1;
+      else
+       error (_("Invalid option: %s"), argv[0]);
+    }
+  else
+    {
+      filename = argv[0];
+    }
+
+  trace_save (filename, target_saves);
+}
+
+
 void
 mi_cmd_trace_start (char *command, char **argv, int argc)
 {
index d041288d10736f4e396f152549d71d38d321e0cc..bb19b723c616aed150d84fb0f9bb89841c9a9b35 100644 (file)
@@ -9583,7 +9583,7 @@ remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
 }
 
 static int
-remote_save_trace_data (char *filename)
+remote_save_trace_data (const char *filename)
 {
   struct remote_state *rs = get_remote_state ();
   char *p, *reply;
index bd5711f19a1d9b487d90720f6b34226385d1f1d7..24d29850348ada80a3cb6a2aabdcde330f169a03 100644 (file)
@@ -836,7 +836,7 @@ update_current_target (void)
            (int (*) (int, LONGEST *))
            return_zero);
   de_fault (to_save_trace_data,
-           (int (*) (char *))
+           (int (*) (const char *))
            tcomplain);
   de_fault (to_upload_tracepoints,
            (int (*) (struct uploaded_tp **))
index 46f5e7ed3de76f160163b4a01becda12d0c10172..9e87440ae3e0904b9e1d24c23f7bb36bcbea90c9 100644 (file)
@@ -653,7 +653,7 @@ struct target_ops
        location pointed to by VAL, else returning 0.  */
     int (*to_get_trace_state_variable_value) (int tsv, LONGEST *val);
 
-    int (*to_save_trace_data) (char *filename);
+    int (*to_save_trace_data) (const char *filename);
 
     int (*to_upload_tracepoints) (struct uploaded_tp **utpp);
 
index 02992604195552aef71d7a40b7919f50ac678d58..aab57d7c383f59ccb591901605218be43fbf8ac9 100644 (file)
@@ -2405,13 +2405,15 @@ trace_dump_command (char *args, int from_tty)
 
 extern int trace_regblock_size;
 
-static void
-trace_save_command (char *args, int from_tty)
+/* Save tracepoint data to file named FILENAME.  If TARGET_DOES_SAVE is
+   non-zero, the save is performed on the target, otherwise GDB obtains all
+   trace data and saves it locally.  */
+
+void
+trace_save (const char *filename, int target_does_save)
 {
-  char **argv;
-  char *filename = NULL, *pathname;
-  int target_does_save = 0;
   struct cleanup *cleanup;
+  char *pathname;
   struct trace_status *ts = current_trace_status ();
   int err, status;
   FILE *fp;
@@ -2424,25 +2426,6 @@ trace_save_command (char *args, int from_tty)
   gdb_byte buf[MAX_TRACE_UPLOAD];
   int written;
 
-  if (args == NULL)
-    error_no_arg (_("file in which to save trace data"));
-
-  argv = gdb_buildargv (args);
-  make_cleanup_freeargv (argv);
-
-  for (; *argv; ++argv)
-    {
-      if (strcmp (*argv, "-r") == 0)
-       target_does_save = 1;
-      else if (**argv == '-')
-       error (_("unknown option `%s'"), *argv);
-      else
-       filename = *argv;
-    }
-
-  if (!filename)
-    error_no_arg (_("file in which to save trace data"));
-
   /* If the target is to save the data to a file on its own, then just
      send the command and be done with it.  */
   if (target_does_save)
@@ -2458,13 +2441,13 @@ trace_save_command (char *args, int from_tty)
      target is losing, we can get out without touching files.  */
   status = target_get_trace_status (ts);
 
-  pathname = tilde_expand (args);
+  pathname = tilde_expand (filename);
   cleanup = make_cleanup (xfree, pathname);
 
   fp = fopen (pathname, "w");
   if (!fp)
     error (_("Unable to open file '%s' for saving trace data (%s)"),
-          args, safe_strerror (errno));
+          filename, safe_strerror (errno));
   make_cleanup_fclose (fp);
 
   /* Write a file header, with a high-bit-set char to indicate a
@@ -2576,8 +2559,41 @@ trace_save_command (char *args, int from_tty)
     perror_with_name (pathname);
 
   do_cleanups (cleanup);
+}
+
+static void
+trace_save_command (char *args, int from_tty)
+{
+  int target_does_save = 0;
+  char **argv;
+  char *filename = NULL;
+  struct cleanup *back_to;
+
+  if (args == NULL)
+    error_no_arg (_("file in which to save trace data"));
+
+  argv = gdb_buildargv (args);
+  back_to = make_cleanup_freeargv (argv);
+
+  for (; *argv; ++argv)
+    {
+      if (strcmp (*argv, "-r") == 0)
+       target_does_save = 1;
+      else if (**argv == '-')
+       error (_("unknown option `%s'"), *argv);
+      else
+       filename = *argv;
+    }
+
+  if (!filename)
+    error_no_arg (_("file in which to save trace data"));
+
+  trace_save (filename, target_does_save);
+
   if (from_tty)
     printf_filtered (_("Trace data saved to file '%s'.\n"), args);
+
+  do_cleanups (back_to);
 }
 
 /* Tell the target what to do with an ongoing tracing run if GDB
@@ -3426,7 +3442,6 @@ tfile_trace_find (enum trace_find_type type, int num,
        }
       if (found)
        {
-         printf_filtered ("Found traceframe %d.\n", tfnum);
          if (tpp)
            *tpp = tpnum;
          cur_offset = offset;
index b9555b784859d085e7d139b791f0cf37e038d949..723baa2401ae24749707643195c7980ef9c1db3e 100644 (file)
@@ -184,4 +184,6 @@ extern void tfind_1 (enum trace_find_type type, int num,
                     ULONGEST addr1, ULONGEST addr2,
                     int from_tty);
 
+extern void trace_save (const char *filename, int target_does_save);
+
 #endif /* TRACEPOINT_H */