sim: profile: implement --profile-file backend
[deliverable/binutils-gdb.git] / gdb / main.c
index 27870c77fe0aae84d1b978ea4f705785f6c80924..ec2a2fdab2a565867b82f3f3ea85de9cdcadb149 100644 (file)
@@ -2,7 +2,7 @@
 
    Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
    1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
-   2009 Free Software Foundation, Inc.
+   2009, 2010 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -39,8 +39,8 @@
 
 #include "interps.h"
 #include "main.h"
-
 #include "source.h"
+#include "cli/cli-cmds.h"
 
 /* If nonzero, display time usage both at startup and for each command.  */
 
@@ -76,6 +76,9 @@ struct ui_file *gdb_stdtargin;
 struct ui_file *gdb_stdtarg;
 struct ui_file *gdb_stdtargerr;
 
+/* True if --batch or --batch-silent was seen.  */
+int batch_flag = 0;
+
 /* Support for the --batch-silent option.  */
 int batch_silent = 0;
 
@@ -247,7 +250,6 @@ captured_main (void *data)
   int argc = context->argc;
   char **argv = context->argv;
   static int quiet = 0;
-  static int batch = 0;
   static int set_args = 0;
 
   /* Pointers to various arguments from command line.  */
@@ -346,8 +348,6 @@ captured_main (void *data)
   gdb_datadir = relocate_directory (argv[0], GDB_DATADIR,
                                    GDB_DATADIR_RELOCATABLE);
 
-  get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
-
 #ifdef RELOC_SRCDIR
   add_substitute_path_rule (RELOC_SRCDIR,
                            make_relative_prefix (argv[0], BINDIR,
@@ -388,7 +388,7 @@ captured_main (void *data)
       {"nx", no_argument, &inhibit_gdbinit, 1},
       {"n", no_argument, &inhibit_gdbinit, 1},
       {"batch-silent", no_argument, 0, 'B'},
-      {"batch", no_argument, &batch, 1},
+      {"batch", no_argument, &batch_flag, 1},
       {"epoch", no_argument, &epoch_interface, 1},
 
     /* This is a synonym for "--annotate=1".  --annotate is now preferred,
@@ -434,7 +434,7 @@ captured_main (void *data)
       {"statistics", no_argument, 0, OPT_STATISTICS},
       {"write", no_argument, &write_files, 1},
       {"args", no_argument, &set_args, 1},
-     {"l", required_argument, 0, 'l'},
+      {"l", required_argument, 0, 'l'},
       {"return-child-result", no_argument, &return_child_result, 1},
       {0, no_argument, 0, 0}
     };
@@ -539,7 +539,7 @@ captured_main (void *data)
              }
            break;
          case 'B':
-           batch = batch_silent = 1;
+           batch_flag = batch_silent = 1;
            gdb_stdout = ui_file_new();
            break;
 #ifdef GDBTK
@@ -633,55 +633,7 @@ extern int gdbtk_test (char *);
        use_windows = 0;
       }
 
-    if (set_args)
-      {
-       /* The remaining options are the command-line options for the
-          inferior.  The first one is the sym/exec file, and the rest
-          are arguments.  */
-       if (optind >= argc)
-         {
-           fprintf_unfiltered (gdb_stderr,
-                               _("%s: `--args' specified but no program specified\n"),
-                               argv[0]);
-           exit (1);
-         }
-       symarg = argv[optind];
-       execarg = argv[optind];
-       ++optind;
-       set_inferior_args_vector (argc - optind, &argv[optind]);
-      }
-    else
-      {
-       /* OK, that's all the options.  */
-
-       /* The first argument, if specified, is the name of the
-          executable.  */
-       if (optind < argc)
-         {
-           symarg = argv[optind];
-           execarg = argv[optind];
-           optind++;
-         }
-
-       /* If the user hasn't already specified a PID or the name of a
-          core file, then a second optional argument is allowed.  If
-          present, this argument should be interpreted as either a
-          PID or a core file, whichever works.  */
-       if (pidarg == NULL && corearg == NULL && optind < argc)
-         {
-           pid_or_core_arg = argv[optind];
-           optind++;
-         }
-
-       /* Any argument left on the command line is unexpected and
-          will be ignored.  Inform the user.  */
-       if (optind < argc)
-         fprintf_unfiltered (gdb_stderr, _("\
-Excess command line arguments ignored. (%s%s)\n"),
-                             argv[optind],
-                             (optind == argc - 1) ? "" : " ...");
-      }
-    if (batch)
+    if (batch_flag)
       quiet = 1;
   }
 
@@ -689,6 +641,62 @@ Excess command line arguments ignored. (%s%s)\n"),
      control of the console via the deprecated_init_ui_hook ().  */
   gdb_init (argv[0]);
 
+  /* Now that gdb_init has created the initial inferior, we're in position
+     to set args for that inferior.  */
+  if (set_args)
+    {
+      /* The remaining options are the command-line options for the
+        inferior.  The first one is the sym/exec file, and the rest
+        are arguments.  */
+      if (optind >= argc)
+       {
+         fprintf_unfiltered (gdb_stderr,
+                             _("%s: `--args' specified but no program specified\n"),
+                             argv[0]);
+         exit (1);
+       }
+      symarg = argv[optind];
+      execarg = argv[optind];
+      ++optind;
+      set_inferior_args_vector (argc - optind, &argv[optind]);
+    }
+  else
+    {
+      /* OK, that's all the options.  */
+
+      /* The first argument, if specified, is the name of the
+        executable.  */
+      if (optind < argc)
+       {
+         symarg = argv[optind];
+         execarg = argv[optind];
+         optind++;
+       }
+
+      /* If the user hasn't already specified a PID or the name of a
+        core file, then a second optional argument is allowed.  If
+        present, this argument should be interpreted as either a
+        PID or a core file, whichever works.  */
+      if (pidarg == NULL && corearg == NULL && optind < argc)
+       {
+         pid_or_core_arg = argv[optind];
+         optind++;
+       }
+
+      /* Any argument left on the command line is unexpected and
+        will be ignored.  Inform the user.  */
+      if (optind < argc)
+       fprintf_unfiltered (gdb_stderr, _("\
+Excess command line arguments ignored. (%s%s)\n"),
+                           argv[optind],
+                           (optind == argc - 1) ? "" : " ...");
+    }
+
+  /* Lookup gdbinit files. Note that the gdbinit file name may be overriden
+     during file initialization, so get_init_files should be called after
+     gdb_init.  */
+  get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
+
   /* Do these (and anything which might call wrap_here or *_filtered)
      after initialize_all_files() but before the interpreter has been
      installed.  Otherwize the help/version messages will be eaten by
@@ -797,15 +805,15 @@ Excess command line arguments ignored. (%s%s)\n"),
       /* The exec file and the symbol-file are the same.  If we can't
          open it, better only print one error message.
          catch_command_errors returns non-zero on success! */
-      if (catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL))
-       catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
+      if (catch_command_errors (exec_file_attach, execarg, !batch_flag, RETURN_MASK_ALL))
+       catch_command_errors (symbol_file_add_main, symarg, !batch_flag, RETURN_MASK_ALL);
     }
   else
     {
       if (execarg != NULL)
-       catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL);
+       catch_command_errors (exec_file_attach, execarg, !batch_flag, RETURN_MASK_ALL);
       if (symarg != NULL)
-       catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
+       catch_command_errors (symbol_file_add_main, symarg, !batch_flag, RETURN_MASK_ALL);
     }
 
   if (corearg && pidarg)
@@ -814,10 +822,10 @@ Can't attach to process and specify a core file at the same time."));
 
   if (corearg != NULL)
     catch_command_errors (core_file_command, corearg,
-                         !batch, RETURN_MASK_ALL);
+                         !batch_flag, RETURN_MASK_ALL);
   else if (pidarg != NULL)
     catch_command_errors (attach_command, pidarg,
-                         !batch, RETURN_MASK_ALL);
+                         !batch_flag, RETURN_MASK_ALL);
   else if (pid_or_core_arg)
     {
       /* The user specified 'gdb program pid' or gdb program core'.
@@ -827,17 +835,17 @@ Can't attach to process and specify a core file at the same time."));
       if (isdigit (pid_or_core_arg[0]))
        {
          if (catch_command_errors (attach_command, pid_or_core_arg,
-                                   !batch, RETURN_MASK_ALL) == 0)
+                                   !batch_flag, RETURN_MASK_ALL) == 0)
            catch_command_errors (core_file_command, pid_or_core_arg,
-                                 !batch, RETURN_MASK_ALL);
+                                 !batch_flag, RETURN_MASK_ALL);
        }
       else /* Can't be a pid, better be a corefile.  */
        catch_command_errors (core_file_command, pid_or_core_arg,
-                             !batch, RETURN_MASK_ALL);
+                             !batch_flag, RETURN_MASK_ALL);
     }
 
   if (ttyarg != NULL)
-    catch_command_errors (tty_command, ttyarg, !batch, RETURN_MASK_ALL);
+    set_inferior_io_terminal (ttyarg);
 
   /* Error messages should no longer be distinguished with extra output. */
   error_pre_print = NULL;
@@ -853,17 +861,17 @@ Can't attach to process and specify a core file at the same time."));
     {
       if (cmdarg[i].type == CMDARG_FILE)
         catch_command_errors (source_script, cmdarg[i].string,
-                             !batch, RETURN_MASK_ALL);
+                             !batch_flag, RETURN_MASK_ALL);
       else  /* cmdarg[i].type == CMDARG_COMMAND */
         catch_command_errors (execute_command, cmdarg[i].string,
-                             !batch, RETURN_MASK_ALL);
+                             !batch_flag, RETURN_MASK_ALL);
     }
   xfree (cmdarg);
 
   /* Read in the old history after all the command files have been read. */
   init_history ();
 
-  if (batch)
+  if (batch_flag)
     {
       /* We have hit the end of the batch file.  */
       quit_force (NULL, 0);
This page took 0.026507 seconds and 4 git commands to generate.