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