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