OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [exceptions.c] - Diff between revs 827 and 840

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/* Exception (throw catch) mechanism, for GDB, the GNU debugger.
/* Exception (throw catch) mechanism, for GDB, the GNU debugger.
 
 
   Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
   Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
   1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
   1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include "exceptions.h"
#include "exceptions.h"
#include "breakpoint.h"
#include "breakpoint.h"
#include "target.h"
#include "target.h"
#include "inferior.h"
#include "inferior.h"
#include "annotate.h"
#include "annotate.h"
#include "ui-out.h"
#include "ui-out.h"
#include "gdb_assert.h"
#include "gdb_assert.h"
#include "gdb_string.h"
#include "gdb_string.h"
#include "serial.h"
#include "serial.h"
 
 
const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL };
const struct gdb_exception exception_none = { 0, GDB_NO_ERROR, NULL };
 
 
/* Possible catcher states.  */
/* Possible catcher states.  */
enum catcher_state {
enum catcher_state {
  /* Initial state, a new catcher has just been created.  */
  /* Initial state, a new catcher has just been created.  */
  CATCHER_CREATED,
  CATCHER_CREATED,
  /* The catch code is running.  */
  /* The catch code is running.  */
  CATCHER_RUNNING,
  CATCHER_RUNNING,
  CATCHER_RUNNING_1,
  CATCHER_RUNNING_1,
  /* The catch code threw an exception.  */
  /* The catch code threw an exception.  */
  CATCHER_ABORTING
  CATCHER_ABORTING
};
};
 
 
/* Possible catcher actions.  */
/* Possible catcher actions.  */
enum catcher_action {
enum catcher_action {
  CATCH_ITER,
  CATCH_ITER,
  CATCH_ITER_1,
  CATCH_ITER_1,
  CATCH_THROWING
  CATCH_THROWING
};
};
 
 
struct catcher
struct catcher
{
{
  enum catcher_state state;
  enum catcher_state state;
  /* Jump buffer pointing back at the exception handler.  */
  /* Jump buffer pointing back at the exception handler.  */
  EXCEPTIONS_SIGJMP_BUF buf;
  EXCEPTIONS_SIGJMP_BUF buf;
  /* Status buffer belonging to the exception handler.  */
  /* Status buffer belonging to the exception handler.  */
  volatile struct gdb_exception *exception;
  volatile struct gdb_exception *exception;
  /* Saved/current state.  */
  /* Saved/current state.  */
  int mask;
  int mask;
  struct ui_out *saved_uiout;
  struct ui_out *saved_uiout;
  struct cleanup *saved_cleanup_chain;
  struct cleanup *saved_cleanup_chain;
  /* Back link.  */
  /* Back link.  */
  struct catcher *prev;
  struct catcher *prev;
};
};
 
 
/* Where to go for throw_exception().  */
/* Where to go for throw_exception().  */
static struct catcher *current_catcher;
static struct catcher *current_catcher;
 
 
EXCEPTIONS_SIGJMP_BUF *
EXCEPTIONS_SIGJMP_BUF *
exceptions_state_mc_init (struct ui_out *func_uiout,
exceptions_state_mc_init (struct ui_out *func_uiout,
                          volatile struct gdb_exception *exception,
                          volatile struct gdb_exception *exception,
                          return_mask mask)
                          return_mask mask)
{
{
  struct catcher *new_catcher = XZALLOC (struct catcher);
  struct catcher *new_catcher = XZALLOC (struct catcher);
 
 
  /* Start with no exception, save it's address.  */
  /* Start with no exception, save it's address.  */
  exception->reason = 0;
  exception->reason = 0;
  exception->error = GDB_NO_ERROR;
  exception->error = GDB_NO_ERROR;
  exception->message = NULL;
  exception->message = NULL;
  new_catcher->exception = exception;
  new_catcher->exception = exception;
 
 
  new_catcher->mask = mask;
  new_catcher->mask = mask;
 
 
  /* Override the global ``struct ui_out'' builder.  */
  /* Override the global ``struct ui_out'' builder.  */
  new_catcher->saved_uiout = uiout;
  new_catcher->saved_uiout = uiout;
  uiout = func_uiout;
  uiout = func_uiout;
 
 
  /* Prevent error/quit during FUNC from calling cleanups established
  /* Prevent error/quit during FUNC from calling cleanups established
     prior to here. */
     prior to here. */
  new_catcher->saved_cleanup_chain = save_cleanups ();
  new_catcher->saved_cleanup_chain = save_cleanups ();
 
 
  /* Push this new catcher on the top.  */
  /* Push this new catcher on the top.  */
  new_catcher->prev = current_catcher;
  new_catcher->prev = current_catcher;
  current_catcher = new_catcher;
  current_catcher = new_catcher;
  new_catcher->state = CATCHER_CREATED;
  new_catcher->state = CATCHER_CREATED;
 
 
  return &new_catcher->buf;
  return &new_catcher->buf;
}
}
 
 
static void
static void
catcher_pop (void)
catcher_pop (void)
{
{
  struct catcher *old_catcher = current_catcher;
  struct catcher *old_catcher = current_catcher;
  current_catcher = old_catcher->prev;
  current_catcher = old_catcher->prev;
 
 
  /* Restore the cleanup chain, the error/quit messages, and the uiout
  /* Restore the cleanup chain, the error/quit messages, and the uiout
     builder, to their original states. */
     builder, to their original states. */
 
 
  restore_cleanups (old_catcher->saved_cleanup_chain);
  restore_cleanups (old_catcher->saved_cleanup_chain);
 
 
  uiout = old_catcher->saved_uiout;
  uiout = old_catcher->saved_uiout;
 
 
  xfree (old_catcher);
  xfree (old_catcher);
}
}
 
 
/* Catcher state machine.  Returns non-zero if the m/c should be run
/* Catcher state machine.  Returns non-zero if the m/c should be run
   again, zero if it should abort.  */
   again, zero if it should abort.  */
 
 
static int
static int
exceptions_state_mc (enum catcher_action action)
exceptions_state_mc (enum catcher_action action)
{
{
  switch (current_catcher->state)
  switch (current_catcher->state)
    {
    {
    case CATCHER_CREATED:
    case CATCHER_CREATED:
      switch (action)
      switch (action)
        {
        {
        case CATCH_ITER:
        case CATCH_ITER:
          /* Allow the code to run the catcher.  */
          /* Allow the code to run the catcher.  */
          current_catcher->state = CATCHER_RUNNING;
          current_catcher->state = CATCHER_RUNNING;
          return 1;
          return 1;
        default:
        default:
          internal_error (__FILE__, __LINE__, _("bad state"));
          internal_error (__FILE__, __LINE__, _("bad state"));
        }
        }
    case CATCHER_RUNNING:
    case CATCHER_RUNNING:
      switch (action)
      switch (action)
        {
        {
        case CATCH_ITER:
        case CATCH_ITER:
          /* No error/quit has occured.  Just clean up.  */
          /* No error/quit has occured.  Just clean up.  */
          catcher_pop ();
          catcher_pop ();
          return 0;
          return 0;
        case CATCH_ITER_1:
        case CATCH_ITER_1:
          current_catcher->state = CATCHER_RUNNING_1;
          current_catcher->state = CATCHER_RUNNING_1;
          return 1;
          return 1;
        case CATCH_THROWING:
        case CATCH_THROWING:
          current_catcher->state = CATCHER_ABORTING;
          current_catcher->state = CATCHER_ABORTING;
          /* See also throw_exception.  */
          /* See also throw_exception.  */
          return 1;
          return 1;
        default:
        default:
          internal_error (__FILE__, __LINE__, _("bad switch"));
          internal_error (__FILE__, __LINE__, _("bad switch"));
        }
        }
    case CATCHER_RUNNING_1:
    case CATCHER_RUNNING_1:
      switch (action)
      switch (action)
        {
        {
        case CATCH_ITER:
        case CATCH_ITER:
          /* The did a "break" from the inner while loop.  */
          /* The did a "break" from the inner while loop.  */
          catcher_pop ();
          catcher_pop ();
          return 0;
          return 0;
        case CATCH_ITER_1:
        case CATCH_ITER_1:
          current_catcher->state = CATCHER_RUNNING;
          current_catcher->state = CATCHER_RUNNING;
          return 0;
          return 0;
        case CATCH_THROWING:
        case CATCH_THROWING:
          current_catcher->state = CATCHER_ABORTING;
          current_catcher->state = CATCHER_ABORTING;
          /* See also throw_exception.  */
          /* See also throw_exception.  */
          return 1;
          return 1;
        default:
        default:
          internal_error (__FILE__, __LINE__, _("bad switch"));
          internal_error (__FILE__, __LINE__, _("bad switch"));
        }
        }
    case CATCHER_ABORTING:
    case CATCHER_ABORTING:
      switch (action)
      switch (action)
        {
        {
        case CATCH_ITER:
        case CATCH_ITER:
          {
          {
            struct gdb_exception exception = *current_catcher->exception;
            struct gdb_exception exception = *current_catcher->exception;
            if (current_catcher->mask & RETURN_MASK (exception.reason))
            if (current_catcher->mask & RETURN_MASK (exception.reason))
              {
              {
                /* Exit normally if this catcher can handle this
                /* Exit normally if this catcher can handle this
                   exception.  The caller analyses the func return
                   exception.  The caller analyses the func return
                   values.  */
                   values.  */
                catcher_pop ();
                catcher_pop ();
                return 0;
                return 0;
              }
              }
            /* The caller didn't request that the event be caught,
            /* The caller didn't request that the event be caught,
               relay the event to the next containing
               relay the event to the next containing
               catch_errors(). */
               catch_errors(). */
            catcher_pop ();
            catcher_pop ();
            throw_exception (exception);
            throw_exception (exception);
          }
          }
        default:
        default:
          internal_error (__FILE__, __LINE__, _("bad state"));
          internal_error (__FILE__, __LINE__, _("bad state"));
        }
        }
    default:
    default:
      internal_error (__FILE__, __LINE__, _("bad switch"));
      internal_error (__FILE__, __LINE__, _("bad switch"));
    }
    }
}
}
 
 
int
int
exceptions_state_mc_action_iter (void)
exceptions_state_mc_action_iter (void)
{
{
  return exceptions_state_mc (CATCH_ITER);
  return exceptions_state_mc (CATCH_ITER);
}
}
 
 
int
int
exceptions_state_mc_action_iter_1 (void)
exceptions_state_mc_action_iter_1 (void)
{
{
  return exceptions_state_mc (CATCH_ITER_1);
  return exceptions_state_mc (CATCH_ITER_1);
}
}
 
 
/* Return EXCEPTION to the nearest containing catch_errors().  */
/* Return EXCEPTION to the nearest containing catch_errors().  */
 
 
NORETURN void
NORETURN void
throw_exception (struct gdb_exception exception)
throw_exception (struct gdb_exception exception)
{
{
  quit_flag = 0;
  quit_flag = 0;
  immediate_quit = 0;
  immediate_quit = 0;
 
 
  /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
  /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
     I can think of a reason why that is vital, though).  */
     I can think of a reason why that is vital, though).  */
  bpstat_clear_actions (stop_bpstat);   /* Clear queued breakpoint commands */
  bpstat_clear_actions (stop_bpstat);   /* Clear queued breakpoint commands */
 
 
  disable_current_display ();
  disable_current_display ();
  do_cleanups (ALL_CLEANUPS);
  do_cleanups (ALL_CLEANUPS);
  if (target_can_async_p () && !target_executing)
  if (target_can_async_p () && !target_executing)
    do_exec_cleanups (ALL_CLEANUPS);
    do_exec_cleanups (ALL_CLEANUPS);
  if (sync_execution)
  if (sync_execution)
    do_exec_error_cleanups (ALL_CLEANUPS);
    do_exec_error_cleanups (ALL_CLEANUPS);
 
 
  /* Jump to the containing catch_errors() call, communicating REASON
  /* Jump to the containing catch_errors() call, communicating REASON
     to that call via setjmp's return value.  Note that REASON can't
     to that call via setjmp's return value.  Note that REASON can't
     be zero, by definition in defs.h. */
     be zero, by definition in defs.h. */
  exceptions_state_mc (CATCH_THROWING);
  exceptions_state_mc (CATCH_THROWING);
  *current_catcher->exception = exception;
  *current_catcher->exception = exception;
  EXCEPTIONS_SIGLONGJMP (current_catcher->buf, exception.reason);
  EXCEPTIONS_SIGLONGJMP (current_catcher->buf, exception.reason);
}
}
 
 
static char *last_message;
static char *last_message;
 
 
NORETURN void
NORETURN void
deprecated_throw_reason (enum return_reason reason)
deprecated_throw_reason (enum return_reason reason)
{
{
  struct gdb_exception exception;
  struct gdb_exception exception;
  memset (&exception, 0, sizeof exception);
  memset (&exception, 0, sizeof exception);
 
 
  exception.reason = reason;
  exception.reason = reason;
  switch (reason)
  switch (reason)
    {
    {
    case RETURN_QUIT:
    case RETURN_QUIT:
      break;
      break;
    case RETURN_ERROR:
    case RETURN_ERROR:
      exception.error = GENERIC_ERROR;
      exception.error = GENERIC_ERROR;
      break;
      break;
    default:
    default:
      internal_error (__FILE__, __LINE__, _("bad switch"));
      internal_error (__FILE__, __LINE__, _("bad switch"));
    }
    }
 
 
  throw_exception (exception);
  throw_exception (exception);
}
}
 
 
static void
static void
print_flush (void)
print_flush (void)
{
{
  struct serial *gdb_stdout_serial;
  struct serial *gdb_stdout_serial;
 
 
  if (deprecated_error_begin_hook)
  if (deprecated_error_begin_hook)
    deprecated_error_begin_hook ();
    deprecated_error_begin_hook ();
  target_terminal_ours ();
  target_terminal_ours ();
 
 
  /* We want all output to appear now, before we print the error.  We
  /* We want all output to appear now, before we print the error.  We
     have 3 levels of buffering we have to flush (it's possible that
     have 3 levels of buffering we have to flush (it's possible that
     some of these should be changed to flush the lower-level ones
     some of these should be changed to flush the lower-level ones
     too):  */
     too):  */
 
 
  /* 1.  The _filtered buffer.  */
  /* 1.  The _filtered buffer.  */
  wrap_here ("");
  wrap_here ("");
 
 
  /* 2.  The stdio buffer.  */
  /* 2.  The stdio buffer.  */
  gdb_flush (gdb_stdout);
  gdb_flush (gdb_stdout);
  gdb_flush (gdb_stderr);
  gdb_flush (gdb_stderr);
 
 
  /* 3.  The system-level buffer.  */
  /* 3.  The system-level buffer.  */
  gdb_stdout_serial = serial_fdopen (1);
  gdb_stdout_serial = serial_fdopen (1);
  if (gdb_stdout_serial)
  if (gdb_stdout_serial)
    {
    {
      serial_drain_output (gdb_stdout_serial);
      serial_drain_output (gdb_stdout_serial);
      serial_un_fdopen (gdb_stdout_serial);
      serial_un_fdopen (gdb_stdout_serial);
    }
    }
 
 
  annotate_error_begin ();
  annotate_error_begin ();
}
}
 
 
static void
static void
print_exception (struct ui_file *file, struct gdb_exception e)
print_exception (struct ui_file *file, struct gdb_exception e)
{
{
  /* KLUGE: cagney/2005-01-13: Write the string out one line at a time
  /* KLUGE: cagney/2005-01-13: Write the string out one line at a time
     as that way the MI's behavior is preserved.  */
     as that way the MI's behavior is preserved.  */
  const char *start;
  const char *start;
  const char *end;
  const char *end;
  for (start = e.message; start != NULL; start = end)
  for (start = e.message; start != NULL; start = end)
    {
    {
      end = strchr (start, '\n');
      end = strchr (start, '\n');
      if (end == NULL)
      if (end == NULL)
        fputs_filtered (start, file);
        fputs_filtered (start, file);
      else
      else
        {
        {
          end++;
          end++;
          ui_file_write (file, start, end - start);
          ui_file_write (file, start, end - start);
        }
        }
    }
    }
  fprintf_filtered (file, "\n");
  fprintf_filtered (file, "\n");
 
 
  /* Now append the annotation.  */
  /* Now append the annotation.  */
  switch (e.reason)
  switch (e.reason)
    {
    {
    case RETURN_QUIT:
    case RETURN_QUIT:
      annotate_quit ();
      annotate_quit ();
      break;
      break;
    case RETURN_ERROR:
    case RETURN_ERROR:
      /* Assume that these are all errors.  */
      /* Assume that these are all errors.  */
      annotate_error ();
      annotate_error ();
      break;
      break;
    default:
    default:
      internal_error (__FILE__, __LINE__, _("Bad switch."));
      internal_error (__FILE__, __LINE__, _("Bad switch."));
    }
    }
}
}
 
 
void
void
exception_print (struct ui_file *file, struct gdb_exception e)
exception_print (struct ui_file *file, struct gdb_exception e)
{
{
  if (e.reason < 0 && e.message != NULL)
  if (e.reason < 0 && e.message != NULL)
    {
    {
      print_flush ();
      print_flush ();
      print_exception (file, e);
      print_exception (file, e);
    }
    }
}
}
 
 
void
void
exception_fprintf (struct ui_file *file, struct gdb_exception e,
exception_fprintf (struct ui_file *file, struct gdb_exception e,
                   const char *prefix, ...)
                   const char *prefix, ...)
{
{
  if (e.reason < 0 && e.message != NULL)
  if (e.reason < 0 && e.message != NULL)
    {
    {
      va_list args;
      va_list args;
 
 
      print_flush ();
      print_flush ();
 
 
      /* Print the prefix.  */
      /* Print the prefix.  */
      va_start (args, prefix);
      va_start (args, prefix);
      vfprintf_filtered (file, prefix, args);
      vfprintf_filtered (file, prefix, args);
      va_end (args);
      va_end (args);
 
 
      print_exception (file, e);
      print_exception (file, e);
    }
    }
}
}
 
 
void
void
print_any_exception (struct ui_file *file, const char *prefix,
print_any_exception (struct ui_file *file, const char *prefix,
                     struct gdb_exception e)
                     struct gdb_exception e)
{
{
  if (e.reason < 0 && e.message != NULL)
  if (e.reason < 0 && e.message != NULL)
    {
    {
      target_terminal_ours ();
      target_terminal_ours ();
      wrap_here ("");           /* Force out any buffered output */
      wrap_here ("");           /* Force out any buffered output */
      gdb_flush (gdb_stdout);
      gdb_flush (gdb_stdout);
      annotate_error_begin ();
      annotate_error_begin ();
 
 
      /* Print the prefix.  */
      /* Print the prefix.  */
      if (prefix != NULL && prefix[0] != '\0')
      if (prefix != NULL && prefix[0] != '\0')
        fputs_filtered (prefix, file);
        fputs_filtered (prefix, file);
      print_exception (file, e);
      print_exception (file, e);
    }
    }
}
}
 
 
NORETURN static void ATTR_NORETURN ATTR_FORMAT (printf, 3, 0)
NORETURN static void ATTR_NORETURN ATTR_FORMAT (printf, 3, 0)
throw_it (enum return_reason reason, enum errors error, const char *fmt,
throw_it (enum return_reason reason, enum errors error, const char *fmt,
          va_list ap)
          va_list ap)
{
{
  struct gdb_exception e;
  struct gdb_exception e;
  char *new_message;
  char *new_message;
 
 
  /* Save the message.  Create the new message before deleting the
  /* Save the message.  Create the new message before deleting the
     old, the new message may include the old message text.  */
     old, the new message may include the old message text.  */
  new_message = xstrvprintf (fmt, ap);
  new_message = xstrvprintf (fmt, ap);
  xfree (last_message);
  xfree (last_message);
  last_message = new_message;
  last_message = new_message;
 
 
  /* Create the exception.  */
  /* Create the exception.  */
  e.reason = reason;
  e.reason = reason;
  e.error = error;
  e.error = error;
  e.message = last_message;
  e.message = last_message;
 
 
  /* Throw the exception.  */
  /* Throw the exception.  */
  throw_exception (e);
  throw_exception (e);
}
}
 
 
NORETURN void
NORETURN void
throw_verror (enum errors error, const char *fmt, va_list ap)
throw_verror (enum errors error, const char *fmt, va_list ap)
{
{
  throw_it (RETURN_ERROR, error, fmt, ap);
  throw_it (RETURN_ERROR, error, fmt, ap);
}
}
 
 
NORETURN void
NORETURN void
throw_vfatal (const char *fmt, va_list ap)
throw_vfatal (const char *fmt, va_list ap)
{
{
  throw_it (RETURN_QUIT, GDB_NO_ERROR, fmt, ap);
  throw_it (RETURN_QUIT, GDB_NO_ERROR, fmt, ap);
}
}
 
 
NORETURN void
NORETURN void
throw_error (enum errors error, const char *fmt, ...)
throw_error (enum errors error, const char *fmt, ...)
{
{
  va_list args;
  va_list args;
  va_start (args, fmt);
  va_start (args, fmt);
  throw_it (RETURN_ERROR, error, fmt, args);
  throw_it (RETURN_ERROR, error, fmt, args);
  va_end (args);
  va_end (args);
}
}
 
 
/* Call FUNC() with args FUNC_UIOUT and FUNC_ARGS, catching any
/* Call FUNC() with args FUNC_UIOUT and FUNC_ARGS, catching any
   errors.  Set FUNC_CAUGHT to an ``enum return_reason'' if the
   errors.  Set FUNC_CAUGHT to an ``enum return_reason'' if the
   function is aborted (using throw_exception() or zero if the
   function is aborted (using throw_exception() or zero if the
   function returns normally.  Set FUNC_VAL to the value returned by
   function returns normally.  Set FUNC_VAL to the value returned by
   the function or 0 if the function was aborted.
   the function or 0 if the function was aborted.
 
 
   Must not be called with immediate_quit in effect (bad things might
   Must not be called with immediate_quit in effect (bad things might
   happen, say we got a signal in the middle of a memcpy to quit_return).
   happen, say we got a signal in the middle of a memcpy to quit_return).
   This is an OK restriction; with very few exceptions immediate_quit can
   This is an OK restriction; with very few exceptions immediate_quit can
   be replaced by judicious use of QUIT.
   be replaced by judicious use of QUIT.
 
 
   MASK specifies what to catch; it is normally set to
   MASK specifies what to catch; it is normally set to
   RETURN_MASK_ALL, if for no other reason than that the code which
   RETURN_MASK_ALL, if for no other reason than that the code which
   calls catch_errors might not be set up to deal with a quit which
   calls catch_errors might not be set up to deal with a quit which
   isn't caught.  But if the code can deal with it, it generally
   isn't caught.  But if the code can deal with it, it generally
   should be RETURN_MASK_ERROR, unless for some reason it is more
   should be RETURN_MASK_ERROR, unless for some reason it is more
   useful to abort only the portion of the operation inside the
   useful to abort only the portion of the operation inside the
   catch_errors.  Note that quit should return to the command line
   catch_errors.  Note that quit should return to the command line
   fairly quickly, even if some further processing is being done.  */
   fairly quickly, even if some further processing is being done.  */
 
 
/* MAYBE: cagney/1999-11-05: catch_errors() in conjunction with
/* MAYBE: cagney/1999-11-05: catch_errors() in conjunction with
   error() et.al. could maintain a set of flags that indicate the the
   error() et.al. could maintain a set of flags that indicate the the
   current state of each of the longjmp buffers.  This would give the
   current state of each of the longjmp buffers.  This would give the
   longjmp code the chance to detect a longjmp botch (before it gets
   longjmp code the chance to detect a longjmp botch (before it gets
   to longjmperror()).  Prior to 1999-11-05 this wasn't possible as
   to longjmperror()).  Prior to 1999-11-05 this wasn't possible as
   code also randomly used a SET_TOP_LEVEL macro that directly
   code also randomly used a SET_TOP_LEVEL macro that directly
   initialize the longjmp buffers. */
   initialize the longjmp buffers. */
 
 
/* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
/* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
   be consolidated into a single file instead of being distributed
   be consolidated into a single file instead of being distributed
   between utils.c and top.c? */
   between utils.c and top.c? */
 
 
int
int
catch_exceptions (struct ui_out *uiout,
catch_exceptions (struct ui_out *uiout,
                  catch_exceptions_ftype *func,
                  catch_exceptions_ftype *func,
                  void *func_args,
                  void *func_args,
                  return_mask mask)
                  return_mask mask)
{
{
  return catch_exceptions_with_msg (uiout, func, func_args, NULL, mask);
  return catch_exceptions_with_msg (uiout, func, func_args, NULL, mask);
}
}
 
 
struct gdb_exception
struct gdb_exception
catch_exception (struct ui_out *uiout,
catch_exception (struct ui_out *uiout,
                 catch_exception_ftype *func,
                 catch_exception_ftype *func,
                 void *func_args,
                 void *func_args,
                 return_mask mask)
                 return_mask mask)
{
{
  volatile struct gdb_exception exception;
  volatile struct gdb_exception exception;
  TRY_CATCH (exception, mask)
  TRY_CATCH (exception, mask)
    {
    {
      (*func) (uiout, func_args);
      (*func) (uiout, func_args);
    }
    }
  return exception;
  return exception;
}
}
 
 
int
int
catch_exceptions_with_msg (struct ui_out *uiout,
catch_exceptions_with_msg (struct ui_out *uiout,
                           catch_exceptions_ftype *func,
                           catch_exceptions_ftype *func,
                           void *func_args,
                           void *func_args,
                           char **gdberrmsg,
                           char **gdberrmsg,
                           return_mask mask)
                           return_mask mask)
{
{
  volatile struct gdb_exception exception;
  volatile struct gdb_exception exception;
  volatile int val = 0;
  volatile int val = 0;
  TRY_CATCH (exception, mask)
  TRY_CATCH (exception, mask)
    {
    {
      val = (*func) (uiout, func_args);
      val = (*func) (uiout, func_args);
    }
    }
  print_any_exception (gdb_stderr, NULL, exception);
  print_any_exception (gdb_stderr, NULL, exception);
  gdb_assert (val >= 0);
  gdb_assert (val >= 0);
  gdb_assert (exception.reason <= 0);
  gdb_assert (exception.reason <= 0);
  if (exception.reason < 0)
  if (exception.reason < 0)
    {
    {
      /* If caller wants a copy of the low-level error message, make
      /* If caller wants a copy of the low-level error message, make
         one.  This is used in the case of a silent error whereby the
         one.  This is used in the case of a silent error whereby the
         caller may optionally want to issue the message.  */
         caller may optionally want to issue the message.  */
      if (gdberrmsg != NULL)
      if (gdberrmsg != NULL)
        {
        {
          if (exception.message != NULL)
          if (exception.message != NULL)
            *gdberrmsg = xstrdup (exception.message);
            *gdberrmsg = xstrdup (exception.message);
          else
          else
            *gdberrmsg = NULL;
            *gdberrmsg = NULL;
        }
        }
      return exception.reason;
      return exception.reason;
    }
    }
  return val;
  return val;
}
}
 
 
int
int
catch_errors (catch_errors_ftype *func, void *func_args, char *errstring,
catch_errors (catch_errors_ftype *func, void *func_args, char *errstring,
              return_mask mask)
              return_mask mask)
{
{
  volatile int val = 0;
  volatile int val = 0;
  volatile struct gdb_exception exception;
  volatile struct gdb_exception exception;
  TRY_CATCH (exception, mask)
  TRY_CATCH (exception, mask)
    {
    {
      val = func (func_args);
      val = func (func_args);
    }
    }
  print_any_exception (gdb_stderr, errstring, exception);
  print_any_exception (gdb_stderr, errstring, exception);
  if (exception.reason != 0)
  if (exception.reason != 0)
    return 0;
    return 0;
  return val;
  return val;
}
}
 
 
int
int
catch_command_errors (catch_command_errors_ftype * command,
catch_command_errors (catch_command_errors_ftype * command,
                      char *arg, int from_tty, return_mask mask)
                      char *arg, int from_tty, return_mask mask)
{
{
  volatile struct gdb_exception e;
  volatile struct gdb_exception e;
  TRY_CATCH (e, mask)
  TRY_CATCH (e, mask)
    {
    {
      command (arg, from_tty);
      command (arg, from_tty);
    }
    }
  print_any_exception (gdb_stderr, NULL, e);
  print_any_exception (gdb_stderr, NULL, e);
  if (e.reason < 0)
  if (e.reason < 0)
    return 0;
    return 0;
  return 1;
  return 1;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.