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