* python/python-internal.h (events_object_type): Remove.
[deliverable/binutils-gdb.git] / gdb / python / python-internal.h
CommitLineData
d57a3c85
TJB
1/* Gdb/Python header for private use by Python module.
2
28e7fd62 3 Copyright (C) 2008-2013 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
62eec1a5
TT
23/* These WITH_* macros are defined by the CPython API checker that
24 comes with the Python plugin for GCC. See:
25 https://gcc-python-plugin.readthedocs.org/en/latest/cpychecker.html
26 The checker defines a WITH_ macro for each attribute it
27 exposes. */
28
634c58be
TT
29#ifdef WITH_CPYCHECKER_RETURNS_BORROWED_REF_ATTRIBUTE
30#define CPYCHECKER_RETURNS_BORROWED_REF \
31 __attribute__ ((cpychecker_returns_borrowed_ref))
32#else
33#define CPYCHECKER_RETURNS_BORROWED_REF
34#endif
35
62eec1a5
TT
36#ifdef WITH_CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF_ATTRIBUTE
37#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG) \
38 __attribute__ ((cpychecker_type_object_for_typedef (ARG)))
39#else
40#define CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF(ARG)
41#endif
42
9b08f225
TT
43#ifdef WITH_CPYCHECKER_STEALS_REFERENCE_TO_ARG_ATTRIBUTE
44#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n) \
45 __attribute__ ((cpychecker_steals_reference_to_arg (n)))
46#else
47#define CPYCHECKER_STEALS_REFERENCE_TO_ARG(n)
48#endif
49
8a1ea21f
DE
50#include <stdio.h>
51
d57a3c85
TJB
52/* Python 2.4 doesn't include stdint.h soon enough to get {u,}intptr_t
53 needed by pyport.h. */
54#include <stdint.h>
55
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
1c033f8c
TT
76/* Request clean size types from Python. */
77#define PY_SSIZE_T_CLEAN
78
ac534cba
JB
79/* Include the Python header files using angle brackets rather than
80 double quotes. On case-insensitive filesystems, this prevents us
81 from including our python/python.h header file. */
82#include <Python.h>
83#include <frameobject.h>
9a27f2c6
PK
84
85#if PY_MAJOR_VERSION >= 3
86#define IS_PY3K 1
87#endif
88
89#ifdef IS_PY3K
90#define Py_TPFLAGS_HAVE_ITER 0
91#define Py_TPFLAGS_CHECKTYPES 0
92
93#define PyInt_Check PyLong_Check
94#define PyInt_FromLong PyLong_FromLong
95#define PyInt_AsLong PyLong_AsLong
96
97#define PyString_FromString PyUnicode_FromString
98#define PyString_Decode PyUnicode_Decode
99#define PyString_FromFormat PyUnicode_FromFormat
100#define PyString_Check PyUnicode_Check
101#endif
102
d57a3c85 103#if HAVE_LIBPYTHON2_4
5171e6b3
TT
104/* Py_ssize_t is not defined until 2.5.
105 Logical type for Py_ssize_t is Py_intptr_t, but that fails in 64-bit
106 compilation due to several apparent mistakes in python2.4 API, so we
107 use 'int' instead. */
108typedef int Py_ssize_t;
d57a3c85
TJB
109#endif
110
9a27f2c6
PK
111#ifndef PyVarObject_HEAD_INIT
112/* Python 2.4 does not define PyVarObject_HEAD_INIT. */
113#define PyVarObject_HEAD_INIT(type, size) \
114 PyObject_HEAD_INIT(type) size,
115
116#endif
117
118#ifndef Py_TYPE
119/* Python 2.4 does not define Py_TYPE. */
120#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
121#endif
122
ca30a762
TT
123/* If Python.h does not define WITH_THREAD, then the various
124 GIL-related functions will not be defined. However,
125 PyGILState_STATE will be. */
126#ifndef WITH_THREAD
127#define PyGILState_Ensure() ((PyGILState_STATE) 0)
548a926a 128#define PyGILState_Release(ARG) ((void)(ARG))
aed1781d 129#define PyEval_InitThreads()
548a926a 130#define PyThreadState_Swap(ARG) ((void)(ARG))
aed1781d 131#define PyEval_ReleaseLock()
ca30a762
TT
132#endif
133
74aedc46
TT
134/* Python supplies HAVE_LONG_LONG and some `long long' support when it
135 is available. These defines let us handle the differences more
136 cleanly. */
137#ifdef HAVE_LONG_LONG
138
139#define GDB_PY_LL_ARG "L"
140#define GDB_PY_LLU_ARG "K"
141typedef PY_LONG_LONG gdb_py_longest;
142typedef unsigned PY_LONG_LONG gdb_py_ulongest;
143#define gdb_py_long_from_longest PyLong_FromLongLong
144#define gdb_py_long_from_ulongest PyLong_FromUnsignedLongLong
145#define gdb_py_long_as_ulongest PyLong_AsUnsignedLongLong
146
147#else /* HAVE_LONG_LONG */
148
149#define GDB_PY_LL_ARG "L"
150#define GDB_PY_LLU_ARG "K"
151typedef long gdb_py_longest;
152typedef unsigned long gdb_py_ulongest;
153#define gdb_py_long_from_longest PyLong_FromLong
154#define gdb_py_long_from_ulongest PyLong_FromUnsignedLong
155#define gdb_py_long_as_ulongest PyLong_AsUnsignedLong
156
157#endif /* HAVE_LONG_LONG */
158
159
9cb74f47
PM
160/* In order to be able to parse symtab_and_line_to_sal_object function
161 a real symtab_and_line structure is needed. */
162#include "symtab.h"
163
d7b32ed3
PM
164/* Also needed to parse enum var_types. */
165#include "command.h"
505500db 166#include "breakpoint.h"
d7b32ed3 167
621c8364
TT
168#include "exceptions.h"
169
a73bb892
PK
170enum gdbpy_iter_kind { iter_keys, iter_values, iter_items };
171
f3e9a817 172struct block;
a08702d6 173struct value;
d452c4bc 174struct language_defn;
fa33c3cd 175struct program_space;
505500db 176struct bpstats;
619cebe8 177struct inferior;
d57a3c85
TJB
178
179extern PyObject *gdb_module;
b9516fa1 180extern PyObject *gdb_python_module;
62eec1a5
TT
181extern PyTypeObject value_object_type
182 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("value_object");
183extern PyTypeObject block_object_type
184 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF("block_object");
185extern PyTypeObject symbol_object_type
186 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("symbol_object");
187extern PyTypeObject event_object_type
188 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
62eec1a5
TT
189extern PyTypeObject stop_event_object_type
190 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("event_object");
191extern PyTypeObject breakpoint_object_type
192 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("breakpoint_object");
193extern PyTypeObject frame_object_type
194 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("frame_object");
cc72b2a2
KP
195
196typedef struct breakpoint_object
197{
198 PyObject_HEAD
199
200 /* The breakpoint number according to gdb. */
201 int number;
202
203 /* The gdb breakpoint object, or NULL if the breakpoint has been
204 deleted. */
205 struct breakpoint *bp;
206
207 /* 1 is this is a FinishBreakpoint object, 0 otherwise. */
208 int is_finish_bp;
209} breakpoint_object;
210
211/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
212 exception if it is invalid. */
213#define BPPY_REQUIRE_VALID(Breakpoint) \
214 do { \
215 if ((Breakpoint)->bp == NULL) \
216 return PyErr_Format (PyExc_RuntimeError, \
217 _("Breakpoint %d is invalid."), \
218 (Breakpoint)->number); \
219 } while (0)
220
221/* Require that BREAKPOINT be a valid breakpoint ID; throw a Python
222 exception if it is invalid. This macro is for use in setter functions. */
223#define BPPY_SET_REQUIRE_VALID(Breakpoint) \
224 do { \
225 if ((Breakpoint)->bp == NULL) \
226 { \
227 PyErr_Format (PyExc_RuntimeError, _("Breakpoint %d is invalid."), \
228 (Breakpoint)->number); \
229 return -1; \
230 } \
231 } while (0)
232
233
234/* Variables used to pass information between the Breakpoint
235 constructor and the breakpoint-created hook function. */
236extern breakpoint_object *bppy_pending_object;
505500db 237
a08702d6 238
595939de
PM
239typedef struct
240{
241 PyObject_HEAD
242
243 /* The thread we represent. */
244 struct thread_info *thread;
245
246 /* The Inferior object to which this thread belongs. */
247 PyObject *inf_obj;
248} thread_object;
249
8a1ea21f
DE
250extern struct cmd_list_element *set_python_list;
251extern struct cmd_list_element *show_python_list;
252
08c637de 253PyObject *gdbpy_history (PyObject *self, PyObject *args);
adc36818 254PyObject *gdbpy_breakpoints (PyObject *, PyObject *);
f8f6f20b 255PyObject *gdbpy_frame_stop_reason_string (PyObject *, PyObject *);
f3e9a817 256PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw);
6e6fbe60
DE
257PyObject *gdbpy_lookup_global_symbol (PyObject *self, PyObject *args,
258 PyObject *kw);
d8e22779 259PyObject *gdbpy_newest_frame (PyObject *self, PyObject *args);
f8f6f20b 260PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args);
f3e9a817 261PyObject *gdbpy_block_for_pc (PyObject *self, PyObject *args);
2c74e833 262PyObject *gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw);
be759fcf 263PyObject *gdbpy_create_lazy_string_object (CORE_ADDR address, long length,
9a2b4c1b
MS
264 const char *encoding,
265 struct type *type);
595939de
PM
266PyObject *gdbpy_inferiors (PyObject *unused, PyObject *unused2);
267PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
2aa48337 268PyObject *gdbpy_selected_inferior (PyObject *self, PyObject *args);
07ca107c 269PyObject *gdbpy_string_to_argv (PyObject *self, PyObject *args);
d7b32ed3
PM
270PyObject *gdbpy_parameter (PyObject *self, PyObject *args);
271PyObject *gdbpy_parameter_value (enum var_types type, void *var);
63d97a20 272char *gdbpy_parse_command_name (const char *name,
d7b32ed3
PM
273 struct cmd_list_element ***base_list,
274 struct cmd_list_element **start_list);
a08702d6 275
f3e9a817
PM
276PyObject *symtab_and_line_to_sal_object (struct symtab_and_line sal);
277PyObject *symtab_to_symtab_object (struct symtab *symtab);
278PyObject *symbol_to_symbol_object (struct symbol *sym);
9df2fbc4
PM
279PyObject *block_to_block_object (const struct block *block,
280 struct objfile *objfile);
a08702d6 281PyObject *value_to_value_object (struct value *v);
2c74e833 282PyObject *type_to_type_object (struct type *);
595939de 283PyObject *frame_info_to_frame_object (struct frame_info *frame);
89c73ade 284
634c58be
TT
285PyObject *pspace_to_pspace_object (struct program_space *)
286 CPYCHECKER_RETURNS_BORROWED_REF;
fa33c3cd 287PyObject *pspy_get_printers (PyObject *, void *);
1e611234 288PyObject *pspy_get_frame_filters (PyObject *, void *);
fa33c3cd 289
634c58be
TT
290PyObject *objfile_to_objfile_object (struct objfile *)
291 CPYCHECKER_RETURNS_BORROWED_REF;
89c73ade 292PyObject *objfpy_get_printers (PyObject *, void *);
1e611234 293PyObject *objfpy_get_frame_filters (PyObject *, void *);
a08702d6 294
bea883fd
SCR
295PyObject *gdbarch_to_arch_object (struct gdbarch *gdbarch);
296
595939de 297thread_object *create_thread_object (struct thread_info *tp);
634c58be
TT
298thread_object *find_thread_object (ptid_t ptid)
299 CPYCHECKER_RETURNS_BORROWED_REF;
595939de 300PyObject *find_inferior_object (int pid);
505500db 301PyObject *inferior_to_inferior_object (struct inferior *inferior);
595939de 302
9df2fbc4 303const struct block *block_object_to_block (PyObject *obj);
f3e9a817 304struct symbol *symbol_object_to_symbol (PyObject *obj);
a6bac58e 305struct value *value_object_to_value (PyObject *self);
a08702d6 306struct value *convert_value_from_python (PyObject *obj);
2c74e833 307struct type *type_object_to_type (PyObject *obj);
f3e9a817
PM
308struct symtab *symtab_object_to_symtab (PyObject *obj);
309struct symtab_and_line *sal_object_to_symtab_and_line (PyObject *obj);
cc72b2a2 310struct frame_info *frame_object_to_frame_info (PyObject *frame_obj);
bea883fd 311struct gdbarch *arch_object_to_gdbarch (PyObject *obj);
a08702d6 312
037bbc8e 313void gdbpy_initialize_gdb_readline (void);
8a1ea21f 314void gdbpy_initialize_auto_load (void);
a08702d6 315void gdbpy_initialize_values (void);
f8f6f20b 316void gdbpy_initialize_frames (void);
f3e9a817 317void gdbpy_initialize_symtabs (void);
d8906c6f 318void gdbpy_initialize_commands (void);
f3e9a817
PM
319void gdbpy_initialize_symbols (void);
320void gdbpy_initialize_symtabs (void);
321void gdbpy_initialize_blocks (void);
2c74e833 322void gdbpy_initialize_types (void);
bc3b79fd 323void gdbpy_initialize_functions (void);
fa33c3cd 324void gdbpy_initialize_pspace (void);
89c73ade 325void gdbpy_initialize_objfile (void);
adc36818 326void gdbpy_initialize_breakpoints (void);
cc72b2a2 327void gdbpy_initialize_finishbreakpoints (void);
be759fcf 328void gdbpy_initialize_lazy_string (void);
d7b32ed3 329void gdbpy_initialize_parameters (void);
595939de
PM
330void gdbpy_initialize_thread (void);
331void gdbpy_initialize_inferior (void);
505500db
SW
332void gdbpy_initialize_eventregistry (void);
333void gdbpy_initialize_event (void);
334void gdbpy_initialize_py_events (void);
335void gdbpy_initialize_stop_event (void);
336void gdbpy_initialize_signal_event (void);
337void gdbpy_initialize_breakpoint_event (void);
338void gdbpy_initialize_continue_event (void);
339void gdbpy_initialize_exited_event (void);
340void gdbpy_initialize_thread_event (void);
20c168b5 341void gdbpy_initialize_new_objfile_event (void);
bea883fd 342void gdbpy_initialize_arch (void);
d57a3c85
TJB
343
344struct cleanup *make_cleanup_py_decref (PyObject *py);
1e611234 345struct cleanup *make_cleanup_py_xdecref (PyObject *py);
d452c4bc
UW
346
347struct cleanup *ensure_python_env (struct gdbarch *gdbarch,
348 const struct language_defn *language);
349
350extern struct gdbarch *python_gdbarch;
351extern const struct language_defn *python_language;
d57a3c85
TJB
352
353/* Use this after a TRY_EXCEPT to throw the appropriate Python
354 exception. */
355#define GDB_PY_HANDLE_EXCEPTION(Exception) \
356 do { \
357 if (Exception.reason < 0) \
621c8364 358 return gdbpy_convert_exception (Exception); \
d57a3c85
TJB
359 } while (0)
360
adc36818
PM
361/* Use this after a TRY_EXCEPT to throw the appropriate Python
362 exception. This macro is for use inside setter functions. */
363#define GDB_PY_SET_HANDLE_EXCEPTION(Exception) \
364 do { \
365 if (Exception.reason < 0) \
366 { \
621c8364 367 gdbpy_convert_exception (Exception); \
adc36818
PM
368 return -1; \
369 } \
370 } while (0)
d57a3c85
TJB
371
372void gdbpy_print_stack (void);
373
4c63965b
JK
374void source_python_script_for_objfile (struct objfile *objfile, FILE *file,
375 const char *filename);
8a1ea21f 376
d57a3c85
TJB
377PyObject *python_string_to_unicode (PyObject *obj);
378char *unicode_to_target_string (PyObject *unicode_str);
379char *python_string_to_target_string (PyObject *obj);
fbb8f299 380PyObject *python_string_to_target_python_string (PyObject *obj);
08c637de
TJB
381char *python_string_to_host_string (PyObject *obj);
382int gdbpy_is_string (PyObject *obj);
07ca107c
DE
383char *gdbpy_obj_to_string (PyObject *obj);
384char *gdbpy_exception_to_string (PyObject *ptype, PyObject *pvalue);
385
be759fcf 386int gdbpy_is_lazy_string (PyObject *result);
09ca9e2e
TT
387void gdbpy_extract_lazy_string (PyObject *string, CORE_ADDR *addr,
388 struct type **str_type,
389 long *length, char **encoding);
d57a3c85 390
595939de
PM
391int gdbpy_is_value_object (PyObject *obj);
392
b6313243
TT
393/* Note that these are declared here, and not in python.h with the
394 other pretty-printer functions, because they refer to PyObject. */
fbb8f299 395PyObject *apply_varobj_pretty_printer (PyObject *print_obj,
621c8364
TT
396 struct value **replacement,
397 struct ui_file *stream);
b6313243
TT
398PyObject *gdbpy_get_varobj_pretty_printer (struct value *value);
399char *gdbpy_get_display_hint (PyObject *printer);
400PyObject *gdbpy_default_visualizer (PyObject *self, PyObject *args);
401
cc72b2a2
KP
402void bpfinishpy_pre_stop_hook (struct breakpoint_object *bp_obj);
403void bpfinishpy_post_stop_hook (struct breakpoint_object *bp_obj);
404
d8906c6f 405extern PyObject *gdbpy_doc_cst;
a6bac58e
TT
406extern PyObject *gdbpy_children_cst;
407extern PyObject *gdbpy_to_string_cst;
408extern PyObject *gdbpy_display_hint_cst;
967cf477 409extern PyObject *gdbpy_enabled_cst;
fb6a3ed3 410extern PyObject *gdbpy_value_cst;
d8906c6f 411
621c8364
TT
412/* Exception types. */
413extern PyObject *gdbpy_gdb_error;
414extern PyObject *gdbpy_gdb_memory_error;
07ca107c
DE
415extern PyObject *gdbpy_gdberror_exc;
416
621c8364
TT
417extern PyObject *gdbpy_convert_exception (struct gdb_exception);
418
595939de
PM
419int get_addr_from_python (PyObject *obj, CORE_ADDR *addr);
420
74aedc46
TT
421PyObject *gdb_py_object_from_longest (LONGEST l);
422PyObject *gdb_py_object_from_ulongest (ULONGEST l);
423int gdb_py_int_as_long (PyObject *, long *);
424
2e8265fd
TT
425PyObject *gdb_py_generic_dict (PyObject *self, void *closure);
426
d57a3c85 427#endif /* GDB_PYTHON_INTERNAL_H */
This page took 0.494534 seconds and 4 git commands to generate.