
This patch starts from the desire to eliminate make_cleanup_ui_file_delete, but then goes beyond. It makes ui_file & friends a real C++ class hierarchy, and switches temporary ui_file-like objects to stack-based allocation. - mem_fileopen -> string_file mem_fileopen is replaced with a new string_file class that is treated as a value class created on the stack. This alone eliminates most make_cleanup_ui_file_delete calls, and, simplifies code a whole lot (diffstat shows around 1k loc dropped.) string_file's internal buffer is a std::string, thus the "string" in the name. This simplifies the implementation much, compared to mem_fileopen, which managed growing its internal buffer manually. - ui_file_as_string, ui_file_strdup, ui_file_obsavestring all gone The new string_file class has a string() method that provides direct writable access to the internal std::string buffer. This replaced ui_file_as_string, which forced a copy of the same data the stream had inside. With direct access via a writable reference, we can instead move the string out of the string_stream, avoiding deep string copying. Related, ui_file_xstrdup calls are replaced with xstrdup'ping the stream's string, and ui_file_obsavestring is replaced by obstack_copy0. With all those out of the way, getting rid of the weird ui_file_put mechanism was possible. - New ui_file::printf, ui_file::puts, etc. methods These simplify / clarify client code. I considered splitting client-code changes, like these, e.g.: - stb = mem_fileopen (); - fprintf_unfiltered (stb, "%s%s%s", - _("The valid values are:\n"), - regdesc, - _("The default is \"std\".")); + string_file stb; + stb.printf ("%s%s%s", + _("The valid values are:\n"), + regdesc, + _("The default is \"std\".")); In two steps, with the first step leaving fprintf_unfiltered (etc.) calls in place, and only afterwards do a pass to change all those to call stb.printf etc.. I didn't do that split, because (when I tried), it turned out to be pointless make-work: the first pass would have to touch the fprintf_unfiltered line anyway, to replace "stb" with "&stb". - gdb_fopen replaced with stack-based objects This avoids the need for cleanups or unique_ptr's. I.e., this: struct ui_file *file = gdb_fopen (filename, "w"); if (filename == NULL) perror_with_name (filename); cleanups = make_cleanup_ui_file_delete (file); // use file. do_cleanups (cleanups); is replaced with this: stdio_file file; if (!file.open (filename, "w")) perror_with_name (filename); // use file. - odd contorsions in null_file_write / null_file_fputs around when to call to_fputs / to_write eliminated. - Global null_stream object A few places that were allocating a ui_file in order to print to "nowhere" are adjusted to instead refer to a new 'null_stream' global stream. - TUI's tui_sfileopen eliminated. TUI's ui_file much simplified The TUI's ui_file was serving a dual purpose. It supported being used as string buffer, and supported being backed by a stdio FILE. The string buffer part is gone, replaced by using of string_file. The 'FILE *' support is now much simplified, by making the TUI's ui_file inherit from stdio_file. gdb/ChangeLog: 2017-02-02 Pedro Alves <palves@redhat.com> * ada-lang.c (type_as_string): Use string_file. * ada-valprint.c (ada_print_floating): Use string_file. * ada-varobj.c (ada_varobj_scalar_image) (ada_varobj_get_value_image): Use string_file. * aix-thread.c (aix_thread_extra_thread_info): Use string_file. * arm-tdep.c (_initialize_arm_tdep): Use string_printf. * breakpoint.c (update_inserted_breakpoint_locations) (insert_breakpoint_locations, reattach_breakpoints) (print_breakpoint_location, print_one_detail_ranged_breakpoint) (print_it_watchpoint): Use string_file. (save_breakpoints): Use stdio_file. * c-exp.y (oper): Use string_file. * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and tee_file. (pop_output_files): Use delete. (handle_redirections): Use stdio_file and tee_file. * cli/cli-setshow.c (do_show_command): Use string_file. * compile/compile-c-support.c (c_compute_program): Use string_file. * compile/compile-c-symbols.c (generate_vla_size): Take a 'string_file &' instead of a 'ui_file *'. (generate_c_for_for_one_variable): Take a 'string_file &' instead of a 'ui_file *'. Use string_file. (generate_c_for_variable_locations): Take a 'string_file &' instead of a 'ui_file *'. * compile/compile-internal.h (generate_c_for_for_one_variable): Take a 'string_file &' instead of a 'ui_file *'. * compile/compile-loc2c.c (push, pushf, unary, binary) (print_label, pushf_register_address, pushf_register) (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a 'ui_file *'. Adjust. * compile/compile.c (compile_to_object): Use string_file. * compile/compile.h (compile_dwarf_expr_to_c) (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a 'ui_file *'. * cp-support.c (inspect_type): Use string_file and obstack_copy0. (replace_typedefs_qualified_name): Use string_file and obstack_copy0. * disasm.c (gdb_pretty_print_insn): Use string_file. (gdb_disassembly): Adjust reference the null_stream global. (do_ui_file_delete): Delete. (gdb_insn_length): Use null_stream. * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file. * dwarf2loc.c (dwarf2_compile_property_to_c) (locexpr_generate_c_location, loclist_generate_c_location): Take a 'string_file &' instead of a 'ui_file *'. * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise. * dwarf2read.c (do_ui_file_peek_last): Delete. (dwarf2_compute_name): Use string_file. * event-top.c (gdb_setup_readline): Use stdio_file. * gdbarch.sh (verify_gdbarch): Use string_file. * gdbtypes.c (safe_parse_type): Use null_stream. * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use string_file. * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a 'string_file *' instead of a 'ui_file *'. (gdbscm_arch_disassemble): Use string_file. * guile/scm-frame.c (frscm_print_frame_smob): Use string_file. * guile/scm-ports.c (class ioscm_file_port): Now a class that inherits from ui_file. (ioscm_file_port_delete, ioscm_file_port_rewind) (ioscm_file_port_put): Delete. (ioscm_file_port_write): Rename to ... (ioscm_file_port::write): ... this. Remove file_port_magic checks. (ioscm_file_port_new): Delete. (ioscm_with_output_to_port_worker): Use ioscm_file_port and ui_file_up. * guile/scm-type.c (tyscm_type_name): Use string_file. * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print): Use string_file. * infcmd.c (print_return_value_1): Use string_file. * infrun.c (print_target_wait_results): Use string_file. * language.c (add_language): Use string_file. * location.c (explicit_to_string_internal): Use string_file. * main.c (captured_main_1): Use null_file. * maint.c (maintenance_print_architecture): Use stdio_file. * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file. * mi/mi-common.h (struct mi_interp) <out, err, log, targ, event_channel>: Change type to mi_console_file pointer. * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush) (mi_console_file_delete): Delete. (struct mi_console_file): Delete. (mi_console_file_magic): Delete. (mi_console_file_new): Delete. (mi_console_file::mi_console_file): New. (mi_console_file_delete): Delete. (mi_console_file_fputs): Delete. (mi_console_file::write): New. (mi_console_raw_packet): Delete. (mi_console_file::flush): New. (mi_console_file_flush): Delete. (mi_console_set_raw): Rename to ... (mi_console_file::set_raw): ... this. * mi/mi-console.h (class mi_console_file): New class. (mi_console_file_new, mi_console_set_raw): Delete. * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file. (mi_set_logging): Use delete and tee_file. Adjust. * mi/mi-main.c (output_register): Use string_file. (mi_cmd_data_evaluate_expression): Use string_file. (mi_cmd_data_read_memory): Use string_file. (mi_cmd_execute, print_variable_or_computed): Use string_file. * mi/mi-out.c (mi_ui_out::main_stream): New. (mi_ui_out::rewind): Use main_stream and string_file. (mi_ui_out::put): Use main_stream and string_file. (mi_ui_out::mi_ui_out): Remove 'stream' parameter. Allocate a 'string_file' instead. (mi_out_new): Don't allocate a mem_fileopen stream here. * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter. (mi_ui_out::main_stream): Declare method. * printcmd.c (eval_command): Use string_file. * psymtab.c (maintenance_print_psymbols): Use stdio_file. * python/py-arch.c (archpy_disassemble): Use string_file. * python/py-breakpoint.c (bppy_get_commands): Use string_file. * python/py-frame.c (frapy_str): Use string_file. * python/py-framefilter.c (py_print_type, py_print_single_arg): Use string_file. * python/py-type.c (typy_str): Use string_file. * python/py-unwind.c (unwind_infopy_str): Use string_file. * python/py-value.c (valpy_str): Use string_file. * record-btrace.c (btrace_insn_history): Use string_file. * regcache.c (regcache_print): Use stdio_file. * reggroups.c (maintenance_print_reggroups): Use stdio_file. * remote.c (escape_buffer): Use string_file. * rust-lang.c (rust_get_disr_info): Use string_file. * serial.c (serial_open_ops_1): Use stdio_file. (do_serial_close): Use delete. * stack.c (print_frame_arg): Use string_file. (print_frame_args): Remove local mem_fileopen stream, not used. (print_frame): Use string_file. * symmisc.c (maintenance_print_symbols): Use stdio_file. * symtab.h (struct symbol_computed_ops) <generate_c_location>: Take a 'string_file *' instead of a 'ui_file *'. * top.c (new_ui): Use stdio_file and stderr_file. (free_ui): Use delete. (execute_command_to_string): Use string_file. (quit_confirm): Use string_file. * tracepoint.c (collection_list::append_exp): Use string_file. * tui/tui-disasm.c (tui_disassemble): Use string_file. * tui/tui-file.c: Don't include "ui-file.h". (enum streamtype, struct tui_stream): Delete. (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen) (tui_file_isatty, tui_file_rewind, tui_file_put): Delete. (tui_file::tui_file): New method. (tui_file_fputs): Delete. (tui_file_get_strbuf): Delete. (tui_file::puts): New method. (tui_file_adjust_strbuf): Delete. (tui_file_flush): Delete. (tui_file::flush): New method. * tui/tui-file.h: Tweak intro comment. Include ui-file.h. (tui_fileopen, tui_sfileopen, tui_file_get_strbuf) (tui_file_adjust_strbuf): Delete declarations. (class tui_file): New class. * tui/tui-io.c (tui_initialize_io): Use tui_file. * tui/tui-regs.c (tui_restore_gdbout): Use delete. (tui_register_format): Use string_stream. * tui/tui-stack.c (tui_make_status_line): Use string_file. (tui_get_function_from_frame): Use string_file. * typeprint.c (type_to_string): Use string_file. * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete. (null_stream): New global. (ui_file_delete): Delete. (ui_file::ui_file): New. (null_file_isatty): Delete. (ui_file::~ui_file): New. (null_file_rewind): Delete. (ui_file::printf): New. (null_file_put): Delete. (null_file_flush): Delete. (ui_file::putstr): New. (null_file_write): Delete. (ui_file::putstrn): New. (null_file_read): Delete. (ui_file::putc): New. (null_file_fputs): Delete. (null_file_write_async_safe): Delete. (ui_file::vprintf): New. (null_file_delete): Delete. (null_file::write): New. (null_file_fseek): Delete. (null_file::puts): New. (ui_file_data): Delete. (null_file::write_async_safe): New. (gdb_flush, ui_file_isatty): Adjust. (ui_file_put, ui_file_rewind): Delete. (ui_file_write): Adjust. (ui_file_write_for_put): Delete. (ui_file_write_async_safe, ui_file_read): Adjust. (ui_file_fseek): Delete. (fputs_unfiltered): Adjust. (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind) (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe) (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek) (set_ui_file_data): Delete. (string_file::~string_file, string_file::write) (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup) (do_ui_file_as_string, ui_file_as_string): Delete. (do_ui_file_obsavestring, ui_file_obsavestring): Delete. (struct mem_file): Delete. (mem_file_new): Delete. (stdio_file::stdio_file): New. (mem_file_delete): Delete. (stdio_file::stdio_file): New. (mem_fileopen): Delete. (stdio_file::~stdio_file): New. (mem_file_rewind): Delete. (stdio_file::set_stream): New. (mem_file_put): Delete. (stdio_file::open): New. (mem_file_write): Delete. (stdio_file_magic, struct stdio_file): Delete. (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete. (stdio_file::flush): New. (stdio_file_read): Rename to ... (stdio_file::read): ... this. Adjust. (stdio_file_write): Rename to ... (stdio_file::write): ... this. Adjust. (stdio_file_write_async_safe): Rename to ... (stdio_file::write_async_safe) ... this. Adjust. (stdio_file_fputs): Rename to ... (stdio_file::puts) ... this. Adjust. (stdio_file_isatty): Delete. (stdio_file_fseek): Delete. (stdio_file::isatty): New. (stderr_file_write): Rename to ... (stderr_file::write) ... this. Adjust. (stderr_file_fputs): Rename to ... (stderr_file::puts) ... this. Adjust. (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete. (stderr_file::stderr_file): New. (tee_file_magic): Delete. (struct tee_file): Delete. (tee_file::tee_file): New. (tee_file_new): Delete. (tee_file::~tee_file): New. (tee_file_delete): Delete. (tee_file_flush): Rename to ... (tee_file::flush): ... this. Adjust. (tee_file_write): Rename to ... (tee_file::write): ... this. Adjust. (tee_file::write_async_safe): New. (tee_file_fputs): Rename to ... (tee_file::puts): ... this. Adjust. (tee_file_isatty): Rename to ... (tee_file::isatty): ... this. Adjust. * ui-file.h (struct obstack, struct ui_file): Don't forward-declare. (ui_file_new, ui_file_flush_ftype, set_ui_file_flush) (ui_file_write_ftype) (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs) (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe) (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype) (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind) (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put) (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype) (set_ui_file_fseek): Delete. (ui_file_data, ui_file_delete, ui_file_rewind) (struct ui_file): New. (ui_file_up): New. (class null_file): New. (null_stream): Declare. (ui_file_write_for_put, ui_file_put): Delete. (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring): Delete. (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen) (gdb_fopen, tee_file_new): Delete. (struct string_file): New. (struct stdio_file): New. (stdio_file_up): New. (struct stderr_file): New. (class tee_file): New. * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead of a 'ui_file *'. Adjust. * ui-out.h (class ui_out) <field_stream>: Likewise. * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete) (null_stream): Delete. (error_stream): Take a 'string_file &' instead of a 'ui_file *'. Adjust. * utils.h (struct ui_file): Delete forward declaration.. (make_cleanup_ui_file_delete, null_stream): Delete declarations. (error_stream): Take a 'string_file &' instead of a 'ui_file *'. * varobj.c (varobj_value_get_print_value): Use string_file. * xtensa-tdep.c (xtensa_verify_config): Use string_file. * gdbarch.c: Regenerate.
1845 lines
46 KiB
C
1845 lines
46 KiB
C
/* Python interface to values.
|
||
|
||
Copyright (C) 2008-2017 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 "defs.h"
|
||
#include "charset.h"
|
||
#include "value.h"
|
||
#include "language.h"
|
||
#include "dfp.h"
|
||
#include "valprint.h"
|
||
#include "infcall.h"
|
||
#include "expression.h"
|
||
#include "cp-abi.h"
|
||
#include "python.h"
|
||
|
||
#include "python-internal.h"
|
||
#include "py-ref.h"
|
||
|
||
/* Even though Python scalar types directly map to host types, we use
|
||
target types here to remain consistent with the values system in
|
||
GDB (which uses target arithmetic). */
|
||
|
||
/* Python's integer type corresponds to C's long type. */
|
||
#define builtin_type_pyint builtin_type (python_gdbarch)->builtin_long
|
||
|
||
/* Python's float type corresponds to C's double type. */
|
||
#define builtin_type_pyfloat builtin_type (python_gdbarch)->builtin_double
|
||
|
||
/* Python's long type corresponds to C's long long type. */
|
||
#define builtin_type_pylong builtin_type (python_gdbarch)->builtin_long_long
|
||
|
||
/* Python's long type corresponds to C's long long type. Unsigned version. */
|
||
#define builtin_type_upylong builtin_type \
|
||
(python_gdbarch)->builtin_unsigned_long_long
|
||
|
||
#define builtin_type_pybool \
|
||
language_bool_type (python_language, python_gdbarch)
|
||
|
||
#define builtin_type_pychar \
|
||
language_string_char_type (python_language, python_gdbarch)
|
||
|
||
typedef struct value_object {
|
||
PyObject_HEAD
|
||
struct value_object *next;
|
||
struct value_object *prev;
|
||
struct value *value;
|
||
PyObject *address;
|
||
PyObject *type;
|
||
PyObject *dynamic_type;
|
||
} value_object;
|
||
|
||
/* List of all values which are currently exposed to Python. It is
|
||
maintained so that when an objfile is discarded, preserve_values
|
||
can copy the values' types if needed. */
|
||
/* This variable is unnecessarily initialized to NULL in order to
|
||
work around a linker bug on MacOS. */
|
||
static value_object *values_in_python = NULL;
|
||
|
||
/* Called by the Python interpreter when deallocating a value object. */
|
||
static void
|
||
valpy_dealloc (PyObject *obj)
|
||
{
|
||
value_object *self = (value_object *) obj;
|
||
|
||
/* Remove SELF from the global list. */
|
||
if (self->prev)
|
||
self->prev->next = self->next;
|
||
else
|
||
{
|
||
gdb_assert (values_in_python == self);
|
||
values_in_python = self->next;
|
||
}
|
||
if (self->next)
|
||
self->next->prev = self->prev;
|
||
|
||
value_free (self->value);
|
||
|
||
if (self->address)
|
||
/* Use braces to appease gcc warning. *sigh* */
|
||
{
|
||
Py_DECREF (self->address);
|
||
}
|
||
|
||
if (self->type)
|
||
{
|
||
Py_DECREF (self->type);
|
||
}
|
||
|
||
Py_XDECREF (self->dynamic_type);
|
||
|
||
Py_TYPE (self)->tp_free (self);
|
||
}
|
||
|
||
/* Helper to push a Value object on the global list. */
|
||
static void
|
||
note_value (value_object *value_obj)
|
||
{
|
||
value_obj->next = values_in_python;
|
||
if (value_obj->next)
|
||
value_obj->next->prev = value_obj;
|
||
value_obj->prev = NULL;
|
||
values_in_python = value_obj;
|
||
}
|
||
|
||
/* Called when a new gdb.Value object needs to be allocated. Returns NULL on
|
||
error, with a python exception set. */
|
||
static PyObject *
|
||
valpy_new (PyTypeObject *subtype, PyObject *args, PyObject *keywords)
|
||
{
|
||
struct value *value = NULL; /* Initialize to appease gcc warning. */
|
||
value_object *value_obj;
|
||
|
||
if (PyTuple_Size (args) != 1)
|
||
{
|
||
PyErr_SetString (PyExc_TypeError, _("Value object creation takes only "
|
||
"1 argument"));
|
||
return NULL;
|
||
}
|
||
|
||
value_obj = (value_object *) subtype->tp_alloc (subtype, 1);
|
||
if (value_obj == NULL)
|
||
{
|
||
PyErr_SetString (PyExc_MemoryError, _("Could not allocate memory to "
|
||
"create Value object."));
|
||
return NULL;
|
||
}
|
||
|
||
value = convert_value_from_python (PyTuple_GetItem (args, 0));
|
||
if (value == NULL)
|
||
{
|
||
subtype->tp_free (value_obj);
|
||
return NULL;
|
||
}
|
||
|
||
value_obj->value = value;
|
||
release_value_or_incref (value);
|
||
value_obj->address = NULL;
|
||
value_obj->type = NULL;
|
||
value_obj->dynamic_type = NULL;
|
||
note_value (value_obj);
|
||
|
||
return (PyObject *) value_obj;
|
||
}
|
||
|
||
/* Iterate over all the Value objects, calling preserve_one_value on
|
||
each. */
|
||
void
|
||
gdbpy_preserve_values (const struct extension_language_defn *extlang,
|
||
struct objfile *objfile, htab_t copied_types)
|
||
{
|
||
value_object *iter;
|
||
|
||
for (iter = values_in_python; iter; iter = iter->next)
|
||
preserve_one_value (iter->value, objfile, copied_types);
|
||
}
|
||
|
||
/* Given a value of a pointer type, apply the C unary * operator to it. */
|
||
static PyObject *
|
||
valpy_dereference (PyObject *self, PyObject *args)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
struct value *res_val;
|
||
scoped_value_mark free_values;
|
||
|
||
res_val = value_ind (((value_object *) self)->value);
|
||
result = value_to_value_object (res_val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Given a value of a pointer type or a reference type, return the value
|
||
referenced. The difference between this function and valpy_dereference is
|
||
that the latter applies * unary operator to a value, which need not always
|
||
result in the value referenced. For example, for a value which is a reference
|
||
to an 'int' pointer ('int *'), valpy_dereference will result in a value of
|
||
type 'int' while valpy_referenced_value will result in a value of type
|
||
'int *'. */
|
||
|
||
static PyObject *
|
||
valpy_referenced_value (PyObject *self, PyObject *args)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
struct value *self_val, *res_val;
|
||
scoped_value_mark free_values;
|
||
|
||
self_val = ((value_object *) self)->value;
|
||
switch (TYPE_CODE (check_typedef (value_type (self_val))))
|
||
{
|
||
case TYPE_CODE_PTR:
|
||
res_val = value_ind (self_val);
|
||
break;
|
||
case TYPE_CODE_REF:
|
||
res_val = coerce_ref (self_val);
|
||
break;
|
||
default:
|
||
error(_("Trying to get the referenced value from a value which is "
|
||
"neither a pointer nor a reference."));
|
||
}
|
||
|
||
result = value_to_value_object (res_val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Return a value which is a reference to the value. */
|
||
|
||
static PyObject *
|
||
valpy_reference_value (PyObject *self, PyObject *args)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
struct value *self_val;
|
||
scoped_value_mark free_values;
|
||
|
||
self_val = ((value_object *) self)->value;
|
||
result = value_to_value_object (value_ref (self_val));
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Return a "const" qualified version of the value. */
|
||
|
||
static PyObject *
|
||
valpy_const_value (PyObject *self, PyObject *args)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
struct value *self_val, *res_val;
|
||
scoped_value_mark free_values;
|
||
|
||
self_val = ((value_object *) self)->value;
|
||
res_val = make_cv_value (1, 0, self_val);
|
||
result = value_to_value_object (res_val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Return "&value". */
|
||
static PyObject *
|
||
valpy_get_address (PyObject *self, void *closure)
|
||
{
|
||
value_object *val_obj = (value_object *) self;
|
||
|
||
if (!val_obj->address)
|
||
{
|
||
TRY
|
||
{
|
||
struct value *res_val;
|
||
scoped_value_mark free_values;
|
||
|
||
res_val = value_addr (val_obj->value);
|
||
val_obj->address = value_to_value_object (res_val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
val_obj->address = Py_None;
|
||
Py_INCREF (Py_None);
|
||
}
|
||
END_CATCH
|
||
}
|
||
|
||
Py_XINCREF (val_obj->address);
|
||
|
||
return val_obj->address;
|
||
}
|
||
|
||
/* Return type of the value. */
|
||
static PyObject *
|
||
valpy_get_type (PyObject *self, void *closure)
|
||
{
|
||
value_object *obj = (value_object *) self;
|
||
|
||
if (!obj->type)
|
||
{
|
||
obj->type = type_to_type_object (value_type (obj->value));
|
||
if (!obj->type)
|
||
return NULL;
|
||
}
|
||
Py_INCREF (obj->type);
|
||
return obj->type;
|
||
}
|
||
|
||
/* Return dynamic type of the value. */
|
||
|
||
static PyObject *
|
||
valpy_get_dynamic_type (PyObject *self, void *closure)
|
||
{
|
||
value_object *obj = (value_object *) self;
|
||
struct type *type = NULL;
|
||
|
||
if (obj->dynamic_type != NULL)
|
||
{
|
||
Py_INCREF (obj->dynamic_type);
|
||
return obj->dynamic_type;
|
||
}
|
||
|
||
TRY
|
||
{
|
||
struct value *val = obj->value;
|
||
scoped_value_mark free_values;
|
||
|
||
type = value_type (val);
|
||
type = check_typedef (type);
|
||
|
||
if (((TYPE_CODE (type) == TYPE_CODE_PTR)
|
||
|| (TYPE_CODE (type) == TYPE_CODE_REF))
|
||
&& (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_STRUCT))
|
||
{
|
||
struct value *target;
|
||
int was_pointer = TYPE_CODE (type) == TYPE_CODE_PTR;
|
||
|
||
if (was_pointer)
|
||
target = value_ind (val);
|
||
else
|
||
target = coerce_ref (val);
|
||
type = value_rtti_type (target, NULL, NULL, NULL);
|
||
|
||
if (type)
|
||
{
|
||
if (was_pointer)
|
||
type = lookup_pointer_type (type);
|
||
else
|
||
type = lookup_reference_type (type);
|
||
}
|
||
}
|
||
else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
||
type = value_rtti_type (val, NULL, NULL, NULL);
|
||
else
|
||
{
|
||
/* Re-use object's static type. */
|
||
type = NULL;
|
||
}
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (type == NULL)
|
||
obj->dynamic_type = valpy_get_type (self, NULL);
|
||
else
|
||
obj->dynamic_type = type_to_type_object (type);
|
||
|
||
Py_XINCREF (obj->dynamic_type);
|
||
return obj->dynamic_type;
|
||
}
|
||
|
||
/* Implementation of gdb.Value.lazy_string ([encoding] [, length]) ->
|
||
string. Return a PyObject representing a lazy_string_object type.
|
||
A lazy string is a pointer to a string with an optional encoding and
|
||
length. If ENCODING is not given, encoding is set to None. If an
|
||
ENCODING is provided the encoding parameter is set to ENCODING, but
|
||
the string is not encoded. If LENGTH is provided then the length
|
||
parameter is set to LENGTH, otherwise length will be set to -1 (first
|
||
null of appropriate with). */
|
||
static PyObject *
|
||
valpy_lazy_string (PyObject *self, PyObject *args, PyObject *kw)
|
||
{
|
||
gdb_py_longest length = -1;
|
||
struct value *value = ((value_object *) self)->value;
|
||
const char *user_encoding = NULL;
|
||
static char *keywords[] = { "encoding", "length", NULL };
|
||
PyObject *str_obj = NULL;
|
||
|
||
if (!PyArg_ParseTupleAndKeywords (args, kw, "|s" GDB_PY_LL_ARG, keywords,
|
||
&user_encoding, &length))
|
||
return NULL;
|
||
|
||
TRY
|
||
{
|
||
scoped_value_mark free_values;
|
||
|
||
if (TYPE_CODE (value_type (value)) == TYPE_CODE_PTR)
|
||
value = value_ind (value);
|
||
|
||
str_obj = gdbpy_create_lazy_string_object (value_address (value), length,
|
||
user_encoding,
|
||
value_type (value));
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return str_obj;
|
||
}
|
||
|
||
/* Implementation of gdb.Value.string ([encoding] [, errors]
|
||
[, length]) -> string. Return Unicode string with value contents.
|
||
If ENCODING is not given, the string is assumed to be encoded in
|
||
the target's charset. If LENGTH is provided, only fetch string to
|
||
the length provided. */
|
||
|
||
static PyObject *
|
||
valpy_string (PyObject *self, PyObject *args, PyObject *kw)
|
||
{
|
||
int length = -1;
|
||
gdb_byte *buffer;
|
||
struct value *value = ((value_object *) self)->value;
|
||
PyObject *unicode;
|
||
const char *encoding = NULL;
|
||
const char *errors = NULL;
|
||
const char *user_encoding = NULL;
|
||
const char *la_encoding = NULL;
|
||
struct type *char_type;
|
||
static char *keywords[] = { "encoding", "errors", "length", NULL };
|
||
|
||
if (!PyArg_ParseTupleAndKeywords (args, kw, "|ssi", keywords,
|
||
&user_encoding, &errors, &length))
|
||
return NULL;
|
||
|
||
TRY
|
||
{
|
||
LA_GET_STRING (value, &buffer, &length, &char_type, &la_encoding);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
encoding = (user_encoding && *user_encoding) ? user_encoding : la_encoding;
|
||
unicode = PyUnicode_Decode ((const char *) buffer,
|
||
length * TYPE_LENGTH (char_type),
|
||
encoding, errors);
|
||
xfree (buffer);
|
||
|
||
return unicode;
|
||
}
|
||
|
||
/* A helper function that implements the various cast operators. */
|
||
|
||
static PyObject *
|
||
valpy_do_cast (PyObject *self, PyObject *args, enum exp_opcode op)
|
||
{
|
||
PyObject *type_obj, *result = NULL;
|
||
struct type *type;
|
||
|
||
if (! PyArg_ParseTuple (args, "O", &type_obj))
|
||
return NULL;
|
||
|
||
type = type_object_to_type (type_obj);
|
||
if (! type)
|
||
{
|
||
PyErr_SetString (PyExc_RuntimeError,
|
||
_("Argument must be a type."));
|
||
return NULL;
|
||
}
|
||
|
||
TRY
|
||
{
|
||
struct value *val = ((value_object *) self)->value;
|
||
struct value *res_val;
|
||
scoped_value_mark free_values;
|
||
|
||
if (op == UNOP_DYNAMIC_CAST)
|
||
res_val = value_dynamic_cast (type, val);
|
||
else if (op == UNOP_REINTERPRET_CAST)
|
||
res_val = value_reinterpret_cast (type, val);
|
||
else
|
||
{
|
||
gdb_assert (op == UNOP_CAST);
|
||
res_val = value_cast (type, val);
|
||
}
|
||
|
||
result = value_to_value_object (res_val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Implementation of the "cast" method. */
|
||
|
||
static PyObject *
|
||
valpy_cast (PyObject *self, PyObject *args)
|
||
{
|
||
return valpy_do_cast (self, args, UNOP_CAST);
|
||
}
|
||
|
||
/* Implementation of the "dynamic_cast" method. */
|
||
|
||
static PyObject *
|
||
valpy_dynamic_cast (PyObject *self, PyObject *args)
|
||
{
|
||
return valpy_do_cast (self, args, UNOP_DYNAMIC_CAST);
|
||
}
|
||
|
||
/* Implementation of the "reinterpret_cast" method. */
|
||
|
||
static PyObject *
|
||
valpy_reinterpret_cast (PyObject *self, PyObject *args)
|
||
{
|
||
return valpy_do_cast (self, args, UNOP_REINTERPRET_CAST);
|
||
}
|
||
|
||
static Py_ssize_t
|
||
valpy_length (PyObject *self)
|
||
{
|
||
/* We don't support getting the number of elements in a struct / class. */
|
||
PyErr_SetString (PyExc_NotImplementedError,
|
||
_("Invalid operation on gdb.Value."));
|
||
return -1;
|
||
}
|
||
|
||
/* Return 1 if the gdb.Field object FIELD is present in the value V.
|
||
Returns 0 otherwise. If any Python error occurs, -1 is returned. */
|
||
|
||
static int
|
||
value_has_field (struct value *v, PyObject *field)
|
||
{
|
||
struct type *parent_type, *val_type;
|
||
enum type_code type_code;
|
||
gdbpy_ref type_object (PyObject_GetAttrString (field, "parent_type"));
|
||
int has_field = 0;
|
||
|
||
if (type_object == NULL)
|
||
return -1;
|
||
|
||
parent_type = type_object_to_type (type_object.get ());
|
||
if (parent_type == NULL)
|
||
{
|
||
PyErr_SetString (PyExc_TypeError,
|
||
_("'parent_type' attribute of gdb.Field object is not a"
|
||
"gdb.Type object."));
|
||
return -1;
|
||
}
|
||
|
||
TRY
|
||
{
|
||
val_type = value_type (v);
|
||
val_type = check_typedef (val_type);
|
||
if (TYPE_CODE (val_type) == TYPE_CODE_REF
|
||
|| TYPE_CODE (val_type) == TYPE_CODE_PTR)
|
||
val_type = check_typedef (TYPE_TARGET_TYPE (val_type));
|
||
|
||
type_code = TYPE_CODE (val_type);
|
||
if ((type_code == TYPE_CODE_STRUCT || type_code == TYPE_CODE_UNION)
|
||
&& types_equal (val_type, parent_type))
|
||
has_field = 1;
|
||
else
|
||
has_field = 0;
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_SET_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return has_field;
|
||
}
|
||
|
||
/* Return the value of a flag FLAG_NAME in a gdb.Field object FIELD.
|
||
Returns 1 if the flag value is true, 0 if it is false, and -1 if
|
||
a Python error occurs. */
|
||
|
||
static int
|
||
get_field_flag (PyObject *field, const char *flag_name)
|
||
{
|
||
gdbpy_ref flag_object (PyObject_GetAttrString (field, flag_name));
|
||
|
||
if (flag_object == NULL)
|
||
return -1;
|
||
|
||
return PyObject_IsTrue (flag_object.get ());
|
||
}
|
||
|
||
/* Return the "type" attribute of a gdb.Field object.
|
||
Returns NULL on error, with a Python exception set. */
|
||
|
||
static struct type *
|
||
get_field_type (PyObject *field)
|
||
{
|
||
gdbpy_ref ftype_obj (PyObject_GetAttrString (field, "type"));
|
||
struct type *ftype;
|
||
|
||
if (ftype_obj == NULL)
|
||
return NULL;
|
||
ftype = type_object_to_type (ftype_obj.get ());
|
||
if (ftype == NULL)
|
||
PyErr_SetString (PyExc_TypeError,
|
||
_("'type' attribute of gdb.Field object is not a "
|
||
"gdb.Type object."));
|
||
|
||
return ftype;
|
||
}
|
||
|
||
/* Given string name or a gdb.Field object corresponding to an element inside
|
||
a structure, return its value object. Returns NULL on error, with a python
|
||
exception set. */
|
||
|
||
static PyObject *
|
||
valpy_getitem (PyObject *self, PyObject *key)
|
||
{
|
||
struct gdb_exception except = exception_none;
|
||
value_object *self_value = (value_object *) self;
|
||
gdb::unique_xmalloc_ptr<char> field;
|
||
struct type *base_class_type = NULL, *field_type = NULL;
|
||
long bitpos = -1;
|
||
PyObject *result = NULL;
|
||
|
||
if (gdbpy_is_string (key))
|
||
{
|
||
field = python_string_to_host_string (key);
|
||
if (field == NULL)
|
||
return NULL;
|
||
}
|
||
else if (gdbpy_is_field (key))
|
||
{
|
||
int is_base_class, valid_field;
|
||
|
||
valid_field = value_has_field (self_value->value, key);
|
||
if (valid_field < 0)
|
||
return NULL;
|
||
else if (valid_field == 0)
|
||
{
|
||
PyErr_SetString (PyExc_TypeError,
|
||
_("Invalid lookup for a field not contained in "
|
||
"the value."));
|
||
|
||
return NULL;
|
||
}
|
||
|
||
is_base_class = get_field_flag (key, "is_base_class");
|
||
if (is_base_class < 0)
|
||
return NULL;
|
||
else if (is_base_class > 0)
|
||
{
|
||
base_class_type = get_field_type (key);
|
||
if (base_class_type == NULL)
|
||
return NULL;
|
||
}
|
||
else
|
||
{
|
||
gdbpy_ref name_obj (PyObject_GetAttrString (key, "name"));
|
||
|
||
if (name_obj == NULL)
|
||
return NULL;
|
||
|
||
if (name_obj != Py_None)
|
||
{
|
||
field = python_string_to_host_string (name_obj.get ());
|
||
if (field == NULL)
|
||
return NULL;
|
||
}
|
||
else
|
||
{
|
||
if (!PyObject_HasAttrString (key, "bitpos"))
|
||
{
|
||
PyErr_SetString (PyExc_AttributeError,
|
||
_("gdb.Field object has no name and no "
|
||
"'bitpos' attribute."));
|
||
|
||
return NULL;
|
||
}
|
||
gdbpy_ref bitpos_obj (PyObject_GetAttrString (key, "bitpos"));
|
||
if (bitpos_obj == NULL)
|
||
return NULL;
|
||
if (!gdb_py_int_as_long (bitpos_obj.get (), &bitpos))
|
||
return NULL;
|
||
|
||
field_type = get_field_type (key);
|
||
if (field_type == NULL)
|
||
return NULL;
|
||
}
|
||
}
|
||
}
|
||
|
||
TRY
|
||
{
|
||
struct value *tmp = self_value->value;
|
||
struct value *res_val = NULL;
|
||
scoped_value_mark free_values;
|
||
|
||
if (field)
|
||
res_val = value_struct_elt (&tmp, NULL, field.get (), NULL,
|
||
"struct/class/union");
|
||
else if (bitpos >= 0)
|
||
res_val = value_struct_elt_bitpos (&tmp, bitpos, field_type,
|
||
"struct/class/union");
|
||
else if (base_class_type != NULL)
|
||
{
|
||
struct type *val_type;
|
||
|
||
val_type = check_typedef (value_type (tmp));
|
||
if (TYPE_CODE (val_type) == TYPE_CODE_PTR)
|
||
res_val = value_cast (lookup_pointer_type (base_class_type), tmp);
|
||
else if (TYPE_CODE (val_type) == TYPE_CODE_REF)
|
||
res_val = value_cast (lookup_reference_type (base_class_type), tmp);
|
||
else
|
||
res_val = value_cast (base_class_type, tmp);
|
||
}
|
||
else
|
||
{
|
||
/* Assume we are attempting an array access, and let the
|
||
value code throw an exception if the index has an invalid
|
||
type. */
|
||
struct value *idx = convert_value_from_python (key);
|
||
|
||
if (idx != NULL)
|
||
{
|
||
/* Check the value's type is something that can be accessed via
|
||
a subscript. */
|
||
struct type *type;
|
||
|
||
tmp = coerce_ref (tmp);
|
||
type = check_typedef (value_type (tmp));
|
||
if (TYPE_CODE (type) != TYPE_CODE_ARRAY
|
||
&& TYPE_CODE (type) != TYPE_CODE_PTR)
|
||
error (_("Cannot subscript requested type."));
|
||
else
|
||
res_val = value_subscript (tmp, value_as_long (idx));
|
||
}
|
||
}
|
||
|
||
if (res_val)
|
||
result = value_to_value_object (res_val);
|
||
}
|
||
CATCH (ex, RETURN_MASK_ALL)
|
||
{
|
||
except = ex;
|
||
}
|
||
END_CATCH
|
||
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
|
||
return result;
|
||
}
|
||
|
||
static int
|
||
valpy_setitem (PyObject *self, PyObject *key, PyObject *value)
|
||
{
|
||
PyErr_Format (PyExc_NotImplementedError,
|
||
_("Setting of struct elements is not currently supported."));
|
||
return -1;
|
||
}
|
||
|
||
/* Called by the Python interpreter to perform an inferior function
|
||
call on the value. Returns NULL on error, with a python exception set. */
|
||
static PyObject *
|
||
valpy_call (PyObject *self, PyObject *args, PyObject *keywords)
|
||
{
|
||
Py_ssize_t args_count;
|
||
struct value *function = ((value_object *) self)->value;
|
||
struct value **vargs = NULL;
|
||
struct type *ftype = NULL;
|
||
struct value *mark = value_mark ();
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
ftype = check_typedef (value_type (function));
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (TYPE_CODE (ftype) != TYPE_CODE_FUNC)
|
||
{
|
||
PyErr_SetString (PyExc_RuntimeError,
|
||
_("Value is not callable (not TYPE_CODE_FUNC)."));
|
||
return NULL;
|
||
}
|
||
|
||
if (! PyTuple_Check (args))
|
||
{
|
||
PyErr_SetString (PyExc_TypeError,
|
||
_("Inferior arguments must be provided in a tuple."));
|
||
return NULL;
|
||
}
|
||
|
||
args_count = PyTuple_Size (args);
|
||
if (args_count > 0)
|
||
{
|
||
int i;
|
||
|
||
vargs = XALLOCAVEC (struct value *, args_count);
|
||
for (i = 0; i < args_count; i++)
|
||
{
|
||
PyObject *item = PyTuple_GetItem (args, i);
|
||
|
||
if (item == NULL)
|
||
return NULL;
|
||
|
||
vargs[i] = convert_value_from_python (item);
|
||
if (vargs[i] == NULL)
|
||
return NULL;
|
||
}
|
||
}
|
||
|
||
TRY
|
||
{
|
||
scoped_value_mark free_values;
|
||
struct value *return_value;
|
||
|
||
return_value = call_function_by_hand (function, args_count, vargs);
|
||
result = value_to_value_object (return_value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Called by the Python interpreter to obtain string representation
|
||
of the object. */
|
||
static PyObject *
|
||
valpy_str (PyObject *self)
|
||
{
|
||
struct value_print_options opts;
|
||
|
||
get_user_print_options (&opts);
|
||
opts.deref_ref = 0;
|
||
|
||
string_file stb;
|
||
|
||
TRY
|
||
{
|
||
common_val_print (((value_object *) self)->value, &stb, 0,
|
||
&opts, python_language);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return PyUnicode_Decode (stb.c_str (), stb.size (), host_charset (), NULL);
|
||
}
|
||
|
||
/* Implements gdb.Value.is_optimized_out. */
|
||
static PyObject *
|
||
valpy_get_is_optimized_out (PyObject *self, void *closure)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
int opt = 0;
|
||
|
||
TRY
|
||
{
|
||
opt = value_optimized_out (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (opt)
|
||
Py_RETURN_TRUE;
|
||
|
||
Py_RETURN_FALSE;
|
||
}
|
||
|
||
/* Implements gdb.Value.is_lazy. */
|
||
static PyObject *
|
||
valpy_get_is_lazy (PyObject *self, void *closure)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
int opt = 0;
|
||
|
||
TRY
|
||
{
|
||
opt = value_lazy (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (opt)
|
||
Py_RETURN_TRUE;
|
||
|
||
Py_RETURN_FALSE;
|
||
}
|
||
|
||
/* Implements gdb.Value.fetch_lazy (). */
|
||
static PyObject *
|
||
valpy_fetch_lazy (PyObject *self, PyObject *args)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
|
||
TRY
|
||
{
|
||
if (value_lazy (value))
|
||
value_fetch_lazy (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
Py_RETURN_NONE;
|
||
}
|
||
|
||
/* Calculate and return the address of the PyObject as the value of
|
||
the builtin __hash__ call. */
|
||
static Py_hash_t
|
||
valpy_hash (PyObject *self)
|
||
{
|
||
return (intptr_t) self;
|
||
}
|
||
|
||
enum valpy_opcode
|
||
{
|
||
VALPY_ADD,
|
||
VALPY_SUB,
|
||
VALPY_MUL,
|
||
VALPY_DIV,
|
||
VALPY_REM,
|
||
VALPY_POW,
|
||
VALPY_LSH,
|
||
VALPY_RSH,
|
||
VALPY_BITAND,
|
||
VALPY_BITOR,
|
||
VALPY_BITXOR
|
||
};
|
||
|
||
/* If TYPE is a reference, return the target; otherwise return TYPE. */
|
||
#define STRIP_REFERENCE(TYPE) \
|
||
((TYPE_CODE (TYPE) == TYPE_CODE_REF) ? (TYPE_TARGET_TYPE (TYPE)) : (TYPE))
|
||
|
||
/* Helper for valpy_binop. Returns a value object which is the result
|
||
of applying the operation specified by OPCODE to the given
|
||
arguments. Throws a GDB exception on error. */
|
||
|
||
static PyObject *
|
||
valpy_binop_throw (enum valpy_opcode opcode, PyObject *self, PyObject *other)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
struct value *arg1, *arg2;
|
||
struct value *res_val = NULL;
|
||
enum exp_opcode op = OP_NULL;
|
||
int handled = 0;
|
||
|
||
scoped_value_mark free_values;
|
||
|
||
/* If the gdb.Value object is the second operand, then it will be
|
||
passed to us as the OTHER argument, and SELF will be an entirely
|
||
different kind of object, altogether. Because of this, we can't
|
||
assume self is a gdb.Value object and need to convert it from
|
||
python as well. */
|
||
arg1 = convert_value_from_python (self);
|
||
if (arg1 == NULL)
|
||
return NULL;
|
||
|
||
arg2 = convert_value_from_python (other);
|
||
if (arg2 == NULL)
|
||
return NULL;
|
||
|
||
switch (opcode)
|
||
{
|
||
case VALPY_ADD:
|
||
{
|
||
struct type *ltype = value_type (arg1);
|
||
struct type *rtype = value_type (arg2);
|
||
|
||
ltype = check_typedef (ltype);
|
||
ltype = STRIP_REFERENCE (ltype);
|
||
rtype = check_typedef (rtype);
|
||
rtype = STRIP_REFERENCE (rtype);
|
||
|
||
handled = 1;
|
||
if (TYPE_CODE (ltype) == TYPE_CODE_PTR
|
||
&& is_integral_type (rtype))
|
||
res_val = value_ptradd (arg1, value_as_long (arg2));
|
||
else if (TYPE_CODE (rtype) == TYPE_CODE_PTR
|
||
&& is_integral_type (ltype))
|
||
res_val = value_ptradd (arg2, value_as_long (arg1));
|
||
else
|
||
{
|
||
handled = 0;
|
||
op = BINOP_ADD;
|
||
}
|
||
}
|
||
break;
|
||
case VALPY_SUB:
|
||
{
|
||
struct type *ltype = value_type (arg1);
|
||
struct type *rtype = value_type (arg2);
|
||
|
||
ltype = check_typedef (ltype);
|
||
ltype = STRIP_REFERENCE (ltype);
|
||
rtype = check_typedef (rtype);
|
||
rtype = STRIP_REFERENCE (rtype);
|
||
|
||
handled = 1;
|
||
if (TYPE_CODE (ltype) == TYPE_CODE_PTR
|
||
&& TYPE_CODE (rtype) == TYPE_CODE_PTR)
|
||
/* A ptrdiff_t for the target would be preferable here. */
|
||
res_val = value_from_longest (builtin_type_pyint,
|
||
value_ptrdiff (arg1, arg2));
|
||
else if (TYPE_CODE (ltype) == TYPE_CODE_PTR
|
||
&& is_integral_type (rtype))
|
||
res_val = value_ptradd (arg1, - value_as_long (arg2));
|
||
else
|
||
{
|
||
handled = 0;
|
||
op = BINOP_SUB;
|
||
}
|
||
}
|
||
break;
|
||
case VALPY_MUL:
|
||
op = BINOP_MUL;
|
||
break;
|
||
case VALPY_DIV:
|
||
op = BINOP_DIV;
|
||
break;
|
||
case VALPY_REM:
|
||
op = BINOP_REM;
|
||
break;
|
||
case VALPY_POW:
|
||
op = BINOP_EXP;
|
||
break;
|
||
case VALPY_LSH:
|
||
op = BINOP_LSH;
|
||
break;
|
||
case VALPY_RSH:
|
||
op = BINOP_RSH;
|
||
break;
|
||
case VALPY_BITAND:
|
||
op = BINOP_BITWISE_AND;
|
||
break;
|
||
case VALPY_BITOR:
|
||
op = BINOP_BITWISE_IOR;
|
||
break;
|
||
case VALPY_BITXOR:
|
||
op = BINOP_BITWISE_XOR;
|
||
break;
|
||
}
|
||
|
||
if (!handled)
|
||
{
|
||
if (binop_user_defined_p (op, arg1, arg2))
|
||
res_val = value_x_binop (arg1, arg2, op, OP_NULL, EVAL_NORMAL);
|
||
else
|
||
res_val = value_binop (arg1, arg2, op);
|
||
}
|
||
|
||
if (res_val)
|
||
result = value_to_value_object (res_val);
|
||
|
||
return result;
|
||
}
|
||
|
||
/* Returns a value object which is the result of applying the operation
|
||
specified by OPCODE to the given arguments. Returns NULL on error, with
|
||
a python exception set. */
|
||
static PyObject *
|
||
valpy_binop (enum valpy_opcode opcode, PyObject *self, PyObject *other)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
result = valpy_binop_throw (opcode, self, other);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_add (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_ADD, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_subtract (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_SUB, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_multiply (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_MUL, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_divide (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_DIV, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_remainder (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_REM, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_power (PyObject *self, PyObject *other, PyObject *unused)
|
||
{
|
||
/* We don't support the ternary form of pow. I don't know how to express
|
||
that, so let's just throw NotImplementedError to at least do something
|
||
about it. */
|
||
if (unused != Py_None)
|
||
{
|
||
PyErr_SetString (PyExc_NotImplementedError,
|
||
"Invalid operation on gdb.Value.");
|
||
return NULL;
|
||
}
|
||
|
||
return valpy_binop (VALPY_POW, self, other);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_negative (PyObject *self)
|
||
{
|
||
PyObject *result = NULL;
|
||
|
||
TRY
|
||
{
|
||
/* Perhaps overkill, but consistency has some virtue. */
|
||
scoped_value_mark free_values;
|
||
struct value *val;
|
||
|
||
val = value_neg (((value_object *) self)->value);
|
||
result = value_to_value_object (val);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return result;
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_positive (PyObject *self)
|
||
{
|
||
return value_to_value_object (((value_object *) self)->value);
|
||
}
|
||
|
||
static PyObject *
|
||
valpy_absolute (PyObject *self)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
int isabs = 1;
|
||
|
||
TRY
|
||
{
|
||
scoped_value_mark free_values;
|
||
|
||
if (value_less (value, value_zero (value_type (value), not_lval)))
|
||
isabs = 0;
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (isabs)
|
||
return valpy_positive (self);
|
||
else
|
||
return valpy_negative (self);
|
||
}
|
||
|
||
/* Implements boolean evaluation of gdb.Value. */
|
||
static int
|
||
valpy_nonzero (PyObject *self)
|
||
{
|
||
struct gdb_exception except = exception_none;
|
||
value_object *self_value = (value_object *) self;
|
||
struct type *type;
|
||
int nonzero = 0; /* Appease GCC warning. */
|
||
|
||
TRY
|
||
{
|
||
type = check_typedef (value_type (self_value->value));
|
||
|
||
if (is_integral_type (type) || TYPE_CODE (type) == TYPE_CODE_PTR)
|
||
nonzero = !!value_as_long (self_value->value);
|
||
else if (TYPE_CODE (type) == TYPE_CODE_FLT)
|
||
nonzero = value_as_double (self_value->value) != 0;
|
||
else if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
|
||
nonzero = !decimal_is_zero (value_contents (self_value->value),
|
||
TYPE_LENGTH (type),
|
||
gdbarch_byte_order (get_type_arch (type)));
|
||
else
|
||
/* All other values are True. */
|
||
nonzero = 1;
|
||
}
|
||
CATCH (ex, RETURN_MASK_ALL)
|
||
{
|
||
except = ex;
|
||
}
|
||
END_CATCH
|
||
|
||
/* This is not documented in the Python documentation, but if this
|
||
function fails, return -1 as slot_nb_nonzero does (the default
|
||
Python nonzero function). */
|
||
GDB_PY_SET_HANDLE_EXCEPTION (except);
|
||
|
||
return nonzero;
|
||
}
|
||
|
||
/* Implements ~ for value objects. */
|
||
static PyObject *
|
||
valpy_invert (PyObject *self)
|
||
{
|
||
struct value *val = NULL;
|
||
|
||
TRY
|
||
{
|
||
val = value_complement (((value_object *) self)->value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return value_to_value_object (val);
|
||
}
|
||
|
||
/* Implements left shift for value objects. */
|
||
static PyObject *
|
||
valpy_lsh (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_LSH, self, other);
|
||
}
|
||
|
||
/* Implements right shift for value objects. */
|
||
static PyObject *
|
||
valpy_rsh (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_RSH, self, other);
|
||
}
|
||
|
||
/* Implements bitwise and for value objects. */
|
||
static PyObject *
|
||
valpy_and (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_BITAND, self, other);
|
||
}
|
||
|
||
/* Implements bitwise or for value objects. */
|
||
static PyObject *
|
||
valpy_or (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_BITOR, self, other);
|
||
}
|
||
|
||
/* Implements bitwise xor for value objects. */
|
||
static PyObject *
|
||
valpy_xor (PyObject *self, PyObject *other)
|
||
{
|
||
return valpy_binop (VALPY_BITXOR, self, other);
|
||
}
|
||
|
||
/* Helper for valpy_richcompare. Implements comparison operations for
|
||
value objects. Returns true/false on success. Returns -1 with a
|
||
Python exception set if a Python error is detected. Throws a GDB
|
||
exception on other errors (memory error, etc.). */
|
||
|
||
static int
|
||
valpy_richcompare_throw (PyObject *self, PyObject *other, int op)
|
||
{
|
||
int result;
|
||
struct value *value_other;
|
||
struct value *value_self;
|
||
struct cleanup *cleanup;
|
||
|
||
scoped_value_mark free_values;
|
||
|
||
value_other = convert_value_from_python (other);
|
||
if (value_other == NULL)
|
||
return -1;
|
||
|
||
value_self = ((value_object *) self)->value;
|
||
|
||
switch (op)
|
||
{
|
||
case Py_LT:
|
||
result = value_less (value_self, value_other);
|
||
break;
|
||
case Py_LE:
|
||
result = value_less (value_self, value_other)
|
||
|| value_equal (value_self, value_other);
|
||
break;
|
||
case Py_EQ:
|
||
result = value_equal (value_self, value_other);
|
||
break;
|
||
case Py_NE:
|
||
result = !value_equal (value_self, value_other);
|
||
break;
|
||
case Py_GT:
|
||
result = value_less (value_other, value_self);
|
||
break;
|
||
case Py_GE:
|
||
result = (value_less (value_other, value_self)
|
||
|| value_equal (value_self, value_other));
|
||
break;
|
||
default:
|
||
/* Can't happen. */
|
||
PyErr_SetString (PyExc_NotImplementedError,
|
||
_("Invalid operation on gdb.Value."));
|
||
result = -1;
|
||
break;
|
||
}
|
||
|
||
return result;
|
||
}
|
||
|
||
|
||
/* Implements comparison operations for value objects. Returns NULL on error,
|
||
with a python exception set. */
|
||
static PyObject *
|
||
valpy_richcompare (PyObject *self, PyObject *other, int op)
|
||
{
|
||
int result = 0;
|
||
|
||
if (other == Py_None)
|
||
/* Comparing with None is special. From what I can tell, in Python
|
||
None is smaller than anything else. */
|
||
switch (op) {
|
||
case Py_LT:
|
||
case Py_LE:
|
||
case Py_EQ:
|
||
Py_RETURN_FALSE;
|
||
case Py_NE:
|
||
case Py_GT:
|
||
case Py_GE:
|
||
Py_RETURN_TRUE;
|
||
default:
|
||
/* Can't happen. */
|
||
PyErr_SetString (PyExc_NotImplementedError,
|
||
_("Invalid operation on gdb.Value."));
|
||
return NULL;
|
||
}
|
||
|
||
TRY
|
||
{
|
||
result = valpy_richcompare_throw (self, other, op);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
/* In this case, the Python exception has already been set. */
|
||
if (result < 0)
|
||
return NULL;
|
||
|
||
if (result == 1)
|
||
Py_RETURN_TRUE;
|
||
|
||
Py_RETURN_FALSE;
|
||
}
|
||
|
||
#ifndef IS_PY3K
|
||
/* Implements conversion to int. */
|
||
static PyObject *
|
||
valpy_int (PyObject *self)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
struct type *type = value_type (value);
|
||
LONGEST l = 0;
|
||
|
||
TRY
|
||
{
|
||
if (!is_integral_type (type))
|
||
error (_("Cannot convert value to int."));
|
||
|
||
l = value_as_long (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return gdb_py_object_from_longest (l);
|
||
}
|
||
#endif
|
||
|
||
/* Implements conversion to long. */
|
||
static PyObject *
|
||
valpy_long (PyObject *self)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
struct type *type = value_type (value);
|
||
LONGEST l = 0;
|
||
|
||
TRY
|
||
{
|
||
type = check_typedef (type);
|
||
|
||
if (!is_integral_type (type)
|
||
&& TYPE_CODE (type) != TYPE_CODE_PTR)
|
||
error (_("Cannot convert value to long."));
|
||
|
||
l = value_as_long (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
if (TYPE_UNSIGNED (type))
|
||
return gdb_py_long_from_ulongest (l);
|
||
else
|
||
return gdb_py_long_from_longest (l);
|
||
}
|
||
|
||
/* Implements conversion to float. */
|
||
static PyObject *
|
||
valpy_float (PyObject *self)
|
||
{
|
||
struct value *value = ((value_object *) self)->value;
|
||
struct type *type = value_type (value);
|
||
double d = 0;
|
||
|
||
TRY
|
||
{
|
||
type = check_typedef (type);
|
||
|
||
if (TYPE_CODE (type) != TYPE_CODE_FLT)
|
||
error (_("Cannot convert value to float."));
|
||
|
||
d = value_as_double (value);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return PyFloat_FromDouble (d);
|
||
}
|
||
|
||
/* Returns an object for a value which is released from the all_values chain,
|
||
so its lifetime is not bound to the execution of a command. */
|
||
PyObject *
|
||
value_to_value_object (struct value *val)
|
||
{
|
||
value_object *val_obj;
|
||
|
||
val_obj = PyObject_New (value_object, &value_object_type);
|
||
if (val_obj != NULL)
|
||
{
|
||
val_obj->value = val;
|
||
release_value_or_incref (val);
|
||
val_obj->address = NULL;
|
||
val_obj->type = NULL;
|
||
val_obj->dynamic_type = NULL;
|
||
note_value (val_obj);
|
||
}
|
||
|
||
return (PyObject *) val_obj;
|
||
}
|
||
|
||
/* Returns a borrowed reference to the struct value corresponding to
|
||
the given value object. */
|
||
struct value *
|
||
value_object_to_value (PyObject *self)
|
||
{
|
||
value_object *real;
|
||
|
||
if (! PyObject_TypeCheck (self, &value_object_type))
|
||
return NULL;
|
||
real = (value_object *) self;
|
||
return real->value;
|
||
}
|
||
|
||
/* Try to convert a Python value to a gdb value. If the value cannot
|
||
be converted, set a Python exception and return NULL. Returns a
|
||
reference to a new value on the all_values chain. */
|
||
|
||
struct value *
|
||
convert_value_from_python (PyObject *obj)
|
||
{
|
||
struct value *value = NULL; /* -Wall */
|
||
int cmp;
|
||
|
||
gdb_assert (obj != NULL);
|
||
|
||
TRY
|
||
{
|
||
if (PyBool_Check (obj))
|
||
{
|
||
cmp = PyObject_IsTrue (obj);
|
||
if (cmp >= 0)
|
||
value = value_from_longest (builtin_type_pybool, cmp);
|
||
}
|
||
/* Make a long logic check first. In Python 3.x, internally,
|
||
all integers are represented as longs. In Python 2.x, there
|
||
is still a differentiation internally between a PyInt and a
|
||
PyLong. Explicitly do this long check conversion first. In
|
||
GDB, for Python 3.x, we #ifdef PyInt = PyLong. This check has
|
||
to be done first to ensure we do not lose information in the
|
||
conversion process. */
|
||
else if (PyLong_Check (obj))
|
||
{
|
||
LONGEST l = PyLong_AsLongLong (obj);
|
||
|
||
if (PyErr_Occurred ())
|
||
{
|
||
/* If the error was an overflow, we can try converting to
|
||
ULONGEST instead. */
|
||
if (PyErr_ExceptionMatches (PyExc_OverflowError))
|
||
{
|
||
PyObject *etype, *evalue, *etraceback;
|
||
|
||
PyErr_Fetch (&etype, &evalue, &etraceback);
|
||
gdbpy_ref zero (PyInt_FromLong (0));
|
||
|
||
/* Check whether obj is positive. */
|
||
if (PyObject_RichCompareBool (obj, zero.get (), Py_GT) > 0)
|
||
{
|
||
ULONGEST ul;
|
||
|
||
ul = PyLong_AsUnsignedLongLong (obj);
|
||
if (! PyErr_Occurred ())
|
||
value = value_from_ulongest (builtin_type_upylong, ul);
|
||
}
|
||
else
|
||
/* There's nothing we can do. */
|
||
PyErr_Restore (etype, evalue, etraceback);
|
||
}
|
||
}
|
||
else
|
||
value = value_from_longest (builtin_type_pylong, l);
|
||
}
|
||
#if PY_MAJOR_VERSION == 2
|
||
else if (PyInt_Check (obj))
|
||
{
|
||
long l = PyInt_AsLong (obj);
|
||
|
||
if (! PyErr_Occurred ())
|
||
value = value_from_longest (builtin_type_pyint, l);
|
||
}
|
||
#endif
|
||
else if (PyFloat_Check (obj))
|
||
{
|
||
double d = PyFloat_AsDouble (obj);
|
||
|
||
if (! PyErr_Occurred ())
|
||
value = value_from_double (builtin_type_pyfloat, d);
|
||
}
|
||
else if (gdbpy_is_string (obj))
|
||
{
|
||
gdb::unique_xmalloc_ptr<char> s
|
||
= python_string_to_target_string (obj);
|
||
if (s != NULL)
|
||
value = value_cstring (s.get (), strlen (s.get ()),
|
||
builtin_type_pychar);
|
||
}
|
||
else if (PyObject_TypeCheck (obj, &value_object_type))
|
||
value = value_copy (((value_object *) obj)->value);
|
||
else if (gdbpy_is_lazy_string (obj))
|
||
{
|
||
PyObject *result;
|
||
|
||
result = PyObject_CallMethodObjArgs (obj, gdbpy_value_cst, NULL);
|
||
value = value_copy (((value_object *) result)->value);
|
||
}
|
||
else
|
||
#ifdef IS_PY3K
|
||
PyErr_Format (PyExc_TypeError,
|
||
_("Could not convert Python object: %S."), obj);
|
||
#else
|
||
PyErr_Format (PyExc_TypeError,
|
||
_("Could not convert Python object: %s."),
|
||
PyString_AsString (PyObject_Str (obj)));
|
||
#endif
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
PyErr_Format (except.reason == RETURN_QUIT
|
||
? PyExc_KeyboardInterrupt : PyExc_RuntimeError,
|
||
"%s", except.message);
|
||
return NULL;
|
||
}
|
||
END_CATCH
|
||
|
||
return value;
|
||
}
|
||
|
||
/* Returns value object in the ARGth position in GDB's history. */
|
||
PyObject *
|
||
gdbpy_history (PyObject *self, PyObject *args)
|
||
{
|
||
int i;
|
||
struct value *res_val = NULL; /* Initialize to appease gcc warning. */
|
||
|
||
if (!PyArg_ParseTuple (args, "i", &i))
|
||
return NULL;
|
||
|
||
TRY
|
||
{
|
||
res_val = access_value_history (i);
|
||
}
|
||
CATCH (except, RETURN_MASK_ALL)
|
||
{
|
||
GDB_PY_HANDLE_EXCEPTION (except);
|
||
}
|
||
END_CATCH
|
||
|
||
return value_to_value_object (res_val);
|
||
}
|
||
|
||
/* Returns 1 in OBJ is a gdb.Value object, 0 otherwise. */
|
||
|
||
int
|
||
gdbpy_is_value_object (PyObject *obj)
|
||
{
|
||
return PyObject_TypeCheck (obj, &value_object_type);
|
||
}
|
||
|
||
int
|
||
gdbpy_initialize_values (void)
|
||
{
|
||
if (PyType_Ready (&value_object_type) < 0)
|
||
return -1;
|
||
|
||
return gdb_pymodule_addobject (gdb_module, "Value",
|
||
(PyObject *) &value_object_type);
|
||
}
|
||
|
||
|
||
|
||
static PyGetSetDef value_object_getset[] = {
|
||
{ "address", valpy_get_address, NULL, "The address of the value.",
|
||
NULL },
|
||
{ "is_optimized_out", valpy_get_is_optimized_out, NULL,
|
||
"Boolean telling whether the value is optimized "
|
||
"out (i.e., not available).",
|
||
NULL },
|
||
{ "type", valpy_get_type, NULL, "Type of the value.", NULL },
|
||
{ "dynamic_type", valpy_get_dynamic_type, NULL,
|
||
"Dynamic type of the value.", NULL },
|
||
{ "is_lazy", valpy_get_is_lazy, NULL,
|
||
"Boolean telling whether the value is lazy (not fetched yet\n\
|
||
from the inferior). A lazy value is fetched when needed, or when\n\
|
||
the \"fetch_lazy()\" method is called.", NULL },
|
||
{NULL} /* Sentinel */
|
||
};
|
||
|
||
static PyMethodDef value_object_methods[] = {
|
||
{ "cast", valpy_cast, METH_VARARGS, "Cast the value to the supplied type." },
|
||
{ "dynamic_cast", valpy_dynamic_cast, METH_VARARGS,
|
||
"dynamic_cast (gdb.Type) -> gdb.Value\n\
|
||
Cast the value to the supplied type, as if by the C++ dynamic_cast operator."
|
||
},
|
||
{ "reinterpret_cast", valpy_reinterpret_cast, METH_VARARGS,
|
||
"reinterpret_cast (gdb.Type) -> gdb.Value\n\
|
||
Cast the value to the supplied type, as if by the C++\n\
|
||
reinterpret_cast operator."
|
||
},
|
||
{ "dereference", valpy_dereference, METH_NOARGS, "Dereferences the value." },
|
||
{ "referenced_value", valpy_referenced_value, METH_NOARGS,
|
||
"Return the value referenced by a TYPE_CODE_REF or TYPE_CODE_PTR value." },
|
||
{ "reference_value", valpy_reference_value, METH_NOARGS,
|
||
"Return a value of type TYPE_CODE_REF referencing this value." },
|
||
{ "const_value", valpy_const_value, METH_NOARGS,
|
||
"Return a 'const' qualied version of the same value." },
|
||
{ "lazy_string", (PyCFunction) valpy_lazy_string,
|
||
METH_VARARGS | METH_KEYWORDS,
|
||
"lazy_string ([encoding] [, length]) -> lazy_string\n\
|
||
Return a lazy string representation of the value." },
|
||
{ "string", (PyCFunction) valpy_string, METH_VARARGS | METH_KEYWORDS,
|
||
"string ([encoding] [, errors] [, length]) -> string\n\
|
||
Return Unicode string representation of the value." },
|
||
{ "fetch_lazy", valpy_fetch_lazy, METH_NOARGS,
|
||
"Fetches the value from the inferior, if it was lazy." },
|
||
{NULL} /* Sentinel */
|
||
};
|
||
|
||
static PyNumberMethods value_object_as_number = {
|
||
valpy_add,
|
||
valpy_subtract,
|
||
valpy_multiply,
|
||
#ifndef IS_PY3K
|
||
valpy_divide,
|
||
#endif
|
||
valpy_remainder,
|
||
NULL, /* nb_divmod */
|
||
valpy_power, /* nb_power */
|
||
valpy_negative, /* nb_negative */
|
||
valpy_positive, /* nb_positive */
|
||
valpy_absolute, /* nb_absolute */
|
||
valpy_nonzero, /* nb_nonzero */
|
||
valpy_invert, /* nb_invert */
|
||
valpy_lsh, /* nb_lshift */
|
||
valpy_rsh, /* nb_rshift */
|
||
valpy_and, /* nb_and */
|
||
valpy_xor, /* nb_xor */
|
||
valpy_or, /* nb_or */
|
||
#ifdef IS_PY3K
|
||
valpy_long, /* nb_int */
|
||
NULL, /* reserved */
|
||
#else
|
||
NULL, /* nb_coerce */
|
||
valpy_int, /* nb_int */
|
||
valpy_long, /* nb_long */
|
||
#endif
|
||
valpy_float, /* nb_float */
|
||
#ifndef IS_PY3K
|
||
NULL, /* nb_oct */
|
||
NULL, /* nb_hex */
|
||
#endif
|
||
NULL, /* nb_inplace_add */
|
||
NULL, /* nb_inplace_subtract */
|
||
NULL, /* nb_inplace_multiply */
|
||
#ifndef IS_PY3K
|
||
NULL, /* nb_inplace_divide */
|
||
#endif
|
||
NULL, /* nb_inplace_remainder */
|
||
NULL, /* nb_inplace_power */
|
||
NULL, /* nb_inplace_lshift */
|
||
NULL, /* nb_inplace_rshift */
|
||
NULL, /* nb_inplace_and */
|
||
NULL, /* nb_inplace_xor */
|
||
NULL, /* nb_inplace_or */
|
||
NULL, /* nb_floor_divide */
|
||
valpy_divide, /* nb_true_divide */
|
||
NULL, /* nb_inplace_floor_divide */
|
||
NULL, /* nb_inplace_true_divide */
|
||
#ifndef HAVE_LIBPYTHON2_4
|
||
/* This was added in Python 2.5. */
|
||
valpy_long, /* nb_index */
|
||
#endif /* HAVE_LIBPYTHON2_4 */
|
||
};
|
||
|
||
static PyMappingMethods value_object_as_mapping = {
|
||
valpy_length,
|
||
valpy_getitem,
|
||
valpy_setitem
|
||
};
|
||
|
||
PyTypeObject value_object_type = {
|
||
PyVarObject_HEAD_INIT (NULL, 0)
|
||
"gdb.Value", /*tp_name*/
|
||
sizeof (value_object), /*tp_basicsize*/
|
||
0, /*tp_itemsize*/
|
||
valpy_dealloc, /*tp_dealloc*/
|
||
0, /*tp_print*/
|
||
0, /*tp_getattr*/
|
||
0, /*tp_setattr*/
|
||
0, /*tp_compare*/
|
||
0, /*tp_repr*/
|
||
&value_object_as_number, /*tp_as_number*/
|
||
0, /*tp_as_sequence*/
|
||
&value_object_as_mapping, /*tp_as_mapping*/
|
||
valpy_hash, /*tp_hash*/
|
||
valpy_call, /*tp_call*/
|
||
valpy_str, /*tp_str*/
|
||
0, /*tp_getattro*/
|
||
0, /*tp_setattro*/
|
||
0, /*tp_as_buffer*/
|
||
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_CHECKTYPES
|
||
| Py_TPFLAGS_BASETYPE, /*tp_flags*/
|
||
"GDB value object", /* tp_doc */
|
||
0, /* tp_traverse */
|
||
0, /* tp_clear */
|
||
valpy_richcompare, /* tp_richcompare */
|
||
0, /* tp_weaklistoffset */
|
||
0, /* tp_iter */
|
||
0, /* tp_iternext */
|
||
value_object_methods, /* tp_methods */
|
||
0, /* tp_members */
|
||
value_object_getset, /* 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 */
|
||
valpy_new /* tp_new */
|
||
};
|