2009-03-30 21:54:33 +02:00
|
|
|
|
/* Python interface to stack frames
|
|
|
|
|
|
2014-01-01 04:54:24 +01:00
|
|
|
|
Copyright (C) 2008-2014 Free Software Foundation, Inc.
|
2009-03-30 21:54:33 +02: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"
|
|
|
|
|
#include "block.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "stack.h"
|
|
|
|
|
#include "value.h"
|
|
|
|
|
#include "python-internal.h"
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
#include "symfile.h"
|
|
|
|
|
#include "objfiles.h"
|
2014-09-04 01:34:47 +02:00
|
|
|
|
#include "user-regs.h"
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
PyObject_HEAD
|
|
|
|
|
struct frame_id frame_id;
|
|
|
|
|
struct gdbarch *gdbarch;
|
|
|
|
|
|
|
|
|
|
/* Marks that the FRAME_ID member actually holds the ID of the frame next
|
|
|
|
|
to this, and not this frames' ID itself. This is a hack to permit Python
|
|
|
|
|
frame objects which represent invalid frames (i.e., the last frame_info
|
|
|
|
|
in a corrupt stack). The problem arises from the fact that this code
|
|
|
|
|
relies on FRAME_ID to uniquely identify a frame, which is not always true
|
|
|
|
|
for the last "frame" in a corrupt stack (it can have a null ID, or the same
|
|
|
|
|
ID as the previous frame). Whenever get_prev_frame returns NULL, we
|
|
|
|
|
record the frame_id of the next frame and set FRAME_ID_IS_NEXT to 1. */
|
|
|
|
|
int frame_id_is_next;
|
|
|
|
|
} frame_object;
|
|
|
|
|
|
|
|
|
|
/* Require a valid frame. This must be called inside a TRY_CATCH, or
|
|
|
|
|
another context in which a gdb exception is allowed. */
|
|
|
|
|
#define FRAPY_REQUIRE_VALID(frame_obj, frame) \
|
|
|
|
|
do { \
|
|
|
|
|
frame = frame_object_to_frame_info (frame_obj); \
|
|
|
|
|
if (frame == NULL) \
|
2010-04-14 15:18:55 +02:00
|
|
|
|
error (_("Frame is invalid.")); \
|
2009-03-30 21:54:33 +02:00
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
/* Returns the frame_info object corresponding to the given Python Frame
|
|
|
|
|
object. If the frame doesn't exist anymore (the frame id doesn't
|
|
|
|
|
correspond to any frame in the inferior), returns NULL. */
|
|
|
|
|
|
2011-12-23 18:06:16 +01:00
|
|
|
|
struct frame_info *
|
|
|
|
|
frame_object_to_frame_info (PyObject *obj)
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{
|
2013-11-29 21:00:47 +01:00
|
|
|
|
frame_object *frame_obj = (frame_object *) obj;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
|
|
|
|
|
frame = frame_find_by_id (frame_obj->frame_id);
|
|
|
|
|
if (frame == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
if (frame_obj->frame_id_is_next)
|
|
|
|
|
frame = get_prev_frame (frame);
|
|
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called by the Python interpreter to obtain string representation
|
|
|
|
|
of the object. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_str (PyObject *self)
|
|
|
|
|
{
|
|
|
|
|
char *s;
|
|
|
|
|
PyObject *result;
|
|
|
|
|
struct ui_file *strfile;
|
|
|
|
|
|
|
|
|
|
strfile = mem_fileopen ();
|
|
|
|
|
fprint_frame_id (strfile, ((frame_object *) self)->frame_id);
|
2009-08-14 02:32:33 +02:00
|
|
|
|
s = ui_file_xstrdup (strfile, NULL);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
result = PyString_FromString (s);
|
|
|
|
|
xfree (s);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.is_valid (self) -> Boolean.
|
|
|
|
|
Returns True if the frame corresponding to the frame_id of this
|
|
|
|
|
object still exists in the inferior. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_is_valid (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2011-10-27 11:14:27 +02:00
|
|
|
|
struct frame_info *frame = NULL;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
frame = frame_object_to_frame_info (self);
|
2011-10-27 11:14:27 +02:00
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
if (frame == NULL)
|
|
|
|
|
Py_RETURN_FALSE;
|
|
|
|
|
|
|
|
|
|
Py_RETURN_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.name (self) -> String.
|
|
|
|
|
Returns the name of the function corresponding to this frame. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_name (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
2013-05-22 23:16:18 +02:00
|
|
|
|
char *name = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
enum language lang;
|
|
|
|
|
PyObject *result;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2010-09-30 12:29:00 +02:00
|
|
|
|
find_frame_funname (frame, &name, &lang, NULL);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
2013-05-22 23:16:18 +02:00
|
|
|
|
|
|
|
|
|
if (except.reason < 0)
|
|
|
|
|
xfree (name);
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
if (name)
|
2013-05-22 23:16:18 +02:00
|
|
|
|
{
|
|
|
|
|
result = PyUnicode_Decode (name, strlen (name), host_charset (), NULL);
|
|
|
|
|
xfree (name);
|
|
|
|
|
}
|
2009-03-30 21:54:33 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
result = Py_None;
|
|
|
|
|
Py_INCREF (Py_None);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.type (self) -> Integer.
|
|
|
|
|
Returns the frame type, namely one of the gdb.*_FRAME constants. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_type (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
enum frame_type type = NORMAL_FRAME;/* Initialize to appease gcc warning. */
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
type = get_frame_type (frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
return PyInt_FromLong (type);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-23 20:59:13 +01:00
|
|
|
|
/* Implementation of gdb.Frame.architecture (self) -> gdb.Architecture.
|
|
|
|
|
Returns the frame's architecture as a gdb.Architecture object. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_arch (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame = NULL; /* Initialize to appease gcc warning. */
|
|
|
|
|
frame_object *obj = (frame_object *) self;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
return gdbarch_to_arch_object (obj->gdbarch);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
/* Implementation of gdb.Frame.unwind_stop_reason (self) -> Integer.
|
|
|
|
|
Returns one of the gdb.FRAME_UNWIND_* constants. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_unwind_stop_reason (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame = NULL; /* Initialize to appease gcc warning. */
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
enum unwind_stop_reason stop_reason;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
stop_reason = get_frame_unwind_stop_reason (frame);
|
|
|
|
|
|
|
|
|
|
return PyInt_FromLong (stop_reason);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.pc (self) -> Long.
|
|
|
|
|
Returns the frame's resume address. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_pc (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR pc = 0; /* Initialize to appease gcc warning. */
|
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
pc = get_frame_pc (frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2011-01-26 21:53:45 +01:00
|
|
|
|
return gdb_py_long_from_ulongest (pc);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-04 01:34:47 +02:00
|
|
|
|
/* Implementation of gdb.Frame.read_register (self, register) -> gdb.Value.
|
|
|
|
|
Returns the value of a register in this frame. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_read_register (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
const char *regnum_str;
|
|
|
|
|
struct value *val = NULL;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple (args, "s", ®num_str))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
int regnum;
|
|
|
|
|
|
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
|
|
|
|
|
|
|
|
|
regnum = user_reg_map_name_to_regnum (get_frame_arch (frame),
|
|
|
|
|
regnum_str,
|
|
|
|
|
strlen (regnum_str));
|
|
|
|
|
if (regnum >= 0)
|
|
|
|
|
val = value_of_register (regnum, frame);
|
|
|
|
|
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
PyErr_SetString (PyExc_ValueError, _("Unknown register."));
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
return val == NULL ? NULL : value_to_value_object (val);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
/* Implementation of gdb.Frame.block (self) -> gdb.Block.
|
|
|
|
|
Returns the frame's code block. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_block (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
constify struct block in some places
This makes some spots in gdb, particularly general_symbol_info, use a
"const struct block", then fixes the fallout.
The justification is that, ordinarily, blocks ought to be readonly.
Note though that we can't add "const" in the blockvector due to block
relocation. This can be done once blocks are made independent of the
program space.
2014-06-18 Tom Tromey <tromey@redhat.com>
* varobj.c (varobj_create): Update.
* valops.c (value_of_this): Update.
* tracepoint.c (add_local_symbols, scope_info): Update.
* symtab.h (struct general_symbol_info) <block>: Now const.
* symtab.c (skip_prologue_sal)
(default_make_symbol_completion_list_break_on)
(skip_prologue_using_sal): Update.
* stack.h (iterate_over_block_locals)
(iterate_over_block_local_vars): Update.
* stack.c (print_frame_args): Update.
(iterate_over_block_locals, iterate_over_block_local_vars): Make
parameter const.
(get_selected_block): Make return type const.
* python/py-frame.c (frapy_block): Update.
* python/py-block.c (gdbpy_block_for_pc): Update.
* p-exp.y (%union) <bval>: Now const.
* mi/mi-cmd-stack.c (list_args_or_locals): Update.
* mdebugread.c (mylookup_symbol, parse_procedure): Update.
* m2-exp.y (%union) <bval>: Now const.
* linespec.c (get_current_search_block): Make return type const.
(create_sals_line_offset, find_label_symbols): Update.
* inline-frame.c (inline_frame_sniffer, skip_inline_frames):
Update.
(block_starting_point_at): Make "block" const.
* infrun.c (insert_exception_resume_breakpoint): Make "b" const.
(check_exception_resume): Update.
* guile/scm-frame.c (gdbscm_frame_block): Update.
* guile/scm-block.c (gdbscm_lookup_block): Update.
* frame.h (get_frame_block): Update.
(get_selected_block): Make return type const.
* frame.c (frame_id_inner): Update.
* f-valprint.c (info_common_command_for_block)
(info_common_command): Update.
* dwarf2loc.c (dwarf2_find_location_expression)
(dwarf_expr_frame_base, dwarf2_compile_expr_to_ax)
(locexpr_describe_location_piece): Update.
* c-exp.y (%union) <bval>: Now const.
* breakpoint.c (resolve_sal_pc): Update.
* blockframe.c (get_frame_block):Make return type const.
(get_pc_function_start, get_frame_function, find_pc_sect_function)
(block_innermost_frame): Update.
* block.h (blockvector_for_pc, blockvector_for_pc_sect)
(block_for_pc, block_for_pc_sect): Update.
* block.c (blockvector_for_pc_sect, blockvector_for_pc): Make
'pblock' const.
(block_for_pc_sect, block_for_pc): Make return type const.
* ax-gdb.c (gen_expr): Update.
* alpha-mdebug-tdep.c (find_proc_desc): Update.
* ada-lang.c (ada_read_renaming_var_value): Make 'block' const.
(ada_make_symbol_completion_list, ada_add_exceptions_from_frame)
(ada_read_var_value): Update.
* ada-exp.y (struct name_info) <block>: Now const.
(%union): Likewise.
(block_lookup): Constify.
2013-03-12 16:51:37 +01:00
|
|
|
|
const struct block *block = NULL, *fn_block;
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2011-01-06 18:16:58 +01:00
|
|
|
|
block = get_frame_block (frame, NULL);
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2011-01-06 18:16:58 +01:00
|
|
|
|
for (fn_block = block;
|
|
|
|
|
fn_block != NULL && BLOCK_FUNCTION (fn_block) == NULL;
|
|
|
|
|
fn_block = BLOCK_SUPERBLOCK (fn_block))
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
if (block == NULL || fn_block == NULL || BLOCK_FUNCTION (fn_block) == NULL)
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_RuntimeError,
|
2013-11-23 23:36:57 +01:00
|
|
|
|
_("Cannot locate block for frame."));
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (block)
|
2011-01-06 18:16:58 +01:00
|
|
|
|
{
|
|
|
|
|
struct symtab *symt;
|
|
|
|
|
|
|
|
|
|
symt = SYMBOL_SYMTAB (BLOCK_FUNCTION (fn_block));
|
|
|
|
|
return block_to_block_object (block, symt->objfile);
|
|
|
|
|
}
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.function (self) -> gdb.Symbol.
|
|
|
|
|
Returns the symbol for the function corresponding to this frame. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_function (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct symbol *sym = NULL;
|
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
|
|
|
|
|
sym = find_pc_function (get_frame_address_in_block (frame));
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
if (sym)
|
|
|
|
|
return symbol_to_symbol_object (sym);
|
|
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
/* Convert a frame_info struct to a Python Frame object.
|
|
|
|
|
Sets a Python exception and returns NULL on error. */
|
|
|
|
|
|
2010-06-28 23:16:04 +02:00
|
|
|
|
PyObject *
|
2009-03-30 21:54:33 +02:00
|
|
|
|
frame_info_to_frame_object (struct frame_info *frame)
|
|
|
|
|
{
|
|
|
|
|
frame_object *frame_obj;
|
2011-10-27 11:14:27 +02:00
|
|
|
|
volatile struct gdb_exception except;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
frame_obj = PyObject_New (frame_object, &frame_object_type);
|
|
|
|
|
if (frame_obj == NULL)
|
2013-05-17 18:52:34 +02:00
|
|
|
|
return NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2011-10-27 11:14:27 +02:00
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
2011-10-27 11:14:27 +02:00
|
|
|
|
/* Try to get the previous frame, to determine if this is the last frame
|
|
|
|
|
in a corrupt stack. If so, we need to store the frame_id of the next
|
|
|
|
|
frame and not of this one (which is possibly invalid). */
|
|
|
|
|
if (get_prev_frame (frame) == NULL
|
|
|
|
|
&& get_frame_unwind_stop_reason (frame) != UNWIND_NO_REASON
|
|
|
|
|
&& get_next_frame (frame) != NULL)
|
|
|
|
|
{
|
|
|
|
|
frame_obj->frame_id = get_frame_id (get_next_frame (frame));
|
|
|
|
|
frame_obj->frame_id_is_next = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
frame_obj->frame_id = get_frame_id (frame);
|
|
|
|
|
frame_obj->frame_id_is_next = 0;
|
|
|
|
|
}
|
|
|
|
|
frame_obj->gdbarch = get_frame_arch (frame);
|
|
|
|
|
}
|
2013-10-02 10:37:11 +02:00
|
|
|
|
if (except.reason < 0)
|
|
|
|
|
{
|
|
|
|
|
Py_DECREF (frame_obj);
|
|
|
|
|
gdbpy_convert_exception (except);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2010-06-28 23:16:04 +02:00
|
|
|
|
return (PyObject *) frame_obj;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.older (self) -> gdb.Frame.
|
|
|
|
|
Returns the frame immediately older (outer) to this frame, or None if
|
|
|
|
|
there isn't one. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_older (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2013-05-20 22:37:06 +02:00
|
|
|
|
struct frame_info *frame, *prev = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
PyObject *prev_obj = NULL; /* Initialize to appease gcc warning. */
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
prev = get_prev_frame (frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2013-05-20 22:37:06 +02:00
|
|
|
|
if (prev)
|
|
|
|
|
prev_obj = (PyObject *) frame_info_to_frame_object (prev);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Py_INCREF (Py_None);
|
|
|
|
|
prev_obj = Py_None;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return prev_obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.Frame.newer (self) -> gdb.Frame.
|
|
|
|
|
Returns the frame immediately newer (inner) to this frame, or None if
|
|
|
|
|
there isn't one. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_newer (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2013-05-20 22:37:06 +02:00
|
|
|
|
struct frame_info *frame, *next = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
PyObject *next_obj = NULL; /* Initialize to appease gcc warning. */
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
next = get_next_frame (frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2013-05-20 22:37:06 +02:00
|
|
|
|
if (next)
|
|
|
|
|
next_obj = (PyObject *) frame_info_to_frame_object (next);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Py_INCREF (Py_None);
|
|
|
|
|
next_obj = Py_None;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return next_obj;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
/* Implementation of gdb.Frame.find_sal (self) -> gdb.Symtab_and_line.
|
|
|
|
|
Returns the frame's symtab and line. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_find_sal (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
|
|
|
|
struct symtab_and_line sal;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
PyObject *sal_obj = NULL; /* Initialize to appease gcc warning. */
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
|
|
|
|
|
find_frame_sal (frame, &sal);
|
|
|
|
|
sal_obj = symtab_and_line_to_sal_object (sal);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
return sal_obj;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
/* Implementation of gdb.Frame.read_var_value (self, variable,
|
|
|
|
|
[block]) -> gdb.Value. If the optional block argument is provided
|
|
|
|
|
start the search from that block, otherwise search from the frame's
|
|
|
|
|
current block (determined by examining the resume address of the
|
|
|
|
|
frame). The variable argument must be a string or an instance of a
|
2010-10-13 15:24:40 +02:00
|
|
|
|
gdb.Symbol. The block argument must be an instance of gdb.Block. Returns
|
|
|
|
|
NULL on error, with a python exception set. */
|
2009-03-30 21:54:33 +02:00
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_read_var (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *frame;
|
2010-02-28 22:56:50 +01:00
|
|
|
|
PyObject *sym_obj, *block_obj = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
struct symbol *var = NULL; /* gcc-4.3.2 false warning. */
|
|
|
|
|
struct value *val = NULL;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
if (!PyArg_ParseTuple (args, "O|O", &sym_obj, &block_obj))
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
if (PyObject_TypeCheck (sym_obj, &symbol_object_type))
|
|
|
|
|
var = symbol_object_to_symbol (sym_obj);
|
|
|
|
|
else if (gdbpy_is_string (sym_obj))
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{
|
|
|
|
|
char *var_name;
|
2011-10-20 14:31:30 +02:00
|
|
|
|
const struct block *block = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
struct cleanup *cleanup;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
var_name = python_string_to_target_string (sym_obj);
|
|
|
|
|
if (!var_name)
|
|
|
|
|
return NULL;
|
|
|
|
|
cleanup = make_cleanup (xfree, var_name);
|
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
if (block_obj)
|
|
|
|
|
{
|
|
|
|
|
block = block_object_to_block (block_obj);
|
|
|
|
|
if (!block)
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_RuntimeError,
|
|
|
|
|
_("Second argument must be block."));
|
2013-05-30 19:16:05 +02:00
|
|
|
|
do_cleanups (cleanup);
|
2010-02-28 22:56:50 +01:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
if (!block)
|
2011-04-17 16:14:23 +02:00
|
|
|
|
block = get_frame_block (frame, NULL);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
var = lookup_symbol (var_name, block, VAR_DOMAIN, NULL);
|
|
|
|
|
}
|
2013-05-30 19:16:05 +02:00
|
|
|
|
if (except.reason < 0)
|
|
|
|
|
{
|
|
|
|
|
do_cleanups (cleanup);
|
2013-05-30 19:30:03 +02:00
|
|
|
|
gdbpy_convert_exception (except);
|
|
|
|
|
return NULL;
|
2013-05-30 19:16:05 +02:00
|
|
|
|
}
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
if (!var)
|
|
|
|
|
{
|
|
|
|
|
PyErr_Format (PyExc_ValueError,
|
2010-04-14 15:18:55 +02:00
|
|
|
|
_("Variable '%s' not found."), var_name);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
do_cleanups (cleanup);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do_cleanups (cleanup);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PyErr_SetString (PyExc_TypeError,
|
2010-04-14 15:18:55 +02:00
|
|
|
|
_("Argument must be a symbol or string."));
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
|
|
|
|
val = read_var_value (var, frame);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2010-02-28 22:56:50 +01:00
|
|
|
|
return value_to_value_object (val);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
/* Select this frame. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_select (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
struct frame_info *fi;
|
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
2011-12-23 18:06:16 +01:00
|
|
|
|
FRAPY_REQUIRE_VALID (self, fi);
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
|
|
|
|
|
select_frame (fi);
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-06 22:10:53 +01:00
|
|
|
|
/* Implementation of gdb.newest_frame () -> gdb.Frame.
|
|
|
|
|
Returns the newest frame object. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdbpy_newest_frame (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2013-05-20 22:37:06 +02:00
|
|
|
|
struct frame_info *frame = NULL;
|
2011-01-06 22:10:53 +01:00
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
|
|
|
|
frame = get_current_frame ();
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2013-05-20 22:37:06 +02:00
|
|
|
|
return frame_info_to_frame_object (frame);
|
2011-01-06 22:10:53 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 21:54:33 +02:00
|
|
|
|
/* Implementation of gdb.selected_frame () -> gdb.Frame.
|
|
|
|
|
Returns the selected frame object. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdbpy_selected_frame (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
2013-05-20 22:37:06 +02:00
|
|
|
|
struct frame_info *frame = NULL;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
volatile struct gdb_exception except;
|
|
|
|
|
|
|
|
|
|
TRY_CATCH (except, RETURN_MASK_ALL)
|
|
|
|
|
{
|
|
|
|
|
frame = get_selected_frame ("No frame is currently selected.");
|
|
|
|
|
}
|
|
|
|
|
GDB_PY_HANDLE_EXCEPTION (except);
|
|
|
|
|
|
2013-05-20 22:37:06 +02:00
|
|
|
|
return frame_info_to_frame_object (frame);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implementation of gdb.stop_reason_string (Integer) -> String.
|
|
|
|
|
Return a string explaining the unwind stop reason. */
|
|
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
|
gdbpy_frame_stop_reason_string (PyObject *self, PyObject *args)
|
|
|
|
|
{
|
|
|
|
|
int reason;
|
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
|
|
if (!PyArg_ParseTuple (args, "i", &reason))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2011-10-27 13:04:27 +02:00
|
|
|
|
if (reason < UNWIND_FIRST || reason > UNWIND_LAST)
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{
|
2013-11-29 21:00:47 +01:00
|
|
|
|
PyErr_SetString (PyExc_ValueError,
|
2010-04-14 15:18:55 +02:00
|
|
|
|
_("Invalid frame stop reason."));
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-28 23:46:33 +02:00
|
|
|
|
str = unwind_stop_reason_to_string (reason);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
return PyUnicode_Decode (str, strlen (str), host_charset (), NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Implements the equality comparison for Frame objects.
|
|
|
|
|
All other comparison operators will throw a TypeError Python exception,
|
|
|
|
|
as they aren't valid for frames. */
|
|
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
|
frapy_richcompare (PyObject *self, PyObject *other, int op)
|
|
|
|
|
{
|
2009-04-13 22:54:59 +02:00
|
|
|
|
int result;
|
|
|
|
|
|
|
|
|
|
if (!PyObject_TypeCheck (other, &frame_object_type)
|
|
|
|
|
|| (op != Py_EQ && op != Py_NE))
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{
|
2009-04-13 22:54:59 +02:00
|
|
|
|
Py_INCREF (Py_NotImplemented);
|
|
|
|
|
return Py_NotImplemented;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (frame_id_eq (((frame_object *) self)->frame_id,
|
|
|
|
|
((frame_object *) other)->frame_id))
|
2009-04-13 22:54:59 +02:00
|
|
|
|
result = Py_EQ;
|
|
|
|
|
else
|
|
|
|
|
result = Py_NE;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2009-04-13 22:54:59 +02:00
|
|
|
|
if (op == result)
|
|
|
|
|
Py_RETURN_TRUE;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
Py_RETURN_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Sets up the Frame API in the gdb module. */
|
|
|
|
|
|
* python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
Check errors.
* python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
* python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
Check errors.
* python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
Check errors.
* python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
Check errors.
* python/py-event.c (gdbpy_initialize_event): Return 'int'.
Check errors.
* python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
init function to return 'int'.
* python/py-evtregistry.c (gdbpy_initialize_eventregistry):
Return 'int'. Check errors.
* python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
Check errors.
* python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
Return 'int'. Check errors.
* python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
Check errors.
* python/py-function.c (gdbpy_initialize_functions): Return 'int'.
Check errors.
* python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
Check errors.
* python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
Check errors.
* python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
Check errors.
* python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
Check errors.
* python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
Check errors.
* python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
Check errors.
* python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
Check errors.
* python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
Check errors.
* python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
Check errors.
* python/py-type.c (gdbpy_initialize_types): Return 'int'.
Check errors.
* python/py-value.c (gdbpy_initialize_values): Return 'int'.
Check errors.
* python/python-internal.h (gdbpy_initialize_auto_load,
gdbpy_initialize_values, gdbpy_initialize_frames,
gdbpy_initialize_symtabs, gdbpy_initialize_commands,
gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
gdbpy_initialize_blocks, gdbpy_initialize_types,
gdbpy_initialize_functions, gdbpy_initialize_pspace,
gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
gdbpy_initialize_finishbreakpoints,
gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
gdbpy_initialize_thread, gdbpy_initialize_inferior,
gdbpy_initialize_eventregistry, gdbpy_initialize_event,
gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
gdbpy_initialize_signal_event,
gdbpy_initialize_breakpoint_event,
gdbpy_initialize_continue_event,
gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/python.c (gdb_python_initialized): New global.
(gdbpy_initialize_events): Return 'int'. Check errors.
(_initialize_python): Check errors. Set
gdb_python_initialized.
2013-05-20 22:28:52 +02:00
|
|
|
|
int
|
2009-03-30 21:54:33 +02:00
|
|
|
|
gdbpy_initialize_frames (void)
|
|
|
|
|
{
|
2011-08-05 16:24:10 +02:00
|
|
|
|
frame_object_type.tp_new = PyType_GenericNew;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
if (PyType_Ready (&frame_object_type) < 0)
|
* python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
Check errors.
* python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
* python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
Check errors.
* python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
Check errors.
* python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
Check errors.
* python/py-event.c (gdbpy_initialize_event): Return 'int'.
Check errors.
* python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
init function to return 'int'.
* python/py-evtregistry.c (gdbpy_initialize_eventregistry):
Return 'int'. Check errors.
* python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
Check errors.
* python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
Return 'int'. Check errors.
* python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
Check errors.
* python/py-function.c (gdbpy_initialize_functions): Return 'int'.
Check errors.
* python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
Check errors.
* python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
Check errors.
* python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
Check errors.
* python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
Check errors.
* python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
Check errors.
* python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
Check errors.
* python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
Check errors.
* python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
Check errors.
* python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
Check errors.
* python/py-type.c (gdbpy_initialize_types): Return 'int'.
Check errors.
* python/py-value.c (gdbpy_initialize_values): Return 'int'.
Check errors.
* python/python-internal.h (gdbpy_initialize_auto_load,
gdbpy_initialize_values, gdbpy_initialize_frames,
gdbpy_initialize_symtabs, gdbpy_initialize_commands,
gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
gdbpy_initialize_blocks, gdbpy_initialize_types,
gdbpy_initialize_functions, gdbpy_initialize_pspace,
gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
gdbpy_initialize_finishbreakpoints,
gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
gdbpy_initialize_thread, gdbpy_initialize_inferior,
gdbpy_initialize_eventregistry, gdbpy_initialize_event,
gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
gdbpy_initialize_signal_event,
gdbpy_initialize_breakpoint_event,
gdbpy_initialize_continue_event,
gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/python.c (gdb_python_initialized): New global.
(gdbpy_initialize_events): Return 'int'. Check errors.
(_initialize_python): Check errors. Set
gdb_python_initialized.
2013-05-20 22:28:52 +02:00
|
|
|
|
return -1;
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2011-01-06 01:57:05 +01:00
|
|
|
|
/* Note: These would probably be best exposed as class attributes of
|
|
|
|
|
Frame, but I don't know how to do it except by messing with the
|
|
|
|
|
type's dictionary. That seems too messy. */
|
* python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
Check errors.
* python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
* python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
Check errors.
* python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
Check errors.
* python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
Check errors.
* python/py-event.c (gdbpy_initialize_event): Return 'int'.
Check errors.
* python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
init function to return 'int'.
* python/py-evtregistry.c (gdbpy_initialize_eventregistry):
Return 'int'. Check errors.
* python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
Check errors.
* python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
Return 'int'. Check errors.
* python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
Check errors.
* python/py-function.c (gdbpy_initialize_functions): Return 'int'.
Check errors.
* python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
Check errors.
* python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
Check errors.
* python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
Check errors.
* python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
Check errors.
* python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
Check errors.
* python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
Check errors.
* python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
Check errors.
* python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
Check errors.
* python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
Check errors.
* python/py-type.c (gdbpy_initialize_types): Return 'int'.
Check errors.
* python/py-value.c (gdbpy_initialize_values): Return 'int'.
Check errors.
* python/python-internal.h (gdbpy_initialize_auto_load,
gdbpy_initialize_values, gdbpy_initialize_frames,
gdbpy_initialize_symtabs, gdbpy_initialize_commands,
gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
gdbpy_initialize_blocks, gdbpy_initialize_types,
gdbpy_initialize_functions, gdbpy_initialize_pspace,
gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
gdbpy_initialize_finishbreakpoints,
gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
gdbpy_initialize_thread, gdbpy_initialize_inferior,
gdbpy_initialize_eventregistry, gdbpy_initialize_event,
gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
gdbpy_initialize_signal_event,
gdbpy_initialize_breakpoint_event,
gdbpy_initialize_continue_event,
gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/python.c (gdb_python_initialized): New global.
(gdbpy_initialize_events): Return 'int'. Check errors.
(_initialize_python): Check errors. Set
gdb_python_initialized.
2013-05-20 22:28:52 +02:00
|
|
|
|
if (PyModule_AddIntConstant (gdb_module, "NORMAL_FRAME", NORMAL_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "DUMMY_FRAME", DUMMY_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "INLINE_FRAME", INLINE_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "TAILCALL_FRAME",
|
|
|
|
|
TAILCALL_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "SIGTRAMP_FRAME",
|
|
|
|
|
SIGTRAMP_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "ARCH_FRAME", ARCH_FRAME) < 0
|
|
|
|
|
|| PyModule_AddIntConstant (gdb_module, "SENTINEL_FRAME",
|
|
|
|
|
SENTINEL_FRAME) < 0)
|
|
|
|
|
return -1;
|
2011-10-27 13:04:27 +02:00
|
|
|
|
|
|
|
|
|
#define SET(name, description) \
|
* python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
Check errors.
* python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
* python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
Check errors.
* python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
Check errors.
* python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
Check errors.
* python/py-event.c (gdbpy_initialize_event): Return 'int'.
Check errors.
* python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
init function to return 'int'.
* python/py-evtregistry.c (gdbpy_initialize_eventregistry):
Return 'int'. Check errors.
* python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
Check errors.
* python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
Return 'int'. Check errors.
* python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
Check errors.
* python/py-function.c (gdbpy_initialize_functions): Return 'int'.
Check errors.
* python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
Check errors.
* python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
Check errors.
* python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
Check errors.
* python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
Check errors.
* python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
Check errors.
* python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
Check errors.
* python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
Check errors.
* python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
Check errors.
* python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
Check errors.
* python/py-type.c (gdbpy_initialize_types): Return 'int'.
Check errors.
* python/py-value.c (gdbpy_initialize_values): Return 'int'.
Check errors.
* python/python-internal.h (gdbpy_initialize_auto_load,
gdbpy_initialize_values, gdbpy_initialize_frames,
gdbpy_initialize_symtabs, gdbpy_initialize_commands,
gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
gdbpy_initialize_blocks, gdbpy_initialize_types,
gdbpy_initialize_functions, gdbpy_initialize_pspace,
gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
gdbpy_initialize_finishbreakpoints,
gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
gdbpy_initialize_thread, gdbpy_initialize_inferior,
gdbpy_initialize_eventregistry, gdbpy_initialize_event,
gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
gdbpy_initialize_signal_event,
gdbpy_initialize_breakpoint_event,
gdbpy_initialize_continue_event,
gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
* python/python.c (gdb_python_initialized): New global.
(gdbpy_initialize_events): Return 'int'. Check errors.
(_initialize_python): Check errors. Set
gdb_python_initialized.
2013-05-20 22:28:52 +02:00
|
|
|
|
if (PyModule_AddIntConstant (gdb_module, "FRAME_"#name, name) < 0) \
|
|
|
|
|
return -1;
|
2011-10-27 13:04:27 +02:00
|
|
|
|
#include "unwind_stop_reasons.def"
|
|
|
|
|
#undef SET
|
2009-03-30 21:54:33 +02:00
|
|
|
|
|
2013-05-20 22:36:19 +02:00
|
|
|
|
return gdb_pymodule_addobject (gdb_module, "Frame",
|
|
|
|
|
(PyObject *) &frame_object_type);
|
2009-03-30 21:54:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static PyMethodDef frame_object_methods[] = {
|
|
|
|
|
{ "is_valid", frapy_is_valid, METH_NOARGS,
|
|
|
|
|
"is_valid () -> Boolean.\n\
|
|
|
|
|
Return true if this frame is valid, false if not." },
|
|
|
|
|
{ "name", frapy_name, METH_NOARGS,
|
|
|
|
|
"name () -> String.\n\
|
|
|
|
|
Return the function name of the frame, or None if it can't be determined." },
|
|
|
|
|
{ "type", frapy_type, METH_NOARGS,
|
|
|
|
|
"type () -> Integer.\n\
|
|
|
|
|
Return the type of the frame." },
|
2013-01-23 20:59:13 +01:00
|
|
|
|
{ "architecture", frapy_arch, METH_NOARGS,
|
|
|
|
|
"architecture () -> gdb.Architecture.\n\
|
|
|
|
|
Return the architecture of the frame." },
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{ "unwind_stop_reason", frapy_unwind_stop_reason, METH_NOARGS,
|
|
|
|
|
"unwind_stop_reason () -> Integer.\n\
|
|
|
|
|
Return the reason why it's not possible to find frames older than this." },
|
|
|
|
|
{ "pc", frapy_pc, METH_NOARGS,
|
|
|
|
|
"pc () -> Long.\n\
|
|
|
|
|
Return the frame's resume address." },
|
2014-09-04 01:34:47 +02:00
|
|
|
|
{ "read_register", frapy_read_register, METH_VARARGS,
|
|
|
|
|
"read_register (register_name) -> gdb.Value\n\
|
|
|
|
|
Return the value of the register in the frame." },
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
{ "block", frapy_block, METH_NOARGS,
|
|
|
|
|
"block () -> gdb.Block.\n\
|
|
|
|
|
Return the frame's code block." },
|
|
|
|
|
{ "function", frapy_function, METH_NOARGS,
|
|
|
|
|
"function () -> gdb.Symbol.\n\
|
|
|
|
|
Returns the symbol for the function corresponding to this frame." },
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{ "older", frapy_older, METH_NOARGS,
|
|
|
|
|
"older () -> gdb.Frame.\n\
|
|
|
|
|
Return the frame that called this frame." },
|
|
|
|
|
{ "newer", frapy_newer, METH_NOARGS,
|
|
|
|
|
"newer () -> gdb.Frame.\n\
|
|
|
|
|
Return the frame called by this frame." },
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
{ "find_sal", frapy_find_sal, METH_NOARGS,
|
|
|
|
|
"find_sal () -> gdb.Symtab_and_line.\n\
|
|
|
|
|
Return the frame's symtab and line." },
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{ "read_var", frapy_read_var, METH_VARARGS,
|
|
|
|
|
"read_var (variable) -> gdb.Value.\n\
|
|
|
|
|
Return the value of the variable in this frame." },
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 22:18:28 +01:00
|
|
|
|
{ "select", frapy_select, METH_NOARGS,
|
|
|
|
|
"Select this frame as the user's current frame." },
|
2009-03-30 21:54:33 +02:00
|
|
|
|
{NULL} /* Sentinel */
|
|
|
|
|
};
|
|
|
|
|
|
2012-02-07 20:47:16 +01:00
|
|
|
|
PyTypeObject frame_object_type = {
|
2012-12-12 17:47:30 +01:00
|
|
|
|
PyVarObject_HEAD_INIT (NULL, 0)
|
2009-03-30 21:54:33 +02:00
|
|
|
|
"gdb.Frame", /* tp_name */
|
|
|
|
|
sizeof (frame_object), /* tp_basicsize */
|
|
|
|
|
0, /* tp_itemsize */
|
|
|
|
|
0, /* tp_dealloc */
|
|
|
|
|
0, /* tp_print */
|
|
|
|
|
0, /* tp_getattr */
|
|
|
|
|
0, /* tp_setattr */
|
|
|
|
|
0, /* tp_compare */
|
|
|
|
|
0, /* tp_repr */
|
|
|
|
|
0, /* tp_as_number */
|
|
|
|
|
0, /* tp_as_sequence */
|
|
|
|
|
0, /* tp_as_mapping */
|
|
|
|
|
0, /* tp_hash */
|
|
|
|
|
0, /* tp_call */
|
|
|
|
|
frapy_str, /* tp_str */
|
|
|
|
|
0, /* tp_getattro */
|
|
|
|
|
0, /* tp_setattro */
|
|
|
|
|
0, /* tp_as_buffer */
|
|
|
|
|
Py_TPFLAGS_DEFAULT, /* tp_flags */
|
|
|
|
|
"GDB frame object", /* tp_doc */
|
|
|
|
|
0, /* tp_traverse */
|
|
|
|
|
0, /* tp_clear */
|
|
|
|
|
frapy_richcompare, /* tp_richcompare */
|
|
|
|
|
0, /* tp_weaklistoffset */
|
|
|
|
|
0, /* tp_iter */
|
|
|
|
|
0, /* tp_iternext */
|
|
|
|
|
frame_object_methods, /* tp_methods */
|
|
|
|
|
0, /* tp_members */
|
|
|
|
|
0, /* tp_getset */
|
|
|
|
|
0, /* tp_base */
|
|
|
|
|
0, /* tp_dict */
|
|
|
|
|
0, /* tp_descr_get */
|
|
|
|
|
0, /* tp_descr_set */
|
|
|
|
|
0, /* tp_dictoffset */
|
|
|
|
|
0, /* tp_init */
|
|
|
|
|
0, /* tp_alloc */
|
|
|
|
|
};
|