mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
00431a78b2
This is more preparation bits for multi-target support. In a multi-target scenario, we need to address the case of different processes/threads running on different targets that happen to have the same PID/PTID. E.g., we can have both process 123 in target 1, and process 123 in target 2, while they're in reality different processes running on different machines. Or maybe we've loaded multiple instances of the same core file. Etc. To address this, in my WIP multi-target branch, threads and processes are uniquely identified by the (process_stratum target_ops *, ptid_t) and (process_stratum target_ops *, pid) tuples respectively. I.e., each process_stratum instance has its own thread/process number space. As you can imagine, that requires passing around target_ops * pointers in a number of functions where we're currently passing only a ptid_t or an int. E.g., when we look up a thread_info object by ptid_t in find_thread_ptid, the ptid_t alone isn't sufficient. In many cases though, we already have the thread_info or inferior pointer handy, but we "lose" it somewhere along the call stack, only to look it up again by ptid_t/pid. Since thread_info or inferior objects know their parent target, if we pass around thread_info or inferior pointers when possible, we avoid having to add extra target_ops parameters to many functions, and also, we eliminate a number of by ptid_t/int lookups. So that's what this patch does. In a bit more detail: - Changes a number of functions and methods to take a thread_info or inferior pointer instead of a ptid_t or int parameter. - Changes a number of structure fields from ptid_t/int to inferior or thread_info pointers. - Uses the inferior_thread() function whenever possible instead of inferior_ptid. - Uses thread_info pointers directly when possible instead of the is_running/is_stopped etc. routines that require a lookup. - A number of functions are eliminated along the way, such as: int valid_gdb_inferior_id (int num); int pid_to_gdb_inferior_id (int pid); int gdb_inferior_id_to_pid (int num); int in_inferior_list (int pid); - A few structures and places hold a thread_info pointer across inferior execution, so now they take a strong reference to the (refcounted) thread_info object to avoid the thread_info pointer getting stale. This is done in enable_thread_stack_temporaries and in the infcall.c code. - Related, there's a spot in infcall.c where using a RAII object to handle the refcount would be handy, so a gdb::ref_ptr specialization for thread_info is added (thread_info_ref, in gdbthread.h), along with a gdb_ref_ptr policy that works for all refcounted_object types (in common/refcounted-object.h). gdb/ChangeLog: 2018-06-21 Pedro Alves <palves@redhat.com> * ada-lang.h (ada_get_task_number): Take a thread_info pointer instead of a ptid_t. All callers adjusted. * ada-tasks.c (ada_get_task_number): Likewise. All callers adjusted. (print_ada_task_info, display_current_task_id, task_command_1): Adjust. * breakpoint.c (watchpoint_in_thread_scope): Adjust to use inferior_thread. (breakpoint_kind): Adjust. (remove_breakpoints_pid): Rename to ... (remove_breakpoints_inf): ... this. Adjust to take an inferior pointer. All callers adjusted. (bpstat_clear_actions): Use inferior_thread. (get_bpstat_thread): New. (bpstat_do_actions): Use it. (bpstat_check_breakpoint_conditions, bpstat_stop_status): Adjust to take a thread_info pointer. All callers adjusted. (set_longjmp_breakpoint_for_call_dummy, set_momentary_breakpoint) (breakpoint_re_set_thread): Use inferior_thread. * breakpoint.h (struct inferior): Forward declare. (bpstat_stop_status): Update. (remove_breakpoints_pid): Delete. (remove_breakpoints_inf): New. * bsd-uthread.c (bsd_uthread_target::wait) (bsd_uthread_target::update_thread_list): Use find_thread_ptid. * btrace.c (btrace_add_pc, btrace_enable, btrace_fetch) (maint_btrace_packet_history_cmd) (maint_btrace_clear_packet_history_cmd): Adjust. (maint_btrace_clear_cmd, maint_info_btrace_cmd): Adjust to use inferior_thread. * cli/cli-interp.c: Include "inferior.h". * common/refcounted-object.h (struct refcounted_object_ref_policy): New. * compile/compile-object-load.c: Include gdbthread.h. (store_regs): Use inferior_thread. * corelow.c (core_target::close): Use current_inferior. (core_target_open): Adjust to use first_thread_of_inferior and use the current inferior. * ctf.c (ctf_target::close): Adjust to use current_inferior. * dummy-frame.c (dummy_frame_id) <ptid>: Delete, replaced by ... <thread>: ... this new field. All references adjusted. (dummy_frame_pop, dummy_frame_discard, register_dummy_frame_dtor): Take a thread_info pointer instead of a ptid_t. * dummy-frame.h (dummy_frame_push, dummy_frame_pop) (dummy_frame_discard, register_dummy_frame_dtor): Take a thread_info pointer instead of a ptid_t. * elfread.c: Include "inferior.h". (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop): Use inferior_thread. * eval.c (evaluate_subexp): Likewise. * frame.c (frame_pop, has_stack_frames, find_frame_sal): Use inferior_thread. * gdb_proc_service.h (struct thread_info): Forward declare. (struct ps_prochandle) <ptid>: Delete, replaced by ... <thread>: ... this new field. All references adjusted. * gdbarch.h, gdbarch.c: Regenerate. * gdbarch.sh (get_syscall_number): Replace 'ptid' parameter with a 'thread' parameter. All implementations and callers adjusted. * gdbthread.h (thread_info) <set_running>: New method. (delete_thread, delete_thread_silent): Take a thread_info pointer instead of a ptid. (global_thread_id_to_ptid, ptid_to_global_thread_id): Delete. (first_thread_of_process): Delete, replaced by ... (first_thread_of_inferior): ... this new function. All callers adjusted. (any_live_thread_of_process): Delete, replaced by ... (any_live_thread_of_inferior): ... this new function. All callers adjusted. (switch_to_thread, switch_to_no_thread): Declare. (is_executing): Delete. (enable_thread_stack_temporaries): Update comment. <enable_thread_stack_temporaries>: Take a thread_info pointer instead of a ptid_t. Incref the thread. <~enable_thread_stack_temporaries>: Decref the thread. <m_ptid>: Delete <m_thr>: New. (thread_stack_temporaries_enabled_p, push_thread_stack_temporary) (get_last_thread_stack_temporary) (value_in_thread_stack_temporaries, can_access_registers_thread): Take a thread_info pointer instead of a ptid_t. All callers adjusted. * infcall.c (get_call_return_value): Use inferior_thread. (run_inferior_call): Work with thread pointers instead of ptid_t. (call_function_by_hand_dummy): Work with thread pointers instead of ptid_t. Use thread_info_ref. * infcmd.c (proceed_thread_callback): Access thread's state directly. (ensure_valid_thread, ensure_not_running): Use inferior_thread, access thread's state directly. (continue_command): Use inferior_thread. (info_program_command): Use find_thread_ptid and access thread state directly. (proceed_after_attach_callback): Use thread state directly. (notice_new_inferior): Take a thread_info pointer instead of a ptid_t. All callers adjusted. (exit_inferior): Take an inferior pointer instead of a pid. All callers adjusted. (exit_inferior_silent): New. (detach_inferior): Delete. (valid_gdb_inferior_id, pid_to_gdb_inferior_id) (gdb_inferior_id_to_pid, in_inferior_list): Delete. (detach_inferior_command, kill_inferior_command): Use find_inferior_id instead of valid_gdb_inferior_id and gdb_inferior_id_to_pid. (inferior_command): Use inferior and thread pointers. * inferior.h (struct thread_info): Forward declare. (notice_new_inferior): Take a thread_info pointer instead of a ptid_t. All callers adjusted. (detach_inferior): Delete declaration. (exit_inferior, exit_inferior_silent): Take an inferior pointer instead of a pid. All callers adjusted. (gdb_inferior_id_to_pid, pid_to_gdb_inferior_id, in_inferior_list) (valid_gdb_inferior_id): Delete. * infrun.c (follow_fork_inferior, proceed_after_vfork_done) (handle_vfork_child_exec_or_exit, follow_exec): Adjust. (struct displaced_step_inferior_state) <pid>: Delete, replaced by ... <inf>: ... this new field. <step_ptid>: Delete, replaced by ... <step_thread>: ... this new field. (get_displaced_stepping_state): Take an inferior pointer instead of a pid. All callers adjusted. (displaced_step_in_progress_any_inferior): Adjust. (displaced_step_in_progress_thread): Take a thread pointer instead of a ptid_t. All callers adjusted. (displaced_step_in_progress, add_displaced_stepping_state): Take an inferior pointer instead of a pid. All callers adjusted. (get_displaced_step_closure_by_addr): Adjust. (remove_displaced_stepping_state): Take an inferior pointer instead of a pid. All callers adjusted. (displaced_step_prepare_throw, displaced_step_prepare) (displaced_step_fixup): Take a thread pointer instead of a ptid_t. All callers adjusted. (start_step_over): Adjust. (infrun_thread_ptid_changed): Remove bit updating ptids in the displaced step queue. (do_target_resume): Adjust. (fetch_inferior_event): Use inferior_thread. (context_switch, get_inferior_stop_soon): Take an execution_control_state pointer instead of a ptid_t. All callers adjusted. (switch_to_thread_cleanup): Delete. (stop_all_threads): Use scoped_restore_current_thread. * inline-frame.c: Include "gdbthread.h". (inline_state) <inline_state>: Take a thread pointer instead of a ptid_t. All callers adjusted. <ptid>: Delete, replaced by ... <thread>: ... this new field. (find_inline_frame_state): Take a thread pointer instead of a ptid_t. All callers adjusted. (skip_inline_frames, step_into_inline_frame) (inline_skipped_frames, inline_skipped_symbol): Take a thread pointer instead of a ptid_t. All callers adjusted. * inline-frame.h (skip_inline_frames, step_into_inline_frame) (inline_skipped_frames, inline_skipped_symbol): Likewise. * linux-fork.c (delete_checkpoint_command): Adjust to use thread pointers directly. * linux-nat.c (get_detach_signal): Likewise. * linux-thread-db.c (thread_from_lwp): New 'stopped' parameter. (thread_db_notice_clone): Adjust. (thread_db_find_new_threads_silently) (thread_db_find_new_threads_2, thread_db_find_new_threads_1): Take a thread pointer instead of a ptid_t. All callers adjusted. * mi/mi-cmd-var.c: Include "inferior.h". (mi_cmd_var_update_iter): Update to use thread pointers. * mi/mi-interp.c (mi_new_thread): Update to use the thread's inferior directly. (mi_output_running_pid, mi_inferior_count): Delete, bits factored out to ... (mi_output_running): ... this new function. (mi_on_resume_1): Adjust to use it. (mi_user_selected_context_changed): Adjust to use inferior_thread. * mi/mi-main.c (proceed_thread): Adjust to use thread pointers directly. (interrupt_thread_callback): : Adjust to use thread and inferior pointers. * proc-service.c: Include "gdbthread.h". (ps_pglobal_lookup): Adjust to use the thread's inferior directly. * progspace-and-thread.c: Include "inferior.h". * progspace.c: Include "inferior.h". * python/py-exitedevent.c (create_exited_event_object): Adjust to hold a reference to an inferior_object. * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust to use inferior_thread. * python/py-inferior.c (struct inferior_object): Give the type a tag name instead of a typedef. (python_on_normal_stop): No need to check if the current thread is listed. (inferior_to_inferior_object): Change return type to inferior_object. All callers adjusted. (find_thread_object): Delete, bits factored out to ... (thread_to_thread_object): ... this new function. * python/py-infthread.c (create_thread_object): Use inferior_to_inferior_object. (thpy_is_stopped): Use thread pointer directly. (gdbpy_selected_thread): Use inferior_thread. * python/py-record-btrace.c (btpy_list_object) <ptid>: Delete field, replaced with ... <thread>: ... this new field. All users adjusted. (btpy_insn_or_gap_new): Drop const. (btpy_list_new): Take a thread pointer instead of a ptid_t. All callers adjusted. * python/py-record.c: Include "gdbthread.h". (recpy_insn_new, recpy_func_new): Take a thread pointer instead of a ptid_t. All callers adjusted. (gdbpy_current_recording): Use inferior_thread. * python/py-record.h (recpy_record_object) <ptid>: Delete field, replaced with ... <thread>: ... this new field. All users adjusted. (recpy_element_object) <ptid>: Delete field, replaced with ... <thread>: ... this new field. All users adjusted. (recpy_insn_new, recpy_func_new): Take a thread pointer instead of a ptid_t. All callers adjusted. * python/py-threadevent.c: Include "gdbthread.h". (get_event_thread): Use thread_to_thread_object. * python/python-internal.h (struct inferior_object): Forward declare. (find_thread_object, find_inferior_object): Delete declarations. (thread_to_thread_object, inferior_to_inferior_object): New declarations. * record-btrace.c: Include "inferior.h". (require_btrace_thread): Use inferior_thread. (record_btrace_frame_sniffer) (record_btrace_tailcall_frame_sniffer): Use inferior_thread. (get_thread_current_frame): Use scoped_restore_current_thread and switch_to_thread. (get_thread_current_frame): Use thread pointer directly. (record_btrace_replay_at_breakpoint): Use thread's inferior pointer directly. * record-full.c: Include "inferior.h". * regcache.c: Include "gdbthread.h". (get_thread_arch_regcache): Use the inferior's address space directly. (get_thread_regcache, registers_changed_thread): New. * regcache.h (get_thread_regcache(thread_info *thread)): New overload. (registers_changed_thread): New. (remote_target) <remote_detach_1>: Swap order of parameters. (remote_add_thread): <remote_add_thread>: Return the new thread. (get_remote_thread_info(ptid_t)): New overload. (remote_target::remote_notice_new_inferior): Use thread pointers directly. (remote_target::process_initial_stop_replies): Use thread_info::set_running. (remote_target::remote_detach_1, remote_target::detach) (extended_remote_target::detach): Adjust. * stack.c (frame_show_address): Use inferior_thread. * target-debug.h (target_debug_print_thread_info_pp): New. * target-delegates.c: Regenerate. * target.c (default_thread_address_space): Delete. (memory_xfer_partial_1): Use current_inferior. (target_detach): Use current_inferior. (target_thread_address_space): Delete. (generic_mourn_inferior): Use current_inferior. * target.h (struct target_ops) <thread_address_space>: Delete. (target_thread_address_space): Delete. * thread.c (init_thread_list): Use ALL_THREADS_SAFE. Use thread pointers directly. (delete_thread_1, delete_thread, delete_thread_silent): Take a thread pointer instead of a ptid_t. Adjust all callers. (ptid_to_global_thread_id, global_thread_id_to_ptid): Delete. (first_thread_of_process): Delete, replaced by ... (first_thread_of_inferior): ... this new function. All callers adjusted. (any_thread_of_process): Rename to ... (any_thread_of_inferior): ... this, and take an inferior pointer. (any_live_thread_of_process): Rename to ... (any_live_thread_of_inferior): ... this, and take an inferior pointer. (thread_stack_temporaries_enabled_p, push_thread_stack_temporary) (value_in_thread_stack_temporaries) (get_last_thread_stack_temporary): Take a thread pointer instead of a ptid_t. Adjust all callers. (thread_info::set_running): New. (validate_registers_access): Use inferior_thread. (can_access_registers_ptid): Rename to ... (can_access_registers_thread): ... this, and take a thread pointer. (print_thread_info_1): Adjust to compare thread pointers instead of ptids. (switch_to_no_thread, switch_to_thread): Make extern. (scoped_restore_current_thread::~scoped_restore_current_thread): Use m_thread pointer directly. (scoped_restore_current_thread::scoped_restore_current_thread): Use inferior_thread. (thread_command): Use thread pointer directly. (thread_num_make_value_helper): Use inferior_thread. * top.c (execute_command): Use inferior_thread. * tui/tui-interp.c: Include "inferior.h". * varobj.c (varobj_create): Use inferior_thread. (value_of_root_1): Use find_thread_global_id instead of global_thread_id_to_ptid.
738 lines
26 KiB
C++
738 lines
26 KiB
C++
/* Gdb/Python header for private use by Python module.
|
||
|
||
Copyright (C) 2008-2018 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/>. */
|
||
|
||
#ifndef GDB_PYTHON_INTERNAL_H
|
||
#define GDB_PYTHON_INTERNAL_H
|
||
|
||
#include "extension.h"
|
||
#include "extension-priv.h"
|
||
|
||
/* These WITH_* macros are defined by the CPython API checker that
|
||
comes with the Python plugin for GCC. See:
|
||
https://gcc-python-plugin.readthedocs.org/en/latest/cpychecker.html
|
||
The checker defines a WITH_ macro for each attribute it
|
||
exposes. */
|
||
|
||
#ifdef WITH_CPYCHECKER_RETURNS_BORROWED_REF_ATTRIBUTE
|
||
#define CPYCHECKER_RETURNS_BORROWED_REF \
|
||
__attribute__ ((cpychecker_returns_borrowed_ref))
|
||
#else
|
||
#define CPYCHECKER_RETURNS_BORROWED_REF
|
||
#endif
|
||
|
||
#ifdef WITH_CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF_ATTRIBUTE
|
||
#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG) \
|
||
__attribute__ ((cpychecker_type_object_for_typedef (ARG)))
|
||
#else
|
||
#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG)
|
||
#endif
|
||
|
||
#ifdef WITH_CPYCHECKER_STEALS_REFERENCE_TO_ARG_ATTRIBUTE
|
||
#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n) \
|
||
__attribute__ ((cpychecker_steals_reference_to_arg (n)))
|
||
#else
|
||
#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n)
|
||
#endif
|
||
|
||
#ifdef WITH_CPYCHECKER_SETS_EXCEPTION_ATTRIBUTE
|
||
#define CPYCHECKER_SETS_EXCEPTION __attribute__ ((cpychecker_sets_exception))
|
||
#else
|
||
#define CPYCHECKER_SETS_EXCEPTION
|
||
#endif
|
||
|
||
#ifdef WITH_CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION_ATTRIBUTE
|
||
#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION \
|
||
__attribute__ ((cpychecker_negative_result_sets_exception))
|
||
#else
|
||
#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
|
||
#endif
|
||
|
||
/* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t
|
||
needed by pyport.h. */
|
||
/* /usr/include/features.h on linux systems will define _POSIX_C_SOURCE
|
||
if it sees _GNU_SOURCE (which config.h will define).
|
||
pyconfig.h defines _POSIX_C_SOURCE to a different value than
|
||
/usr/include/features.h does causing compilation to fail.
|
||
To work around this, undef _POSIX_C_SOURCE before we include Python.h.
|
||
|
||
Same problem with _XOPEN_SOURCE. */
|
||
#undef _POSIX_C_SOURCE
|
||
#undef _XOPEN_SOURCE
|
||
|
||
/* On sparc-solaris, /usr/include/sys/feature_tests.h defines
|
||
_FILE_OFFSET_BITS, which pyconfig.h also defines. Same work
|
||
around technique as above. */
|
||
#undef _FILE_OFFSET_BITS
|
||
|
||
/* A kludge to avoid redefinition of snprintf on Windows by pyerrors.h. */
|
||
#if defined(_WIN32) && defined(HAVE_DECL_SNPRINTF)
|
||
#define HAVE_SNPRINTF 1
|
||
#endif
|
||
|
||
/* Another kludge to avoid compilation errors because MinGW defines
|
||
'hypot' to '_hypot', but the C++ headers says "using ::hypot". */
|
||
#ifdef __MINGW32__
|
||
# define _hypot hypot
|
||
#endif
|
||
|
||
/* Request clean size types from Python. */
|
||
#define PY_SSIZE_T_CLEAN
|
||
|
||
/* Include the Python header files using angle brackets rather than
|
||
double quotes. On case-insensitive filesystems, this prevents us
|
||
from including our python/python.h header file. */
|
||
#include <Python.h>
|
||
#include <frameobject.h>
|
||
|
||
#if PY_MAJOR_VERSION >= 3
|
||
#define IS_PY3K 1
|
||
#endif
|
||
|
||
#ifdef IS_PY3K
|
||
#define Py_TPFLAGS_HAVE_ITER 0
|
||
#define Py_TPFLAGS_CHECKTYPES 0
|
||
|
||
#define PyInt_Check PyLong_Check
|
||
#define PyInt_FromLong PyLong_FromLong
|
||
#define PyInt_FromSsize_t PyLong_FromSsize_t
|
||
#define PyInt_AsLong PyLong_AsLong
|
||
#define PyInt_AsSsize_t PyLong_AsSsize_t
|
||
|
||
#define PyString_FromString PyUnicode_FromString
|
||
#define PyString_Decode PyUnicode_Decode
|
||
#define PyString_FromFormat PyUnicode_FromFormat
|
||
#define PyString_Check PyUnicode_Check
|
||
#endif
|
||
|
||
#if HAVE_LIBPYTHON2_4
|
||
/* Py_ssize_t is not defined until 2.5.
|
||
Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit
|
||
compilation due to several apparent mistakes in python2.4 API, so we
|
||
use 'int' instead. */
|
||
typedef int Py_ssize_t;
|
||
#endif
|
||
|
||
#ifndef PyVarObject_HEAD_INIT
|
||
/* Python 2.4 does not define PyVarObject_HEAD_INIT. */
|
||
#define PyVarObject_HEAD_INIT(type, size) \
|
||
PyObject_HEAD_INIT(type) size,
|
||
|
||
#endif
|
||
|
||
#ifndef Py_TYPE
|
||
/* Python 2.4 does not define Py_TYPE. */
|
||
#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
|
||
#endif
|
||
|
||
/* If Python.h does not define WITH_THREAD, then the various
|
||
GIL-related functions will not be defined. However,
|
||
PyGILState_STATE will be. */
|
||
#ifndef WITH_THREAD
|
||
#define PyGILState_Ensure() ((PyGILState_STATE) 0)
|
||
#define PyGILState_Release(ARG) ((void)(ARG))
|
||
#define PyEval_InitThreads()
|
||
#define PyThreadState_Swap(ARG) ((void)(ARG))
|
||
#define PyEval_ReleaseLock()
|
||
#endif
|
||
|
||
/* Python supplies HAVE_LONG_LONG and some `long long' support when it
|
||
is available. These defines let us handle the differences more
|
||
cleanly. */
|
||
#ifdef HAVE_LONG_LONG
|
||
|
||
#define GDB_PY_LL_ARG "L"
|
||
#define GDB_PY_LLU_ARG "K"
|
||
typedef PY_LONG_LONG gdb_py_longest;
|
||
typedef unsigned PY_LONG_LONG gdb_py_ulongest;
|
||
#define gdb_py_long_from_longest PyLong_FromLongLong
|
||
#define gdb_py_long_from_ulongest PyLong_FromUnsignedLongLong
|
||
#define gdb_py_long_as_ulongest PyLong_AsUnsignedLongLong
|
||
|
||
#else /* HAVE_LONG_LONG */
|
||
|
||
#define GDB_PY_LL_ARG "L"
|
||
#define GDB_PY_LLU_ARG "K"
|
||
typedef long gdb_py_longest;
|
||
typedef unsigned long gdb_py_ulongest;
|
||
#define gdb_py_long_from_longest PyLong_FromLong
|
||
#define gdb_py_long_from_ulongest PyLong_FromUnsignedLong
|
||
#define gdb_py_long_as_ulongest PyLong_AsUnsignedLong
|
||
|
||
#endif /* HAVE_LONG_LONG */
|
||
|
||
#if PY_VERSION_HEX < 0x03020000
|
||
typedef long Py_hash_t;
|
||
#endif
|
||
|
||
/* PyMem_RawMalloc appeared in Python 3.4. For earlier versions, we can just
|
||
fall back to PyMem_Malloc. */
|
||
|
||
#if PY_VERSION_HEX < 0x03040000
|
||
#define PyMem_RawMalloc PyMem_Malloc
|
||
#endif
|
||
|
||
/* Python 2.6 did not wrap Py_DECREF in 'do {...} while (0)', leading
|
||
to 'suggest explicit braces to avoid ambiguous ‘else’' gcc errors.
|
||
Wrap it ourselves, so that callers don't need to care. */
|
||
|
||
static inline void
|
||
gdb_Py_DECREF (void *op) /* ARI: editCase function */
|
||
{
|
||
/* ... and Python 2.4 didn't cast OP to PyObject pointer on the
|
||
'(op)->ob_refcnt' references within the macro. Cast it ourselves
|
||
too. */
|
||
Py_DECREF ((PyObject *) op);
|
||
}
|
||
|
||
#undef Py_DECREF
|
||
#define Py_DECREF(op) gdb_Py_DECREF (op)
|
||
|
||
/* The second argument to PyObject_GetAttrString was missing the 'const'
|
||
qualifier in Python-2.4. Hence, we wrap it in a function to avoid errors
|
||
when compiled with -Werror. */
|
||
|
||
static inline PyObject *
|
||
gdb_PyObject_GetAttrString (PyObject *obj,
|
||
const char *attr) /* ARI: editCase function */
|
||
{
|
||
return PyObject_GetAttrString (obj, (char *) attr);
|
||
}
|
||
|
||
#define PyObject_GetAttrString(obj, attr) gdb_PyObject_GetAttrString (obj, attr)
|
||
|
||
/* The second argument to PyObject_HasAttrString was also missing the 'const'
|
||
qualifier in Python-2.4. Hence, we wrap it also in a function to avoid
|
||
errors when compiled with -Werror. */
|
||
|
||
static inline int
|
||
gdb_PyObject_HasAttrString (PyObject *obj,
|
||
const char *attr) /* ARI: editCase function */
|
||
{
|
||
return PyObject_HasAttrString (obj, (char *) attr);
|
||
}
|
||
|
||
#define PyObject_HasAttrString(obj, attr) gdb_PyObject_HasAttrString (obj, attr)
|
||
|
||
/* PyObject_CallMethod's 'method' and 'format' parameters were missing
|
||
the 'const' qualifier before Python 3.4. Hence, we wrap the
|
||
function in our own version to avoid errors with string literals.
|
||
Note, this is a variadic template because PyObject_CallMethod is a
|
||
varargs function and Python doesn't have a "PyObject_VaCallMethod"
|
||
variant taking a va_list that we could defer to instead. */
|
||
|
||
template<typename... Args>
|
||
static inline PyObject *
|
||
gdb_PyObject_CallMethod (PyObject *o, const char *method, const char *format,
|
||
Args... args) /* ARI: editCase function */
|
||
{
|
||
return PyObject_CallMethod (o,
|
||
const_cast<char *> (method),
|
||
const_cast<char *> (format),
|
||
args...);
|
||
}
|
||
|
||
#undef PyObject_CallMethod
|
||
#define PyObject_CallMethod gdb_PyObject_CallMethod
|
||
|
||
/* The 'name' parameter of PyErr_NewException was missing the 'const'
|
||
qualifier in Python <= 3.4. Hence, we wrap it in a function to
|
||
avoid errors when compiled with -Werror. */
|
||
|
||
static inline PyObject*
|
||
gdb_PyErr_NewException (const char *name, PyObject *base, PyObject *dict)
|
||
{
|
||
return PyErr_NewException (const_cast<char *> (name), base, dict);
|
||
}
|
||
|
||
#define PyErr_NewException gdb_PyErr_NewException
|
||
|
||
/* PySys_GetObject's 'name' parameter was missing the 'const'
|
||
qualifier before Python 3.4. Hence, we wrap it in a function to
|
||
avoid errors when compiled with -Werror. */
|
||
|
||
static inline PyObject *
|
||
gdb_PySys_GetObject (const char *name)
|
||
{
|
||
return PySys_GetObject (const_cast<char *> (name));
|
||
}
|
||
|
||
#define PySys_GetObject gdb_PySys_GetObject
|
||
|
||
/* PySys_SetPath's 'path' parameter was missing the 'const' qualifier
|
||
before Python 3.6. Hence, we wrap it in a function to avoid errors
|
||
when compiled with -Werror. */
|
||
|
||
#ifdef IS_PY3K
|
||
# define GDB_PYSYS_SETPATH_CHAR wchar_t
|
||
#else
|
||
# define GDB_PYSYS_SETPATH_CHAR char
|
||
#endif
|
||
|
||
static inline void
|
||
gdb_PySys_SetPath (const GDB_PYSYS_SETPATH_CHAR *path)
|
||
{
|
||
PySys_SetPath (const_cast<GDB_PYSYS_SETPATH_CHAR *> (path));
|
||
}
|
||
|
||
#define PySys_SetPath gdb_PySys_SetPath
|
||
|
||
/* Wrap PyGetSetDef to allow convenient construction with string
|
||
literals. Unfortunately, PyGetSetDef's 'name' and 'doc' members
|
||
are 'char *' instead of 'const char *', meaning that in order to
|
||
list-initialize PyGetSetDef arrays with string literals (and
|
||
without the wrapping below) would require writing explicit 'char *'
|
||
casts. Instead, we extend PyGetSetDef and add constexpr
|
||
constructors that accept const 'name' and 'doc', hiding the ugly
|
||
casts here in a single place. */
|
||
|
||
struct gdb_PyGetSetDef : PyGetSetDef
|
||
{
|
||
constexpr gdb_PyGetSetDef (const char *name_, getter get_, setter set_,
|
||
const char *doc_, void *closure_)
|
||
: PyGetSetDef {const_cast<char *> (name_), get_, set_,
|
||
const_cast<char *> (doc_), closure_}
|
||
{}
|
||
|
||
/* Alternative constructor that allows omitting the closure in list
|
||
initialization. */
|
||
constexpr gdb_PyGetSetDef (const char *name_, getter get_, setter set_,
|
||
const char *doc_)
|
||
: gdb_PyGetSetDef {name_, get_, set_, doc_, NULL}
|
||
{}
|
||
|
||
/* Constructor for the sentinel entries. */
|
||
constexpr gdb_PyGetSetDef (std::nullptr_t)
|
||
: gdb_PyGetSetDef {NULL, NULL, NULL, NULL, NULL}
|
||
{}
|
||
};
|
||
|
||
/* The 'keywords' parameter of PyArg_ParseTupleAndKeywords has type
|
||
'char **'. However, string literals are const in C++, and so to
|
||
avoid casting at every keyword array definition, we'll need to make
|
||
the keywords array an array of 'const char *'. To avoid having all
|
||
callers add a 'const_cast<char **>' themselves when passing such an
|
||
array through 'char **', we define our own version of
|
||
PyArg_ParseTupleAndKeywords here with a corresponding 'keywords'
|
||
parameter type that does the cast in a single place. (This is not
|
||
an overload of PyArg_ParseTupleAndKeywords in order to make it
|
||
clearer that we're calling our own function instead of a function
|
||
that exists in some newer Python version.) */
|
||
|
||
static inline int
|
||
gdb_PyArg_ParseTupleAndKeywords (PyObject *args, PyObject *kw,
|
||
const char *format, const char **keywords, ...)
|
||
{
|
||
va_list ap;
|
||
int res;
|
||
|
||
va_start (ap, keywords);
|
||
res = PyArg_VaParseTupleAndKeywords (args, kw, format,
|
||
const_cast<char **> (keywords),
|
||
ap);
|
||
va_end (ap);
|
||
|
||
return res;
|
||
}
|
||
|
||
/* In order to be able to parse symtab_and_line_to_sal_object function
|
||
a real symtab_and_line structure is needed. */
|
||
#include "symtab.h"
|
||
|
||
/* Also needed to parse enum var_types. */
|
||
#include "command.h"
|
||
#include "breakpoint.h"
|
||
|
||
enum gdbpy_iter_kind { iter_keys, iter_values, iter_items };
|
||
|
||
struct block;
|
||
struct value;
|
||
struct language_defn;
|
||
struct program_space;
|
||
struct bpstats;
|
||
struct inferior;
|
||
|
||
extern int gdb_python_initialized;
|
||
|
||
extern PyObject *gdb_module;
|
||
extern PyObject *gdb_python_module;
|
||
extern PyTypeObject value_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("value_object");
|
||
extern PyTypeObject block_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF("block_object");
|
||
extern PyTypeObject symbol_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("symbol_object");
|
||
extern PyTypeObject event_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
|
||
extern PyTypeObject breakpoint_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("breakpoint_object");
|
||
extern PyTypeObject frame_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("frame_object");
|
||
extern PyTypeObject thread_object_type
|
||
CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("thread_object");
|
||
|
||
typedef struct gdbpy_breakpoint_object
|
||
{
|
||
PyObject_HEAD
|
||
|
||
/* The breakpoint number according to gdb. */
|
||
int number;
|
||
|
||
/* The gdb breakpoint object, or NULL if the breakpoint has been
|
||
deleted. */
|
||
struct breakpoint *bp;
|
||
|
||
/* 1 is this is a FinishBreakpoint object, 0 otherwise. */
|
||
int is_finish_bp;
|
||
} gdbpy_breakpoint_object;
|
||
|
||
/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
|
||
exception if it is invalid. */
|
||
#define BPPY_REQUIRE_VALID(Breakpoint) \
|
||
do { \
|
||
if ((Breakpoint)->bp == NULL) \
|
||
return PyErr_Format (PyExc_RuntimeError, \
|
||
_("Breakpoint %d is invalid."), \
|
||
(Breakpoint)->number); \
|
||
} while (0)
|
||
|
||
/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
|
||
exception if it is invalid. This macro is for use in setter functions. */
|
||
#define BPPY_SET_REQUIRE_VALID(Breakpoint) \
|
||
do { \
|
||
if ((Breakpoint)->bp == NULL) \
|
||
{ \
|
||
PyErr_Format (PyExc_RuntimeError, _("Breakpoint %d is invalid."), \
|
||
(Breakpoint)->number); \
|
||
return -1; \
|
||
} \
|
||
} while (0)
|
||
|
||
|
||
/* Variables used to pass information between the Breakpoint
|
||
constructor and the breakpoint-created hook function. */
|
||
extern gdbpy_breakpoint_object *bppy_pending_object;
|
||
|
||
|
||
typedef struct
|
||
{
|
||
PyObject_HEAD
|
||
|
||
/* The thread we represent. */
|
||
struct thread_info *thread;
|
||
|
||
/* The Inferior object to which this thread belongs. */
|
||
PyObject *inf_obj;
|
||
} thread_object;
|
||
|
||
struct inferior_object;
|
||
|
||
extern struct cmd_list_element *set_python_list;
|
||
extern struct cmd_list_element *show_python_list;
|
||
|
||
/* extension_language_script_ops "methods". */
|
||
|
||
extern int gdbpy_auto_load_enabled (const struct extension_language_defn *);
|
||
|
||
/* extension_language_ops "methods". */
|
||
|
||
extern enum ext_lang_rc gdbpy_apply_val_pretty_printer
|
||
(const struct extension_language_defn *,
|
||
struct type *type,
|
||
LONGEST embedded_offset, CORE_ADDR address,
|
||
struct ui_file *stream, int recurse,
|
||
struct value *val,
|
||
const struct value_print_options *options,
|
||
const struct language_defn *language);
|
||
extern enum ext_lang_bt_status gdbpy_apply_frame_filter
|
||
(const struct extension_language_defn *,
|
||
struct frame_info *frame, frame_filter_flags flags,
|
||
enum ext_lang_frame_args args_type,
|
||
struct ui_out *out, int frame_low, int frame_high);
|
||
extern void gdbpy_preserve_values (const struct extension_language_defn *,
|
||
struct objfile *objfile,
|
||
htab_t copied_types);
|
||
extern enum ext_lang_bp_stop gdbpy_breakpoint_cond_says_stop
|
||
(const struct extension_language_defn *, struct breakpoint *);
|
||
extern int gdbpy_breakpoint_has_cond (const struct extension_language_defn *,
|
||
struct breakpoint *b);
|
||
|
||
extern enum ext_lang_rc gdbpy_get_matching_xmethod_workers
|
||
(const struct extension_language_defn *extlang,
|
||
struct type *obj_type, const char *method_name,
|
||
std::vector<xmethod_worker_up> *dm_vec);
|
||
|
||
|
||
PyObject *gdbpy_history (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_convenience_variable (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_set_convenience_variable (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_breakpoints (PyObject *, PyObject *);
|
||
PyObject *gdbpy_frame_stop_reason_string (PyObject *, PyObject *);
|
||
PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw);
|
||
PyObject *gdbpy_lookup_global_symbol (PyObject *self, PyObject *args,
|
||
PyObject *kw);
|
||
PyObject *gdbpy_start_recording (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_current_recording (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_stop_recording (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_newest_frame (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_block_for_pc (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw);
|
||
int gdbpy_is_field (PyObject *obj);
|
||
PyObject *gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
|
||
const char *encoding,
|
||
struct type *type);
|
||
PyObject *gdbpy_inferiors (PyObject *unused, PyObject *unused2);
|
||
PyObject *gdbpy_create_ptid_object (ptid_t ptid);
|
||
PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_selected_inferior (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_string_to_argv (PyObject *self, PyObject *args);
|
||
PyObject *gdbpy_parameter_value (enum var_types type, void *var);
|
||
char *gdbpy_parse_command_name (const char *name,
|
||
struct cmd_list_element ***base_list,
|
||
struct cmd_list_element **start_list);
|
||
|
||
PyObject *symtab_and_line_to_sal_object (struct symtab_and_line sal);
|
||
PyObject *symtab_to_symtab_object (struct symtab *symtab);
|
||
PyObject *symbol_to_symbol_object (struct symbol *sym);
|
||
PyObject *block_to_block_object (const struct block *block,
|
||
struct objfile *objfile);
|
||
PyObject *value_to_value_object (struct value *v);
|
||
PyObject *type_to_type_object (struct type *);
|
||
PyObject *frame_info_to_frame_object (struct frame_info *frame);
|
||
PyObject *symtab_to_linetable_object (PyObject *symtab);
|
||
PyObject *pspace_to_pspace_object (struct program_space *)
|
||
CPYCHECKER_RETURNS_BORROWED_REF;
|
||
PyObject *pspy_get_printers (PyObject *, void *);
|
||
PyObject *pspy_get_frame_filters (PyObject *, void *);
|
||
PyObject *pspy_get_frame_unwinders (PyObject *, void *);
|
||
PyObject *pspy_get_xmethods (PyObject *, void *);
|
||
|
||
PyObject *objfile_to_objfile_object (struct objfile *)
|
||
CPYCHECKER_RETURNS_BORROWED_REF;
|
||
PyObject *objfpy_get_printers (PyObject *, void *);
|
||
PyObject *objfpy_get_frame_filters (PyObject *, void *);
|
||
PyObject *objfpy_get_frame_unwinders (PyObject *, void *);
|
||
PyObject *objfpy_get_xmethods (PyObject *, void *);
|
||
PyObject *gdbpy_lookup_objfile (PyObject *self, PyObject *args, PyObject *kw);
|
||
|
||
PyObject *gdbarch_to_arch_object (struct gdbarch *gdbarch);
|
||
|
||
thread_object *create_thread_object (struct thread_info *tp);
|
||
thread_object *thread_to_thread_object (thread_info *thr)
|
||
CPYCHECKER_RETURNS_BORROWED_REF;
|
||
inferior_object *inferior_to_inferior_object (inferior *inf);
|
||
|
||
const struct block *block_object_to_block (PyObject *obj);
|
||
struct symbol *symbol_object_to_symbol (PyObject *obj);
|
||
struct value *value_object_to_value (PyObject *self);
|
||
struct value *convert_value_from_python (PyObject *obj);
|
||
struct type *type_object_to_type (PyObject *obj);
|
||
struct symtab *symtab_object_to_symtab (PyObject *obj);
|
||
struct symtab_and_line *sal_object_to_symtab_and_line (PyObject *obj);
|
||
struct frame_info *frame_object_to_frame_info (PyObject *frame_obj);
|
||
struct gdbarch *arch_object_to_gdbarch (PyObject *obj);
|
||
|
||
void gdbpy_initialize_gdb_readline (void);
|
||
int gdbpy_initialize_auto_load (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_values (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_frames (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_instruction (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_btrace (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_record (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_symtabs (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_commands (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_symbols (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_symtabs (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_blocks (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_types (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_functions (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_pspace (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_objfile (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_breakpoints (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_finishbreakpoints (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_lazy_string (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_linetable (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_parameters (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_thread (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_inferior (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_eventregistry (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_event (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_py_events (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_arch (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_xmethods (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
int gdbpy_initialize_unwind (void)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
|
||
/* Called before entering the Python interpreter to install the
|
||
current language and architecture to be used for Python values.
|
||
Also set the active extension language for GDB so that SIGINT's
|
||
are directed our way, and if necessary install the right SIGINT
|
||
handler. */
|
||
class gdbpy_enter
|
||
{
|
||
public:
|
||
|
||
gdbpy_enter (struct gdbarch *gdbarch, const struct language_defn *language);
|
||
|
||
~gdbpy_enter ();
|
||
|
||
DISABLE_COPY_AND_ASSIGN (gdbpy_enter);
|
||
|
||
private:
|
||
|
||
struct active_ext_lang_state *m_previous_active;
|
||
PyGILState_STATE m_state;
|
||
struct gdbarch *m_gdbarch;
|
||
const struct language_defn *m_language;
|
||
PyObject *m_error_type, *m_error_value, *m_error_traceback;
|
||
};
|
||
|
||
/* Like gdbpy_enter, but takes a varobj. This is a subclass just to
|
||
make constructor delegation a little nicer. */
|
||
class gdbpy_enter_varobj : public gdbpy_enter
|
||
{
|
||
public:
|
||
|
||
/* This is defined in varobj.c, where it can access varobj
|
||
internals. */
|
||
gdbpy_enter_varobj (const struct varobj *var);
|
||
|
||
};
|
||
|
||
extern struct gdbarch *python_gdbarch;
|
||
extern const struct language_defn *python_language;
|
||
|
||
/* Use this after a TRY_EXCEPT to throw the appropriate Python
|
||
exception. */
|
||
#define GDB_PY_HANDLE_EXCEPTION(Exception) \
|
||
do { \
|
||
if (Exception.reason < 0) \
|
||
{ \
|
||
gdbpy_convert_exception (Exception); \
|
||
return NULL; \
|
||
} \
|
||
} while (0)
|
||
|
||
/* Use this after a TRY_EXCEPT to throw the appropriate Python
|
||
exception. This macro is for use inside setter functions. */
|
||
#define GDB_PY_SET_HANDLE_EXCEPTION(Exception) \
|
||
do { \
|
||
if (Exception.reason < 0) \
|
||
{ \
|
||
gdbpy_convert_exception (Exception); \
|
||
return -1; \
|
||
} \
|
||
} while (0)
|
||
|
||
int gdbpy_print_python_errors_p (void);
|
||
void gdbpy_print_stack (void);
|
||
|
||
PyObject *python_string_to_unicode (PyObject *obj);
|
||
gdb::unique_xmalloc_ptr<char> unicode_to_target_string (PyObject *unicode_str);
|
||
gdb::unique_xmalloc_ptr<char> python_string_to_target_string (PyObject *obj);
|
||
PyObject *python_string_to_target_python_string (PyObject *obj);
|
||
gdb::unique_xmalloc_ptr<char> python_string_to_host_string (PyObject *obj);
|
||
PyObject *host_string_to_python_string (const char *str);
|
||
int gdbpy_is_string (PyObject *obj);
|
||
gdb::unique_xmalloc_ptr<char> gdbpy_obj_to_string (PyObject *obj);
|
||
gdb::unique_xmalloc_ptr<char> gdbpy_exception_to_string (PyObject *ptype,
|
||
PyObject *pvalue);
|
||
|
||
int gdbpy_is_lazy_string (PyObject *result);
|
||
void gdbpy_extract_lazy_string (PyObject *string, CORE_ADDR *addr,
|
||
struct type **str_type,
|
||
long *length,
|
||
gdb::unique_xmalloc_ptr<char> *encoding);
|
||
|
||
int gdbpy_is_value_object (PyObject *obj);
|
||
|
||
/* Note that these are declared here, and not in python.h with the
|
||
other pretty-printer functions, because they refer to PyObject. */
|
||
PyObject *apply_varobj_pretty_printer (PyObject *print_obj,
|
||
struct value **replacement,
|
||
struct ui_file *stream);
|
||
PyObject *gdbpy_get_varobj_pretty_printer (struct value *value);
|
||
gdb::unique_xmalloc_ptr<char> gdbpy_get_display_hint (PyObject *printer);
|
||
PyObject *gdbpy_default_visualizer (PyObject *self, PyObject *args);
|
||
|
||
void bpfinishpy_pre_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
|
||
void bpfinishpy_post_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
|
||
|
||
extern PyObject *gdbpy_doc_cst;
|
||
extern PyObject *gdbpy_children_cst;
|
||
extern PyObject *gdbpy_to_string_cst;
|
||
extern PyObject *gdbpy_display_hint_cst;
|
||
extern PyObject *gdbpy_enabled_cst;
|
||
extern PyObject *gdbpy_value_cst;
|
||
|
||
/* Exception types. */
|
||
extern PyObject *gdbpy_gdb_error;
|
||
extern PyObject *gdbpy_gdb_memory_error;
|
||
extern PyObject *gdbpy_gdberror_exc;
|
||
|
||
extern void gdbpy_convert_exception (struct gdb_exception)
|
||
CPYCHECKER_SETS_EXCEPTION;
|
||
|
||
int get_addr_from_python (PyObject *obj, CORE_ADDR *addr)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
|
||
PyObject *gdb_py_object_from_longest (LONGEST l);
|
||
PyObject *gdb_py_object_from_ulongest (ULONGEST l);
|
||
int gdb_py_int_as_long (PyObject *, long *);
|
||
|
||
PyObject *gdb_py_generic_dict (PyObject *self, void *closure);
|
||
|
||
int gdb_pymodule_addobject (PyObject *module, const char *name,
|
||
PyObject *object)
|
||
CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
|
||
|
||
struct varobj_iter;
|
||
struct varobj;
|
||
struct varobj_iter *py_varobj_get_iterator (struct varobj *var,
|
||
PyObject *printer);
|
||
|
||
#endif /* GDB_PYTHON_INTERNAL_H */
|