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