2011-10-31 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / reverse.c
index d30116083fe4ad9849fb6b3b125186184eaee802..1437b406eced0ecd3e3496a356b5472066261a15 100644 (file)
@@ -1,6 +1,7 @@
 /* Reverse execution and reverse debugging.
 
-   Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
+   Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -23,6 +24,7 @@
 #include "top.h"
 #include "cli/cli-cmds.h"
 #include "cli/cli-decode.h"
+#include "cli/cli-utils.h"
 #include "inferior.h"
 #include "regcache.h"
 
@@ -48,9 +50,6 @@ exec_reverse_once (char *cmd, char *args, int from_tty)
   enum exec_direction_kind dir = execution_direction;
   struct cleanup *old_chain;
 
-  if (dir == EXEC_ERROR)
-    error (_("Target %s does not support this command."), target_shortname);
-
   if (dir == EXEC_REVERSE)
     error (_("Already in reverse mode.  Use '%s' or 'set exec-dir forward'."),
           cmd);
@@ -172,15 +171,20 @@ save_bookmark_command (char *args, int from_tty)
 /* Implement "delete bookmark" command.  */
 
 static int
-delete_one_bookmark (struct bookmark *b)
+delete_one_bookmark (int num)
 {
-  struct bookmark *b1;
+  struct bookmark *b1, *b;
+
+  /* Find bookmark with corresponding number.  */
+  ALL_BOOKMARKS (b)
+    if (b->number == num)
+      break;
 
   /* Special case, first item in list.  */
   if (b == bookmark_chain)
     bookmark_chain = b->next;
 
-  /* Find bookmark preceeding "marked" one, so we can unlink.  */
+  /* Find bookmark preceding "marked" one, so we can unlink.  */
   if (b)
     {
       ALL_BOOKMARKS (b1)
@@ -213,8 +217,9 @@ delete_all_bookmarks (void)
 static void
 delete_bookmark_command (char *args, int from_tty)
 {
-  struct bookmark *b, *b1;
-  unsigned long num;
+  struct bookmark *b;
+  int num;
+  struct get_number_or_range_state state;
 
   if (bookmark_chain == NULL)
     {
@@ -230,15 +235,14 @@ delete_bookmark_command (char *args, int from_tty)
       return;
     }
 
-  num = strtoul (args, NULL, 0);
-  /* Find bookmark with corresponding number.  */
-  ALL_BOOKMARKS (b)
-    if (b->number == num)
-      break;
-
-  if (!delete_one_bookmark (b))
-    /* Not found.  */
-    error (_("delete bookmark: no bookmark found for '%s'."), args);
+  init_number_or_range (&state, args);
+  while (!state.finished)
+    {
+      num = get_number_or_range (&state);
+      if (!delete_one_bookmark (num))
+       /* Not found.  */
+       warning (_("No bookmark #%d."), num);
+    }
 }
 
 /* Implement "goto-bookmark" command.  */
@@ -271,7 +275,7 @@ goto_bookmark_command (char *args, int from_tty)
     }
 
   /* General case.  Bookmark identified by bookmark number.  */
-  num = strtoul (args, NULL, 0);
+  num = get_number (&args);
   ALL_BOOKMARKS (b)
     if (b->number == num)
       break;
@@ -286,33 +290,53 @@ goto_bookmark_command (char *args, int from_tty)
   error (_("goto-bookmark: no bookmark found for '%s'."), args);
 }
 
+static int
+bookmark_1 (int bnum)
+{
+  struct gdbarch *gdbarch = get_regcache_arch (get_current_regcache ());
+  struct bookmark *b;
+  int matched = 0;
+
+  ALL_BOOKMARKS (b)
+  {
+    if (bnum == -1 || bnum == b->number)
+      {
+       printf_filtered ("   %d       %s    '%s'\n",
+                        b->number,
+                        paddress (gdbarch, b->pc),
+                        b->opaque_data);
+       matched++;
+      }
+  }
+
+  if (bnum > 0 && matched == 0)
+    printf_filtered ("No bookmark #%d\n", bnum);
+
+  return matched;
+}
+
 /* Implement "info bookmarks" command.  */
 
 static void
 bookmarks_info (char *args, int from_tty)
 {
-  struct bookmark *b;
   int bnum = -1;
-  struct gdbarch *gdbarch;
-
-  if (args)
-    bnum = parse_and_eval_long (args);
 
   if (!bookmark_chain)
+    printf_filtered (_("No bookmarks.\n"));
+  else if (args == NULL || *args == '\0')
+    bookmark_1 (-1);
+  else
     {
-      printf_filtered (_("No bookmarks.\n"));
-      return;
+      struct get_number_or_range_state state;
+
+      init_number_or_range (&state, args);
+      while (!state.finished)
+       {
+         bnum = get_number_or_range (&state);
+         bookmark_1 (bnum);
+       }
     }
-
-  gdbarch = get_regcache_arch (get_current_regcache ());
-  printf_filtered (_("Bookmark    Address     Opaque\n"));
-  printf_filtered (_("   ID                    Data \n"));
-
-  ALL_BOOKMARKS (b)
-    printf_filtered ("   %d       %s    '%s'\n",
-                    b->number,
-                    paddress (gdbarch, b->pc),
-                    b->opaque_data);
 }
 
 
@@ -369,7 +393,8 @@ execution history that can be returned to later in the same debug \n\
 session."));
   add_cmd ("bookmark", class_bookmark, delete_bookmark_command, _("\
 Delete a bookmark from the bookmark list.\n\
-Argument is a bookmark number, or no argument to delete all bookmarks.\n"),
+Argument is a bookmark number or numbers,\n\
+ or no argument to delete all bookmarks.\n"),
           &deletelist);
   add_com ("goto-bookmark", class_bookmark, goto_bookmark_command, _("\
 Go to an earlier-bookmarked point in the program's execution history.\n\
This page took 0.026792 seconds and 4 git commands to generate.