Introduce gdbpy_enter_varobj and use it
[deliverable/binutils-gdb.git] / gdb / python / python-internal.h
CommitLineData
d57a3c85
TJB
1/* Gdb/Python header for private use by Python module.
2
61baf725 3 Copyright (C) 2008-2017 Free Software Foundation, Inc.
d57a3c85
TJB
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifndef GDB_PYTHON_INTERNAL_H
21#define GDB_PYTHON_INTERNAL_H
22
6dddc817 23#include "extension.h"
e992c591 24#include "extension-priv.h"
6dddc817 25
62eec1a5
TT
26/* These WITH_* macros are defined by the CPython API checker that
27 comes with the Python plugin for GCC. See:
28 https://gcc-python-plugin.readthedocs.org/en/latest/cpychecker.html
29 The checker defines a WITH_ macro for each attribute it
30 exposes. */
31
634c58be
TT
32#ifdef WITH_CPYCHECKER_RETURNS_BORROWED_REF_ATTRIBUTE
33#define CPYCHECKER_RETURNS_BORROWED_REF \
34 __attribute__ ((cpychecker_returns_borrowed_ref))
35#else
36#define CPYCHECKER_RETURNS_BORROWED_REF
37#endif
38
62eec1a5
TT
39#ifdef WITH_CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF_ATTRIBUTE
40#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG) \
41 __attribute__ ((cpychecker_type_object_for_typedef (ARG)))
42#else
43#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG)
44#endif
45
9b08f225
TT
46#ifdef WITH_CPYCHECKER_STEALS_REFERENCE_TO_ARG_ATTRIBUTE
47#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n) \
48 __attribute__ ((cpychecker_steals_reference_to_arg (n)))
49#else
50#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n)
51#endif
52
56cc411c
TT
53#ifdef WITH_CPYCHECKER_SETS_EXCEPTION_ATTRIBUTE
54#define CPYCHECKER_SETS_EXCEPTION __attribute__ ((cpychecker_sets_exception))
55#else
56#define CPYCHECKER_SETS_EXCEPTION
57#endif
58
5d153bd1
TT
59#ifdef WITH_CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION_ATTRIBUTE
60#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION \
61 __attribute__ ((cpychecker_negative_result_sets_exception))
62#else
63#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
64#endif
65
d57a3c85
TJB
66/* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t
67 needed by pyport.h. */
d57a3c85
TJB
68/* /usr/include/features.h on linux systems will define _POSIX_C_SOURCE
69 if it sees _GNU_SOURCE (which config.h will define).
70 pyconfig.h defines _POSIX_C_SOURCE to a different value than
71 /usr/include/features.h does causing compilation to fail.
aac63f0f
JB
72 To work around this, undef _POSIX_C_SOURCE before we include Python.h.
73
74 Same problem with _XOPEN_SOURCE. */
d57a3c85 75#undef _POSIX_C_SOURCE
aac63f0f 76#undef _XOPEN_SOURCE
d57a3c85 77
aed1781d
JB
78/* On sparc-solaris, /usr/include/sys/feature_tests.h defines
79 _FILE_OFFSET_BITS, which pyconfig.h also defines. Same work
284a3db3 80 around technique as above. */
aed1781d
JB
81#undef _FILE_OFFSET_BITS
82
1cdd3232
EZ
83/* A kludge to avoid redefinition of snprintf on Windows by pyerrors.h. */
84#if defined(_WIN32) && defined(HAVE_DECL_SNPRINTF)
85#define HAVE_SNPRINTF 1
86#endif
87
1c033f8c
TT
88/* Request clean size types from Python. */
89#define PY_SSIZE_T_CLEAN
90
ac534cba
JB
91/* Include the Python header files using angle brackets rather than
92 double quotes. On case-insensitive filesystems, this prevents us
93 from including our python/python.h header file. */
94#include <Python.h>
95#include <frameobject.h>
9a27f2c6
PK
96
97#if PY_MAJOR_VERSION >= 3
98#define IS_PY3K 1
99#endif
100
101#ifdef IS_PY3K
102#define Py_TPFLAGS_HAVE_ITER 0
103#define Py_TPFLAGS_CHECKTYPES 0
104
105#define PyInt_Check PyLong_Check
106#define PyInt_FromLong PyLong_FromLong
107#define PyInt_AsLong PyLong_AsLong
108
109#define PyString_FromString PyUnicode_FromString
110#define PyString_Decode PyUnicode_Decode
111#define PyString_FromFormat PyUnicode_FromFormat
112#define PyString_Check PyUnicode_Check
113#endif
114
d57a3c85 115#if HAVE_LIBPYTHON2_4
5171e6b3
TT
116/* Py_ssize_t is not defined until 2.5.
117 Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit
118 compilation due to several apparent mistakes in python2.4 API, so we
119 use 'int' instead. */
120typedef int Py_ssize_t;
d57a3c85
TJB
121#endif
122
9a27f2c6
PK
123#ifndef PyVarObject_HEAD_INIT
124/* Python 2.4 does not define PyVarObject_HEAD_INIT. */
125#define PyVarObject_HEAD_INIT(type, size) \
126 PyObject_HEAD_INIT(type) size,
127
128#endif
129
130#ifndef Py_TYPE
131/* Python 2.4 does not define Py_TYPE. */
132#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
133#endif
134
ca30a762
TT
135/* If Python.h does not define WITH_THREAD, then the various
136 GIL-related functions will not be defined. However,
137 PyGILState_STATE will be. */
138#ifndef WITH_THREAD
139#define PyGILState_Ensure() ((PyGILState_STATE) 0)
548a926a 140#define PyGILState_Release(ARG) ((void)(ARG))
aed1781d 141#define PyEval_InitThreads()
548a926a 142#define PyThreadState_Swap(ARG) ((void)(ARG))
aed1781d 143#define PyEval_ReleaseLock()
ca30a762
TT
144#endif
145
74aedc46
TT
146/* Python supplies HAVE_LONG_LONG and some `long long' support when it
147 is available. These defines let us handle the differences more
148 cleanly. */
149#ifdef HAVE_LONG_LONG
150
151#define GDB_PY_LL_ARG "L"
152#define GDB_PY_LLU_ARG "K"
153typedef PY_LONG_LONG gdb_py_longest;
154typedef unsigned PY_LONG_LONG gdb_py_ulongest;
155#define gdb_py_long_from_longest PyLong_FromLongLong
156#define gdb_py_long_from_ulongest PyLong_FromUnsignedLongLong
157#define gdb_py_long_as_ulongest PyLong_AsUnsignedLongLong
158
159#else /* HAVE_LONG_LONG */
160
161#define GDB_PY_LL_ARG "L"
162#define GDB_PY_LLU_ARG "K"
163typedef long gdb_py_longest;
164typedef unsigned long gdb_py_ulongest;
165#define gdb_py_long_from_longest PyLong_FromLong
166#define gdb_py_long_from_ulongest PyLong_FromUnsignedLong
167#define gdb_py_long_as_ulongest PyLong_AsUnsignedLong
168
169#endif /* HAVE_LONG_LONG */
170
881d5d5d
JK
171#if PY_VERSION_HEX < 0x03020000
172typedef long Py_hash_t;
173#endif
174
1915daeb
PA
175/* Python 2.6 did not wrap Py_DECREF in 'do {...} while (0)', leading
176 to 'suggest explicit braces to avoid ambiguous ‘else’' gcc errors.
177 Wrap it ourselves, so that callers don't need to care. */
178
179static inline void
ac90359c 180gdb_Py_DECREF (void *op) /* ARI: editCase function */
1915daeb 181{
a6e6f791
PA
182 /* ... and Python 2.4 didn't cast OP to PyObject pointer on the
183 '(op)->ob_refcnt' references within the macro. Cast it ourselves
184 too. */
185 Py_DECREF ((PyObject *) op);
1915daeb
PA
186}
187
188#undef Py_DECREF
189#define Py_DECREF(op) gdb_Py_DECREF (op)
74aedc46 190
5a6c7709
SC
191/* The second argument to PyObject_GetAttrString was missing the 'const'
192 qualifier in Python-2.4. Hence, we wrap it in a function to avoid errors
193 when compiled with -Werror. */
194
195static inline PyObject *
196gdb_PyObject_GetAttrString (PyObject *obj,
197 const char *attr) /* ARI: editCase function */
198{
199 return PyObject_GetAttrString (obj, (char *) attr);
200}
201
202#define PyObject_GetAttrString(obj, attr) gdb_PyObject_GetAttrString (obj, attr)
203
204/* The second argument to PyObject_HasAttrString was also missing the 'const'
205 qualifier in Python-2.4. Hence, we wrap it also in a function to avoid
206 errors when compiled with -Werror. */
207
208static inline int
209gdb_PyObject_HasAttrString (PyObject *obj,
210 const char *attr) /* ARI: editCase function */
211{
212 return PyObject_HasAttrString (obj, (char *) attr);
213}
214
215#define PyObject_HasAttrString(obj, attr) gdb_PyObject_HasAttrString (obj, attr)
216
256458bc 217/* In order to be able to parse symtab_and_line_to_sal_object function
9cb74f47
PM
218 a real symtab_and_line structure is needed. */
219#include "symtab.h"
220
d7b32ed3
PM
221/* Also needed to parse enum var_types. */
222#include "command.h"
505500db 223#include "breakpoint.h"
d7b32ed3 224
a73bb892
PK
225enum gdbpy_iter_kind { iter_keys, iter_values, iter_items };
226
f3e9a817 227struct block;
a08702d6 228struct value;
d452c4bc 229struct language_defn;
fa33c3cd 230struct program_space;
505500db 231struct bpstats;
619cebe8 232struct inferior;
d57a3c85 233
0646da15
TT
234extern int gdb_python_initialized;
235
d57a3c85 236extern PyObject *gdb_module;
b9516fa1 237extern PyObject *gdb_python_module;
62eec1a5
TT
238extern PyTypeObject value_object_type
239 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("value_object");
240extern PyTypeObject block_object_type
241 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF("block_object");
242extern PyTypeObject symbol_object_type
243 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("symbol_object");
244extern PyTypeObject event_object_type
245 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
62eec1a5
TT
246extern PyTypeObject stop_event_object_type
247 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
248extern PyTypeObject breakpoint_object_type
249 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("breakpoint_object");
250extern PyTypeObject frame_object_type
251 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("frame_object");
cc72b2a2 252
4cb0213d 253typedef struct gdbpy_breakpoint_object
cc72b2a2
KP
254{
255 PyObject_HEAD
256
257 /* The breakpoint number according to gdb. */
258 int number;
259
260 /* The gdb breakpoint object, or NULL if the breakpoint has been
261 deleted. */
262 struct breakpoint *bp;
263
264 /* 1 is this is a FinishBreakpoint object, 0 otherwise. */
265 int is_finish_bp;
4cb0213d 266} gdbpy_breakpoint_object;
cc72b2a2
KP
267
268/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
269 exception if it is invalid. */
270#define BPPY_REQUIRE_VALID(Breakpoint) \
271 do { \
272 if ((Breakpoint)->bp == NULL) \
273 return PyErr_Format (PyExc_RuntimeError, \
274 _("Breakpoint %d is invalid."), \
275 (Breakpoint)->number); \
276 } while (0)
277
278/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
279 exception if it is invalid. This macro is for use in setter functions. */
280#define BPPY_SET_REQUIRE_VALID(Breakpoint) \
281 do { \
282 if ((Breakpoint)->bp == NULL) \
283 { \
284 PyErr_Format (PyExc_RuntimeError, _("Breakpoint %d is invalid."), \
285 (Breakpoint)->number); \
286 return -1; \
287 } \
288 } while (0)
289
290
291/* Variables used to pass information between the Breakpoint
292 constructor and the breakpoint-created hook function. */
4cb0213d 293extern gdbpy_breakpoint_object *bppy_pending_object;
505500db 294
a08702d6 295
595939de
PM
296typedef struct
297{
298 PyObject_HEAD
299
300 /* The thread we represent. */
301 struct thread_info *thread;
302
303 /* The Inferior object to which this thread belongs. */
304 PyObject *inf_obj;
305} thread_object;
306
8a1ea21f
DE
307extern struct cmd_list_element *set_python_list;
308extern struct cmd_list_element *show_python_list;
6dddc817
DE
309\f
310/* extension_language_script_ops "methods". */
311
312extern int gdbpy_auto_load_enabled (const struct extension_language_defn *);
313
314/* extension_language_ops "methods". */
315
316extern enum ext_lang_rc gdbpy_apply_val_pretty_printer
317 (const struct extension_language_defn *,
668e1674 318 struct type *type,
6b850546 319 LONGEST embedded_offset, CORE_ADDR address,
6dddc817 320 struct ui_file *stream, int recurse,
668e1674 321 struct value *val,
6dddc817
DE
322 const struct value_print_options *options,
323 const struct language_defn *language);
324extern enum ext_lang_bt_status gdbpy_apply_frame_filter
325 (const struct extension_language_defn *,
326 struct frame_info *frame, int flags, enum ext_lang_frame_args args_type,
327 struct ui_out *out, int frame_low, int frame_high);
328extern void gdbpy_preserve_values (const struct extension_language_defn *,
329 struct objfile *objfile,
330 htab_t copied_types);
331extern enum ext_lang_bp_stop gdbpy_breakpoint_cond_says_stop
332 (const struct extension_language_defn *, struct breakpoint *);
333extern int gdbpy_breakpoint_has_cond (const struct extension_language_defn *,
334 struct breakpoint *b);
883964a7
SC
335
336extern void *gdbpy_clone_xmethod_worker_data
337 (const struct extension_language_defn *extlang, void *data);
338extern void gdbpy_free_xmethod_worker_data
339 (const struct extension_language_defn *extlang, void *data);
340extern enum ext_lang_rc gdbpy_get_matching_xmethod_workers
341 (const struct extension_language_defn *extlang,
342 struct type *obj_type, const char *method_name,
343 xmethod_worker_vec **dm_vec);
344extern enum ext_lang_rc gdbpy_get_xmethod_arg_types
345 (const struct extension_language_defn *extlang,
346 struct xmethod_worker *worker,
347 int *nargs,
348 struct type ***arg_types);
2ce1cdbf
DE
349extern enum ext_lang_rc gdbpy_get_xmethod_result_type
350 (const struct extension_language_defn *extlang,
351 struct xmethod_worker *worker,
352 struct value *object, struct value **args, int nargs,
353 struct type **result_type);
883964a7
SC
354extern struct value *gdbpy_invoke_xmethod
355 (const struct extension_language_defn *extlang,
356 struct xmethod_worker *worker,
357 struct value *obj, struct value **args, int nargs);
6dddc817 358\f
08c637de 359PyObject *gdbpy_history (PyObject *self, PyObject *args);
adc36818 360PyObject *gdbpy_breakpoints (PyObject *, PyObject *);
f8f6f20b 361PyObject *gdbpy_frame_stop_reason_string (PyObject *, PyObject *);
f3e9a817 362PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw);
6e6fbe60
DE
363PyObject *gdbpy_lookup_global_symbol (PyObject *self, PyObject *args,
364 PyObject *kw);
d8e22779 365PyObject *gdbpy_newest_frame (PyObject *self, PyObject *args);
f8f6f20b 366PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args);
f3e9a817 367PyObject *gdbpy_block_for_pc (PyObject *self, PyObject *args);
2c74e833 368PyObject *gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw);
a16b0e22 369int gdbpy_is_field (PyObject *obj);
be759fcf 370PyObject *gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
9a2b4c1b
MS
371 const char *encoding,
372 struct type *type);
595939de 373PyObject *gdbpy_inferiors (PyObject *unused, PyObject *unused2);
162078c8 374PyObject *gdbpy_create_ptid_object (ptid_t ptid);
595939de 375PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
2aa48337 376PyObject *gdbpy_selected_inferior (PyObject *self, PyObject *args);
07ca107c 377PyObject *gdbpy_string_to_argv (PyObject *self, PyObject *args);
d7b32ed3 378PyObject *gdbpy_parameter_value (enum var_types type, void *var);
63d97a20 379char *gdbpy_parse_command_name (const char *name,
d7b32ed3
PM
380 struct cmd_list_element ***base_list,
381 struct cmd_list_element **start_list);
a08702d6 382
f3e9a817
PM
383PyObject *symtab_and_line_to_sal_object (struct symtab_and_line sal);
384PyObject *symtab_to_symtab_object (struct symtab *symtab);
385PyObject *symbol_to_symbol_object (struct symbol *sym);
9df2fbc4
PM
386PyObject *block_to_block_object (const struct block *block,
387 struct objfile *objfile);
a08702d6 388PyObject *value_to_value_object (struct value *v);
2c74e833 389PyObject *type_to_type_object (struct type *);
595939de 390PyObject *frame_info_to_frame_object (struct frame_info *frame);
bc79de95 391PyObject *symtab_to_linetable_object (PyObject *symtab);
634c58be
TT
392PyObject *pspace_to_pspace_object (struct program_space *)
393 CPYCHECKER_RETURNS_BORROWED_REF;
fa33c3cd 394PyObject *pspy_get_printers (PyObject *, void *);
1e611234 395PyObject *pspy_get_frame_filters (PyObject *, void *);
d11916aa 396PyObject *pspy_get_frame_unwinders (PyObject *, void *);
883964a7 397PyObject *pspy_get_xmethods (PyObject *, void *);
fa33c3cd 398
634c58be
TT
399PyObject *objfile_to_objfile_object (struct objfile *)
400 CPYCHECKER_RETURNS_BORROWED_REF;
89c73ade 401PyObject *objfpy_get_printers (PyObject *, void *);
1e611234 402PyObject *objfpy_get_frame_filters (PyObject *, void *);
d11916aa 403PyObject *objfpy_get_frame_unwinders (PyObject *, void *);
883964a7 404PyObject *objfpy_get_xmethods (PyObject *, void *);
6dddd6a5 405PyObject *gdbpy_lookup_objfile (PyObject *self, PyObject *args, PyObject *kw);
a08702d6 406
bea883fd
SCR
407PyObject *gdbarch_to_arch_object (struct gdbarch *gdbarch);
408
595939de 409thread_object *create_thread_object (struct thread_info *tp);
634c58be
TT
410thread_object *find_thread_object (ptid_t ptid)
411 CPYCHECKER_RETURNS_BORROWED_REF;
595939de 412PyObject *find_inferior_object (int pid);
505500db 413PyObject *inferior_to_inferior_object (struct inferior *inferior);
595939de 414
9df2fbc4 415const struct block *block_object_to_block (PyObject *obj);
f3e9a817 416struct symbol *symbol_object_to_symbol (PyObject *obj);
a6bac58e 417struct value *value_object_to_value (PyObject *self);
a08702d6 418struct value *convert_value_from_python (PyObject *obj);
2c74e833 419struct type *type_object_to_type (PyObject *obj);
f3e9a817
PM
420struct symtab *symtab_object_to_symtab (PyObject *obj);
421struct symtab_and_line *sal_object_to_symtab_and_line (PyObject *obj);
cc72b2a2 422struct frame_info *frame_object_to_frame_info (PyObject *frame_obj);
bea883fd 423struct gdbarch *arch_object_to_gdbarch (PyObject *obj);
a08702d6 424
037bbc8e 425void gdbpy_initialize_gdb_readline (void);
999633ed
TT
426int gdbpy_initialize_auto_load (void)
427 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
428int gdbpy_initialize_values (void)
429 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
430int gdbpy_initialize_frames (void)
431 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
432int gdbpy_initialize_symtabs (void)
433 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
434int gdbpy_initialize_commands (void)
435 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
436int gdbpy_initialize_symbols (void)
437 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
438int gdbpy_initialize_symtabs (void)
439 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
440int gdbpy_initialize_blocks (void)
441 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
442int gdbpy_initialize_types (void)
443 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
444int gdbpy_initialize_functions (void)
445 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
446int gdbpy_initialize_pspace (void)
447 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
448int gdbpy_initialize_objfile (void)
449 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
450int gdbpy_initialize_breakpoints (void)
451 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
452int gdbpy_initialize_finishbreakpoints (void)
453 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
454int gdbpy_initialize_lazy_string (void)
455 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
bc79de95
PM
456int gdbpy_initialize_linetable (void)
457 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
458int gdbpy_initialize_parameters (void)
459 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
460int gdbpy_initialize_thread (void)
461 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
462int gdbpy_initialize_inferior (void)
463 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
464int gdbpy_initialize_eventregistry (void)
465 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
466int gdbpy_initialize_event (void)
467 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
468int gdbpy_initialize_py_events (void)
469 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
470int gdbpy_initialize_stop_event (void)
471 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
472int gdbpy_initialize_signal_event (void)
473 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
474int gdbpy_initialize_breakpoint_event (void)
475 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
476int gdbpy_initialize_continue_event (void)
477 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
162078c8
NB
478int gdbpy_initialize_inferior_call_pre_event (void)
479 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
480int gdbpy_initialize_inferior_call_post_event (void)
481 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
482int gdbpy_initialize_register_changed_event (void)
483 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
484int gdbpy_initialize_memory_changed_event (void)
485 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
486int gdbpy_initialize_exited_event (void)
487 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
488int gdbpy_initialize_thread_event (void)
489 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
490int gdbpy_initialize_new_objfile_event (void)
491 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
4ffbba72
DE
492int gdbpy_initialize_clear_objfiles_event (void)
493 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
494int gdbpy_initialize_arch (void)
495 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
883964a7
SC
496int gdbpy_initialize_xmethods (void)
497 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
d11916aa
SS
498int gdbpy_initialize_unwind (void)
499 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
d57a3c85
TJB
500
501struct cleanup *make_cleanup_py_decref (PyObject *py);
1e611234 502struct cleanup *make_cleanup_py_xdecref (PyObject *py);
d452c4bc 503
4ecee2c4
TT
504/* Called before entering the Python interpreter to install the
505 current language and architecture to be used for Python values.
506 Also set the active extension language for GDB so that SIGINT's
507 are directed our way, and if necessary install the right SIGINT
508 handler. */
509class gdbpy_enter
510{
511 public:
512
513 gdbpy_enter (struct gdbarch *gdbarch, const struct language_defn *language);
514
515 ~gdbpy_enter ();
516
517 gdbpy_enter (const gdbpy_enter &) = delete;
518 gdbpy_enter &operator= (const gdbpy_enter &) = delete;
519
520 private:
521
522 struct active_ext_lang_state *m_previous_active;
523 PyGILState_STATE m_state;
524 struct gdbarch *m_gdbarch;
525 const struct language_defn *m_language;
526 PyObject *m_error_type, *m_error_value, *m_error_traceback;
527};
528
6cd67bea
TT
529/* Like gdbpy_enter, but takes a varobj. This is a subclass just to
530 make constructor delegation a little nicer. */
531class gdbpy_enter_varobj : public gdbpy_enter
532{
533 public:
534
535 /* This is defined in varobj.c, where it can access varobj
536 internals. */
537 gdbpy_enter_varobj (const struct varobj *var);
538
539};
540
d452c4bc
UW
541struct cleanup *ensure_python_env (struct gdbarch *gdbarch,
542 const struct language_defn *language);
543
544extern struct gdbarch *python_gdbarch;
545extern const struct language_defn *python_language;
d57a3c85
TJB
546
547/* Use this after a TRY_EXCEPT to throw the appropriate Python
548 exception. */
56cc411c
TT
549#define GDB_PY_HANDLE_EXCEPTION(Exception) \
550 do { \
551 if (Exception.reason < 0) \
552 { \
553 gdbpy_convert_exception (Exception); \
554 return NULL; \
555 } \
556 } while (0)
d57a3c85 557
adc36818
PM
558/* Use this after a TRY_EXCEPT to throw the appropriate Python
559 exception. This macro is for use inside setter functions. */
560#define GDB_PY_SET_HANDLE_EXCEPTION(Exception) \
561 do { \
562 if (Exception.reason < 0) \
563 { \
621c8364 564 gdbpy_convert_exception (Exception); \
adc36818
PM
565 return -1; \
566 } \
567 } while (0)
d57a3c85 568
69b4374a 569int gdbpy_print_python_errors_p (void);
d57a3c85
TJB
570void gdbpy_print_stack (void);
571
572PyObject *python_string_to_unicode (PyObject *obj);
9b972014
TT
573gdb::unique_xmalloc_ptr<char> unicode_to_target_string (PyObject *unicode_str);
574gdb::unique_xmalloc_ptr<char> python_string_to_target_string (PyObject *obj);
fbb8f299 575PyObject *python_string_to_target_python_string (PyObject *obj);
9b972014 576gdb::unique_xmalloc_ptr<char> python_string_to_host_string (PyObject *obj);
4ae6cc19 577PyObject *host_string_to_python_string (const char *str);
08c637de 578int gdbpy_is_string (PyObject *obj);
9b972014
TT
579gdb::unique_xmalloc_ptr<char> gdbpy_obj_to_string (PyObject *obj);
580gdb::unique_xmalloc_ptr<char> gdbpy_exception_to_string (PyObject *ptype,
581 PyObject *pvalue);
07ca107c 582
be759fcf 583int gdbpy_is_lazy_string (PyObject *result);
09ca9e2e 584void gdbpy_extract_lazy_string (PyObject *string, CORE_ADDR *addr,
256458bc 585 struct type **str_type,
09ca9e2e 586 long *length, char **encoding);
d57a3c85 587
595939de
PM
588int gdbpy_is_value_object (PyObject *obj);
589
b6313243
TT
590/* Note that these are declared here, and not in python.h with the
591 other pretty-printer functions, because they refer to PyObject. */
fbb8f299 592PyObject *apply_varobj_pretty_printer (PyObject *print_obj,
621c8364
TT
593 struct value **replacement,
594 struct ui_file *stream);
b6313243 595PyObject *gdbpy_get_varobj_pretty_printer (struct value *value);
9b972014 596gdb::unique_xmalloc_ptr<char> gdbpy_get_display_hint (PyObject *printer);
b6313243
TT
597PyObject *gdbpy_default_visualizer (PyObject *self, PyObject *args);
598
4cb0213d
DE
599void bpfinishpy_pre_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
600void bpfinishpy_post_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
cc72b2a2 601
d8906c6f 602extern PyObject *gdbpy_doc_cst;
a6bac58e
TT
603extern PyObject *gdbpy_children_cst;
604extern PyObject *gdbpy_to_string_cst;
605extern PyObject *gdbpy_display_hint_cst;
967cf477 606extern PyObject *gdbpy_enabled_cst;
fb6a3ed3 607extern PyObject *gdbpy_value_cst;
d8906c6f 608
621c8364
TT
609/* Exception types. */
610extern PyObject *gdbpy_gdb_error;
611extern PyObject *gdbpy_gdb_memory_error;
07ca107c
DE
612extern PyObject *gdbpy_gdberror_exc;
613
56cc411c
TT
614extern void gdbpy_convert_exception (struct gdb_exception)
615 CPYCHECKER_SETS_EXCEPTION;
621c8364 616
b86af38a
TT
617int get_addr_from_python (PyObject *obj, CORE_ADDR *addr)
618 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
595939de 619
74aedc46
TT
620PyObject *gdb_py_object_from_longest (LONGEST l);
621PyObject *gdb_py_object_from_ulongest (ULONGEST l);
622int gdb_py_int_as_long (PyObject *, long *);
623
2e8265fd
TT
624PyObject *gdb_py_generic_dict (PyObject *self, void *closure);
625
aa36459a
TT
626int gdb_pymodule_addobject (PyObject *module, const char *name,
627 PyObject *object)
628 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
629
e5250216
YQ
630struct varobj_iter;
631struct varobj;
632struct varobj_iter *py_varobj_get_iterator (struct varobj *var,
633 PyObject *printer);
634
d57a3c85 635#endif /* GDB_PYTHON_INTERNAL_H */
This page took 1.489447 seconds and 4 git commands to generate.