Normalize include guards in gdb
[deliverable/binutils-gdb.git] / gdb / python / python-internal.h
CommitLineData
d57a3c85
TJB
1/* Gdb/Python header for private use by Python module.
2
42a4f53d 3 Copyright (C) 2008-2019 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
1a5c2598
TT
20#ifndef PYTHON_PYTHON_INTERNAL_H
21#define PYTHON_PYTHON_INTERNAL_H
d57a3c85 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
94c8b725
TT
30 exposes. Note that we intentionally do not use
31 'cpychecker_returns_borrowed_ref' -- that idiom is forbidden in
32 gdb. */
634c58be 33
62eec1a5
TT
34#ifdef WITH_CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF_ATTRIBUTE
35#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG) \
36 __attribute__ ((cpychecker_type_object_for_typedef (ARG)))
37#else
38#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG)
39#endif
40
56cc411c
TT
41#ifdef WITH_CPYCHECKER_SETS_EXCEPTION_ATTRIBUTE
42#define CPYCHECKER_SETS_EXCEPTION __attribute__ ((cpychecker_sets_exception))
43#else
44#define CPYCHECKER_SETS_EXCEPTION
45#endif
46
5d153bd1
TT
47#ifdef WITH_CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION_ATTRIBUTE
48#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION \
49 __attribute__ ((cpychecker_negative_result_sets_exception))
50#else
51#define CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION
52#endif
53
d57a3c85
TJB
54/* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t
55 needed by pyport.h. */
d57a3c85
TJB
56/* /usr/include/features.h on linux systems will define _POSIX_C_SOURCE
57 if it sees _GNU_SOURCE (which config.h will define).
58 pyconfig.h defines _POSIX_C_SOURCE to a different value than
59 /usr/include/features.h does causing compilation to fail.
aac63f0f
JB
60 To work around this, undef _POSIX_C_SOURCE before we include Python.h.
61
62 Same problem with _XOPEN_SOURCE. */
d57a3c85 63#undef _POSIX_C_SOURCE
aac63f0f 64#undef _XOPEN_SOURCE
d57a3c85 65
aed1781d
JB
66/* On sparc-solaris, /usr/include/sys/feature_tests.h defines
67 _FILE_OFFSET_BITS, which pyconfig.h also defines. Same work
284a3db3 68 around technique as above. */
aed1781d
JB
69#undef _FILE_OFFSET_BITS
70
1cdd3232
EZ
71/* A kludge to avoid redefinition of snprintf on Windows by pyerrors.h. */
72#if defined(_WIN32) && defined(HAVE_DECL_SNPRINTF)
73#define HAVE_SNPRINTF 1
74#endif
75
b2a426e2
EZ
76/* Another kludge to avoid compilation errors because MinGW defines
77 'hypot' to '_hypot', but the C++ headers says "using ::hypot". */
78#ifdef __MINGW32__
79# define _hypot hypot
80#endif
81
1c033f8c
TT
82/* Request clean size types from Python. */
83#define PY_SSIZE_T_CLEAN
84
ac534cba
JB
85/* Include the Python header files using angle brackets rather than
86 double quotes. On case-insensitive filesystems, this prevents us
87 from including our python/python.h header file. */
88#include <Python.h>
89#include <frameobject.h>
a5c5eda7 90#include "py-ref.h"
9a27f2c6
PK
91
92#if PY_MAJOR_VERSION >= 3
93#define IS_PY3K 1
94#endif
95
96#ifdef IS_PY3K
97#define Py_TPFLAGS_HAVE_ITER 0
98#define Py_TPFLAGS_CHECKTYPES 0
99
100#define PyInt_Check PyLong_Check
101#define PyInt_FromLong PyLong_FromLong
75c0bdf4 102#define PyInt_FromSsize_t PyLong_FromSsize_t
9a27f2c6 103#define PyInt_AsLong PyLong_AsLong
75c0bdf4 104#define PyInt_AsSsize_t PyLong_AsSsize_t
9a27f2c6
PK
105
106#define PyString_FromString PyUnicode_FromString
107#define PyString_Decode PyUnicode_Decode
108#define PyString_FromFormat PyUnicode_FromFormat
109#define PyString_Check PyUnicode_Check
110#endif
111
d57a3c85 112#if HAVE_LIBPYTHON2_4
5171e6b3
TT
113/* Py_ssize_t is not defined until 2.5.
114 Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit
115 compilation due to several apparent mistakes in python2.4 API, so we
116 use 'int' instead. */
117typedef int Py_ssize_t;
d57a3c85
TJB
118#endif
119
9a27f2c6
PK
120#ifndef PyVarObject_HEAD_INIT
121/* Python 2.4 does not define PyVarObject_HEAD_INIT. */
122#define PyVarObject_HEAD_INIT(type, size) \
123 PyObject_HEAD_INIT(type) size,
124
125#endif
126
127#ifndef Py_TYPE
128/* Python 2.4 does not define Py_TYPE. */
129#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
130#endif
131
ca30a762
TT
132/* If Python.h does not define WITH_THREAD, then the various
133 GIL-related functions will not be defined. However,
134 PyGILState_STATE will be. */
135#ifndef WITH_THREAD
136#define PyGILState_Ensure() ((PyGILState_STATE) 0)
548a926a 137#define PyGILState_Release(ARG) ((void)(ARG))
aed1781d 138#define PyEval_InitThreads()
548a926a 139#define PyThreadState_Swap(ARG) ((void)(ARG))
aed1781d 140#define PyEval_ReleaseLock()
ca30a762
TT
141#endif
142
74aedc46
TT
143/* Python supplies HAVE_LONG_LONG and some `long long' support when it
144 is available. These defines let us handle the differences more
145 cleanly. */
146#ifdef HAVE_LONG_LONG
147
148#define GDB_PY_LL_ARG "L"
149#define GDB_PY_LLU_ARG "K"
150typedef PY_LONG_LONG gdb_py_longest;
151typedef unsigned PY_LONG_LONG gdb_py_ulongest;
152#define gdb_py_long_from_longest PyLong_FromLongLong
153#define gdb_py_long_from_ulongest PyLong_FromUnsignedLongLong
154#define gdb_py_long_as_ulongest PyLong_AsUnsignedLongLong
155
156#else /* HAVE_LONG_LONG */
157
158#define GDB_PY_LL_ARG "L"
159#define GDB_PY_LLU_ARG "K"
160typedef long gdb_py_longest;
161typedef unsigned long gdb_py_ulongest;
162#define gdb_py_long_from_longest PyLong_FromLong
163#define gdb_py_long_from_ulongest PyLong_FromUnsignedLong
164#define gdb_py_long_as_ulongest PyLong_AsUnsignedLong
165
166#endif /* HAVE_LONG_LONG */
167
881d5d5d
JK
168#if PY_VERSION_HEX < 0x03020000
169typedef long Py_hash_t;
170#endif
171
6f8b0407
SM
172/* PyMem_RawMalloc appeared in Python 3.4. For earlier versions, we can just
173 fall back to PyMem_Malloc. */
174
175#if PY_VERSION_HEX < 0x03040000
176#define PyMem_RawMalloc PyMem_Malloc
177#endif
178
1915daeb
PA
179/* Python 2.6 did not wrap Py_DECREF in 'do {...} while (0)', leading
180 to 'suggest explicit braces to avoid ambiguous ‘else’' gcc errors.
181 Wrap it ourselves, so that callers don't need to care. */
182
183static inline void
ac90359c 184gdb_Py_DECREF (void *op) /* ARI: editCase function */
1915daeb 185{
a6e6f791
PA
186 /* ... and Python 2.4 didn't cast OP to PyObject pointer on the
187 '(op)->ob_refcnt' references within the macro. Cast it ourselves
188 too. */
189 Py_DECREF ((PyObject *) op);
1915daeb
PA
190}
191
192#undef Py_DECREF
193#define Py_DECREF(op) gdb_Py_DECREF (op)
74aedc46 194
5a6c7709
SC
195/* The second argument to PyObject_GetAttrString was missing the 'const'
196 qualifier in Python-2.4. Hence, we wrap it in a function to avoid errors
197 when compiled with -Werror. */
198
199static inline PyObject *
200gdb_PyObject_GetAttrString (PyObject *obj,
201 const char *attr) /* ARI: editCase function */
202{
203 return PyObject_GetAttrString (obj, (char *) attr);
204}
205
206#define PyObject_GetAttrString(obj, attr) gdb_PyObject_GetAttrString (obj, attr)
207
208/* The second argument to PyObject_HasAttrString was also missing the 'const'
209 qualifier in Python-2.4. Hence, we wrap it also in a function to avoid
210 errors when compiled with -Werror. */
211
212static inline int
213gdb_PyObject_HasAttrString (PyObject *obj,
214 const char *attr) /* ARI: editCase function */
215{
216 return PyObject_HasAttrString (obj, (char *) attr);
217}
218
219#define PyObject_HasAttrString(obj, attr) gdb_PyObject_HasAttrString (obj, attr)
220
4d759979
PA
221/* PyObject_CallMethod's 'method' and 'format' parameters were missing
222 the 'const' qualifier before Python 3.4. Hence, we wrap the
223 function in our own version to avoid errors with string literals.
224 Note, this is a variadic template because PyObject_CallMethod is a
225 varargs function and Python doesn't have a "PyObject_VaCallMethod"
226 variant taking a va_list that we could defer to instead. */
227
228template<typename... Args>
229static inline PyObject *
230gdb_PyObject_CallMethod (PyObject *o, const char *method, const char *format,
231 Args... args) /* ARI: editCase function */
232{
233 return PyObject_CallMethod (o,
234 const_cast<char *> (method),
235 const_cast<char *> (format),
236 args...);
237}
238
239#undef PyObject_CallMethod
240#define PyObject_CallMethod gdb_PyObject_CallMethod
241
242/* The 'name' parameter of PyErr_NewException was missing the 'const'
243 qualifier in Python <= 3.4. Hence, we wrap it in a function to
244 avoid errors when compiled with -Werror. */
245
246static inline PyObject*
247gdb_PyErr_NewException (const char *name, PyObject *base, PyObject *dict)
248{
249 return PyErr_NewException (const_cast<char *> (name), base, dict);
250}
251
252#define PyErr_NewException gdb_PyErr_NewException
253
254/* PySys_GetObject's 'name' parameter was missing the 'const'
255 qualifier before Python 3.4. Hence, we wrap it in a function to
256 avoid errors when compiled with -Werror. */
257
258static inline PyObject *
259gdb_PySys_GetObject (const char *name)
260{
261 return PySys_GetObject (const_cast<char *> (name));
262}
263
264#define PySys_GetObject gdb_PySys_GetObject
265
266/* PySys_SetPath's 'path' parameter was missing the 'const' qualifier
267 before Python 3.6. Hence, we wrap it in a function to avoid errors
268 when compiled with -Werror. */
269
270#ifdef IS_PY3K
271# define GDB_PYSYS_SETPATH_CHAR wchar_t
272#else
273# define GDB_PYSYS_SETPATH_CHAR char
274#endif
275
276static inline void
277gdb_PySys_SetPath (const GDB_PYSYS_SETPATH_CHAR *path)
278{
279 PySys_SetPath (const_cast<GDB_PYSYS_SETPATH_CHAR *> (path));
280}
281
282#define PySys_SetPath gdb_PySys_SetPath
283
0d1f4ceb
PA
284/* Wrap PyGetSetDef to allow convenient construction with string
285 literals. Unfortunately, PyGetSetDef's 'name' and 'doc' members
286 are 'char *' instead of 'const char *', meaning that in order to
287 list-initialize PyGetSetDef arrays with string literals (and
288 without the wrapping below) would require writing explicit 'char *'
289 casts. Instead, we extend PyGetSetDef and add constexpr
290 constructors that accept const 'name' and 'doc', hiding the ugly
291 casts here in a single place. */
292
293struct gdb_PyGetSetDef : PyGetSetDef
294{
295 constexpr gdb_PyGetSetDef (const char *name_, getter get_, setter set_,
296 const char *doc_, void *closure_)
297 : PyGetSetDef {const_cast<char *> (name_), get_, set_,
298 const_cast<char *> (doc_), closure_}
299 {}
300
301 /* Alternative constructor that allows omitting the closure in list
302 initialization. */
303 constexpr gdb_PyGetSetDef (const char *name_, getter get_, setter set_,
304 const char *doc_)
305 : gdb_PyGetSetDef {name_, get_, set_, doc_, NULL}
306 {}
307
308 /* Constructor for the sentinel entries. */
309 constexpr gdb_PyGetSetDef (std::nullptr_t)
310 : gdb_PyGetSetDef {NULL, NULL, NULL, NULL, NULL}
311 {}
312};
313
2adadf51
PA
314/* The 'keywords' parameter of PyArg_ParseTupleAndKeywords has type
315 'char **'. However, string literals are const in C++, and so to
316 avoid casting at every keyword array definition, we'll need to make
317 the keywords array an array of 'const char *'. To avoid having all
318 callers add a 'const_cast<char **>' themselves when passing such an
319 array through 'char **', we define our own version of
320 PyArg_ParseTupleAndKeywords here with a corresponding 'keywords'
321 parameter type that does the cast in a single place. (This is not
322 an overload of PyArg_ParseTupleAndKeywords in order to make it
323 clearer that we're calling our own function instead of a function
324 that exists in some newer Python version.) */
325
326static inline int
327gdb_PyArg_ParseTupleAndKeywords (PyObject *args, PyObject *kw,
328 const char *format, const char **keywords, ...)
329{
330 va_list ap;
331 int res;
332
333 va_start (ap, keywords);
334 res = PyArg_VaParseTupleAndKeywords (args, kw, format,
335 const_cast<char **> (keywords),
336 ap);
337 va_end (ap);
338
339 return res;
340}
341
256458bc 342/* In order to be able to parse symtab_and_line_to_sal_object function
9cb74f47
PM
343 a real symtab_and_line structure is needed. */
344#include "symtab.h"
345
d7b32ed3
PM
346/* Also needed to parse enum var_types. */
347#include "command.h"
505500db 348#include "breakpoint.h"
d7b32ed3 349
a73bb892
PK
350enum gdbpy_iter_kind { iter_keys, iter_values, iter_items };
351
f3e9a817 352struct block;
a08702d6 353struct value;
d452c4bc 354struct language_defn;
fa33c3cd 355struct program_space;
505500db 356struct bpstats;
619cebe8 357struct inferior;
d57a3c85 358
0646da15
TT
359extern int gdb_python_initialized;
360
d57a3c85 361extern PyObject *gdb_module;
b9516fa1 362extern PyObject *gdb_python_module;
62eec1a5
TT
363extern PyTypeObject value_object_type
364 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("value_object");
365extern PyTypeObject block_object_type
366 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF("block_object");
367extern PyTypeObject symbol_object_type
368 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("symbol_object");
369extern PyTypeObject event_object_type
370 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
62eec1a5
TT
371extern PyTypeObject breakpoint_object_type
372 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("breakpoint_object");
373extern PyTypeObject frame_object_type
374 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("frame_object");
fbbe5337
KB
375extern PyTypeObject thread_object_type
376 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("thread_object");
cc72b2a2 377
4cb0213d 378typedef struct gdbpy_breakpoint_object
cc72b2a2
KP
379{
380 PyObject_HEAD
381
382 /* The breakpoint number according to gdb. */
383 int number;
384
385 /* The gdb breakpoint object, or NULL if the breakpoint has been
386 deleted. */
387 struct breakpoint *bp;
388
389 /* 1 is this is a FinishBreakpoint object, 0 otherwise. */
390 int is_finish_bp;
4cb0213d 391} gdbpy_breakpoint_object;
cc72b2a2
KP
392
393/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
394 exception if it is invalid. */
395#define BPPY_REQUIRE_VALID(Breakpoint) \
396 do { \
397 if ((Breakpoint)->bp == NULL) \
398 return PyErr_Format (PyExc_RuntimeError, \
399 _("Breakpoint %d is invalid."), \
400 (Breakpoint)->number); \
401 } while (0)
402
403/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
404 exception if it is invalid. This macro is for use in setter functions. */
405#define BPPY_SET_REQUIRE_VALID(Breakpoint) \
406 do { \
407 if ((Breakpoint)->bp == NULL) \
408 { \
409 PyErr_Format (PyExc_RuntimeError, _("Breakpoint %d is invalid."), \
410 (Breakpoint)->number); \
411 return -1; \
412 } \
413 } while (0)
414
415
416/* Variables used to pass information between the Breakpoint
417 constructor and the breakpoint-created hook function. */
4cb0213d 418extern gdbpy_breakpoint_object *bppy_pending_object;
505500db 419
a08702d6 420
595939de
PM
421typedef struct
422{
423 PyObject_HEAD
424
425 /* The thread we represent. */
426 struct thread_info *thread;
427
428 /* The Inferior object to which this thread belongs. */
429 PyObject *inf_obj;
430} thread_object;
431
00431a78
PA
432struct inferior_object;
433
8a1ea21f
DE
434extern struct cmd_list_element *set_python_list;
435extern struct cmd_list_element *show_python_list;
6dddc817
DE
436\f
437/* extension_language_script_ops "methods". */
438
439extern int gdbpy_auto_load_enabled (const struct extension_language_defn *);
440
441/* extension_language_ops "methods". */
442
443extern enum ext_lang_rc gdbpy_apply_val_pretty_printer
444 (const struct extension_language_defn *,
668e1674 445 struct type *type,
6b850546 446 LONGEST embedded_offset, CORE_ADDR address,
6dddc817 447 struct ui_file *stream, int recurse,
668e1674 448 struct value *val,
6dddc817
DE
449 const struct value_print_options *options,
450 const struct language_defn *language);
451extern enum ext_lang_bt_status gdbpy_apply_frame_filter
452 (const struct extension_language_defn *,
d4dd3282
TT
453 struct frame_info *frame, frame_filter_flags flags,
454 enum ext_lang_frame_args args_type,
6dddc817
DE
455 struct ui_out *out, int frame_low, int frame_high);
456extern void gdbpy_preserve_values (const struct extension_language_defn *,
457 struct objfile *objfile,
458 htab_t copied_types);
459extern enum ext_lang_bp_stop gdbpy_breakpoint_cond_says_stop
460 (const struct extension_language_defn *, struct breakpoint *);
461extern int gdbpy_breakpoint_has_cond (const struct extension_language_defn *,
462 struct breakpoint *b);
883964a7 463
883964a7
SC
464extern enum ext_lang_rc gdbpy_get_matching_xmethod_workers
465 (const struct extension_language_defn *extlang,
466 struct type *obj_type, const char *method_name,
ba18742c
SM
467 std::vector<xmethod_worker_up> *dm_vec);
468
6dddc817 469\f
08c637de 470PyObject *gdbpy_history (PyObject *self, PyObject *args);
7729052b
TT
471PyObject *gdbpy_convenience_variable (PyObject *self, PyObject *args);
472PyObject *gdbpy_set_convenience_variable (PyObject *self, PyObject *args);
adc36818 473PyObject *gdbpy_breakpoints (PyObject *, PyObject *);
f8f6f20b 474PyObject *gdbpy_frame_stop_reason_string (PyObject *, PyObject *);
f3e9a817 475PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw);
6e6fbe60
DE
476PyObject *gdbpy_lookup_global_symbol (PyObject *self, PyObject *args,
477 PyObject *kw);
4726b2d8
TW
478PyObject *gdbpy_start_recording (PyObject *self, PyObject *args);
479PyObject *gdbpy_current_recording (PyObject *self, PyObject *args);
480PyObject *gdbpy_stop_recording (PyObject *self, PyObject *args);
d8e22779 481PyObject *gdbpy_newest_frame (PyObject *self, PyObject *args);
f8f6f20b 482PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args);
2c74e833 483PyObject *gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw);
a16b0e22 484int gdbpy_is_field (PyObject *obj);
be759fcf 485PyObject *gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
9a2b4c1b
MS
486 const char *encoding,
487 struct type *type);
595939de 488PyObject *gdbpy_inferiors (PyObject *unused, PyObject *unused2);
162078c8 489PyObject *gdbpy_create_ptid_object (ptid_t ptid);
595939de 490PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
2aa48337 491PyObject *gdbpy_selected_inferior (PyObject *self, PyObject *args);
07ca107c 492PyObject *gdbpy_string_to_argv (PyObject *self, PyObject *args);
d7b32ed3 493PyObject *gdbpy_parameter_value (enum var_types type, void *var);
63d97a20 494char *gdbpy_parse_command_name (const char *name,
d7b32ed3
PM
495 struct cmd_list_element ***base_list,
496 struct cmd_list_element **start_list);
a08702d6 497
f3e9a817
PM
498PyObject *symtab_and_line_to_sal_object (struct symtab_and_line sal);
499PyObject *symtab_to_symtab_object (struct symtab *symtab);
500PyObject *symbol_to_symbol_object (struct symbol *sym);
9df2fbc4
PM
501PyObject *block_to_block_object (const struct block *block,
502 struct objfile *objfile);
a08702d6 503PyObject *value_to_value_object (struct value *v);
2c74e833 504PyObject *type_to_type_object (struct type *);
595939de 505PyObject *frame_info_to_frame_object (struct frame_info *frame);
bc79de95 506PyObject *symtab_to_linetable_object (PyObject *symtab);
3c7aa307 507gdbpy_ref<> pspace_to_pspace_object (struct program_space *);
fa33c3cd 508PyObject *pspy_get_printers (PyObject *, void *);
1e611234 509PyObject *pspy_get_frame_filters (PyObject *, void *);
d11916aa 510PyObject *pspy_get_frame_unwinders (PyObject *, void *);
883964a7 511PyObject *pspy_get_xmethods (PyObject *, void *);
fa33c3cd 512
0a9db5ad 513gdbpy_ref<> objfile_to_objfile_object (struct objfile *);
89c73ade 514PyObject *objfpy_get_printers (PyObject *, void *);
1e611234 515PyObject *objfpy_get_frame_filters (PyObject *, void *);
d11916aa 516PyObject *objfpy_get_frame_unwinders (PyObject *, void *);
883964a7 517PyObject *objfpy_get_xmethods (PyObject *, void *);
6dddd6a5 518PyObject *gdbpy_lookup_objfile (PyObject *self, PyObject *args, PyObject *kw);
a08702d6 519
bea883fd
SCR
520PyObject *gdbarch_to_arch_object (struct gdbarch *gdbarch);
521
595939de 522thread_object *create_thread_object (struct thread_info *tp);
db1337cc 523gdbpy_ref<> thread_to_thread_object (thread_info *thr);;
61fd3e73 524gdbpy_ref<inferior_object> inferior_to_inferior_object (inferior *inf);
595939de 525
9df2fbc4 526const struct block *block_object_to_block (PyObject *obj);
f3e9a817 527struct symbol *symbol_object_to_symbol (PyObject *obj);
a6bac58e 528struct value *value_object_to_value (PyObject *self);
a08702d6 529struct value *convert_value_from_python (PyObject *obj);
2c74e833 530struct type *type_object_to_type (PyObject *obj);
f3e9a817
PM
531struct symtab *symtab_object_to_symtab (PyObject *obj);
532struct symtab_and_line *sal_object_to_symtab_and_line (PyObject *obj);
cc72b2a2 533struct frame_info *frame_object_to_frame_info (PyObject *frame_obj);
bea883fd 534struct gdbarch *arch_object_to_gdbarch (PyObject *obj);
a08702d6 535
037bbc8e 536void gdbpy_initialize_gdb_readline (void);
999633ed
TT
537int gdbpy_initialize_auto_load (void)
538 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
539int gdbpy_initialize_values (void)
540 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
541int gdbpy_initialize_frames (void)
542 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
d050f7d7
TW
543int gdbpy_initialize_instruction (void)
544 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
75c0bdf4
TW
545int gdbpy_initialize_btrace (void)
546 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
4726b2d8
TW
547int gdbpy_initialize_record (void)
548 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
549int gdbpy_initialize_symtabs (void)
550 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
551int gdbpy_initialize_commands (void)
552 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
553int gdbpy_initialize_symbols (void)
554 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
555int gdbpy_initialize_symtabs (void)
556 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
557int gdbpy_initialize_blocks (void)
558 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
559int gdbpy_initialize_types (void)
560 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
561int gdbpy_initialize_functions (void)
562 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
563int gdbpy_initialize_pspace (void)
564 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
565int gdbpy_initialize_objfile (void)
566 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
567int gdbpy_initialize_breakpoints (void)
568 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
569int gdbpy_initialize_finishbreakpoints (void)
570 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
571int gdbpy_initialize_lazy_string (void)
572 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
bc79de95
PM
573int gdbpy_initialize_linetable (void)
574 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
575int gdbpy_initialize_parameters (void)
576 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
577int gdbpy_initialize_thread (void)
578 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
579int gdbpy_initialize_inferior (void)
580 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
581int gdbpy_initialize_eventregistry (void)
582 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
583int gdbpy_initialize_event (void)
584 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
585int gdbpy_initialize_py_events (void)
586 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
999633ed
TT
587int gdbpy_initialize_arch (void)
588 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
883964a7
SC
589int gdbpy_initialize_xmethods (void)
590 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
d11916aa
SS
591int gdbpy_initialize_unwind (void)
592 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
d57a3c85 593
5c329e6a
TT
594/* A wrapper for PyErr_Fetch that handles reference counting for the
595 caller. */
596class gdbpy_err_fetch
597{
598public:
599
600 gdbpy_err_fetch ()
601 {
602 PyErr_Fetch (&m_error_type, &m_error_value, &m_error_traceback);
603 }
604
605 ~gdbpy_err_fetch ()
606 {
607 Py_XDECREF (m_error_type);
608 Py_XDECREF (m_error_value);
609 Py_XDECREF (m_error_traceback);
610 }
611
612 /* Call PyErr_Restore using the values stashed in this object.
613 After this call, this object is invalid and neither the to_string
614 nor restore methods may be used again. */
615
616 void restore ()
617 {
618 PyErr_Restore (m_error_type, m_error_value, m_error_traceback);
619 m_error_type = nullptr;
620 m_error_value = nullptr;
621 m_error_traceback = nullptr;
622 }
623
624 /* Return the string representation of the exception represented by
625 this object. If the result is NULL a python error occurred, the
626 caller must clear it. */
627
628 gdb::unique_xmalloc_ptr<char> to_string () const;
629
630 /* Return the string representation of the type of the exception
631 represented by this object. If the result is NULL a python error
632 occurred, the caller must clear it. */
633
634 gdb::unique_xmalloc_ptr<char> type_to_string () const;
635
636 /* Return true if the stored type matches TYPE, false otherwise. */
637
638 bool type_matches (PyObject *type) const
639 {
640 return PyErr_GivenExceptionMatches (m_error_type, type);
641 }
642
643private:
644
645 PyObject *m_error_type, *m_error_value, *m_error_traceback;
646};
647
4ecee2c4
TT
648/* Called before entering the Python interpreter to install the
649 current language and architecture to be used for Python values.
650 Also set the active extension language for GDB so that SIGINT's
651 are directed our way, and if necessary install the right SIGINT
652 handler. */
653class gdbpy_enter
654{
655 public:
656
657 gdbpy_enter (struct gdbarch *gdbarch, const struct language_defn *language);
658
659 ~gdbpy_enter ();
660
d6541620 661 DISABLE_COPY_AND_ASSIGN (gdbpy_enter);
4ecee2c4
TT
662
663 private:
664
665 struct active_ext_lang_state *m_previous_active;
666 PyGILState_STATE m_state;
667 struct gdbarch *m_gdbarch;
668 const struct language_defn *m_language;
5c329e6a
TT
669
670 /* An optional is used here because we don't want to call
671 PyErr_Fetch too early. */
672 gdb::optional<gdbpy_err_fetch> m_error;
4ecee2c4
TT
673};
674
6cd67bea
TT
675/* Like gdbpy_enter, but takes a varobj. This is a subclass just to
676 make constructor delegation a little nicer. */
677class gdbpy_enter_varobj : public gdbpy_enter
678{
679 public:
680
681 /* This is defined in varobj.c, where it can access varobj
682 internals. */
683 gdbpy_enter_varobj (const struct varobj *var);
684
685};
686
b5eba2d8
TT
687/* The opposite of gdb_enter: this releases the GIL around a region,
688 allowing other Python threads to run. No Python APIs may be used
689 while this is active. */
690class gdbpy_allow_threads
691{
692public:
693
694 gdbpy_allow_threads ()
695 : m_save (PyEval_SaveThread ())
696 {
697 gdb_assert (m_save != nullptr);
698 }
699
700 ~gdbpy_allow_threads ()
701 {
702 PyEval_RestoreThread (m_save);
703 }
704
705 DISABLE_COPY_AND_ASSIGN (gdbpy_allow_threads);
706
707private:
708
709 PyThreadState *m_save;
710};
711
d452c4bc
UW
712extern struct gdbarch *python_gdbarch;
713extern const struct language_defn *python_language;
d57a3c85
TJB
714
715/* Use this after a TRY_EXCEPT to throw the appropriate Python
716 exception. */
56cc411c
TT
717#define GDB_PY_HANDLE_EXCEPTION(Exception) \
718 do { \
719 if (Exception.reason < 0) \
720 { \
721 gdbpy_convert_exception (Exception); \
722 return NULL; \
723 } \
724 } while (0)
d57a3c85 725
adc36818
PM
726/* Use this after a TRY_EXCEPT to throw the appropriate Python
727 exception. This macro is for use inside setter functions. */
728#define GDB_PY_SET_HANDLE_EXCEPTION(Exception) \
729 do { \
730 if (Exception.reason < 0) \
731 { \
621c8364 732 gdbpy_convert_exception (Exception); \
adc36818
PM
733 return -1; \
734 } \
735 } while (0)
d57a3c85 736
69b4374a 737int gdbpy_print_python_errors_p (void);
d57a3c85 738void gdbpy_print_stack (void);
6ef2312a 739void gdbpy_print_stack_or_quit ();
2b4ad2fe 740void gdbpy_handle_exception () ATTRIBUTE_NORETURN;
d57a3c85 741
833d985d 742gdbpy_ref<> python_string_to_unicode (PyObject *obj);
9b972014
TT
743gdb::unique_xmalloc_ptr<char> unicode_to_target_string (PyObject *unicode_str);
744gdb::unique_xmalloc_ptr<char> python_string_to_target_string (PyObject *obj);
833d985d 745gdbpy_ref<> python_string_to_target_python_string (PyObject *obj);
9b972014 746gdb::unique_xmalloc_ptr<char> python_string_to_host_string (PyObject *obj);
833d985d 747gdbpy_ref<> host_string_to_python_string (const char *str);
08c637de 748int gdbpy_is_string (PyObject *obj);
9b972014 749gdb::unique_xmalloc_ptr<char> gdbpy_obj_to_string (PyObject *obj);
07ca107c 750
be759fcf 751int gdbpy_is_lazy_string (PyObject *result);
09ca9e2e 752void gdbpy_extract_lazy_string (PyObject *string, CORE_ADDR *addr,
256458bc 753 struct type **str_type,
1eba6383
TT
754 long *length,
755 gdb::unique_xmalloc_ptr<char> *encoding);
d57a3c85 756
595939de
PM
757int gdbpy_is_value_object (PyObject *obj);
758
b6313243
TT
759/* Note that these are declared here, and not in python.h with the
760 other pretty-printer functions, because they refer to PyObject. */
a5c5eda7
SM
761gdbpy_ref<> apply_varobj_pretty_printer (PyObject *print_obj,
762 struct value **replacement,
763 struct ui_file *stream);
a31abe80 764gdbpy_ref<> gdbpy_get_varobj_pretty_printer (struct value *value);
9b972014 765gdb::unique_xmalloc_ptr<char> gdbpy_get_display_hint (PyObject *printer);
b6313243
TT
766PyObject *gdbpy_default_visualizer (PyObject *self, PyObject *args);
767
4cb0213d
DE
768void bpfinishpy_pre_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
769void bpfinishpy_post_stop_hook (struct gdbpy_breakpoint_object *bp_obj);
cc72b2a2 770
d8906c6f 771extern PyObject *gdbpy_doc_cst;
a6bac58e
TT
772extern PyObject *gdbpy_children_cst;
773extern PyObject *gdbpy_to_string_cst;
774extern PyObject *gdbpy_display_hint_cst;
967cf477 775extern PyObject *gdbpy_enabled_cst;
fb6a3ed3 776extern PyObject *gdbpy_value_cst;
d8906c6f 777
621c8364
TT
778/* Exception types. */
779extern PyObject *gdbpy_gdb_error;
780extern PyObject *gdbpy_gdb_memory_error;
07ca107c
DE
781extern PyObject *gdbpy_gdberror_exc;
782
56cc411c
TT
783extern void gdbpy_convert_exception (struct gdb_exception)
784 CPYCHECKER_SETS_EXCEPTION;
621c8364 785
b86af38a
TT
786int get_addr_from_python (PyObject *obj, CORE_ADDR *addr)
787 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
595939de 788
12dfa12a
TT
789gdbpy_ref<> gdb_py_object_from_longest (LONGEST l);
790gdbpy_ref<> gdb_py_object_from_ulongest (ULONGEST l);
74aedc46
TT
791int gdb_py_int_as_long (PyObject *, long *);
792
2e8265fd
TT
793PyObject *gdb_py_generic_dict (PyObject *self, void *closure);
794
aa36459a
TT
795int gdb_pymodule_addobject (PyObject *module, const char *name,
796 PyObject *object)
797 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION;
798
e5250216
YQ
799struct varobj_iter;
800struct varobj;
801struct varobj_iter *py_varobj_get_iterator (struct varobj *var,
802 PyObject *printer);
803
1a5c2598 804#endif /* PYTHON_PYTHON_INTERNAL_H */
This page took 1.025031 seconds and 4 git commands to generate.