mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2026-08-27 00:26:02 -04:00
Remove the frame_object::frame_id_is_next field. This has been part
of how Python handles frames since this code was first added in commit
f8f6f20b6e back in 2009. The motivation
for this field can be found in a couple of comments, there's this one
on frame_id_is_next:
/* 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. */
And this one in frame_info_to_frame_object:
/* 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). */
This field is dealing with a problem that was present in older
versions of GDB where not every stack frame had a valid frame-id, if
the stack was corrupted in some way then the last frame might have an
invalid frame-id. However, that is no longer the case. With current
GDB there is a promise that every frame has a valid frame-id. I don't
have a single commit to point to where this became the reality, but it
is my understanding of current GDB.
As an example, the frame-id of every frame (except #0) is computed as
the frame is created, any frames with a duplicate frame-id, or any
errors during computation of the frame-id, and the new frame is
discarded.
Additionally, our frame_info_ptr::reinflate mechanism relies on unique
and valid frame-ids.
The problem with the existing code is that the last frame in a
corrupted stack will hold the frame-id of the next frame, that is, the
more inner frame. This means we have two frames holding the same
frame-id, and the only difference is the frame_id_is_next flag.
However, the frapy_str function, which prints a string representation
of the frame, doesn't take frame_id_is_next into account, so printing
the last two frames in a corrupted stack, will print the same
frame-id.
We could fix this in frapy_str and also frapy_repr by checking the
frame_id_is_next flag and then fetching the previous frame-id, but
this would still assume that the previous frame has a valid-id, so we
might as well just drop the frame_id_is_next flag and make everything
simpler.
There's a new test which exposes the incorrectly printed frame-id
problem.
While testing I needed to "fix" the results for two existing tests.
In frame_info_to_frame_object, in order to figure out if we should use
the next frame, we called get_prev_frame. This would cause GDB to
always unwind 1 extra level of the stack.
What this means is that, if there is an error, or some diagnostic
output, when unwinding frame #1, then this will show up when trying to
access frame #0 via the Python API as frame_info_to_frame_object on
frame #0 would call get_prev_frame, which would then unwind frame #1.
After this commit this is no longer the case. We only see
output (either errors, or diagnostic output) associated with frame #1
when we actually try to unwind to frame #1. The two tests that needed
updating were expecting output associated with frame #1 while printing
frame #0. This is now fixed and the output for frame #1 occurs later
on. I think this is an improvement.
842 lines
22 KiB
C
842 lines
22 KiB
C
/* Python interface to stack frames
|
||
|
||
Copyright (C) 2008-2026 Free Software Foundation, Inc.
|
||
|
||
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 "language.h"
|
||
#include "charset.h"
|
||
#include "block.h"
|
||
#include "frame.h"
|
||
#include "symtab.h"
|
||
#include "stack.h"
|
||
#include "value.h"
|
||
#include "python-internal.h"
|
||
#include "symfile.h"
|
||
#include "objfiles.h"
|
||
|
||
struct frame_object : public PyObject
|
||
{
|
||
struct frame_id frame_id;
|
||
struct gdbarch *gdbarch;
|
||
};
|
||
|
||
static_assert (gdb::is_python_allocatable_v<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) \
|
||
error (_("Frame is invalid.")); \
|
||
} 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. */
|
||
|
||
frame_info_ptr
|
||
frame_object_to_frame_info (PyObject *obj)
|
||
{
|
||
frame_object *frame_obj = (frame_object *) obj;
|
||
frame_info_ptr frame;
|
||
|
||
frame = frame_find_by_id (frame_obj->frame_id);
|
||
if (frame == NULL)
|
||
return NULL;
|
||
|
||
return frame;
|
||
}
|
||
|
||
/* Called by the Python interpreter to obtain string representation
|
||
of the object. */
|
||
|
||
static PyObject *
|
||
frapy_str (PyObject *self)
|
||
{
|
||
const frame_id &fid = ((frame_object *) self)->frame_id;
|
||
return PyUnicode_FromString (fid.to_string ().c_str ());
|
||
}
|
||
|
||
/* Implement repr() for gdb.Frame. */
|
||
|
||
static PyObject *
|
||
frapy_repr (PyObject *self)
|
||
{
|
||
frame_object *frame_obj = (frame_object *) self;
|
||
frame_info_ptr f_info = frame_find_by_id (frame_obj->frame_id);
|
||
if (f_info == nullptr)
|
||
return gdb_py_invalid_object_repr (self);
|
||
|
||
const frame_id &fid = frame_obj->frame_id;
|
||
return PyUnicode_FromFormat ("<%s level=%d frame-id=%s>",
|
||
gdbpy_py_obj_tp_name (self).c_str (),
|
||
frame_relative_level (f_info),
|
||
fid.to_string ().c_str ());
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame = NULL;
|
||
|
||
try
|
||
{
|
||
frame = frame_object_to_frame_info (self);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
if (frame == NULL)
|
||
return py_false ().release ();
|
||
|
||
return py_true ().release ();
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame;
|
||
gdb::unique_xmalloc_ptr<char> name;
|
||
enum language lang;
|
||
PyObject *result;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
name = find_frame_funname (frame, &lang, NULL);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
if (name)
|
||
{
|
||
result = PyUnicode_Decode (name.get (), strlen (name.get ()),
|
||
host_charset (), NULL);
|
||
}
|
||
else
|
||
{
|
||
result = py_none ().release ();
|
||
}
|
||
|
||
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)
|
||
{
|
||
frame_info_ptr frame;
|
||
enum frame_type type = NORMAL_FRAME;/* Initialize to appease gcc warning. */
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
type = get_frame_type (frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return gdb_py_object_from_longest (type).release ();
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame = NULL; /* Initialize to appease gcc warning. */
|
||
frame_object *obj = (frame_object *) self;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return gdbarch_to_arch_object (obj->gdbarch).release ();
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame = NULL; /* Initialize to appease gcc warning. */
|
||
enum unwind_stop_reason stop_reason;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
stop_reason = get_frame_unwind_stop_reason (frame);
|
||
|
||
return gdb_py_object_from_longest (stop_reason).release ();
|
||
}
|
||
|
||
/* 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. */
|
||
frame_info_ptr frame;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
pc = get_frame_pc (frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return gdb_py_object_from_ulongest (pc).release ();
|
||
}
|
||
|
||
/* 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, PyObject *kw)
|
||
{
|
||
PyObject *pyo_reg_id;
|
||
gdbpy_ref<> result;
|
||
|
||
static const char *keywords[] = { "register", nullptr };
|
||
if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "O", keywords, &pyo_reg_id))
|
||
return nullptr;
|
||
|
||
try
|
||
{
|
||
scoped_value_mark free_values;
|
||
frame_info_ptr frame;
|
||
int regnum;
|
||
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
if (!gdbpy_parse_register_id (get_frame_arch (frame), pyo_reg_id,
|
||
®num))
|
||
return nullptr;
|
||
|
||
gdb_assert (regnum >= 0);
|
||
value *val
|
||
= value_of_register (regnum, get_next_frame_sentinel_okay (frame));
|
||
|
||
if (val == NULL)
|
||
PyErr_SetString (PyExc_ValueError, _("Can't read register."));
|
||
else
|
||
result = value_to_value_object (val);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return result.release ();
|
||
}
|
||
|
||
/* Implementation of gdb.Frame.block (self) -> gdb.Block.
|
||
Returns the frame's code block. */
|
||
|
||
static PyObject *
|
||
frapy_block (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr frame;
|
||
const struct block *block = NULL, *fn_block;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
block = get_frame_block (frame, NULL);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
for (fn_block = block;
|
||
fn_block != NULL && fn_block->function () == NULL;
|
||
fn_block = fn_block->superblock ())
|
||
;
|
||
|
||
if (block == NULL || fn_block == NULL || fn_block->function () == NULL)
|
||
{
|
||
PyErr_SetString (PyExc_RuntimeError,
|
||
_("Cannot locate block for frame."));
|
||
return NULL;
|
||
}
|
||
|
||
return block_to_block_object (block,
|
||
fn_block->function ()->objfile ()).release ();
|
||
}
|
||
|
||
|
||
/* 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;
|
||
frame_info_ptr frame;
|
||
|
||
try
|
||
{
|
||
enum language funlang;
|
||
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
gdb::unique_xmalloc_ptr<char> funname
|
||
= find_frame_funname (frame, &funlang, &sym);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
if (sym)
|
||
return symbol_to_symbol_object (sym).release ();
|
||
|
||
return py_none ().release ();
|
||
}
|
||
|
||
/* Convert a frame_info struct to a Python Frame object.
|
||
Sets a Python exception and returns NULL on error. */
|
||
|
||
gdbpy_ref<>
|
||
frame_info_to_frame_object (const frame_info_ptr &frame)
|
||
{
|
||
gdbpy_ref<frame_object> frame_obj (PyObject_New (frame_object,
|
||
&frame_object_type));
|
||
if (frame_obj == NULL)
|
||
return NULL;
|
||
|
||
try
|
||
{
|
||
frame_obj->frame_id = get_frame_id (frame);
|
||
frame_obj->gdbarch = get_frame_arch (frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return frame_obj;
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame, prev = NULL;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
prev = get_prev_frame (frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
gdbpy_ref<> prev_obj;
|
||
if (prev)
|
||
prev_obj = frame_info_to_frame_object (prev);
|
||
else
|
||
prev_obj = py_none ();
|
||
|
||
return prev_obj.release ();
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame, next = NULL;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
next = get_next_frame (frame);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
gdbpy_ref<> next_obj;
|
||
if (next)
|
||
next_obj = frame_info_to_frame_object (next);
|
||
else
|
||
next_obj = py_none ();
|
||
|
||
return next_obj.release ();
|
||
}
|
||
|
||
/* 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)
|
||
{
|
||
frame_info_ptr frame;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
symtab_and_line sal = find_frame_sal (frame);
|
||
return symtab_and_line_to_sal_object (sal).release ();
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
}
|
||
|
||
/* 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
|
||
gdb.Symbol. The block argument must be an instance of gdb.Block. Returns
|
||
NULL on error, with a python exception set. */
|
||
static PyObject *
|
||
frapy_read_var (PyObject *self, PyObject *args, PyObject *kw)
|
||
{
|
||
frame_info_ptr frame;
|
||
PyObject *sym_obj, *block_obj = NULL;
|
||
struct symbol *var = NULL; /* gcc-4.3.2 false warning. */
|
||
const struct block *block = NULL;
|
||
|
||
static const char *keywords[] = { "variable", "block", nullptr };
|
||
if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "O|O!", keywords,
|
||
&sym_obj, &block_object_type,
|
||
&block_obj))
|
||
return nullptr;
|
||
|
||
if (PyObject_TypeCheck (sym_obj, &symbol_object_type))
|
||
var = symbol_object_to_symbol (sym_obj);
|
||
else if (gdbpy_is_string (sym_obj))
|
||
{
|
||
gdb::unique_xmalloc_ptr<char>
|
||
var_name (python_string_to_target_string (sym_obj));
|
||
|
||
if (!var_name)
|
||
return NULL;
|
||
|
||
if (block_obj != nullptr)
|
||
{
|
||
/* This call should only fail if the type of BLOCK_OBJ is wrong,
|
||
and we ensure the type is correct when we parse the arguments,
|
||
so we can just assert the return value is not nullptr. */
|
||
block = block_object_to_block (block_obj);
|
||
gdb_assert (block != nullptr);
|
||
}
|
||
|
||
try
|
||
{
|
||
struct block_symbol lookup_sym;
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
if (!block)
|
||
block = get_frame_block (frame, NULL);
|
||
lookup_sym = lookup_symbol (var_name.get (), block,
|
||
SEARCH_VFT, nullptr);
|
||
var = lookup_sym.symbol;
|
||
block = lookup_sym.block;
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
if (!var)
|
||
{
|
||
PyErr_Format (PyExc_ValueError,
|
||
_("Variable '%s' not found."), var_name.get ());
|
||
|
||
return NULL;
|
||
}
|
||
}
|
||
else
|
||
{
|
||
PyErr_Format (PyExc_TypeError,
|
||
_("argument 1 must be gdb.Symbol or str, not %s"),
|
||
gdbpy_py_obj_tp_name (sym_obj).c_str ());
|
||
return NULL;
|
||
}
|
||
|
||
gdbpy_ref<> result;
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, frame);
|
||
|
||
scoped_value_mark free_values;
|
||
struct value *val = read_var_value (var, block, frame);
|
||
result = value_to_value_object (val);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return result.release ();
|
||
}
|
||
|
||
/* Select this frame. */
|
||
|
||
static PyObject *
|
||
frapy_select (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr fi;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, fi);
|
||
|
||
select_frame (fi);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return py_none ().release ();
|
||
}
|
||
|
||
/* The stack frame level for this frame. */
|
||
|
||
static PyObject *
|
||
frapy_level (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr fi;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, fi);
|
||
|
||
return gdb_py_object_from_longest (frame_relative_level (fi)).release ();
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
}
|
||
|
||
/* The language for this frame. */
|
||
|
||
static PyObject *
|
||
frapy_language (PyObject *self, PyObject *args)
|
||
{
|
||
try
|
||
{
|
||
frame_info_ptr fi;
|
||
FRAPY_REQUIRE_VALID (self, fi);
|
||
|
||
enum language lang = get_frame_language (fi);
|
||
const language_defn *lang_def = language_def (lang);
|
||
|
||
return host_string_to_python_string (lang_def->name ()).release ();
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
}
|
||
|
||
/* The static link for this frame. */
|
||
|
||
static PyObject *
|
||
frapy_static_link (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr link;
|
||
|
||
try
|
||
{
|
||
FRAPY_REQUIRE_VALID (self, link);
|
||
|
||
link = frame_follow_static_link (link);
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
if (link == nullptr)
|
||
return py_none ().release ();
|
||
|
||
return frame_info_to_frame_object (link).release ();
|
||
}
|
||
|
||
/* Implementation of gdb.newest_frame () -> gdb.Frame.
|
||
Returns the newest frame object. */
|
||
|
||
PyObject *
|
||
gdbpy_newest_frame (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr frame = NULL;
|
||
|
||
try
|
||
{
|
||
frame = get_current_frame ();
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return frame_info_to_frame_object (frame).release ();
|
||
}
|
||
|
||
/* Implementation of gdb.selected_frame () -> gdb.Frame.
|
||
Returns the selected frame object. */
|
||
|
||
PyObject *
|
||
gdbpy_selected_frame (PyObject *self, PyObject *args)
|
||
{
|
||
frame_info_ptr frame = NULL;
|
||
|
||
try
|
||
{
|
||
frame = get_selected_frame ("No frame is currently selected.");
|
||
}
|
||
catch (const gdb_exception &except)
|
||
{
|
||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||
}
|
||
|
||
return frame_info_to_frame_object (frame).release ();
|
||
}
|
||
|
||
/* 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;
|
||
|
||
if (reason < UNWIND_FIRST || reason > UNWIND_LAST)
|
||
{
|
||
PyErr_SetString (PyExc_ValueError,
|
||
_("Invalid frame stop reason."));
|
||
return NULL;
|
||
}
|
||
|
||
str = unwind_stop_reason_to_string ((enum unwind_stop_reason) reason);
|
||
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)
|
||
{
|
||
int result;
|
||
|
||
if (!PyObject_TypeCheck (other, &frame_object_type)
|
||
|| (op != Py_EQ && op != Py_NE))
|
||
return py_notimplemented ().release ();
|
||
|
||
frame_object *self_frame = (frame_object *) self;
|
||
frame_object *other_frame = (frame_object *) other;
|
||
|
||
if (self_frame->frame_id == other_frame->frame_id)
|
||
result = Py_EQ;
|
||
else
|
||
result = Py_NE;
|
||
|
||
if (op == result)
|
||
return py_true ().release ();
|
||
return py_false ().release ();
|
||
}
|
||
|
||
/* Sets up the Frame API in the gdb module. */
|
||
|
||
static int
|
||
gdbpy_initialize_frames ()
|
||
{
|
||
frame_object_type.tp_new = PyType_GenericNew;
|
||
if (gdbpy_type_ready (&frame_object_type) < 0)
|
||
return -1;
|
||
|
||
/* 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. */
|
||
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;
|
||
|
||
#define SET(name, description) \
|
||
if (PyModule_AddIntConstant (gdb_module, "FRAME_"#name, name) < 0) \
|
||
return -1;
|
||
#include "unwind_stop_reasons.def"
|
||
#undef SET
|
||
|
||
return 0;
|
||
}
|
||
|
||
GDBPY_INITIALIZE_FILE (gdbpy_initialize_frames);
|
||
|
||
|
||
|
||
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." },
|
||
{ "architecture", frapy_arch, METH_NOARGS,
|
||
"architecture () -> gdb.Architecture.\n\
|
||
Return the architecture of the frame." },
|
||
{ "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." },
|
||
{ "read_register", (PyCFunction) frapy_read_register,
|
||
METH_VARARGS | METH_KEYWORDS,
|
||
"read_register (register_name) -> gdb.Value\n\
|
||
Return the value of the register in the frame." },
|
||
{ "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." },
|
||
{ "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." },
|
||
{ "find_sal", frapy_find_sal, METH_NOARGS,
|
||
"find_sal () -> gdb.Symtab_and_line.\n\
|
||
Return the frame's symtab and line." },
|
||
{ "read_var", (PyCFunction) frapy_read_var, METH_VARARGS | METH_KEYWORDS,
|
||
"read_var (variable) -> gdb.Value.\n\
|
||
Return the value of the variable in this frame." },
|
||
{ "select", frapy_select, METH_NOARGS,
|
||
"Select this frame as the user's current frame." },
|
||
{ "level", frapy_level, METH_NOARGS,
|
||
"The stack level of this frame." },
|
||
{ "language", frapy_language, METH_NOARGS,
|
||
"The language of this frame." },
|
||
{ "static_link", frapy_static_link, METH_NOARGS,
|
||
"The static link of this frame, or None." },
|
||
{NULL} /* Sentinel */
|
||
};
|
||
|
||
PyTypeObject frame_object_type = {
|
||
PyVarObject_HEAD_INIT (NULL, 0)
|
||
"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 */
|
||
frapy_repr, /* 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 */
|
||
};
|