2008-08-06 19:41:33 +00:00
|
|
|
|
/* General utility routines for GDB/Python.
|
|
|
|
|
|
2013-01-01 06:33:28 +00:00
|
|
|
|
Copyright (C) 2008-2013 Free Software Foundation, Inc.
|
2008-08-06 19:41:33 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "charset.h"
|
2010-06-28 21:16:04 +00:00
|
|
|
|
#include "value.h"
|
2008-08-06 19:41:33 +00:00
|
|
|
|
#include "python-internal.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is a cleanup function which decrements the refcount on a
|
|
|
|
|
Python object. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
py_decref (void *p)
|
|
|
|
|
{
|
|
|
|
|
PyObject *py = p;
|
2010-05-17 21:23:25 +00:00
|
|
|
|
|
2008-08-06 19:41:33 +00:00
|
|
|
|
/* Note that we need the extra braces in this 'if' to avoid a
|
|
|
|
|
warning from gcc. */
|
|
|
|
|
if (py)
|
|
|
|
|
{
|
|
|
|
|
Py_DECREF (py);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return a new cleanup which will decrement the Python object's
|
|
|
|
|
refcount when run. */
|
|
|
|
|
|
|
|
|
|
struct cleanup *
|
|
|
|
|
make_cleanup_py_decref (PyObject *py)
|
|
|
|
|
{
|
|
|
|
|
return make_cleanup (py_decref, (void *) py);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* stack.c (backtrace_command_1): Add "no-filters", and Python frame
filter logic.
(backtrace_command): Add "no-filters" option parsing.
(_initialize_stack): Alter help to reflect "no-filters" option.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
(SUBDIR_PYTHON_SRCS): Add py-framefilter.c
(py-frame.o): Add target
* data-directory/Makefile.in (PYTHON_DIR): Add Python frame
filter files.
* python/python.h: Add new frame filter constants, and flag enum.
(apply_frame_filter): Add definition.
* python/python.c (apply_frame_filter): New non-Python
enabled function.
* python/py-utils.c (py_xdecref): New function.
(make_cleanup_py_xdecref): Ditto.
* python/py-objfile.c: Declare frame_filters dictionary.
(objfpy_dealloc): Add frame_filters dealloc.
(objfpy_new): Initialize frame_filters attribute.
(objfile_to_objfile_object): Ditto.
(objfpy_get_frame_filters): New function.
(objfpy_set_frame_filters): New function.
* python/py-progspace.c: Declare frame_filters dictionary.
(pspy_dealloc): Add frame_filters dealloc.
(pspy_new): Initialize frame_filters attribute.
(pspacee_to_pspace_object): Ditto.
(pspy_get_frame_filters): New function.
(pspy_set_frame_filters): New function.
* python/py-framefilter.c: New file.
* python/lib/gdb/command/frame_filters.py: New file.
* python/lib/gdb/frames.py: New file.
* python/lib/gdb/__init__.py: Initialize global frame_filters
dictionary
* python/lib/gdb/FrameDecorator.py: New file.
* python/lib/gdb/FrameIterator.py: New file.
* mi/mi-cmds.c (mi_cmds): Add frame filters command.
* mi/mi-cmds.h: Declare.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
--no-frame-filter logic, and Python frame filter logic.
(stack_enable_frame_filters): New function.
(parse_no_frame_option): Ditto.
(mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
filter logic.
(mi_cmd_stack_list_locals): Ditto.
(mi_cmd_stack_list_args): Ditto.
(mi_cmd_stack_list_variables): Ditto.
* NEWS: Add frame filter note.
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* gdb.python/py-framefilter.py: New File.
* gdb.python/py-framefilter-mi.exp: Ditto.
* gdb.python/py-framefilter.c: Ditto.
* gdb.python/py-framefilter-mi.exp: Ditto.
* gdb.python/py-framefilter-mi.c: Ditto,
* gdb.python/py-framefilter-gdb.py.in: Ditto.
2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Backtrace): Add "no-filter" argument.
(Python API): Add Frame Filters API, Frame Wrapper API,
Writing a Frame Filter/Wrapper, Managing Management of Frame
Filters chapter entries.
(Frame Filters API): New Node.
(Frame Wrapper API): New Node.
(Writing a Frame Filter): New Node.
(Managing Frame Filters): New Node.
(Progspaces In Python): Add note about frame_filters attribute.
(Objfiles in Python): Ditto.
(GDB/MI Stack Manipulation): Add -enable-frame-filters command,
@anchors and --no-frame-filters option to -stack-list-variables,
-stack-list-frames, -stack-list-locals and -stack-list-arguments
commands.
2013-05-10 10:26:03 +00:00
|
|
|
|
/* This is a cleanup function which decrements the refcount on a
|
|
|
|
|
Python object. This function accounts appropriately for NULL
|
|
|
|
|
references. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
py_xdecref (void *p)
|
|
|
|
|
{
|
|
|
|
|
PyObject *py = p;
|
|
|
|
|
|
|
|
|
|
Py_XDECREF (py);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return a new cleanup which will decrement the Python object's
|
|
|
|
|
refcount when run. Account for and operate on NULL references
|
|
|
|
|
correctly. */
|
|
|
|
|
|
|
|
|
|
struct cleanup *
|
|
|
|
|
make_cleanup_py_xdecref (PyObject *py)
|
|
|
|
|
{
|
|
|
|
|
return make_cleanup (py_xdecref, py);
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-06 19:41:33 +00:00
|
|
|
|
/* Converts a Python 8-bit string to a unicode string object. Assumes the
|
|
|
|
|
8-bit string is in the host charset. If an error occurs during conversion,
|
|
|
|
|
returns NULL with a python exception set.
|
|
|
|
|
|
|
|
|
|
As an added bonus, the functions accepts a unicode string and returns it
|
|
|
|
|
right away, so callers don't need to check which kind of string they've
|
2012-12-12 16:47:30 +00:00
|
|
|
|
got. In Python 3, all strings are Unicode so this case is always the
|
|
|
|
|
one that applies.
|
2008-08-06 19:41:33 +00:00
|
|
|
|
|
|
|
|
|
If the given object is not one of the mentioned string types, NULL is
|
|
|
|
|
returned, with the TypeError python exception set. */
|
|
|
|
|
PyObject *
|
|
|
|
|
python_string_to_unicode (PyObject *obj)
|
|
|
|
|
{
|
|
|
|
|
PyObject *unicode_str;
|
|
|
|
|
|
|
|
|
|
/* If obj is already a unicode string, just return it.
|
|
|
|
|
I wish life was always that simple... */
|
|
|
|
|
if (PyUnicode_Check (obj))
|
2009-02-26 20:45:21 +00:00
|
|
|
|
{
|
|
|
|
|
unicode_str = obj;
|
|
|
|
|
Py_INCREF (obj);
|
|
|
|
|
}
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifndef IS_PY3K
|
2008-08-06 19:41:33 +00:00
|
|
|
|
else if (PyString_Check (obj))
|
|
|
|
|
unicode_str = PyUnicode_FromEncodedObject (obj, host_charset (), NULL);
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2008-08-06 19:41:33 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_TypeError,
|
|
|
|
|
_("Expected a string or unicode object."));
|
|
|
|
|
unicode_str = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return unicode_str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns a newly allocated string with the contents of the given unicode
|
2009-02-04 21:55:40 +00:00
|
|
|
|
string object converted to CHARSET. If an error occurs during the
|
|
|
|
|
conversion, NULL will be returned and a python exception will be set.
|
2008-08-06 19:41:33 +00:00
|
|
|
|
|
|
|
|
|
The caller is responsible for xfree'ing the string. */
|
2009-02-04 21:55:40 +00:00
|
|
|
|
static char *
|
|
|
|
|
unicode_to_encoded_string (PyObject *unicode_str, const char *charset)
|
2008-08-06 19:41:33 +00:00
|
|
|
|
{
|
2009-02-04 21:55:40 +00:00
|
|
|
|
char *result;
|
2008-08-06 19:41:33 +00:00
|
|
|
|
PyObject *string;
|
|
|
|
|
|
2009-02-04 21:55:40 +00:00
|
|
|
|
/* Translate string to named charset. */
|
|
|
|
|
string = PyUnicode_AsEncodedString (unicode_str, charset, NULL);
|
2008-08-06 19:41:33 +00:00
|
|
|
|
if (string == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifdef IS_PY3K
|
|
|
|
|
result = xstrdup (PyBytes_AsString (string));
|
|
|
|
|
#else
|
2009-02-04 21:55:40 +00:00
|
|
|
|
result = xstrdup (PyString_AsString (string));
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2008-08-06 19:41:33 +00:00
|
|
|
|
|
|
|
|
|
Py_DECREF (string);
|
|
|
|
|
|
2009-02-04 21:55:40 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-10 10:35:17 +00:00
|
|
|
|
/* Returns a PyObject with the contents of the given unicode string
|
|
|
|
|
object converted to a named charset. If an error occurs during
|
|
|
|
|
the conversion, NULL will be returned and a python exception will
|
|
|
|
|
be set. */
|
|
|
|
|
static PyObject *
|
|
|
|
|
unicode_to_encoded_python_string (PyObject *unicode_str, const char *charset)
|
|
|
|
|
{
|
|
|
|
|
/* Translate string to named charset. */
|
2012-12-12 16:47:30 +00:00
|
|
|
|
return PyUnicode_AsEncodedString (unicode_str, charset, NULL);
|
2009-07-10 10:35:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-04 21:55:40 +00:00
|
|
|
|
/* Returns a newly allocated string with the contents of the given unicode
|
|
|
|
|
string object converted to the target's charset. If an error occurs during
|
|
|
|
|
the conversion, NULL will be returned and a python exception will be set.
|
|
|
|
|
|
|
|
|
|
The caller is responsible for xfree'ing the string. */
|
|
|
|
|
char *
|
|
|
|
|
unicode_to_target_string (PyObject *unicode_str)
|
|
|
|
|
{
|
2010-03-05 20:18:19 +00:00
|
|
|
|
return unicode_to_encoded_string (unicode_str,
|
|
|
|
|
target_charset (python_gdbarch));
|
2008-08-06 19:41:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-10 10:35:17 +00:00
|
|
|
|
/* Returns a PyObject with the contents of the given unicode string
|
|
|
|
|
object converted to the target's charset. If an error occurs
|
|
|
|
|
during the conversion, NULL will be returned and a python exception
|
|
|
|
|
will be set. */
|
2012-03-01 21:06:54 +00:00
|
|
|
|
static PyObject *
|
2009-07-10 10:35:17 +00:00
|
|
|
|
unicode_to_target_python_string (PyObject *unicode_str)
|
|
|
|
|
{
|
2010-03-05 20:18:19 +00:00
|
|
|
|
return unicode_to_encoded_python_string (unicode_str,
|
|
|
|
|
target_charset (python_gdbarch));
|
2009-07-10 10:35:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-08-06 19:41:33 +00:00
|
|
|
|
/* Converts a python string (8-bit or unicode) to a target string in
|
|
|
|
|
the target's charset. Returns NULL on error, with a python exception set.
|
|
|
|
|
|
|
|
|
|
The caller is responsible for xfree'ing the string. */
|
|
|
|
|
char *
|
|
|
|
|
python_string_to_target_string (PyObject *obj)
|
|
|
|
|
{
|
|
|
|
|
PyObject *str;
|
2009-02-26 20:45:21 +00:00
|
|
|
|
char *result;
|
2008-08-06 19:41:33 +00:00
|
|
|
|
|
|
|
|
|
str = python_string_to_unicode (obj);
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2009-02-26 20:45:21 +00:00
|
|
|
|
result = unicode_to_target_string (str);
|
|
|
|
|
Py_DECREF (str);
|
|
|
|
|
return result;
|
2008-08-06 19:41:33 +00:00
|
|
|
|
}
|
2009-02-04 21:55:40 +00:00
|
|
|
|
|
2009-07-10 10:35:17 +00:00
|
|
|
|
/* Converts a python string (8-bit or unicode) to a target string in the
|
|
|
|
|
target's charset. Returns NULL on error, with a python exception
|
2012-12-12 16:47:30 +00:00
|
|
|
|
set.
|
|
|
|
|
|
|
|
|
|
In Python 3, the returned object is a "bytes" object (not a string). */
|
2009-07-10 10:35:17 +00:00
|
|
|
|
PyObject *
|
|
|
|
|
python_string_to_target_python_string (PyObject *obj)
|
|
|
|
|
{
|
|
|
|
|
PyObject *str;
|
|
|
|
|
PyObject *result;
|
|
|
|
|
|
|
|
|
|
str = python_string_to_unicode (obj);
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
result = unicode_to_target_python_string (str);
|
|
|
|
|
Py_DECREF (str);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-04 21:55:40 +00:00
|
|
|
|
/* Converts a python string (8-bit or unicode) to a target string in
|
|
|
|
|
the host's charset. Returns NULL on error, with a python exception set.
|
|
|
|
|
|
|
|
|
|
The caller is responsible for xfree'ing the string. */
|
|
|
|
|
char *
|
|
|
|
|
python_string_to_host_string (PyObject *obj)
|
|
|
|
|
{
|
|
|
|
|
PyObject *str;
|
2009-02-26 20:45:21 +00:00
|
|
|
|
char *result;
|
2009-02-04 21:55:40 +00:00
|
|
|
|
|
|
|
|
|
str = python_string_to_unicode (obj);
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2009-02-26 20:45:21 +00:00
|
|
|
|
result = unicode_to_encoded_string (str, host_charset ());
|
|
|
|
|
Py_DECREF (str);
|
|
|
|
|
return result;
|
2009-02-04 21:55:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return true if OBJ is a Python string or unicode object, false
|
|
|
|
|
otherwise. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
gdbpy_is_string (PyObject *obj)
|
|
|
|
|
{
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifdef IS_PY3K
|
|
|
|
|
return PyUnicode_Check (obj);
|
|
|
|
|
#else
|
2009-02-04 21:55:40 +00:00
|
|
|
|
return PyString_Check (obj) || PyUnicode_Check (obj);
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2009-02-04 21:55:40 +00:00
|
|
|
|
}
|
2010-05-25 15:27:17 +00:00
|
|
|
|
|
|
|
|
|
/* Return the string representation of OBJ, i.e., str (obj).
|
|
|
|
|
Space for the result is malloc'd, the caller must free.
|
|
|
|
|
If the result is NULL a python error occurred, the caller must clear it. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
gdbpy_obj_to_string (PyObject *obj)
|
|
|
|
|
{
|
|
|
|
|
PyObject *str_obj = PyObject_Str (obj);
|
|
|
|
|
|
|
|
|
|
if (str_obj != NULL)
|
|
|
|
|
{
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifdef IS_PY3K
|
|
|
|
|
char *msg = python_string_to_host_string (str_obj);
|
|
|
|
|
#else
|
2010-05-25 15:27:17 +00:00
|
|
|
|
char *msg = xstrdup (PyString_AsString (str_obj));
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2010-05-25 15:27:17 +00:00
|
|
|
|
|
|
|
|
|
Py_DECREF (str_obj);
|
|
|
|
|
return msg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the string representation of the exception represented by
|
|
|
|
|
TYPE, VALUE which is assumed to have been obtained with PyErr_Fetch,
|
|
|
|
|
i.e., the error indicator is currently clear.
|
|
|
|
|
Space for the result is malloc'd, the caller must free.
|
|
|
|
|
If the result is NULL a python error occurred, the caller must clear it. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
gdbpy_exception_to_string (PyObject *ptype, PyObject *pvalue)
|
|
|
|
|
{
|
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
|
|
/* There are a few cases to consider.
|
|
|
|
|
For example:
|
|
|
|
|
pvalue is a string when PyErr_SetString is used.
|
|
|
|
|
pvalue is not a string when raise "foo" is used, instead it is None
|
|
|
|
|
and ptype is "foo".
|
|
|
|
|
So the algorithm we use is to print `str (pvalue)' if it's not
|
|
|
|
|
None, otherwise we print `str (ptype)'.
|
|
|
|
|
Using str (aka PyObject_Str) will fetch the error message from
|
|
|
|
|
gdb.GdbError ("message"). */
|
|
|
|
|
|
|
|
|
|
if (pvalue && pvalue != Py_None)
|
|
|
|
|
str = gdbpy_obj_to_string (pvalue);
|
|
|
|
|
else
|
|
|
|
|
str = gdbpy_obj_to_string (ptype);
|
|
|
|
|
|
|
|
|
|
return str;
|
|
|
|
|
}
|
2010-06-28 21:16:04 +00:00
|
|
|
|
|
2010-11-12 20:49:43 +00:00
|
|
|
|
/* Convert a GDB exception to the appropriate Python exception.
|
|
|
|
|
|
2013-05-20 20:19:03 +00:00
|
|
|
|
This sets the Python error indicator. */
|
2010-11-12 20:49:43 +00:00
|
|
|
|
|
2013-05-20 20:19:03 +00:00
|
|
|
|
void
|
2010-11-12 20:49:43 +00:00
|
|
|
|
gdbpy_convert_exception (struct gdb_exception exception)
|
|
|
|
|
{
|
|
|
|
|
PyObject *exc_class;
|
|
|
|
|
|
|
|
|
|
if (exception.reason == RETURN_QUIT)
|
|
|
|
|
exc_class = PyExc_KeyboardInterrupt;
|
|
|
|
|
else if (exception.error == MEMORY_ERROR)
|
|
|
|
|
exc_class = gdbpy_gdb_memory_error;
|
|
|
|
|
else
|
|
|
|
|
exc_class = gdbpy_gdb_error;
|
|
|
|
|
|
2013-05-20 20:19:03 +00:00
|
|
|
|
PyErr_Format (exc_class, "%s", exception.message);
|
2010-11-12 20:49:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-06-28 21:16:04 +00:00
|
|
|
|
/* Converts OBJ to a CORE_ADDR value.
|
|
|
|
|
|
|
|
|
|
Returns 1 on success or 0 on failure, with a Python exception set. This
|
|
|
|
|
function can also throw GDB exceptions.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
get_addr_from_python (PyObject *obj, CORE_ADDR *addr)
|
|
|
|
|
{
|
|
|
|
|
if (gdbpy_is_value_object (obj))
|
|
|
|
|
*addr = value_as_address (value_object_to_value (obj));
|
2011-01-26 20:53:45 +00:00
|
|
|
|
else
|
2010-06-28 21:16:04 +00:00
|
|
|
|
{
|
2011-01-26 20:53:45 +00:00
|
|
|
|
PyObject *num = PyNumber_Long (obj);
|
|
|
|
|
gdb_py_ulongest val;
|
|
|
|
|
|
|
|
|
|
if (num == NULL)
|
2010-06-28 21:16:04 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
2011-01-26 20:53:45 +00:00
|
|
|
|
val = gdb_py_long_as_ulongest (num);
|
|
|
|
|
Py_XDECREF (num);
|
|
|
|
|
if (PyErr_Occurred ())
|
|
|
|
|
return 0;
|
2010-06-28 21:16:04 +00:00
|
|
|
|
|
2011-01-26 20:53:45 +00:00
|
|
|
|
if (sizeof (val) > sizeof (CORE_ADDR) && ((CORE_ADDR) val) != val)
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_ValueError,
|
|
|
|
|
_("Overflow converting to address."));
|
2010-06-28 21:16:04 +00:00
|
|
|
|
return 0;
|
2011-01-26 20:53:45 +00:00
|
|
|
|
}
|
2010-06-28 21:16:04 +00:00
|
|
|
|
|
2011-01-26 20:53:45 +00:00
|
|
|
|
*addr = val;
|
2010-06-28 21:16:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2011-01-26 20:53:45 +00:00
|
|
|
|
|
|
|
|
|
/* Convert a LONGEST to the appropriate Python object -- either an
|
|
|
|
|
integer object or a long object, depending on its value. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdb_py_object_from_longest (LONGEST l)
|
|
|
|
|
{
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifdef IS_PY3K
|
|
|
|
|
if (sizeof (l) > sizeof (long))
|
|
|
|
|
return PyLong_FromLongLong (l);
|
|
|
|
|
return PyLong_FromLong (l);
|
|
|
|
|
#else
|
2011-01-26 20:53:45 +00:00
|
|
|
|
#ifdef HAVE_LONG_LONG /* Defined by Python. */
|
|
|
|
|
/* If we have 'long long', and the value overflows a 'long', use a
|
|
|
|
|
Python Long; otherwise use a Python Int. */
|
|
|
|
|
if (sizeof (l) > sizeof (long)
|
|
|
|
|
&& (l > PyInt_GetMax () || l < (- (LONGEST) PyInt_GetMax ()) - 1))
|
|
|
|
|
return PyLong_FromLongLong (l);
|
|
|
|
|
#endif
|
|
|
|
|
return PyInt_FromLong (l);
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2011-01-26 20:53:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Convert a ULONGEST to the appropriate Python object -- either an
|
|
|
|
|
integer object or a long object, depending on its value. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdb_py_object_from_ulongest (ULONGEST l)
|
|
|
|
|
{
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#ifdef IS_PY3K
|
|
|
|
|
if (sizeof (l) > sizeof (unsigned long))
|
|
|
|
|
return PyLong_FromUnsignedLongLong (l);
|
|
|
|
|
return PyLong_FromUnsignedLong (l);
|
|
|
|
|
#else
|
2011-01-26 20:53:45 +00:00
|
|
|
|
#ifdef HAVE_LONG_LONG /* Defined by Python. */
|
|
|
|
|
/* If we have 'long long', and the value overflows a 'long', use a
|
|
|
|
|
Python Long; otherwise use a Python Int. */
|
|
|
|
|
if (sizeof (l) > sizeof (unsigned long) && l > PyInt_GetMax ())
|
|
|
|
|
return PyLong_FromUnsignedLongLong (l);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (l > PyInt_GetMax ())
|
|
|
|
|
return PyLong_FromUnsignedLong (l);
|
|
|
|
|
|
|
|
|
|
return PyInt_FromLong (l);
|
2012-12-12 16:47:30 +00:00
|
|
|
|
#endif
|
2011-01-26 20:53:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like PyInt_AsLong, but returns 0 on failure, 1 on success, and puts
|
|
|
|
|
the value into an out parameter. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
gdb_py_int_as_long (PyObject *obj, long *result)
|
|
|
|
|
{
|
|
|
|
|
*result = PyInt_AsLong (obj);
|
|
|
|
|
return ! (*result == -1 && PyErr_Occurred ());
|
|
|
|
|
}
|
2012-02-17 19:24:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Generic implementation of the __dict__ attribute for objects that
|
|
|
|
|
have a dictionary. The CLOSURE argument should be the type object.
|
|
|
|
|
This only handles positive values for tp_dictoffset. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdb_py_generic_dict (PyObject *self, void *closure)
|
|
|
|
|
{
|
|
|
|
|
PyObject *result;
|
|
|
|
|
PyTypeObject *type_obj = closure;
|
|
|
|
|
char *raw_ptr;
|
|
|
|
|
|
|
|
|
|
raw_ptr = (char *) self + type_obj->tp_dictoffset;
|
|
|
|
|
result = * (PyObject **) raw_ptr;
|
|
|
|
|
|
|
|
|
|
Py_INCREF (result);
|
|
|
|
|
return result;
|
|
|
|
|
}
|