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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [python/] [py-value.c] - Diff between revs 227 and 816

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

Rev 227 Rev 816
/* Python interface to values.
/* Python interface to values.
 
 
   Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
   Copyright (C) 2008, 2009, 2010 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 "gdb_assert.h"
#include "gdb_assert.h"
#include "charset.h"
#include "charset.h"
#include "value.h"
#include "value.h"
#include "exceptions.h"
#include "exceptions.h"
#include "language.h"
#include "language.h"
#include "dfp.h"
#include "dfp.h"
#include "valprint.h"
#include "valprint.h"
 
 
#ifdef HAVE_PYTHON
#ifdef HAVE_PYTHON
 
 
#include "python-internal.h"
#include "python-internal.h"
 
 
/* Even though Python scalar types directly map to host types, we use
/* Even though Python scalar types directly map to host types, we use
   target types here to remain consistent with the the values system in
   target types here to remain consistent with the the values system in
   GDB (which uses target arithmetic).  */
   GDB (which uses target arithmetic).  */
 
 
/* Python's integer type corresponds to C's long type.  */
/* Python's integer type corresponds to C's long type.  */
#define builtin_type_pyint builtin_type (python_gdbarch)->builtin_long
#define builtin_type_pyint builtin_type (python_gdbarch)->builtin_long
 
 
/* Python's float type corresponds to C's double type.  */
/* Python's float type corresponds to C's double type.  */
#define builtin_type_pyfloat builtin_type (python_gdbarch)->builtin_double
#define builtin_type_pyfloat builtin_type (python_gdbarch)->builtin_double
 
 
/* Python's long type corresponds to C's long long type.  */
/* Python's long type corresponds to C's long long type.  */
#define builtin_type_pylong builtin_type (python_gdbarch)->builtin_long_long
#define builtin_type_pylong builtin_type (python_gdbarch)->builtin_long_long
 
 
#define builtin_type_pybool \
#define builtin_type_pybool \
  language_bool_type (python_language, python_gdbarch)
  language_bool_type (python_language, python_gdbarch)
 
 
#define builtin_type_pychar \
#define builtin_type_pychar \
  language_string_char_type (python_language, python_gdbarch)
  language_string_char_type (python_language, python_gdbarch)
 
 
typedef struct value_object {
typedef struct value_object {
  PyObject_HEAD
  PyObject_HEAD
  struct value_object *next;
  struct value_object *next;
  struct value_object *prev;
  struct value_object *prev;
  struct value *value;
  struct value *value;
  PyObject *address;
  PyObject *address;
  PyObject *type;
  PyObject *type;
} value_object;
} value_object;
 
 
/* List of all values which are currently exposed to Python. It is
/* List of all values which are currently exposed to Python. It is
   maintained so that when an objfile is discarded, preserve_values
   maintained so that when an objfile is discarded, preserve_values
   can copy the values' types if needed.  */
   can copy the values' types if needed.  */
/* This variable is unnecessarily initialized to NULL in order to
/* This variable is unnecessarily initialized to NULL in order to
   work around a linker bug on MacOS.  */
   work around a linker bug on MacOS.  */
static value_object *values_in_python = NULL;
static value_object *values_in_python = NULL;
 
 
/* Called by the Python interpreter when deallocating a value object.  */
/* Called by the Python interpreter when deallocating a value object.  */
static void
static void
valpy_dealloc (PyObject *obj)
valpy_dealloc (PyObject *obj)
{
{
  value_object *self = (value_object *) obj;
  value_object *self = (value_object *) obj;
 
 
  /* Remove SELF from the global list.  */
  /* Remove SELF from the global list.  */
  if (self->prev)
  if (self->prev)
    self->prev->next = self->next;
    self->prev->next = self->next;
  else
  else
    {
    {
      gdb_assert (values_in_python == self);
      gdb_assert (values_in_python == self);
      values_in_python = self->next;
      values_in_python = self->next;
    }
    }
  if (self->next)
  if (self->next)
    self->next->prev = self->prev;
    self->next->prev = self->prev;
 
 
  value_free (self->value);
  value_free (self->value);
 
 
  if (self->address)
  if (self->address)
    /* Use braces to appease gcc warning.  *sigh*  */
    /* Use braces to appease gcc warning.  *sigh*  */
    {
    {
      Py_DECREF (self->address);
      Py_DECREF (self->address);
    }
    }
 
 
  if (self->type)
  if (self->type)
    {
    {
      Py_DECREF (self->type);
      Py_DECREF (self->type);
    }
    }
 
 
  self->ob_type->tp_free (self);
  self->ob_type->tp_free (self);
}
}
 
 
/* Helper to push a Value object on the global list.  */
/* Helper to push a Value object on the global list.  */
static void
static void
note_value (value_object *value_obj)
note_value (value_object *value_obj)
{
{
  value_obj->next = values_in_python;
  value_obj->next = values_in_python;
  if (value_obj->next)
  if (value_obj->next)
    value_obj->next->prev = value_obj;
    value_obj->next->prev = value_obj;
  value_obj->prev = NULL;
  value_obj->prev = NULL;
  values_in_python = value_obj;
  values_in_python = value_obj;
}
}
 
 
/* Called when a new gdb.Value object needs to be allocated.  */
/* Called when a new gdb.Value object needs to be allocated.  */
static PyObject *
static PyObject *
valpy_new (PyTypeObject *subtype, PyObject *args, PyObject *keywords)
valpy_new (PyTypeObject *subtype, PyObject *args, PyObject *keywords)
{
{
  struct value *value = NULL;   /* Initialize to appease gcc warning.  */
  struct value *value = NULL;   /* Initialize to appease gcc warning.  */
  value_object *value_obj;
  value_object *value_obj;
 
 
  if (PyTuple_Size (args) != 1)
  if (PyTuple_Size (args) != 1)
    {
    {
      PyErr_SetString (PyExc_TypeError, _("Value object creation takes only "
      PyErr_SetString (PyExc_TypeError, _("Value object creation takes only "
                                          "1 argument"));
                                          "1 argument"));
      return NULL;
      return NULL;
    }
    }
 
 
  value_obj = (value_object *) subtype->tp_alloc (subtype, 1);
  value_obj = (value_object *) subtype->tp_alloc (subtype, 1);
  if (value_obj == NULL)
  if (value_obj == NULL)
    {
    {
      PyErr_SetString (PyExc_MemoryError, _("Could not allocate memory to "
      PyErr_SetString (PyExc_MemoryError, _("Could not allocate memory to "
                                            "create Value object."));
                                            "create Value object."));
      return NULL;
      return NULL;
    }
    }
 
 
  value = convert_value_from_python (PyTuple_GetItem (args, 0));
  value = convert_value_from_python (PyTuple_GetItem (args, 0));
  if (value == NULL)
  if (value == NULL)
    {
    {
      subtype->tp_free (value_obj);
      subtype->tp_free (value_obj);
      return NULL;
      return NULL;
    }
    }
 
 
  value_obj->value = value;
  value_obj->value = value;
  value_incref (value);
  value_incref (value);
  value_obj->address = NULL;
  value_obj->address = NULL;
  value_obj->type = NULL;
  value_obj->type = NULL;
  note_value (value_obj);
  note_value (value_obj);
 
 
  return (PyObject *) value_obj;
  return (PyObject *) value_obj;
}
}
 
 
/* Iterate over all the Value objects, calling preserve_one_value on
/* Iterate over all the Value objects, calling preserve_one_value on
   each.  */
   each.  */
void
void
preserve_python_values (struct objfile *objfile, htab_t copied_types)
preserve_python_values (struct objfile *objfile, htab_t copied_types)
{
{
  value_object *iter;
  value_object *iter;
 
 
  for (iter = values_in_python; iter; iter = iter->next)
  for (iter = values_in_python; iter; iter = iter->next)
    preserve_one_value (iter->value, objfile, copied_types);
    preserve_one_value (iter->value, objfile, copied_types);
}
}
 
 
/* Given a value of a pointer type, apply the C unary * operator to it.  */
/* Given a value of a pointer type, apply the C unary * operator to it.  */
static PyObject *
static PyObject *
valpy_dereference (PyObject *self, PyObject *args)
valpy_dereference (PyObject *self, PyObject *args)
{
{
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      res_val = value_ind (((value_object *) self)->value);
      res_val = value_ind (((value_object *) self)->value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return value_to_value_object (res_val);
  return value_to_value_object (res_val);
}
}
 
 
/* Return "&value".  */
/* Return "&value".  */
static PyObject *
static PyObject *
valpy_get_address (PyObject *self, void *closure)
valpy_get_address (PyObject *self, void *closure)
{
{
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  value_object *val_obj = (value_object *) self;
  value_object *val_obj = (value_object *) self;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (!val_obj->address)
  if (!val_obj->address)
    {
    {
      TRY_CATCH (except, RETURN_MASK_ALL)
      TRY_CATCH (except, RETURN_MASK_ALL)
        {
        {
          res_val = value_addr (val_obj->value);
          res_val = value_addr (val_obj->value);
        }
        }
      if (except.reason < 0)
      if (except.reason < 0)
        {
        {
          val_obj->address = Py_None;
          val_obj->address = Py_None;
          Py_INCREF (Py_None);
          Py_INCREF (Py_None);
        }
        }
      else
      else
        val_obj->address = value_to_value_object (res_val);
        val_obj->address = value_to_value_object (res_val);
    }
    }
 
 
  Py_INCREF (val_obj->address);
  Py_INCREF (val_obj->address);
 
 
  return val_obj->address;
  return val_obj->address;
}
}
 
 
/* Return type of the value.  */
/* Return type of the value.  */
static PyObject *
static PyObject *
valpy_get_type (PyObject *self, void *closure)
valpy_get_type (PyObject *self, void *closure)
{
{
  value_object *obj = (value_object *) self;
  value_object *obj = (value_object *) self;
  if (!obj->type)
  if (!obj->type)
    {
    {
      obj->type = type_to_type_object (value_type (obj->value));
      obj->type = type_to_type_object (value_type (obj->value));
      if (!obj->type)
      if (!obj->type)
        {
        {
          obj->type = Py_None;
          obj->type = Py_None;
          Py_INCREF (obj->type);
          Py_INCREF (obj->type);
        }
        }
    }
    }
  Py_INCREF (obj->type);
  Py_INCREF (obj->type);
  return obj->type;
  return obj->type;
}
}
 
 
/* Implementation of gdb.Value.lazy_string ([encoding] [, length]) ->
/* Implementation of gdb.Value.lazy_string ([encoding] [, length]) ->
   string.  Return a PyObject representing a lazy_string_object type.
   string.  Return a PyObject representing a lazy_string_object type.
   A lazy string is a pointer to a string with an optional encoding and
   A lazy string is a pointer to a string with an optional encoding and
   length.  If ENCODING is not given, encoding is set to None.  If an
   length.  If ENCODING is not given, encoding is set to None.  If an
   ENCODING is provided the encoding parameter is set to ENCODING, but
   ENCODING is provided the encoding parameter is set to ENCODING, but
   the string is not encoded.  If LENGTH is provided then the length
   the string is not encoded.  If LENGTH is provided then the length
   parameter is set to LENGTH, otherwise length will be set to -1 (first
   parameter is set to LENGTH, otherwise length will be set to -1 (first
   null of appropriate with).  */
   null of appropriate with).  */
static PyObject *
static PyObject *
valpy_lazy_string (PyObject *self, PyObject *args, PyObject *kw)
valpy_lazy_string (PyObject *self, PyObject *args, PyObject *kw)
{
{
  int length = -1;
  int length = -1;
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  const char *user_encoding = NULL;
  const char *user_encoding = NULL;
  static char *keywords[] = { "encoding", "length", NULL };
  static char *keywords[] = { "encoding", "length", NULL };
  PyObject *str_obj;
  PyObject *str_obj;
 
 
  if (!PyArg_ParseTupleAndKeywords (args, kw, "|si", keywords,
  if (!PyArg_ParseTupleAndKeywords (args, kw, "|si", keywords,
                                    &user_encoding, &length))
                                    &user_encoding, &length))
    return NULL;
    return NULL;
 
 
  if (TYPE_CODE (value_type (value)) == TYPE_CODE_PTR)
  if (TYPE_CODE (value_type (value)) == TYPE_CODE_PTR)
    value = value_ind (value);
    value = value_ind (value);
 
 
  str_obj = gdbpy_create_lazy_string_object (value_address (value), length,
  str_obj = gdbpy_create_lazy_string_object (value_address (value), length,
                                             user_encoding, value_type (value));
                                             user_encoding, value_type (value));
 
 
  return (PyObject *) str_obj;
  return (PyObject *) str_obj;
}
}
 
 
/* Implementation of gdb.Value.string ([encoding] [, errors]
/* Implementation of gdb.Value.string ([encoding] [, errors]
   [, length]) -> string.  Return Unicode string with value contents.
   [, length]) -> string.  Return Unicode string with value contents.
   If ENCODING is not given, the string is assumed to be encoded in
   If ENCODING is not given, the string is assumed to be encoded in
   the target's charset.  If LENGTH is provided, only fetch string to
   the target's charset.  If LENGTH is provided, only fetch string to
   the length provided.  */
   the length provided.  */
 
 
static PyObject *
static PyObject *
valpy_string (PyObject *self, PyObject *args, PyObject *kw)
valpy_string (PyObject *self, PyObject *args, PyObject *kw)
{
{
  int length = -1, ret = 0;
  int length = -1, ret = 0;
  gdb_byte *buffer;
  gdb_byte *buffer;
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
  PyObject *unicode;
  PyObject *unicode;
  const char *encoding = NULL;
  const char *encoding = NULL;
  const char *errors = NULL;
  const char *errors = NULL;
  const char *user_encoding = NULL;
  const char *user_encoding = NULL;
  const char *la_encoding = NULL;
  const char *la_encoding = NULL;
  struct type *char_type;
  struct type *char_type;
  static char *keywords[] = { "encoding", "errors", "length", NULL };
  static char *keywords[] = { "encoding", "errors", "length", NULL };
 
 
  if (!PyArg_ParseTupleAndKeywords (args, kw, "|ssi", keywords,
  if (!PyArg_ParseTupleAndKeywords (args, kw, "|ssi", keywords,
                                    &user_encoding, &errors, &length))
                                    &user_encoding, &errors, &length))
    return NULL;
    return NULL;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      LA_GET_STRING (value, &buffer, &length, &char_type, &la_encoding);
      LA_GET_STRING (value, &buffer, &length, &char_type, &la_encoding);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  encoding = (user_encoding && *user_encoding) ? user_encoding : la_encoding;
  encoding = (user_encoding && *user_encoding) ? user_encoding : la_encoding;
  unicode = PyUnicode_Decode (buffer, length * TYPE_LENGTH (char_type),
  unicode = PyUnicode_Decode (buffer, length * TYPE_LENGTH (char_type),
                              encoding, errors);
                              encoding, errors);
  xfree (buffer);
  xfree (buffer);
 
 
  return unicode;
  return unicode;
}
}
 
 
/* Cast a value to a given type.  */
/* Cast a value to a given type.  */
static PyObject *
static PyObject *
valpy_cast (PyObject *self, PyObject *args)
valpy_cast (PyObject *self, PyObject *args)
{
{
  PyObject *type_obj;
  PyObject *type_obj;
  struct type *type;
  struct type *type;
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (! PyArg_ParseTuple (args, "O", &type_obj))
  if (! PyArg_ParseTuple (args, "O", &type_obj))
    return NULL;
    return NULL;
 
 
  type = type_object_to_type (type_obj);
  type = type_object_to_type (type_obj);
  if (! type)
  if (! type)
    {
    {
      PyErr_SetString (PyExc_RuntimeError, "argument must be a Type");
      PyErr_SetString (PyExc_RuntimeError, "argument must be a Type");
      return NULL;
      return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      res_val = value_cast (type, ((value_object *) self)->value);
      res_val = value_cast (type, ((value_object *) self)->value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return value_to_value_object (res_val);
  return value_to_value_object (res_val);
}
}
 
 
static Py_ssize_t
static Py_ssize_t
valpy_length (PyObject *self)
valpy_length (PyObject *self)
{
{
  /* We don't support getting the number of elements in a struct / class.  */
  /* We don't support getting the number of elements in a struct / class.  */
  PyErr_SetString (PyExc_NotImplementedError,
  PyErr_SetString (PyExc_NotImplementedError,
                   "Invalid operation on gdb.Value.");
                   "Invalid operation on gdb.Value.");
  return -1;
  return -1;
}
}
 
 
/* Given string name of an element inside structure, return its value
/* Given string name of an element inside structure, return its value
   object.  */
   object.  */
static PyObject *
static PyObject *
valpy_getitem (PyObject *self, PyObject *key)
valpy_getitem (PyObject *self, PyObject *key)
{
{
  value_object *self_value = (value_object *) self;
  value_object *self_value = (value_object *) self;
  char *field = NULL;
  char *field = NULL;
  struct value *res_val = NULL;
  struct value *res_val = NULL;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (gdbpy_is_string (key))
  if (gdbpy_is_string (key))
    {
    {
      field = python_string_to_host_string (key);
      field = python_string_to_host_string (key);
      if (field == NULL)
      if (field == NULL)
        return NULL;
        return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      struct value *tmp = self_value->value;
      struct value *tmp = self_value->value;
 
 
      if (field)
      if (field)
        res_val = value_struct_elt (&tmp, NULL, field, 0, NULL);
        res_val = value_struct_elt (&tmp, NULL, field, 0, NULL);
      else
      else
        {
        {
          /* Assume we are attempting an array access, and let the
          /* Assume we are attempting an array access, and let the
             value code throw an exception if the index has an invalid
             value code throw an exception if the index has an invalid
             type.  */
             type.  */
          struct value *idx = convert_value_from_python (key);
          struct value *idx = convert_value_from_python (key);
          if (idx != NULL)
          if (idx != NULL)
            {
            {
              /* Check the value's type is something that can be accessed via
              /* Check the value's type is something that can be accessed via
                 a subscript.  */
                 a subscript.  */
              struct type *type;
              struct type *type;
              tmp = coerce_ref (tmp);
              tmp = coerce_ref (tmp);
              type = check_typedef (value_type (tmp));
              type = check_typedef (value_type (tmp));
              if (TYPE_CODE (type) != TYPE_CODE_ARRAY
              if (TYPE_CODE (type) != TYPE_CODE_ARRAY
                  && TYPE_CODE (type) != TYPE_CODE_PTR)
                  && TYPE_CODE (type) != TYPE_CODE_PTR)
                  error( _("Cannot subscript requested type"));
                  error( _("Cannot subscript requested type"));
              else
              else
                res_val = value_subscript (tmp, value_as_long (idx));
                res_val = value_subscript (tmp, value_as_long (idx));
            }
            }
        }
        }
    }
    }
 
 
  xfree (field);
  xfree (field);
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return res_val ? value_to_value_object (res_val) : NULL;
  return res_val ? value_to_value_object (res_val) : NULL;
}
}
 
 
static int
static int
valpy_setitem (PyObject *self, PyObject *key, PyObject *value)
valpy_setitem (PyObject *self, PyObject *key, PyObject *value)
{
{
  PyErr_Format (PyExc_NotImplementedError,
  PyErr_Format (PyExc_NotImplementedError,
                _("Setting of struct elements is not currently supported."));
                _("Setting of struct elements is not currently supported."));
  return -1;
  return -1;
}
}
 
 
/* Called by the Python interpreter to obtain string representation
/* Called by the Python interpreter to obtain string representation
   of the object.  */
   of the object.  */
static PyObject *
static PyObject *
valpy_str (PyObject *self)
valpy_str (PyObject *self)
{
{
  char *s = NULL;
  char *s = NULL;
  struct ui_file *stb;
  struct ui_file *stb;
  struct cleanup *old_chain;
  struct cleanup *old_chain;
  PyObject *result;
  PyObject *result;
  struct value_print_options opts;
  struct value_print_options opts;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  get_user_print_options (&opts);
  get_user_print_options (&opts);
  opts.deref_ref = 0;
  opts.deref_ref = 0;
 
 
  stb = mem_fileopen ();
  stb = mem_fileopen ();
  old_chain = make_cleanup_ui_file_delete (stb);
  old_chain = make_cleanup_ui_file_delete (stb);
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      common_val_print (((value_object *) self)->value, stb, 0,
      common_val_print (((value_object *) self)->value, stb, 0,
                        &opts, python_language);
                        &opts, python_language);
      s = ui_file_xstrdup (stb, NULL);
      s = ui_file_xstrdup (stb, NULL);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  do_cleanups (old_chain);
  do_cleanups (old_chain);
 
 
  result = PyUnicode_Decode (s, strlen (s), host_charset (), NULL);
  result = PyUnicode_Decode (s, strlen (s), host_charset (), NULL);
  xfree (s);
  xfree (s);
 
 
  return result;
  return result;
}
}
 
 
/* Implements gdb.Value.is_optimized_out.  */
/* Implements gdb.Value.is_optimized_out.  */
static PyObject *
static PyObject *
valpy_get_is_optimized_out (PyObject *self, void *closure)
valpy_get_is_optimized_out (PyObject *self, void *closure)
{
{
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
 
 
  if (value_optimized_out (value))
  if (value_optimized_out (value))
    Py_RETURN_TRUE;
    Py_RETURN_TRUE;
 
 
  Py_RETURN_FALSE;
  Py_RETURN_FALSE;
}
}
 
 
enum valpy_opcode
enum valpy_opcode
{
{
  VALPY_ADD,
  VALPY_ADD,
  VALPY_SUB,
  VALPY_SUB,
  VALPY_MUL,
  VALPY_MUL,
  VALPY_DIV,
  VALPY_DIV,
  VALPY_REM,
  VALPY_REM,
  VALPY_POW,
  VALPY_POW,
  VALPY_LSH,
  VALPY_LSH,
  VALPY_RSH,
  VALPY_RSH,
  VALPY_BITAND,
  VALPY_BITAND,
  VALPY_BITOR,
  VALPY_BITOR,
  VALPY_BITXOR
  VALPY_BITXOR
};
};
 
 
/* If TYPE is a reference, return the target; otherwise return TYPE.  */
/* If TYPE is a reference, return the target; otherwise return TYPE.  */
#define STRIP_REFERENCE(TYPE) \
#define STRIP_REFERENCE(TYPE) \
  ((TYPE_CODE (TYPE) == TYPE_CODE_REF) ? (TYPE_TARGET_TYPE (TYPE)) : (TYPE))
  ((TYPE_CODE (TYPE) == TYPE_CODE_REF) ? (TYPE_TARGET_TYPE (TYPE)) : (TYPE))
 
 
/* Returns a value object which is the result of applying the operation
/* Returns a value object which is the result of applying the operation
   specified by OPCODE to the given arguments.  */
   specified by OPCODE to the given arguments.  */
static PyObject *
static PyObject *
valpy_binop (enum valpy_opcode opcode, PyObject *self, PyObject *other)
valpy_binop (enum valpy_opcode opcode, PyObject *self, PyObject *other)
{
{
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      struct value *arg1, *arg2;
      struct value *arg1, *arg2;
 
 
      /* If the gdb.Value object is the second operand, then it will be passed
      /* If the gdb.Value object is the second operand, then it will be passed
         to us as the OTHER argument, and SELF will be an entirely different
         to us as the OTHER argument, and SELF will be an entirely different
         kind of object, altogether.  Because of this, we can't assume self is
         kind of object, altogether.  Because of this, we can't assume self is
         a gdb.Value object and need to convert it from python as well.  */
         a gdb.Value object and need to convert it from python as well.  */
      arg1 = convert_value_from_python (self);
      arg1 = convert_value_from_python (self);
      if (arg1 == NULL)
      if (arg1 == NULL)
        break;
        break;
 
 
      arg2 = convert_value_from_python (other);
      arg2 = convert_value_from_python (other);
      if (arg2 == NULL)
      if (arg2 == NULL)
        break;
        break;
 
 
      switch (opcode)
      switch (opcode)
        {
        {
        case VALPY_ADD:
        case VALPY_ADD:
          {
          {
            struct type *ltype = value_type (arg1);
            struct type *ltype = value_type (arg1);
            struct type *rtype = value_type (arg2);
            struct type *rtype = value_type (arg2);
 
 
            CHECK_TYPEDEF (ltype);
            CHECK_TYPEDEF (ltype);
            ltype = STRIP_REFERENCE (ltype);
            ltype = STRIP_REFERENCE (ltype);
            CHECK_TYPEDEF (rtype);
            CHECK_TYPEDEF (rtype);
            rtype = STRIP_REFERENCE (rtype);
            rtype = STRIP_REFERENCE (rtype);
 
 
            if (TYPE_CODE (ltype) == TYPE_CODE_PTR
            if (TYPE_CODE (ltype) == TYPE_CODE_PTR
                && is_integral_type (rtype))
                && is_integral_type (rtype))
              res_val = value_ptradd (arg1, value_as_long (arg2));
              res_val = value_ptradd (arg1, value_as_long (arg2));
            else if (TYPE_CODE (rtype) == TYPE_CODE_PTR
            else if (TYPE_CODE (rtype) == TYPE_CODE_PTR
                     && is_integral_type (ltype))
                     && is_integral_type (ltype))
              res_val = value_ptradd (arg2, value_as_long (arg1));
              res_val = value_ptradd (arg2, value_as_long (arg1));
            else
            else
              res_val = value_binop (arg1, arg2, BINOP_ADD);
              res_val = value_binop (arg1, arg2, BINOP_ADD);
          }
          }
          break;
          break;
        case VALPY_SUB:
        case VALPY_SUB:
          {
          {
            struct type *ltype = value_type (arg1);
            struct type *ltype = value_type (arg1);
            struct type *rtype = value_type (arg2);
            struct type *rtype = value_type (arg2);
 
 
            CHECK_TYPEDEF (ltype);
            CHECK_TYPEDEF (ltype);
            ltype = STRIP_REFERENCE (ltype);
            ltype = STRIP_REFERENCE (ltype);
            CHECK_TYPEDEF (rtype);
            CHECK_TYPEDEF (rtype);
            rtype = STRIP_REFERENCE (rtype);
            rtype = STRIP_REFERENCE (rtype);
 
 
            if (TYPE_CODE (ltype) == TYPE_CODE_PTR
            if (TYPE_CODE (ltype) == TYPE_CODE_PTR
                && TYPE_CODE (rtype) == TYPE_CODE_PTR)
                && TYPE_CODE (rtype) == TYPE_CODE_PTR)
              /* A ptrdiff_t for the target would be preferable here.  */
              /* A ptrdiff_t for the target would be preferable here.  */
              res_val = value_from_longest (builtin_type_pyint,
              res_val = value_from_longest (builtin_type_pyint,
                                            value_ptrdiff (arg1, arg2));
                                            value_ptrdiff (arg1, arg2));
            else if (TYPE_CODE (ltype) == TYPE_CODE_PTR
            else if (TYPE_CODE (ltype) == TYPE_CODE_PTR
                     && is_integral_type (rtype))
                     && is_integral_type (rtype))
              res_val = value_ptradd (arg1, - value_as_long (arg2));
              res_val = value_ptradd (arg1, - value_as_long (arg2));
            else
            else
              res_val = value_binop (arg1, arg2, BINOP_SUB);
              res_val = value_binop (arg1, arg2, BINOP_SUB);
          }
          }
          break;
          break;
        case VALPY_MUL:
        case VALPY_MUL:
          res_val = value_binop (arg1, arg2, BINOP_MUL);
          res_val = value_binop (arg1, arg2, BINOP_MUL);
          break;
          break;
        case VALPY_DIV:
        case VALPY_DIV:
          res_val = value_binop (arg1, arg2, BINOP_DIV);
          res_val = value_binop (arg1, arg2, BINOP_DIV);
          break;
          break;
        case VALPY_REM:
        case VALPY_REM:
          res_val = value_binop (arg1, arg2, BINOP_REM);
          res_val = value_binop (arg1, arg2, BINOP_REM);
          break;
          break;
        case VALPY_POW:
        case VALPY_POW:
          res_val = value_binop (arg1, arg2, BINOP_EXP);
          res_val = value_binop (arg1, arg2, BINOP_EXP);
          break;
          break;
        case VALPY_LSH:
        case VALPY_LSH:
          res_val = value_binop (arg1, arg2, BINOP_LSH);
          res_val = value_binop (arg1, arg2, BINOP_LSH);
          break;
          break;
        case VALPY_RSH:
        case VALPY_RSH:
          res_val = value_binop (arg1, arg2, BINOP_RSH);
          res_val = value_binop (arg1, arg2, BINOP_RSH);
          break;
          break;
        case VALPY_BITAND:
        case VALPY_BITAND:
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_AND);
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_AND);
          break;
          break;
        case VALPY_BITOR:
        case VALPY_BITOR:
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_IOR);
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_IOR);
          break;
          break;
        case VALPY_BITXOR:
        case VALPY_BITXOR:
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_XOR);
          res_val = value_binop (arg1, arg2, BINOP_BITWISE_XOR);
          break;
          break;
        }
        }
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return res_val ? value_to_value_object (res_val) : NULL;
  return res_val ? value_to_value_object (res_val) : NULL;
}
}
 
 
static PyObject *
static PyObject *
valpy_add (PyObject *self, PyObject *other)
valpy_add (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_ADD, self, other);
  return valpy_binop (VALPY_ADD, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_subtract (PyObject *self, PyObject *other)
valpy_subtract (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_SUB, self, other);
  return valpy_binop (VALPY_SUB, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_multiply (PyObject *self, PyObject *other)
valpy_multiply (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_MUL, self, other);
  return valpy_binop (VALPY_MUL, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_divide (PyObject *self, PyObject *other)
valpy_divide (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_DIV, self, other);
  return valpy_binop (VALPY_DIV, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_remainder (PyObject *self, PyObject *other)
valpy_remainder (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_REM, self, other);
  return valpy_binop (VALPY_REM, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_power (PyObject *self, PyObject *other, PyObject *unused)
valpy_power (PyObject *self, PyObject *other, PyObject *unused)
{
{
  /* We don't support the ternary form of pow.  I don't know how to express
  /* We don't support the ternary form of pow.  I don't know how to express
     that, so let's just throw NotImplementedError to at least do something
     that, so let's just throw NotImplementedError to at least do something
     about it.  */
     about it.  */
  if (unused != Py_None)
  if (unused != Py_None)
    {
    {
      PyErr_SetString (PyExc_NotImplementedError,
      PyErr_SetString (PyExc_NotImplementedError,
                       "Invalid operation on gdb.Value.");
                       "Invalid operation on gdb.Value.");
      return NULL;
      return NULL;
    }
    }
 
 
  return valpy_binop (VALPY_POW, self, other);
  return valpy_binop (VALPY_POW, self, other);
}
}
 
 
static PyObject *
static PyObject *
valpy_negative (PyObject *self)
valpy_negative (PyObject *self)
{
{
  struct value *val = NULL;
  struct value *val = NULL;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      val = value_neg (((value_object *) self)->value);
      val = value_neg (((value_object *) self)->value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return value_to_value_object (val);
  return value_to_value_object (val);
}
}
 
 
static PyObject *
static PyObject *
valpy_positive (PyObject *self)
valpy_positive (PyObject *self)
{
{
  return value_to_value_object (((value_object *) self)->value);
  return value_to_value_object (((value_object *) self)->value);
}
}
 
 
static PyObject *
static PyObject *
valpy_absolute (PyObject *self)
valpy_absolute (PyObject *self)
{
{
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  if (value_less (value, value_zero (value_type (value), not_lval)))
  if (value_less (value, value_zero (value_type (value), not_lval)))
    return valpy_negative (self);
    return valpy_negative (self);
  else
  else
    return valpy_positive (self);
    return valpy_positive (self);
}
}
 
 
/* Implements boolean evaluation of gdb.Value.  */
/* Implements boolean evaluation of gdb.Value.  */
static int
static int
valpy_nonzero (PyObject *self)
valpy_nonzero (PyObject *self)
{
{
  value_object *self_value = (value_object *) self;
  value_object *self_value = (value_object *) self;
  struct type *type;
  struct type *type;
 
 
  type = check_typedef (value_type (self_value->value));
  type = check_typedef (value_type (self_value->value));
 
 
  if (is_integral_type (type) || TYPE_CODE (type) == TYPE_CODE_PTR)
  if (is_integral_type (type) || TYPE_CODE (type) == TYPE_CODE_PTR)
    return !!value_as_long (self_value->value);
    return !!value_as_long (self_value->value);
  else if (TYPE_CODE (type) == TYPE_CODE_FLT)
  else if (TYPE_CODE (type) == TYPE_CODE_FLT)
    return value_as_double (self_value->value) != 0;
    return value_as_double (self_value->value) != 0;
  else if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
  else if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
    return !decimal_is_zero (value_contents (self_value->value),
    return !decimal_is_zero (value_contents (self_value->value),
                             TYPE_LENGTH (type),
                             TYPE_LENGTH (type),
                             gdbarch_byte_order (get_type_arch (type)));
                             gdbarch_byte_order (get_type_arch (type)));
  else
  else
    {
    {
      PyErr_SetString (PyExc_TypeError, _("Attempted truth testing on invalid "
      PyErr_SetString (PyExc_TypeError, _("Attempted truth testing on invalid "
                                          "gdb.Value type."));
                                          "gdb.Value type."));
      return 0;
      return 0;
    }
    }
}
}
 
 
/* Implements ~ for value objects.  */
/* Implements ~ for value objects.  */
static PyObject *
static PyObject *
valpy_invert (PyObject *self)
valpy_invert (PyObject *self)
{
{
  struct value *val = NULL;
  struct value *val = NULL;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      val = value_complement (((value_object *) self)->value);
      val = value_complement (((value_object *) self)->value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return value_to_value_object (val);
  return value_to_value_object (val);
}
}
 
 
/* Implements left shift for value objects.  */
/* Implements left shift for value objects.  */
static PyObject *
static PyObject *
valpy_lsh (PyObject *self, PyObject *other)
valpy_lsh (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_LSH, self, other);
  return valpy_binop (VALPY_LSH, self, other);
}
}
 
 
/* Implements right shift for value objects.  */
/* Implements right shift for value objects.  */
static PyObject *
static PyObject *
valpy_rsh (PyObject *self, PyObject *other)
valpy_rsh (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_RSH, self, other);
  return valpy_binop (VALPY_RSH, self, other);
}
}
 
 
/* Implements bitwise and for value objects.  */
/* Implements bitwise and for value objects.  */
static PyObject *
static PyObject *
valpy_and (PyObject *self, PyObject *other)
valpy_and (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_BITAND, self, other);
  return valpy_binop (VALPY_BITAND, self, other);
}
}
 
 
/* Implements bitwise or for value objects.  */
/* Implements bitwise or for value objects.  */
static PyObject *
static PyObject *
valpy_or (PyObject *self, PyObject *other)
valpy_or (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_BITOR, self, other);
  return valpy_binop (VALPY_BITOR, self, other);
}
}
 
 
/* Implements bitwise xor for value objects.  */
/* Implements bitwise xor for value objects.  */
static PyObject *
static PyObject *
valpy_xor (PyObject *self, PyObject *other)
valpy_xor (PyObject *self, PyObject *other)
{
{
  return valpy_binop (VALPY_BITXOR, self, other);
  return valpy_binop (VALPY_BITXOR, self, other);
}
}
 
 
/* Implements comparison operations for value objects.  */
/* Implements comparison operations for value objects.  */
static PyObject *
static PyObject *
valpy_richcompare (PyObject *self, PyObject *other, int op)
valpy_richcompare (PyObject *self, PyObject *other, int op)
{
{
  int result = 0;
  int result = 0;
  struct value *value_other;
  struct value *value_other;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (other == Py_None)
  if (other == Py_None)
    /* Comparing with None is special.  From what I can tell, in Python
    /* Comparing with None is special.  From what I can tell, in Python
       None is smaller than anything else.  */
       None is smaller than anything else.  */
    switch (op) {
    switch (op) {
      case Py_LT:
      case Py_LT:
      case Py_LE:
      case Py_LE:
      case Py_EQ:
      case Py_EQ:
        Py_RETURN_FALSE;
        Py_RETURN_FALSE;
      case Py_NE:
      case Py_NE:
      case Py_GT:
      case Py_GT:
      case Py_GE:
      case Py_GE:
        Py_RETURN_TRUE;
        Py_RETURN_TRUE;
      default:
      default:
        /* Can't happen.  */
        /* Can't happen.  */
        PyErr_SetString (PyExc_NotImplementedError,
        PyErr_SetString (PyExc_NotImplementedError,
                         "Invalid operation on gdb.Value.");
                         "Invalid operation on gdb.Value.");
        return NULL;
        return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      value_other = convert_value_from_python (other);
      value_other = convert_value_from_python (other);
      if (value_other == NULL)
      if (value_other == NULL)
        {
        {
          result = -1;
          result = -1;
          break;
          break;
        }
        }
 
 
      switch (op) {
      switch (op) {
        case Py_LT:
        case Py_LT:
          result = value_less (((value_object *) self)->value, value_other);
          result = value_less (((value_object *) self)->value, value_other);
          break;
          break;
        case Py_LE:
        case Py_LE:
          result = value_less (((value_object *) self)->value, value_other)
          result = value_less (((value_object *) self)->value, value_other)
            || value_equal (((value_object *) self)->value, value_other);
            || value_equal (((value_object *) self)->value, value_other);
          break;
          break;
        case Py_EQ:
        case Py_EQ:
          result = value_equal (((value_object *) self)->value, value_other);
          result = value_equal (((value_object *) self)->value, value_other);
          break;
          break;
        case Py_NE:
        case Py_NE:
          result = !value_equal (((value_object *) self)->value, value_other);
          result = !value_equal (((value_object *) self)->value, value_other);
          break;
          break;
        case Py_GT:
        case Py_GT:
          result = value_less (value_other, ((value_object *) self)->value);
          result = value_less (value_other, ((value_object *) self)->value);
          break;
          break;
        case Py_GE:
        case Py_GE:
          result = value_less (value_other, ((value_object *) self)->value)
          result = value_less (value_other, ((value_object *) self)->value)
            || value_equal (((value_object *) self)->value, value_other);
            || value_equal (((value_object *) self)->value, value_other);
          break;
          break;
        default:
        default:
          /* Can't happen.  */
          /* Can't happen.  */
          PyErr_SetString (PyExc_NotImplementedError,
          PyErr_SetString (PyExc_NotImplementedError,
                           "Invalid operation on gdb.Value.");
                           "Invalid operation on gdb.Value.");
          result = -1;
          result = -1;
          break;
          break;
      }
      }
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  /* In this case, the Python exception has already been set.  */
  /* In this case, the Python exception has already been set.  */
  if (result < 0)
  if (result < 0)
    return NULL;
    return NULL;
 
 
  if (result == 1)
  if (result == 1)
    Py_RETURN_TRUE;
    Py_RETURN_TRUE;
 
 
  Py_RETURN_FALSE;
  Py_RETURN_FALSE;
}
}
 
 
/* Helper function to determine if a type is "int-like".  */
/* Helper function to determine if a type is "int-like".  */
static int
static int
is_intlike (struct type *type, int ptr_ok)
is_intlike (struct type *type, int ptr_ok)
{
{
  CHECK_TYPEDEF (type);
  CHECK_TYPEDEF (type);
  return (TYPE_CODE (type) == TYPE_CODE_INT
  return (TYPE_CODE (type) == TYPE_CODE_INT
          || TYPE_CODE (type) == TYPE_CODE_ENUM
          || TYPE_CODE (type) == TYPE_CODE_ENUM
          || TYPE_CODE (type) == TYPE_CODE_BOOL
          || TYPE_CODE (type) == TYPE_CODE_BOOL
          || TYPE_CODE (type) == TYPE_CODE_CHAR
          || TYPE_CODE (type) == TYPE_CODE_CHAR
          || (ptr_ok && TYPE_CODE (type) == TYPE_CODE_PTR));
          || (ptr_ok && TYPE_CODE (type) == TYPE_CODE_PTR));
}
}
 
 
/* Implements conversion to int.  */
/* Implements conversion to int.  */
static PyObject *
static PyObject *
valpy_int (PyObject *self)
valpy_int (PyObject *self)
{
{
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  struct type *type = value_type (value);
  struct type *type = value_type (value);
  LONGEST l = 0;
  LONGEST l = 0;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  CHECK_TYPEDEF (type);
  CHECK_TYPEDEF (type);
  if (!is_intlike (type, 0))
  if (!is_intlike (type, 0))
    {
    {
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to int");
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to int");
      return NULL;
      return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      l = value_as_long (value);
      l = value_as_long (value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
#ifdef HAVE_LONG_LONG           /* Defined by Python.  */
#ifdef HAVE_LONG_LONG           /* Defined by Python.  */
  /* If we have 'long long', and the value overflows a 'long', use a
  /* If we have 'long long', and the value overflows a 'long', use a
     Python Long; otherwise use a Python Int.  */
     Python Long; otherwise use a Python Int.  */
  if (sizeof (l) > sizeof (long) && (l > PyInt_GetMax ()
  if (sizeof (l) > sizeof (long) && (l > PyInt_GetMax ()
                                     || l < (- (LONGEST) PyInt_GetMax ()) - 1))
                                     || l < (- (LONGEST) PyInt_GetMax ()) - 1))
    return PyLong_FromLongLong (l);
    return PyLong_FromLongLong (l);
#endif
#endif
  return PyInt_FromLong (l);
  return PyInt_FromLong (l);
}
}
 
 
/* Implements conversion to long.  */
/* Implements conversion to long.  */
static PyObject *
static PyObject *
valpy_long (PyObject *self)
valpy_long (PyObject *self)
{
{
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  struct type *type = value_type (value);
  struct type *type = value_type (value);
  LONGEST l = 0;
  LONGEST l = 0;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (!is_intlike (type, 1))
  if (!is_intlike (type, 1))
    {
    {
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to long");
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to long");
      return NULL;
      return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      l = value_as_long (value);
      l = value_as_long (value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
#ifdef HAVE_LONG_LONG           /* Defined by Python.  */
#ifdef HAVE_LONG_LONG           /* Defined by Python.  */
  return PyLong_FromLongLong (l);
  return PyLong_FromLongLong (l);
#else
#else
  return PyLong_FromLong (l);
  return PyLong_FromLong (l);
#endif
#endif
}
}
 
 
/* Implements conversion to float.  */
/* Implements conversion to float.  */
static PyObject *
static PyObject *
valpy_float (PyObject *self)
valpy_float (PyObject *self)
{
{
  struct value *value = ((value_object *) self)->value;
  struct value *value = ((value_object *) self)->value;
  struct type *type = value_type (value);
  struct type *type = value_type (value);
  double d = 0;
  double d = 0;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  CHECK_TYPEDEF (type);
  CHECK_TYPEDEF (type);
  if (TYPE_CODE (type) != TYPE_CODE_FLT)
  if (TYPE_CODE (type) != TYPE_CODE_FLT)
    {
    {
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to float");
      PyErr_SetString (PyExc_RuntimeError, "cannot convert value to float");
      return NULL;
      return NULL;
    }
    }
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      d = value_as_double (value);
      d = value_as_double (value);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return PyFloat_FromDouble (d);
  return PyFloat_FromDouble (d);
}
}
 
 
/* Returns an object for a value which is released from the all_values chain,
/* Returns an object for a value which is released from the all_values chain,
   so its lifetime is not bound to the execution of a command.  */
   so its lifetime is not bound to the execution of a command.  */
PyObject *
PyObject *
value_to_value_object (struct value *val)
value_to_value_object (struct value *val)
{
{
  value_object *val_obj;
  value_object *val_obj;
 
 
  val_obj = PyObject_New (value_object, &value_object_type);
  val_obj = PyObject_New (value_object, &value_object_type);
  if (val_obj != NULL)
  if (val_obj != NULL)
    {
    {
      val_obj->value = val;
      val_obj->value = val;
      value_incref (val);
      value_incref (val);
      val_obj->address = NULL;
      val_obj->address = NULL;
      val_obj->type = NULL;
      val_obj->type = NULL;
      note_value (val_obj);
      note_value (val_obj);
    }
    }
 
 
  return (PyObject *) val_obj;
  return (PyObject *) val_obj;
}
}
 
 
/* Returns a borrowed reference to the struct value corresponding to
/* Returns a borrowed reference to the struct value corresponding to
   the given value object.  */
   the given value object.  */
struct value *
struct value *
value_object_to_value (PyObject *self)
value_object_to_value (PyObject *self)
{
{
  value_object *real;
  value_object *real;
  if (! PyObject_TypeCheck (self, &value_object_type))
  if (! PyObject_TypeCheck (self, &value_object_type))
    return NULL;
    return NULL;
  real = (value_object *) self;
  real = (value_object *) self;
  return real->value;
  return real->value;
}
}
 
 
/* Try to convert a Python value to a gdb value.  If the value cannot
/* Try to convert a Python value to a gdb value.  If the value cannot
   be converted, set a Python exception and return NULL.  Returns a
   be converted, set a Python exception and return NULL.  Returns a
   reference to a new value on the all_values chain.  */
   reference to a new value on the all_values chain.  */
 
 
struct value *
struct value *
convert_value_from_python (PyObject *obj)
convert_value_from_python (PyObject *obj)
{
{
  struct value *value = NULL; /* -Wall */
  struct value *value = NULL; /* -Wall */
  PyObject *target_str, *unicode_str;
  PyObject *target_str, *unicode_str;
  struct cleanup *old;
  struct cleanup *old;
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
  int cmp;
  int cmp;
 
 
  gdb_assert (obj != NULL);
  gdb_assert (obj != NULL);
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      if (PyBool_Check (obj))
      if (PyBool_Check (obj))
        {
        {
          cmp = PyObject_IsTrue (obj);
          cmp = PyObject_IsTrue (obj);
          if (cmp >= 0)
          if (cmp >= 0)
            value = value_from_longest (builtin_type_pybool, cmp);
            value = value_from_longest (builtin_type_pybool, cmp);
        }
        }
      else if (PyInt_Check (obj))
      else if (PyInt_Check (obj))
        {
        {
          long l = PyInt_AsLong (obj);
          long l = PyInt_AsLong (obj);
 
 
          if (! PyErr_Occurred ())
          if (! PyErr_Occurred ())
            value = value_from_longest (builtin_type_pyint, l);
            value = value_from_longest (builtin_type_pyint, l);
        }
        }
      else if (PyLong_Check (obj))
      else if (PyLong_Check (obj))
        {
        {
          LONGEST l = PyLong_AsLongLong (obj);
          LONGEST l = PyLong_AsLongLong (obj);
 
 
          if (! PyErr_Occurred ())
          if (! PyErr_Occurred ())
            value = value_from_longest (builtin_type_pylong, l);
            value = value_from_longest (builtin_type_pylong, l);
        }
        }
      else if (PyFloat_Check (obj))
      else if (PyFloat_Check (obj))
        {
        {
          double d = PyFloat_AsDouble (obj);
          double d = PyFloat_AsDouble (obj);
 
 
          if (! PyErr_Occurred ())
          if (! PyErr_Occurred ())
            value = value_from_double (builtin_type_pyfloat, d);
            value = value_from_double (builtin_type_pyfloat, d);
        }
        }
      else if (gdbpy_is_string (obj))
      else if (gdbpy_is_string (obj))
        {
        {
          char *s;
          char *s;
 
 
          s = python_string_to_target_string (obj);
          s = python_string_to_target_string (obj);
          if (s != NULL)
          if (s != NULL)
            {
            {
              old = make_cleanup (xfree, s);
              old = make_cleanup (xfree, s);
              value = value_cstring (s, strlen (s), builtin_type_pychar);
              value = value_cstring (s, strlen (s), builtin_type_pychar);
              do_cleanups (old);
              do_cleanups (old);
            }
            }
        }
        }
      else if (PyObject_TypeCheck (obj, &value_object_type))
      else if (PyObject_TypeCheck (obj, &value_object_type))
        value = value_copy (((value_object *) obj)->value);
        value = value_copy (((value_object *) obj)->value);
      else if (gdbpy_is_lazy_string (obj))
      else if (gdbpy_is_lazy_string (obj))
        {
        {
          PyObject *result;
          PyObject *result;
          PyObject *function = PyString_FromString ("value");
          PyObject *function = PyString_FromString ("value");
          result = PyObject_CallMethodObjArgs (obj, function,  NULL);
          result = PyObject_CallMethodObjArgs (obj, function,  NULL);
          value = value_copy (((value_object *) result)->value);
          value = value_copy (((value_object *) result)->value);
        }
        }
      else
      else
        PyErr_Format (PyExc_TypeError, _("Could not convert Python object: %s"),
        PyErr_Format (PyExc_TypeError, _("Could not convert Python object: %s"),
                      PyString_AsString (PyObject_Str (obj)));
                      PyString_AsString (PyObject_Str (obj)));
    }
    }
  if (except.reason < 0)
  if (except.reason < 0)
    {
    {
      PyErr_Format (except.reason == RETURN_QUIT
      PyErr_Format (except.reason == RETURN_QUIT
                    ? PyExc_KeyboardInterrupt : PyExc_RuntimeError,
                    ? PyExc_KeyboardInterrupt : PyExc_RuntimeError,
                    "%s", except.message);
                    "%s", except.message);
      return NULL;
      return NULL;
    }
    }
 
 
  return value;
  return value;
}
}
 
 
/* Returns value object in the ARGth position in GDB's history.  */
/* Returns value object in the ARGth position in GDB's history.  */
PyObject *
PyObject *
gdbpy_history (PyObject *self, PyObject *args)
gdbpy_history (PyObject *self, PyObject *args)
{
{
  int i;
  int i;
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  struct value *res_val = NULL;   /* Initialize to appease gcc warning.  */
  volatile struct gdb_exception except;
  volatile struct gdb_exception except;
 
 
  if (!PyArg_ParseTuple (args, "i", &i))
  if (!PyArg_ParseTuple (args, "i", &i))
    return NULL;
    return NULL;
 
 
  TRY_CATCH (except, RETURN_MASK_ALL)
  TRY_CATCH (except, RETURN_MASK_ALL)
    {
    {
      res_val = access_value_history (i);
      res_val = access_value_history (i);
    }
    }
  GDB_PY_HANDLE_EXCEPTION (except);
  GDB_PY_HANDLE_EXCEPTION (except);
 
 
  return value_to_value_object (res_val);
  return value_to_value_object (res_val);
}
}
 
 
void
void
gdbpy_initialize_values (void)
gdbpy_initialize_values (void)
{
{
  if (PyType_Ready (&value_object_type) < 0)
  if (PyType_Ready (&value_object_type) < 0)
    return;
    return;
 
 
  Py_INCREF (&value_object_type);
  Py_INCREF (&value_object_type);
  PyModule_AddObject (gdb_module, "Value", (PyObject *) &value_object_type);
  PyModule_AddObject (gdb_module, "Value", (PyObject *) &value_object_type);
 
 
  values_in_python = NULL;
  values_in_python = NULL;
}
}
 
 


 
 
static PyGetSetDef value_object_getset[] = {
static PyGetSetDef value_object_getset[] = {
  { "address", valpy_get_address, NULL, "The address of the value.",
  { "address", valpy_get_address, NULL, "The address of the value.",
    NULL },
    NULL },
  { "is_optimized_out", valpy_get_is_optimized_out, NULL,
  { "is_optimized_out", valpy_get_is_optimized_out, NULL,
    "Boolean telling whether the value is optimized out (i.e., not available).",
    "Boolean telling whether the value is optimized out (i.e., not available).",
    NULL },
    NULL },
  { "type", valpy_get_type, NULL, "Type of the value.", NULL },
  { "type", valpy_get_type, NULL, "Type of the value.", NULL },
  {NULL}  /* Sentinel */
  {NULL}  /* Sentinel */
};
};
 
 
static PyMethodDef value_object_methods[] = {
static PyMethodDef value_object_methods[] = {
  { "cast", valpy_cast, METH_VARARGS, "Cast the value to the supplied type." },
  { "cast", valpy_cast, METH_VARARGS, "Cast the value to the supplied type." },
  { "dereference", valpy_dereference, METH_NOARGS, "Dereferences the value." },
  { "dereference", valpy_dereference, METH_NOARGS, "Dereferences the value." },
  { "lazy_string", (PyCFunction) valpy_lazy_string, METH_VARARGS | METH_KEYWORDS,
  { "lazy_string", (PyCFunction) valpy_lazy_string, METH_VARARGS | METH_KEYWORDS,
    "lazy_string ([encoding]  [, length]) -> lazy_string\n\
    "lazy_string ([encoding]  [, length]) -> lazy_string\n\
Return a lazy string representation of the value." },
Return a lazy string representation of the value." },
  { "string", (PyCFunction) valpy_string, METH_VARARGS | METH_KEYWORDS,
  { "string", (PyCFunction) valpy_string, METH_VARARGS | METH_KEYWORDS,
    "string ([encoding] [, errors] [, length]) -> string\n\
    "string ([encoding] [, errors] [, length]) -> string\n\
Return Unicode string representation of the value." },
Return Unicode string representation of the value." },
  {NULL}  /* Sentinel */
  {NULL}  /* Sentinel */
};
};
 
 
static PyNumberMethods value_object_as_number = {
static PyNumberMethods value_object_as_number = {
  valpy_add,
  valpy_add,
  valpy_subtract,
  valpy_subtract,
  valpy_multiply,
  valpy_multiply,
  valpy_divide,
  valpy_divide,
  valpy_remainder,
  valpy_remainder,
  NULL,                       /* nb_divmod */
  NULL,                       /* nb_divmod */
  valpy_power,                /* nb_power */
  valpy_power,                /* nb_power */
  valpy_negative,             /* nb_negative */
  valpy_negative,             /* nb_negative */
  valpy_positive,             /* nb_positive */
  valpy_positive,             /* nb_positive */
  valpy_absolute,             /* nb_absolute */
  valpy_absolute,             /* nb_absolute */
  valpy_nonzero,              /* nb_nonzero */
  valpy_nonzero,              /* nb_nonzero */
  valpy_invert,               /* nb_invert */
  valpy_invert,               /* nb_invert */
  valpy_lsh,                  /* nb_lshift */
  valpy_lsh,                  /* nb_lshift */
  valpy_rsh,                  /* nb_rshift */
  valpy_rsh,                  /* nb_rshift */
  valpy_and,                  /* nb_and */
  valpy_and,                  /* nb_and */
  valpy_xor,                  /* nb_xor */
  valpy_xor,                  /* nb_xor */
  valpy_or,                   /* nb_or */
  valpy_or,                   /* nb_or */
  NULL,                       /* nb_coerce */
  NULL,                       /* nb_coerce */
  valpy_int,                  /* nb_int */
  valpy_int,                  /* nb_int */
  valpy_long,                 /* nb_long */
  valpy_long,                 /* nb_long */
  valpy_float,                /* nb_float */
  valpy_float,                /* nb_float */
  NULL,                       /* nb_oct */
  NULL,                       /* nb_oct */
  NULL                        /* nb_hex */
  NULL                        /* nb_hex */
};
};
 
 
static PyMappingMethods value_object_as_mapping = {
static PyMappingMethods value_object_as_mapping = {
  valpy_length,
  valpy_length,
  valpy_getitem,
  valpy_getitem,
  valpy_setitem
  valpy_setitem
};
};
 
 
PyTypeObject value_object_type = {
PyTypeObject value_object_type = {
  PyObject_HEAD_INIT (NULL)
  PyObject_HEAD_INIT (NULL)
  0,                               /*ob_size*/
  0,                               /*ob_size*/
  "gdb.Value",                    /*tp_name*/
  "gdb.Value",                    /*tp_name*/
  sizeof (value_object),          /*tp_basicsize*/
  sizeof (value_object),          /*tp_basicsize*/
  0,                               /*tp_itemsize*/
  0,                               /*tp_itemsize*/
  valpy_dealloc,                  /*tp_dealloc*/
  valpy_dealloc,                  /*tp_dealloc*/
  0,                               /*tp_print*/
  0,                               /*tp_print*/
  0,                               /*tp_getattr*/
  0,                               /*tp_getattr*/
  0,                               /*tp_setattr*/
  0,                               /*tp_setattr*/
  0,                               /*tp_compare*/
  0,                               /*tp_compare*/
  0,                               /*tp_repr*/
  0,                               /*tp_repr*/
  &value_object_as_number,        /*tp_as_number*/
  &value_object_as_number,        /*tp_as_number*/
  0,                               /*tp_as_sequence*/
  0,                               /*tp_as_sequence*/
  &value_object_as_mapping,       /*tp_as_mapping*/
  &value_object_as_mapping,       /*tp_as_mapping*/
  0,                               /*tp_hash */
  0,                               /*tp_hash */
  0,                               /*tp_call*/
  0,                               /*tp_call*/
  valpy_str,                      /*tp_str*/
  valpy_str,                      /*tp_str*/
  0,                               /*tp_getattro*/
  0,                               /*tp_getattro*/
  0,                               /*tp_setattro*/
  0,                               /*tp_setattro*/
  0,                               /*tp_as_buffer*/
  0,                               /*tp_as_buffer*/
  Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES,   /*tp_flags*/
  Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES,   /*tp_flags*/
  "GDB value object",             /* tp_doc */
  "GDB value object",             /* tp_doc */
  0,                               /* tp_traverse */
  0,                               /* tp_traverse */
  0,                               /* tp_clear */
  0,                               /* tp_clear */
  valpy_richcompare,              /* tp_richcompare */
  valpy_richcompare,              /* tp_richcompare */
  0,                               /* tp_weaklistoffset */
  0,                               /* tp_weaklistoffset */
  0,                               /* tp_iter */
  0,                               /* tp_iter */
  0,                               /* tp_iternext */
  0,                               /* tp_iternext */
  value_object_methods,           /* tp_methods */
  value_object_methods,           /* tp_methods */
  0,                               /* tp_members */
  0,                               /* tp_members */
  value_object_getset,            /* tp_getset */
  value_object_getset,            /* tp_getset */
  0,                               /* tp_base */
  0,                               /* tp_base */
  0,                               /* tp_dict */
  0,                               /* tp_dict */
  0,                               /* tp_descr_get */
  0,                               /* tp_descr_get */
  0,                               /* tp_descr_set */
  0,                               /* tp_descr_set */
  0,                               /* tp_dictoffset */
  0,                               /* tp_dictoffset */
  0,                               /* tp_init */
  0,                               /* tp_init */
  0,                               /* tp_alloc */
  0,                               /* tp_alloc */
  valpy_new                       /* tp_new */
  valpy_new                       /* tp_new */
};
};
 
 
#else
#else
 
 
void
void
preserve_python_values (struct objfile *objfile, htab_t copied_types)
preserve_python_values (struct objfile *objfile, htab_t copied_types)
{
{
  /* Nothing.  */
  /* Nothing.  */
}
}
 
 
#endif /* HAVE_PYTHON */
#endif /* HAVE_PYTHON */
 
 

powered by: WebSVN 2.1.0

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