Extension Language API
[deliverable/binutils-gdb.git] / gdb / python / python.c
CommitLineData
d57a3c85
TJB
1/* General python/gdb code
2
ecd75fc8 3 Copyright (C) 2008-2014 Free Software Foundation, Inc.
d57a3c85
TJB
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
d452c4bc 21#include "arch-utils.h"
d57a3c85
TJB
22#include "command.h"
23#include "ui-out.h"
24#include "cli/cli-script.h"
25#include "gdbcmd.h"
fa33c3cd 26#include "progspace.h"
89c73ade 27#include "objfiles.h"
d452c4bc
UW
28#include "value.h"
29#include "language.h"
d9c57d9f 30#include "exceptions.h"
ca5c20b6 31#include "event-loop.h"
4a532131 32#include "serial.h"
3ab1ec27 33#include "readline/tilde.h"
7371cf6d 34#include "python.h"
6dddc817 35#include "extension-priv.h"
529480d0 36#include "cli/cli-utils.h"
d57a3c85
TJB
37#include <ctype.h>
38
80b6e756
PM
39/* Declared constants and enum for python stack printing. */
40static const char python_excp_none[] = "none";
41static const char python_excp_full[] = "full";
42static const char python_excp_message[] = "message";
43
44/* "set python print-stack" choices. */
40478521 45static const char *const python_excp_enums[] =
80b6e756
PM
46 {
47 python_excp_none,
48 python_excp_full,
49 python_excp_message,
50 NULL
51 };
52
53/* The exception printing variable. 'full' if we want to print the
54 error message and stack, 'none' if we want to print nothing, and
55 'message' if we only want to print the error message. 'message' is
56 the default. */
57static const char *gdbpy_should_print_stack = python_excp_message;
d57a3c85 58
6dddc817
DE
59#ifdef HAVE_PYTHON
60/* Forward decls, these are defined later. */
61static const struct extension_language_script_ops python_extension_script_ops;
62static const struct extension_language_ops python_extension_ops;
63#endif
64
65/* The main struct describing GDB's interface to the Python
66 extension language. */
67const struct extension_language_defn extension_language_python =
68{
69 EXT_LANG_PYTHON,
70 "python",
71 "Python",
72
73 ".py",
74 "-gdb.py",
75
76 python_control,
77
78#ifdef HAVE_PYTHON
79 &python_extension_script_ops,
80 &python_extension_ops
81#else
82 NULL,
83 NULL
84#endif
85};
86\f
d57a3c85
TJB
87#ifdef HAVE_PYTHON
88
d57a3c85
TJB
89#include "libiberty.h"
90#include "cli/cli-decode.h"
91#include "charset.h"
92#include "top.h"
cb2e07a6 93#include "solib.h"
d57a3c85 94#include "python-internal.h"
cb2e07a6
PM
95#include "linespec.h"
96#include "source.h"
d57a3c85
TJB
97#include "version.h"
98#include "target.h"
99#include "gdbthread.h"
b4a14fd0 100#include "interps.h"
9a27f2c6 101#include "event-top.h"
d57a3c85 102
999633ed
TT
103/* True if Python has been successfully initialized, false
104 otherwise. */
105
106int gdb_python_initialized;
107
12453b93 108static PyMethodDef GdbMethods[];
d57a3c85 109
9a27f2c6
PK
110#ifdef IS_PY3K
111static struct PyModuleDef GdbModuleDef;
112#endif
113
d57a3c85 114PyObject *gdb_module;
b9516fa1 115PyObject *gdb_python_module;
d57a3c85 116
a6bac58e
TT
117/* Some string constants we may wish to use. */
118PyObject *gdbpy_to_string_cst;
119PyObject *gdbpy_children_cst;
120PyObject *gdbpy_display_hint_cst;
d8906c6f 121PyObject *gdbpy_doc_cst;
967cf477 122PyObject *gdbpy_enabled_cst;
fb6a3ed3 123PyObject *gdbpy_value_cst;
d8906c6f 124
07ca107c
DE
125/* The GdbError exception. */
126PyObject *gdbpy_gdberror_exc;
d452c4bc 127
621c8364
TT
128/* The `gdb.error' base class. */
129PyObject *gdbpy_gdb_error;
130
131/* The `gdb.MemoryError' exception. */
132PyObject *gdbpy_gdb_memory_error;
133
6dddc817
DE
134static script_sourcer_func gdbpy_source_script;
135static objfile_script_sourcer_func gdbpy_source_objfile_script;
136static void gdbpy_finish_initialization
137 (const struct extension_language_defn *);
138static int gdbpy_initialized (const struct extension_language_defn *);
139static void gdbpy_eval_from_control_command
140 (const struct extension_language_defn *, struct command_line *cmd);
141static void gdbpy_start_type_printers (const struct extension_language_defn *,
142 struct ext_lang_type_printers *);
143static enum ext_lang_rc gdbpy_apply_type_printers
144 (const struct extension_language_defn *,
145 const struct ext_lang_type_printers *, struct type *, char **);
146static void gdbpy_free_type_printers (const struct extension_language_defn *,
147 struct ext_lang_type_printers *);
148static void gdbpy_clear_quit_flag (const struct extension_language_defn *);
149static void gdbpy_set_quit_flag (const struct extension_language_defn *);
150static int gdbpy_check_quit_flag (const struct extension_language_defn *);
151static enum ext_lang_rc gdbpy_before_prompt_hook
152 (const struct extension_language_defn *, const char *current_gdb_prompt);
153
154/* The interface between gdb proper and loading of python scripts. */
155
156static const struct extension_language_script_ops python_extension_script_ops =
157{
158 gdbpy_source_script,
159 gdbpy_source_objfile_script,
160 gdbpy_auto_load_enabled
161};
162
163/* The interface between gdb proper and python extensions. */
164
165static const struct extension_language_ops python_extension_ops =
166{
167 gdbpy_finish_initialization,
168 gdbpy_initialized,
169
170 gdbpy_eval_from_control_command,
171
172 gdbpy_start_type_printers,
173 gdbpy_apply_type_printers,
174 gdbpy_free_type_printers,
175
176 gdbpy_apply_val_pretty_printer,
177
178 gdbpy_apply_frame_filter,
179
180 gdbpy_preserve_values,
181
182 gdbpy_breakpoint_has_cond,
183 gdbpy_breakpoint_cond_says_stop,
184
185 gdbpy_clear_quit_flag,
186 gdbpy_set_quit_flag,
187 gdbpy_check_quit_flag,
188
189 gdbpy_before_prompt_hook
190};
191
d452c4bc
UW
192/* Architecture and language to be used in callbacks from
193 the Python interpreter. */
194struct gdbarch *python_gdbarch;
195const struct language_defn *python_language;
196
197/* Restore global language and architecture and Python GIL state
198 when leaving the Python interpreter. */
199
200struct python_env
201{
6dddc817 202 struct active_ext_lang_state *previous_active;
d452c4bc
UW
203 PyGILState_STATE state;
204 struct gdbarch *gdbarch;
205 const struct language_defn *language;
8dc78533 206 PyObject *error_type, *error_value, *error_traceback;
d452c4bc
UW
207};
208
209static void
210restore_python_env (void *p)
211{
212 struct python_env *env = (struct python_env *)p;
d59b6f6c 213
8dc78533
JK
214 /* Leftover Python error is forbidden by Python Exception Handling. */
215 if (PyErr_Occurred ())
216 {
217 /* This order is similar to the one calling error afterwards. */
218 gdbpy_print_stack ();
219 warning (_("internal error: Unhandled Python exception"));
220 }
221
222 PyErr_Restore (env->error_type, env->error_value, env->error_traceback);
223
d452c4bc
UW
224 PyGILState_Release (env->state);
225 python_gdbarch = env->gdbarch;
226 python_language = env->language;
6dddc817
DE
227
228 restore_active_ext_lang (env->previous_active);
229
d452c4bc
UW
230 xfree (env);
231}
232
233/* Called before entering the Python interpreter to install the
6dddc817
DE
234 current language and architecture to be used for Python values.
235 Also set the active extension language for GDB so that SIGINT's
236 are directed our way, and if necessary install the right SIGINT
237 handler. */
d452c4bc
UW
238
239struct cleanup *
240ensure_python_env (struct gdbarch *gdbarch,
241 const struct language_defn *language)
242{
243 struct python_env *env = xmalloc (sizeof *env);
244
0646da15
TT
245 /* We should not ever enter Python unless initialized. */
246 if (!gdb_python_initialized)
247 error (_("Python not initialized"));
248
6dddc817
DE
249 env->previous_active = set_active_ext_lang (&extension_language_python);
250
d452c4bc
UW
251 env->state = PyGILState_Ensure ();
252 env->gdbarch = python_gdbarch;
253 env->language = python_language;
254
255 python_gdbarch = gdbarch;
256 python_language = language;
257
8dc78533
JK
258 /* Save it and ensure ! PyErr_Occurred () afterwards. */
259 PyErr_Fetch (&env->error_type, &env->error_value, &env->error_traceback);
256458bc 260
d452c4bc
UW
261 return make_cleanup (restore_python_env, env);
262}
263
522002f9
TT
264/* Clear the quit flag. */
265
6dddc817
DE
266static void
267gdbpy_clear_quit_flag (const struct extension_language_defn *extlang)
522002f9
TT
268{
269 /* This clears the flag as a side effect. */
270 PyOS_InterruptOccurred ();
271}
272
273/* Set the quit flag. */
274
6dddc817
DE
275static void
276gdbpy_set_quit_flag (const struct extension_language_defn *extlang)
522002f9
TT
277{
278 PyErr_SetInterrupt ();
279}
280
281/* Return true if the quit flag has been set, false otherwise. */
282
6dddc817
DE
283static int
284gdbpy_check_quit_flag (const struct extension_language_defn *extlang)
522002f9
TT
285{
286 return PyOS_InterruptOccurred ();
287}
288
8315665e
YPK
289/* Evaluate a Python command like PyRun_SimpleString, but uses
290 Py_single_input which prints the result of expressions, and does
291 not automatically print the stack on errors. */
292
293static int
294eval_python_command (const char *command)
295{
296 PyObject *m, *d, *v;
297
298 m = PyImport_AddModule ("__main__");
299 if (m == NULL)
300 return -1;
301
302 d = PyModule_GetDict (m);
303 if (d == NULL)
304 return -1;
305 v = PyRun_StringFlags (command, Py_single_input, d, d, NULL);
306 if (v == NULL)
307 return -1;
308
309 Py_DECREF (v);
9a27f2c6 310#ifndef IS_PY3K
8315665e
YPK
311 if (Py_FlushLine ())
312 PyErr_Clear ();
9a27f2c6 313#endif
8315665e
YPK
314
315 return 0;
316}
317
318/* Implementation of the gdb "python-interactive" command. */
319
320static void
321python_interactive_command (char *arg, int from_tty)
322{
323 struct cleanup *cleanup;
324 int err;
325
326 cleanup = make_cleanup_restore_integer (&interpreter_async);
327 interpreter_async = 0;
328
529480d0 329 arg = skip_spaces (arg);
8315665e
YPK
330
331 ensure_python_env (get_current_arch (), current_language);
332
333 if (arg && *arg)
334 {
335 int len = strlen (arg);
336 char *script = xmalloc (len + 2);
337
338 strcpy (script, arg);
339 script[len] = '\n';
340 script[len + 1] = '\0';
341 err = eval_python_command (script);
342 xfree (script);
343 }
344 else
345 {
346 err = PyRun_InteractiveLoop (instream, "<stdin>");
347 dont_repeat ();
348 }
349
350 if (err)
351 {
352 gdbpy_print_stack ();
353 error (_("Error while executing Python code."));
354 }
355
356 do_cleanups (cleanup);
357}
358
4c63965b
JK
359/* A wrapper around PyRun_SimpleFile. FILE is the Python script to run
360 named FILENAME.
361
362 On Windows hosts few users would build Python themselves (this is no
363 trivial task on this platform), and thus use binaries built by
364 someone else instead. There may happen situation where the Python
365 library and GDB are using two different versions of the C runtime
366 library. Python, being built with VC, would use one version of the
367 msvcr DLL (Eg. msvcr100.dll), while MinGW uses msvcrt.dll.
368 A FILE * from one runtime does not necessarily operate correctly in
7ed7d719
JB
369 the other runtime.
370
4c63965b
JK
371 To work around this potential issue, we create on Windows hosts the
372 FILE object using Python routines, thus making sure that it is
373 compatible with the Python library. */
7ed7d719
JB
374
375static void
4c63965b 376python_run_simple_file (FILE *file, const char *filename)
7ed7d719 377{
4c63965b
JK
378#ifndef _WIN32
379
380 PyRun_SimpleFile (file, filename);
381
382#else /* _WIN32 */
383
3ab1ec27 384 char *full_path;
7ed7d719
JB
385 PyObject *python_file;
386 struct cleanup *cleanup;
387
3ab1ec27
PM
388 /* Because we have a string for a filename, and are using Python to
389 open the file, we need to expand any tilde in the path first. */
390 full_path = tilde_expand (filename);
391 cleanup = make_cleanup (xfree, full_path);
392 python_file = PyFile_FromString (full_path, "r");
393 if (! python_file)
394 {
395 do_cleanups (cleanup);
396 gdbpy_print_stack ();
397 error (_("Error while opening file: %s"), full_path);
398 }
256458bc 399
7ed7d719
JB
400 make_cleanup_py_decref (python_file);
401 PyRun_SimpleFile (PyFile_AsFile (python_file), filename);
402 do_cleanups (cleanup);
4c63965b
JK
403
404#endif /* _WIN32 */
7ed7d719 405}
d452c4bc 406
d57a3c85
TJB
407/* Given a command_line, return a command string suitable for passing
408 to Python. Lines in the string are separated by newlines. The
409 return value is allocated using xmalloc and the caller is
410 responsible for freeing it. */
411
412static char *
413compute_python_string (struct command_line *l)
414{
415 struct command_line *iter;
416 char *script = NULL;
417 int size = 0;
418 int here;
419
420 for (iter = l; iter; iter = iter->next)
421 size += strlen (iter->line) + 1;
422
423 script = xmalloc (size + 1);
424 here = 0;
425 for (iter = l; iter; iter = iter->next)
426 {
427 int len = strlen (iter->line);
d59b6f6c 428
d57a3c85
TJB
429 strcpy (&script[here], iter->line);
430 here += len;
431 script[here++] = '\n';
432 }
433 script[here] = '\0';
434 return script;
435}
436
437/* Take a command line structure representing a 'python' command, and
438 evaluate its body using the Python interpreter. */
439
6dddc817
DE
440static void
441gdbpy_eval_from_control_command (const struct extension_language_defn *extlang,
442 struct command_line *cmd)
d57a3c85 443{
12453b93 444 int ret;
d57a3c85 445 char *script;
ca30a762 446 struct cleanup *cleanup;
d57a3c85
TJB
447
448 if (cmd->body_count != 1)
449 error (_("Invalid \"python\" block structure."));
450
d452c4bc 451 cleanup = ensure_python_env (get_current_arch (), current_language);
ca30a762 452
d57a3c85 453 script = compute_python_string (cmd->body_list[0]);
12453b93 454 ret = PyRun_SimpleString (script);
d57a3c85 455 xfree (script);
12453b93 456 if (ret)
80b6e756 457 error (_("Error while executing Python code."));
ca30a762
TT
458
459 do_cleanups (cleanup);
d57a3c85
TJB
460}
461
462/* Implementation of the gdb "python" command. */
463
464static void
465python_command (char *arg, int from_tty)
466{
ca30a762 467 struct cleanup *cleanup;
ca30a762 468
d59b6f6c 469 cleanup = ensure_python_env (get_current_arch (), current_language);
b4a14fd0
PA
470
471 make_cleanup_restore_integer (&interpreter_async);
472 interpreter_async = 0;
473
529480d0 474 arg = skip_spaces (arg);
d57a3c85
TJB
475 if (arg && *arg)
476 {
12453b93 477 if (PyRun_SimpleString (arg))
80b6e756 478 error (_("Error while executing Python code."));
d57a3c85
TJB
479 }
480 else
481 {
482 struct command_line *l = get_command_line (python_control, "");
d59b6f6c 483
ca30a762 484 make_cleanup_free_command_lines (&l);
d57a3c85 485 execute_control_command_untraced (l);
d57a3c85 486 }
ca30a762
TT
487
488 do_cleanups (cleanup);
d57a3c85
TJB
489}
490
491\f
492
493/* Transform a gdb parameters's value into a Python value. May return
494 NULL (and set a Python exception) on error. Helper function for
495 get_parameter. */
d7b32ed3
PM
496PyObject *
497gdbpy_parameter_value (enum var_types type, void *var)
d57a3c85 498{
d7b32ed3 499 switch (type)
d57a3c85
TJB
500 {
501 case var_string:
502 case var_string_noescape:
503 case var_optional_filename:
504 case var_filename:
505 case var_enum:
506 {
d7b32ed3 507 char *str = * (char **) var;
d59b6f6c 508
d57a3c85
TJB
509 if (! str)
510 str = "";
511 return PyString_Decode (str, strlen (str), host_charset (), NULL);
512 }
513
514 case var_boolean:
515 {
d7b32ed3 516 if (* (int *) var)
d57a3c85
TJB
517 Py_RETURN_TRUE;
518 else
519 Py_RETURN_FALSE;
520 }
521
522 case var_auto_boolean:
523 {
d7b32ed3 524 enum auto_boolean ab = * (enum auto_boolean *) var;
d59b6f6c 525
d57a3c85
TJB
526 if (ab == AUTO_BOOLEAN_TRUE)
527 Py_RETURN_TRUE;
528 else if (ab == AUTO_BOOLEAN_FALSE)
529 Py_RETURN_FALSE;
530 else
531 Py_RETURN_NONE;
532 }
533
534 case var_integer:
d7b32ed3 535 if ((* (int *) var) == INT_MAX)
d57a3c85
TJB
536 Py_RETURN_NONE;
537 /* Fall through. */
538 case var_zinteger:
d7b32ed3 539 return PyLong_FromLong (* (int *) var);
d57a3c85
TJB
540
541 case var_uinteger:
542 {
d7b32ed3 543 unsigned int val = * (unsigned int *) var;
d59b6f6c 544
d57a3c85
TJB
545 if (val == UINT_MAX)
546 Py_RETURN_NONE;
547 return PyLong_FromUnsignedLong (val);
548 }
549 }
550
256458bc 551 return PyErr_Format (PyExc_RuntimeError,
044c0f87 552 _("Programmer error: unhandled type."));
d57a3c85
TJB
553}
554
555/* A Python function which returns a gdb parameter's value as a Python
556 value. */
557
d7b32ed3 558PyObject *
8f500870 559gdbpy_parameter (PyObject *self, PyObject *args)
d57a3c85
TJB
560{
561 struct cmd_list_element *alias, *prefix, *cmd;
ddd49eee
TT
562 const char *arg;
563 char *newarg;
cc924cad 564 int found = -1;
d57a3c85
TJB
565 volatile struct gdb_exception except;
566
567 if (! PyArg_ParseTuple (args, "s", &arg))
568 return NULL;
569
570 newarg = concat ("show ", arg, (char *) NULL);
571
572 TRY_CATCH (except, RETURN_MASK_ALL)
573 {
cc924cad 574 found = lookup_cmd_composition (newarg, &alias, &prefix, &cmd);
d57a3c85
TJB
575 }
576 xfree (newarg);
577 GDB_PY_HANDLE_EXCEPTION (except);
cc924cad
TJB
578 if (!found)
579 return PyErr_Format (PyExc_RuntimeError,
044c0f87 580 _("Could not find parameter `%s'."), arg);
d57a3c85
TJB
581
582 if (! cmd->var)
256458bc 583 return PyErr_Format (PyExc_RuntimeError,
044c0f87 584 _("`%s' is not a parameter."), arg);
d7b32ed3 585 return gdbpy_parameter_value (cmd->var_type, cmd->var);
d57a3c85
TJB
586}
587
f870a310
TT
588/* Wrapper for target_charset. */
589
590static PyObject *
591gdbpy_target_charset (PyObject *self, PyObject *args)
592{
593 const char *cset = target_charset (python_gdbarch);
d59b6f6c 594
f870a310
TT
595 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
596}
597
598/* Wrapper for target_wide_charset. */
599
600static PyObject *
601gdbpy_target_wide_charset (PyObject *self, PyObject *args)
602{
603 const char *cset = target_wide_charset (python_gdbarch);
d59b6f6c 604
f870a310
TT
605 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
606}
607
d57a3c85
TJB
608/* A Python function which evaluates a string using the gdb CLI. */
609
610static PyObject *
bc9f0842 611execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 612{
ddd49eee 613 const char *arg;
bc9f0842
TT
614 PyObject *from_tty_obj = NULL, *to_string_obj = NULL;
615 int from_tty, to_string;
d57a3c85 616 volatile struct gdb_exception except;
bc9f0842
TT
617 static char *keywords[] = {"command", "from_tty", "to_string", NULL };
618 char *result = NULL;
d57a3c85 619
bc9f0842
TT
620 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|O!O!", keywords, &arg,
621 &PyBool_Type, &from_tty_obj,
622 &PyBool_Type, &to_string_obj))
d57a3c85
TJB
623 return NULL;
624
12453b93
TJB
625 from_tty = 0;
626 if (from_tty_obj)
627 {
bc9f0842 628 int cmp = PyObject_IsTrue (from_tty_obj);
12453b93 629 if (cmp < 0)
bc9f0842 630 return NULL;
12453b93
TJB
631 from_tty = cmp;
632 }
633
bc9f0842
TT
634 to_string = 0;
635 if (to_string_obj)
636 {
637 int cmp = PyObject_IsTrue (to_string_obj);
638 if (cmp < 0)
639 return NULL;
640 to_string = cmp;
641 }
642
d57a3c85
TJB
643 TRY_CATCH (except, RETURN_MASK_ALL)
644 {
86c6265d
TT
645 /* Copy the argument text in case the command modifies it. */
646 char *copy = xstrdup (arg);
647 struct cleanup *cleanup = make_cleanup (xfree, copy);
bc9f0842 648
b4a14fd0
PA
649 make_cleanup_restore_integer (&interpreter_async);
650 interpreter_async = 0;
651
47a80e90 652 prevent_dont_repeat ();
bc9f0842 653 if (to_string)
5da1313b
JK
654 result = execute_command_to_string (copy, from_tty);
655 else
bc9f0842 656 {
5da1313b
JK
657 result = NULL;
658 execute_command (copy, from_tty);
bc9f0842 659 }
d59b6f6c 660
86c6265d 661 do_cleanups (cleanup);
d57a3c85
TJB
662 }
663 GDB_PY_HANDLE_EXCEPTION (except);
664
347bddb7
PA
665 /* Do any commands attached to breakpoint we stopped at. */
666 bpstat_do_actions ();
d57a3c85 667
bc9f0842
TT
668 if (result)
669 {
670 PyObject *r = PyString_FromString (result);
671 xfree (result);
672 return r;
673 }
d57a3c85
TJB
674 Py_RETURN_NONE;
675}
676
cb2e07a6
PM
677/* Implementation of gdb.solib_name (Long) -> String.
678 Returns the name of the shared library holding a given address, or None. */
679
680static PyObject *
681gdbpy_solib_name (PyObject *self, PyObject *args)
682{
683 char *soname;
684 PyObject *str_obj;
74aedc46
TT
685 gdb_py_longest pc;
686
687 if (!PyArg_ParseTuple (args, GDB_PY_LL_ARG, &pc))
cb2e07a6
PM
688 return NULL;
689
690 soname = solib_name_from_address (current_program_space, pc);
691 if (soname)
692 str_obj = PyString_Decode (soname, strlen (soname), host_charset (), NULL);
693 else
694 {
695 str_obj = Py_None;
696 Py_INCREF (Py_None);
697 }
698
699 return str_obj;
700}
701
702/* A Python function which is a wrapper for decode_line_1. */
703
704static PyObject *
705gdbpy_decode_line (PyObject *self, PyObject *args)
706{
9a2b4c1b
MS
707 struct symtabs_and_lines sals = { NULL, 0 }; /* Initialize to
708 appease gcc. */
cb2e07a6 709 struct symtab_and_line sal;
ddd49eee 710 const char *arg = NULL;
9bc3523d 711 char *copy_to_free = NULL, *copy = NULL;
cb2e07a6
PM
712 struct cleanup *cleanups;
713 PyObject *result = NULL;
714 PyObject *return_result = NULL;
715 PyObject *unparsed = NULL;
716 volatile struct gdb_exception except;
717
718 if (! PyArg_ParseTuple (args, "|s", &arg))
719 return NULL;
720
5d9c5995 721 cleanups = make_cleanup (null_cleanup, NULL);
cb2e07a6 722
9bc3523d 723 sals.sals = NULL;
cb2e07a6
PM
724 TRY_CATCH (except, RETURN_MASK_ALL)
725 {
726 if (arg)
727 {
ddd49eee 728 copy = xstrdup (arg);
9bc3523d 729 copy_to_free = copy;
f8eba3c6 730 sals = decode_line_1 (&copy, 0, 0, 0);
cb2e07a6
PM
731 }
732 else
733 {
734 set_default_source_symtab_and_line ();
735 sal = get_current_source_symtab_and_line ();
736 sals.sals = &sal;
737 sals.nelts = 1;
738 }
739 }
9bc3523d
TT
740
741 if (sals.sals != NULL && sals.sals != &sal)
742 {
743 make_cleanup (xfree, copy_to_free);
744 make_cleanup (xfree, sals.sals);
745 }
746
cb2e07a6
PM
747 if (except.reason < 0)
748 {
749 do_cleanups (cleanups);
750 /* We know this will always throw. */
f3300387
TT
751 gdbpy_convert_exception (except);
752 return NULL;
cb2e07a6
PM
753 }
754
755 if (sals.nelts)
756 {
757 int i;
758
759 result = PyTuple_New (sals.nelts);
760 if (! result)
761 goto error;
762 for (i = 0; i < sals.nelts; ++i)
763 {
764 PyObject *obj;
cb2e07a6
PM
765
766 obj = symtab_and_line_to_sal_object (sals.sals[i]);
767 if (! obj)
768 {
769 Py_DECREF (result);
770 goto error;
771 }
772
773 PyTuple_SetItem (result, i, obj);
774 }
775 }
776 else
777 {
778 result = Py_None;
779 Py_INCREF (Py_None);
780 }
781
782 return_result = PyTuple_New (2);
783 if (! return_result)
784 {
785 Py_DECREF (result);
786 goto error;
787 }
788
789 if (copy && strlen (copy) > 0)
9bc3523d
TT
790 {
791 unparsed = PyString_FromString (copy);
792 if (unparsed == NULL)
793 {
794 Py_DECREF (result);
795 Py_DECREF (return_result);
796 return_result = NULL;
797 goto error;
798 }
799 }
cb2e07a6
PM
800 else
801 {
802 unparsed = Py_None;
803 Py_INCREF (Py_None);
804 }
805
806 PyTuple_SetItem (return_result, 0, unparsed);
807 PyTuple_SetItem (return_result, 1, result);
808
9bc3523d 809 error:
cb2e07a6
PM
810 do_cleanups (cleanups);
811
812 return return_result;
cb2e07a6
PM
813}
814
57a1d736
TT
815/* Parse a string and evaluate it as an expression. */
816static PyObject *
817gdbpy_parse_and_eval (PyObject *self, PyObject *args)
818{
ddd49eee 819 const char *expr_str;
57a1d736
TT
820 struct value *result = NULL;
821 volatile struct gdb_exception except;
822
823 if (!PyArg_ParseTuple (args, "s", &expr_str))
824 return NULL;
825
826 TRY_CATCH (except, RETURN_MASK_ALL)
827 {
bbc13ae3 828 result = parse_and_eval (expr_str);
57a1d736
TT
829 }
830 GDB_PY_HANDLE_EXCEPTION (except);
831
832 return value_to_value_object (result);
833}
834
7efc75aa
SCR
835/* Implementation of gdb.find_pc_line function.
836 Returns the gdb.Symtab_and_line object corresponding to a PC value. */
837
838static PyObject *
839gdbpy_find_pc_line (PyObject *self, PyObject *args)
840{
29ca12b3 841 gdb_py_ulongest pc_llu;
9e974e55 842 volatile struct gdb_exception except;
62d7fb51 843 PyObject *result = NULL; /* init for gcc -Wall */
7efc75aa
SCR
844
845 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu))
846 return NULL;
847
9e974e55
TT
848 TRY_CATCH (except, RETURN_MASK_ALL)
849 {
850 struct symtab_and_line sal;
851 CORE_ADDR pc;
852
853 pc = (CORE_ADDR) pc_llu;
854 sal = find_pc_line (pc, 0);
855 result = symtab_and_line_to_sal_object (sal);
856 }
857 GDB_PY_HANDLE_EXCEPTION (except);
858
859 return result;
7efc75aa
SCR
860}
861
d234ef5c 862/* Read a file as Python code.
6dddc817
DE
863 This is the extension_language_script_ops.script_sourcer "method".
864 FILE is the file to load. FILENAME is name of the file FILE.
d234ef5c
DE
865 This does not throw any errors. If an exception occurs python will print
866 the traceback and clear the error indicator. */
973817a3 867
6dddc817
DE
868static void
869gdbpy_source_script (const struct extension_language_defn *extlang,
870 FILE *file, const char *filename)
973817a3 871{
eb5cda86 872 struct cleanup *cleanup;
973817a3 873
eb5cda86 874 cleanup = ensure_python_env (get_current_arch (), current_language);
4c63965b 875 python_run_simple_file (file, filename);
eb5cda86 876 do_cleanups (cleanup);
973817a3
JB
877}
878
d57a3c85
TJB
879\f
880
ca5c20b6
PM
881/* Posting and handling events. */
882
883/* A single event. */
884struct gdbpy_event
885{
886 /* The Python event. This is just a callable object. */
887 PyObject *event;
888 /* The next event. */
889 struct gdbpy_event *next;
890};
891
892/* All pending events. */
893static struct gdbpy_event *gdbpy_event_list;
894/* The final link of the event list. */
895static struct gdbpy_event **gdbpy_event_list_end;
896
897/* We use a file handler, and not an async handler, so that we can
898 wake up the main thread even when it is blocked in poll(). */
4a532131 899static struct serial *gdbpy_event_fds[2];
ca5c20b6
PM
900
901/* The file handler callback. This reads from the internal pipe, and
902 then processes the Python event queue. This will always be run in
903 the main gdb thread. */
4a532131 904
ca5c20b6 905static void
4a532131 906gdbpy_run_events (struct serial *scb, void *context)
ca5c20b6
PM
907{
908 struct cleanup *cleanup;
ca5c20b6
PM
909
910 cleanup = ensure_python_env (get_current_arch (), current_language);
911
4a532131
PA
912 /* Flush the fd. Do this before flushing the events list, so that
913 any new event post afterwards is sure to re-awake the event
914 loop. */
915 while (serial_readchar (gdbpy_event_fds[0], 0) >= 0)
916 ;
ca5c20b6
PM
917
918 while (gdbpy_event_list)
919 {
02146ba5
TT
920 PyObject *call_result;
921
ca5c20b6
PM
922 /* Dispatching the event might push a new element onto the event
923 loop, so we update here "atomically enough". */
924 struct gdbpy_event *item = gdbpy_event_list;
925 gdbpy_event_list = gdbpy_event_list->next;
926 if (gdbpy_event_list == NULL)
927 gdbpy_event_list_end = &gdbpy_event_list;
928
929 /* Ignore errors. */
02146ba5
TT
930 call_result = PyObject_CallObject (item->event, NULL);
931 if (call_result == NULL)
ca5c20b6
PM
932 PyErr_Clear ();
933
02146ba5 934 Py_XDECREF (call_result);
ca5c20b6
PM
935 Py_DECREF (item->event);
936 xfree (item);
937 }
938
939 do_cleanups (cleanup);
940}
941
942/* Submit an event to the gdb thread. */
943static PyObject *
944gdbpy_post_event (PyObject *self, PyObject *args)
945{
946 struct gdbpy_event *event;
947 PyObject *func;
948 int wakeup;
949
950 if (!PyArg_ParseTuple (args, "O", &func))
951 return NULL;
952
953 if (!PyCallable_Check (func))
954 {
256458bc 955 PyErr_SetString (PyExc_RuntimeError,
ca5c20b6
PM
956 _("Posted event is not callable"));
957 return NULL;
958 }
959
960 Py_INCREF (func);
961
962 /* From here until the end of the function, we have the GIL, so we
963 can operate on our global data structures without worrying. */
964 wakeup = gdbpy_event_list == NULL;
965
966 event = XNEW (struct gdbpy_event);
967 event->event = func;
968 event->next = NULL;
969 *gdbpy_event_list_end = event;
970 gdbpy_event_list_end = &event->next;
971
972 /* Wake up gdb when needed. */
973 if (wakeup)
974 {
975 char c = 'q'; /* Anything. */
4a532131
PA
976
977 if (serial_write (gdbpy_event_fds[1], &c, 1))
ca5c20b6
PM
978 return PyErr_SetFromErrno (PyExc_IOError);
979 }
980
981 Py_RETURN_NONE;
982}
983
984/* Initialize the Python event handler. */
999633ed 985static int
ca5c20b6
PM
986gdbpy_initialize_events (void)
987{
4a532131 988 if (serial_pipe (gdbpy_event_fds) == 0)
ca5c20b6
PM
989 {
990 gdbpy_event_list_end = &gdbpy_event_list;
4a532131 991 serial_async (gdbpy_event_fds[0], gdbpy_run_events, NULL);
ca5c20b6 992 }
999633ed
TT
993
994 return 0;
ca5c20b6
PM
995}
996
d17b6f81
PM
997\f
998
6dddc817
DE
999/* This is the extension_language_ops.before_prompt "method". */
1000
1001static enum ext_lang_rc
1002gdbpy_before_prompt_hook (const struct extension_language_defn *extlang,
1003 const char *current_gdb_prompt)
d17b6f81
PM
1004{
1005 struct cleanup *cleanup;
1006 char *prompt = NULL;
1007
0646da15 1008 if (!gdb_python_initialized)
6dddc817 1009 return EXT_LANG_RC_NOP;
0646da15 1010
d17b6f81
PM
1011 cleanup = ensure_python_env (get_current_arch (), current_language);
1012
b9516fa1
YPK
1013 if (gdb_python_module
1014 && PyObject_HasAttrString (gdb_python_module, "prompt_hook"))
d17b6f81
PM
1015 {
1016 PyObject *hook;
1017
b9516fa1 1018 hook = PyObject_GetAttrString (gdb_python_module, "prompt_hook");
d17b6f81
PM
1019 if (hook == NULL)
1020 goto fail;
1021
0430e8cb
TT
1022 make_cleanup_py_decref (hook);
1023
d17b6f81
PM
1024 if (PyCallable_Check (hook))
1025 {
1026 PyObject *result;
1027 PyObject *current_prompt;
1028
1029 current_prompt = PyString_FromString (current_gdb_prompt);
1030 if (current_prompt == NULL)
1031 goto fail;
1032
1033 result = PyObject_CallFunctionObjArgs (hook, current_prompt, NULL);
1034
1035 Py_DECREF (current_prompt);
1036
1037 if (result == NULL)
1038 goto fail;
1039
1040 make_cleanup_py_decref (result);
1041
1042 /* Return type should be None, or a String. If it is None,
1043 fall through, we will not set a prompt. If it is a
1044 string, set PROMPT. Anything else, set an exception. */
1045 if (result != Py_None && ! PyString_Check (result))
1046 {
1047 PyErr_Format (PyExc_RuntimeError,
1048 _("Return from prompt_hook must " \
1049 "be either a Python string, or None"));
1050 goto fail;
1051 }
1052
1053 if (result != Py_None)
1054 {
1055 prompt = python_string_to_host_string (result);
1056
1057 if (prompt == NULL)
1058 goto fail;
1059 else
1060 make_cleanup (xfree, prompt);
1061 }
1062 }
1063 }
1064
1065 /* If a prompt has been set, PROMPT will not be NULL. If it is
1066 NULL, do not set the prompt. */
1067 if (prompt != NULL)
ab821bc6 1068 set_prompt (prompt);
d17b6f81
PM
1069
1070 do_cleanups (cleanup);
6dddc817 1071 return prompt != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_NOP;
d17b6f81
PM
1072
1073 fail:
1074 gdbpy_print_stack ();
1075 do_cleanups (cleanup);
6dddc817 1076 return EXT_LANG_RC_ERROR;
d17b6f81
PM
1077}
1078
1079\f
1080
d57a3c85
TJB
1081/* Printing. */
1082
1083/* A python function to write a single string using gdb's filtered
99c3dc11
PM
1084 output stream . The optional keyword STREAM can be used to write
1085 to a particular stream. The default stream is to gdb_stdout. */
1086
d57a3c85 1087static PyObject *
99c3dc11 1088gdbpy_write (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 1089{
ddd49eee 1090 const char *arg;
99c3dc11
PM
1091 static char *keywords[] = {"text", "stream", NULL };
1092 int stream_type = 0;
adb4fe3b 1093 volatile struct gdb_exception except;
256458bc 1094
99c3dc11
PM
1095 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &arg,
1096 &stream_type))
d57a3c85 1097 return NULL;
99c3dc11 1098
adb4fe3b 1099 TRY_CATCH (except, RETURN_MASK_ALL)
99c3dc11 1100 {
adb4fe3b
ME
1101 switch (stream_type)
1102 {
1103 case 1:
1104 {
1105 fprintf_filtered (gdb_stderr, "%s", arg);
1106 break;
1107 }
1108 case 2:
1109 {
1110 fprintf_filtered (gdb_stdlog, "%s", arg);
1111 break;
1112 }
1113 default:
1114 fprintf_filtered (gdb_stdout, "%s", arg);
1115 }
99c3dc11 1116 }
adb4fe3b 1117 GDB_PY_HANDLE_EXCEPTION (except);
256458bc 1118
d57a3c85
TJB
1119 Py_RETURN_NONE;
1120}
1121
99c3dc11
PM
1122/* A python function to flush a gdb stream. The optional keyword
1123 STREAM can be used to flush a particular stream. The default stream
1124 is gdb_stdout. */
1125
d57a3c85 1126static PyObject *
99c3dc11 1127gdbpy_flush (PyObject *self, PyObject *args, PyObject *kw)
d57a3c85 1128{
99c3dc11
PM
1129 static char *keywords[] = {"stream", NULL };
1130 int stream_type = 0;
256458bc 1131
99c3dc11
PM
1132 if (! PyArg_ParseTupleAndKeywords (args, kw, "|i", keywords,
1133 &stream_type))
1134 return NULL;
1135
1136 switch (stream_type)
1137 {
1138 case 1:
1139 {
1140 gdb_flush (gdb_stderr);
1141 break;
1142 }
1143 case 2:
1144 {
1145 gdb_flush (gdb_stdlog);
1146 break;
1147 }
1148 default:
1149 gdb_flush (gdb_stdout);
1150 }
256458bc 1151
d57a3c85
TJB
1152 Py_RETURN_NONE;
1153}
1154
80b6e756
PM
1155/* Print a python exception trace, print just a message, or print
1156 nothing and clear the python exception, depending on
1157 gdbpy_should_print_stack. Only call this if a python exception is
1158 set. */
d57a3c85
TJB
1159void
1160gdbpy_print_stack (void)
1161{
7f6a5dde
TT
1162 volatile struct gdb_exception except;
1163
80b6e756
PM
1164 /* Print "none", just clear exception. */
1165 if (gdbpy_should_print_stack == python_excp_none)
1166 {
1167 PyErr_Clear ();
1168 }
1169 /* Print "full" message and backtrace. */
1170 else if (gdbpy_should_print_stack == python_excp_full)
0bf0f8c4
DE
1171 {
1172 PyErr_Print ();
1173 /* PyErr_Print doesn't necessarily end output with a newline.
1174 This works because Python's stdout/stderr is fed through
1175 printf_filtered. */
7f6a5dde
TT
1176 TRY_CATCH (except, RETURN_MASK_ALL)
1177 {
1178 begin_line ();
1179 }
0bf0f8c4 1180 }
80b6e756 1181 /* Print "message", just error print message. */
d57a3c85 1182 else
80b6e756
PM
1183 {
1184 PyObject *ptype, *pvalue, *ptraceback;
1185 char *msg = NULL, *type = NULL;
1186
1187 PyErr_Fetch (&ptype, &pvalue, &ptraceback);
1188
1189 /* Fetch the error message contained within ptype, pvalue. */
1190 msg = gdbpy_exception_to_string (ptype, pvalue);
1191 type = gdbpy_obj_to_string (ptype);
7f6a5dde
TT
1192
1193 TRY_CATCH (except, RETURN_MASK_ALL)
80b6e756 1194 {
7f6a5dde
TT
1195 if (msg == NULL)
1196 {
1197 /* An error occurred computing the string representation of the
1198 error message. */
1199 fprintf_filtered (gdb_stderr,
1200 _("Error occurred computing Python error" \
1201 "message.\n"));
1202 }
1203 else
1204 fprintf_filtered (gdb_stderr, "Python Exception %s %s: \n",
1205 type, msg);
80b6e756 1206 }
80b6e756
PM
1207
1208 Py_XDECREF (ptype);
1209 Py_XDECREF (pvalue);
1210 Py_XDECREF (ptraceback);
1211 xfree (msg);
1212 }
d57a3c85
TJB
1213}
1214
89c73ade
TT
1215\f
1216
fa33c3cd
DE
1217/* Return the current Progspace.
1218 There always is one. */
1219
1220static PyObject *
1221gdbpy_get_current_progspace (PyObject *unused1, PyObject *unused2)
1222{
1223 PyObject *result;
1224
1225 result = pspace_to_pspace_object (current_program_space);
1226 if (result)
1227 Py_INCREF (result);
1228 return result;
1229}
1230
1231/* Return a sequence holding all the Progspaces. */
1232
1233static PyObject *
1234gdbpy_progspaces (PyObject *unused1, PyObject *unused2)
1235{
1236 struct program_space *ps;
1237 PyObject *list;
1238
1239 list = PyList_New (0);
1240 if (!list)
1241 return NULL;
1242
1243 ALL_PSPACES (ps)
1244 {
1245 PyObject *item = pspace_to_pspace_object (ps);
d59b6f6c 1246
fa33c3cd
DE
1247 if (!item || PyList_Append (list, item) == -1)
1248 {
1249 Py_DECREF (list);
1250 return NULL;
1251 }
1252 }
1253
1254 return list;
1255}
1256
1257\f
1258
89c73ade 1259/* The "current" objfile. This is set when gdb detects that a new
8a1ea21f 1260 objfile has been loaded. It is only set for the duration of a call to
6dddc817 1261 gdbpy_source_objfile_script; it is NULL at other times. */
89c73ade
TT
1262static struct objfile *gdbpy_current_objfile;
1263
4c63965b
JK
1264/* Set the current objfile to OBJFILE and then read FILE named FILENAME
1265 as Python code. This does not throw any errors. If an exception
6dddc817
DE
1266 occurs python will print the traceback and clear the error indicator.
1267 This is the extension_language_script_ops.objfile_script_sourcer
1268 "method". */
89c73ade 1269
6dddc817
DE
1270static void
1271gdbpy_source_objfile_script (const struct extension_language_defn *extlang,
1272 struct objfile *objfile, FILE *file,
1273 const char *filename)
89c73ade 1274{
89c73ade
TT
1275 struct cleanup *cleanups;
1276
0646da15
TT
1277 if (!gdb_python_initialized)
1278 return;
1279
d452c4bc 1280 cleanups = ensure_python_env (get_objfile_arch (objfile), current_language);
89c73ade
TT
1281 gdbpy_current_objfile = objfile;
1282
4c63965b 1283 python_run_simple_file (file, filename);
89c73ade
TT
1284
1285 do_cleanups (cleanups);
1286 gdbpy_current_objfile = NULL;
89c73ade
TT
1287}
1288
1289/* Return the current Objfile, or None if there isn't one. */
8a1ea21f 1290
89c73ade
TT
1291static PyObject *
1292gdbpy_get_current_objfile (PyObject *unused1, PyObject *unused2)
1293{
1294 PyObject *result;
1295
1296 if (! gdbpy_current_objfile)
1297 Py_RETURN_NONE;
1298
1299 result = objfile_to_objfile_object (gdbpy_current_objfile);
1300 if (result)
1301 Py_INCREF (result);
1302 return result;
1303}
1304
1305/* Return a sequence holding all the Objfiles. */
fa33c3cd 1306
89c73ade
TT
1307static PyObject *
1308gdbpy_objfiles (PyObject *unused1, PyObject *unused2)
1309{
1310 struct objfile *objf;
1311 PyObject *list;
1312
1313 list = PyList_New (0);
1314 if (!list)
1315 return NULL;
1316
1317 ALL_OBJFILES (objf)
1318 {
1319 PyObject *item = objfile_to_objfile_object (objf);
d59b6f6c 1320
89c73ade
TT
1321 if (!item || PyList_Append (list, item) == -1)
1322 {
1323 Py_DECREF (list);
1324 return NULL;
1325 }
1326 }
1327
1328 return list;
1329}
1330
6dddc817
DE
1331/* Compute the list of active python type printers and store them in
1332 EXT_PRINTERS->py_type_printers. The product of this function is used by
1333 gdbpy_apply_type_printers, and freed by gdbpy_free_type_printers.
1334 This is the extension_language_ops.start_type_printers "method". */
18a9fc12 1335
6dddc817
DE
1336static void
1337gdbpy_start_type_printers (const struct extension_language_defn *extlang,
1338 struct ext_lang_type_printers *ext_printers)
18a9fc12
TT
1339{
1340 struct cleanup *cleanups;
6dddc817 1341 PyObject *type_module, *func = NULL, *printers_obj = NULL;
18a9fc12 1342
0646da15 1343 if (!gdb_python_initialized)
6dddc817 1344 return;
0646da15 1345
18a9fc12
TT
1346 cleanups = ensure_python_env (get_current_arch (), current_language);
1347
1348 type_module = PyImport_ImportModule ("gdb.types");
1349 if (type_module == NULL)
1350 {
1351 gdbpy_print_stack ();
1352 goto done;
1353 }
18a9fc12
TT
1354
1355 func = PyObject_GetAttrString (type_module, "get_type_recognizers");
1356 if (func == NULL)
1357 {
1358 gdbpy_print_stack ();
1359 goto done;
1360 }
18a9fc12 1361
6dddc817
DE
1362 printers_obj = PyObject_CallFunctionObjArgs (func, (char *) NULL);
1363 if (printers_obj == NULL)
18a9fc12 1364 gdbpy_print_stack ();
6dddc817
DE
1365 else
1366 ext_printers->py_type_printers = printers_obj;
18a9fc12
TT
1367
1368 done:
3d4a3c3e
TT
1369 Py_XDECREF (type_module);
1370 Py_XDECREF (func);
18a9fc12 1371 do_cleanups (cleanups);
18a9fc12
TT
1372}
1373
6dddc817
DE
1374/* If TYPE is recognized by some type printer, store in *PRETTIED_TYPE
1375 a newly allocated string holding the type's replacement name, and return
1376 EXT_LANG_RC_OK. The caller is responsible for freeing the string.
1377 If there's a Python error return EXT_LANG_RC_ERROR.
1378 Otherwise, return EXT_LANG_RC_NOP.
1379 This is the extension_language_ops.apply_type_printers "method". */
1380
1381static enum ext_lang_rc
1382gdbpy_apply_type_printers (const struct extension_language_defn *extlang,
1383 const struct ext_lang_type_printers *ext_printers,
1384 struct type *type, char **prettied_type)
18a9fc12
TT
1385{
1386 struct cleanup *cleanups;
3d4a3c3e
TT
1387 PyObject *type_obj, *type_module = NULL, *func = NULL;
1388 PyObject *result_obj = NULL;
6dddc817 1389 PyObject *printers_obj = ext_printers->py_type_printers;
18a9fc12
TT
1390 char *result = NULL;
1391
1392 if (printers_obj == NULL)
6dddc817 1393 return EXT_LANG_RC_NOP;
18a9fc12 1394
0646da15 1395 if (!gdb_python_initialized)
6dddc817 1396 return EXT_LANG_RC_NOP;
0646da15 1397
18a9fc12
TT
1398 cleanups = ensure_python_env (get_current_arch (), current_language);
1399
1400 type_obj = type_to_type_object (type);
1401 if (type_obj == NULL)
1402 {
1403 gdbpy_print_stack ();
1404 goto done;
1405 }
18a9fc12
TT
1406
1407 type_module = PyImport_ImportModule ("gdb.types");
1408 if (type_module == NULL)
1409 {
1410 gdbpy_print_stack ();
1411 goto done;
1412 }
18a9fc12
TT
1413
1414 func = PyObject_GetAttrString (type_module, "apply_type_recognizers");
1415 if (func == NULL)
1416 {
1417 gdbpy_print_stack ();
1418 goto done;
1419 }
18a9fc12
TT
1420
1421 result_obj = PyObject_CallFunctionObjArgs (func, printers_obj,
1422 type_obj, (char *) NULL);
1423 if (result_obj == NULL)
1424 {
1425 gdbpy_print_stack ();
1426 goto done;
1427 }
18a9fc12
TT
1428
1429 if (result_obj != Py_None)
1430 {
1431 result = python_string_to_host_string (result_obj);
1432 if (result == NULL)
1433 gdbpy_print_stack ();
1434 }
1435
1436 done:
3d4a3c3e
TT
1437 Py_XDECREF (type_obj);
1438 Py_XDECREF (type_module);
1439 Py_XDECREF (func);
1440 Py_XDECREF (result_obj);
18a9fc12 1441 do_cleanups (cleanups);
6dddc817
DE
1442 if (result != NULL)
1443 *prettied_type = result;
1444 return result != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_ERROR;
18a9fc12
TT
1445}
1446
6dddc817
DE
1447/* Free the result of start_type_printers.
1448 This is the extension_language_ops.free_type_printers "method". */
18a9fc12 1449
6dddc817
DE
1450static void
1451gdbpy_free_type_printers (const struct extension_language_defn *extlang,
1452 struct ext_lang_type_printers *ext_printers)
18a9fc12
TT
1453{
1454 struct cleanup *cleanups;
6dddc817 1455 PyObject *printers = ext_printers->py_type_printers;
18a9fc12
TT
1456
1457 if (printers == NULL)
1458 return;
1459
0646da15
TT
1460 if (!gdb_python_initialized)
1461 return;
1462
18a9fc12
TT
1463 cleanups = ensure_python_env (get_current_arch (), current_language);
1464 Py_DECREF (printers);
1465 do_cleanups (cleanups);
1466}
1467
d57a3c85
TJB
1468#else /* HAVE_PYTHON */
1469
8315665e
YPK
1470/* Dummy implementation of the gdb "python-interactive" and "python"
1471 command. */
d57a3c85
TJB
1472
1473static void
8315665e 1474python_interactive_command (char *arg, int from_tty)
d57a3c85 1475{
529480d0 1476 arg = skip_spaces (arg);
d57a3c85
TJB
1477 if (arg && *arg)
1478 error (_("Python scripting is not supported in this copy of GDB."));
1479 else
1480 {
1481 struct command_line *l = get_command_line (python_control, "");
1482 struct cleanup *cleanups = make_cleanup_free_command_lines (&l);
d59b6f6c 1483
d57a3c85
TJB
1484 execute_control_command_untraced (l);
1485 do_cleanups (cleanups);
1486 }
1487}
1488
8315665e
YPK
1489static void
1490python_command (char *arg, int from_tty)
1491{
1492 python_interactive_command (arg, from_tty);
1493}
1494
d57a3c85
TJB
1495#endif /* HAVE_PYTHON */
1496
1497\f
1498
713389e0
PM
1499/* Lists for 'set python' commands. */
1500
1501static struct cmd_list_element *user_set_python_list;
1502static struct cmd_list_element *user_show_python_list;
d57a3c85 1503
713389e0
PM
1504/* Function for use by 'set python' prefix command. */
1505
1506static void
1507user_set_python (char *args, int from_tty)
1508{
1509 help_list (user_set_python_list, "set python ", all_commands,
1510 gdb_stdout);
1511}
1512
1513/* Function for use by 'show python' prefix command. */
1514
1515static void
1516user_show_python (char *args, int from_tty)
d57a3c85 1517{
713389e0 1518 cmd_show_list (user_show_python_list, from_tty, "");
d57a3c85
TJB
1519}
1520
1521/* Initialize the Python code. */
1522
810849a3
AS
1523#ifdef HAVE_PYTHON
1524
d7de8e3c
TT
1525/* This is installed as a final cleanup and cleans up the
1526 interpreter. This lets Python's 'atexit' work. */
1527
1528static void
1529finalize_python (void *ignore)
1530{
6dddc817
DE
1531 struct active_ext_lang_state *previous_active;
1532
d7de8e3c
TT
1533 /* We don't use ensure_python_env here because if we ever ran the
1534 cleanup, gdb would crash -- because the cleanup calls into the
1535 Python interpreter, which we are about to destroy. It seems
1536 clearer to make the needed calls explicitly here than to create a
1537 cleanup and then mysteriously discard it. */
6dddc817
DE
1538
1539 /* This is only called as a final cleanup so we can assume the active
1540 SIGINT handler is gdb's. We still need to tell it to notify Python. */
1541 previous_active = set_active_ext_lang (&extension_language_python);
1542
b1209b03 1543 (void) PyGILState_Ensure ();
f5656ead 1544 python_gdbarch = target_gdbarch ();
d7de8e3c
TT
1545 python_language = current_language;
1546
1547 Py_Finalize ();
6dddc817
DE
1548
1549 restore_active_ext_lang (previous_active);
d7de8e3c 1550}
810849a3 1551#endif
d7de8e3c 1552
2c0b251b
PA
1553/* Provide a prototype to silence -Wmissing-prototypes. */
1554extern initialize_file_ftype _initialize_python;
1555
d57a3c85
TJB
1556void
1557_initialize_python (void)
1558{
9a27f2c6
PK
1559 char *progname;
1560#ifdef IS_PY3K
1561 int i;
1562 size_t progsize, count;
1563 char *oldloc;
1564 wchar_t *progname_copy;
1565#endif
713389e0 1566
8315665e
YPK
1567 add_com ("python-interactive", class_obscure,
1568 python_interactive_command,
1569#ifdef HAVE_PYTHON
1570 _("\
e3480f4a
YPK
1571Start an interactive Python prompt.\n\
1572\n\
1573To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\
1574prompt).\n\
8315665e
YPK
1575\n\
1576Alternatively, a single-line Python command can be given as an\n\
1577argument, and if the command is an expression, the result will be\n\
1578printed. For example:\n\
1579\n\
1580 (gdb) python-interactive 2 + 3\n\
1581 5\n\
1582")
1583#else /* HAVE_PYTHON */
1584 _("\
1585Start a Python interactive prompt.\n\
1586\n\
1587Python scripting is not supported in this copy of GDB.\n\
1588This command is only a placeholder.")
1589#endif /* HAVE_PYTHON */
1590 );
1591 add_com_alias ("pi", "python-interactive", class_obscure, 1);
1592
d57a3c85
TJB
1593 add_com ("python", class_obscure, python_command,
1594#ifdef HAVE_PYTHON
1595 _("\
1596Evaluate a Python command.\n\
1597\n\
1598The command can be given as an argument, for instance:\n\
1599\n\
1600 python print 23\n\
1601\n\
1602If no argument is given, the following lines are read and used\n\
1603as the Python commands. Type a line containing \"end\" to indicate\n\
1604the end of the command.")
1605#else /* HAVE_PYTHON */
1606 _("\
1607Evaluate a Python command.\n\
1608\n\
1609Python scripting is not supported in this copy of GDB.\n\
1610This command is only a placeholder.")
1611#endif /* HAVE_PYTHON */
1612 );
8315665e 1613 add_com_alias ("py", "python", class_obscure, 1);
d57a3c85 1614
713389e0
PM
1615 /* Add set/show python print-stack. */
1616 add_prefix_cmd ("python", no_class, user_show_python,
1617 _("Prefix command for python preference settings."),
1618 &user_show_python_list, "show python ", 0,
1619 &showlist);
1620
1621 add_prefix_cmd ("python", no_class, user_set_python,
1622 _("Prefix command for python preference settings."),
1623 &user_set_python_list, "set python ", 0,
1624 &setlist);
1625
80b6e756
PM
1626 add_setshow_enum_cmd ("print-stack", no_class, python_excp_enums,
1627 &gdbpy_should_print_stack, _("\
1628Set mode for Python stack dump on error."), _("\
1629Show the mode of Python stack printing on error."), _("\
1630none == no stack or message will be printed.\n\
1631full == a message and a stack will be printed.\n\
1632message == an error message without a stack will be printed."),
1633 NULL, NULL,
1634 &user_set_python_list,
1635 &user_show_python_list);
d57a3c85
TJB
1636
1637#ifdef HAVE_PYTHON
0c4a4063
DE
1638#ifdef WITH_PYTHON_PATH
1639 /* Work around problem where python gets confused about where it is,
1640 and then can't find its libraries, etc.
1641 NOTE: Python assumes the following layout:
1642 /foo/bin/python
1643 /foo/lib/pythonX.Y/...
1644 This must be done before calling Py_Initialize. */
9a27f2c6
PK
1645 progname = concat (ldirname (python_libdir), SLASH_STRING, "bin",
1646 SLASH_STRING, "python", NULL);
1647#ifdef IS_PY3K
1648 oldloc = setlocale (LC_ALL, NULL);
1649 setlocale (LC_ALL, "");
1650 progsize = strlen (progname);
1651 if (progsize == (size_t) -1)
1652 {
1653 fprintf (stderr, "Could not convert python path to string\n");
1654 return;
1655 }
1656 progname_copy = PyMem_Malloc ((progsize + 1) * sizeof (wchar_t));
1657 if (!progname_copy)
1658 {
1659 fprintf (stderr, "out of memory\n");
1660 return;
1661 }
1662 count = mbstowcs (progname_copy, progname, progsize + 1);
1663 if (count == (size_t) -1)
1664 {
1665 fprintf (stderr, "Could not convert python path to string\n");
1666 return;
1667 }
1668 setlocale (LC_ALL, oldloc);
1669
1670 /* Note that Py_SetProgramName expects the string it is passed to
1671 remain alive for the duration of the program's execution, so
1672 it is not freed after this call. */
1673 Py_SetProgramName (progname_copy);
1674#else
1675 Py_SetProgramName (progname);
1676#endif
0c4a4063
DE
1677#endif
1678
d57a3c85 1679 Py_Initialize ();
ca30a762 1680 PyEval_InitThreads ();
d57a3c85 1681
9a27f2c6
PK
1682#ifdef IS_PY3K
1683 gdb_module = PyModule_Create (&GdbModuleDef);
1684 /* Add _gdb module to the list of known built-in modules. */
1685 _PyImport_FixupBuiltin (gdb_module, "_gdb");
1686#else
b9516fa1 1687 gdb_module = Py_InitModule ("_gdb", GdbMethods);
9a27f2c6 1688#endif
999633ed
TT
1689 if (gdb_module == NULL)
1690 goto fail;
d57a3c85
TJB
1691
1692 /* The casts to (char*) are for python 2.4. */
999633ed
TT
1693 if (PyModule_AddStringConstant (gdb_module, "VERSION", (char*) version) < 0
1694 || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG",
1695 (char*) host_name) < 0
1696 || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
1697 (char*) target_name) < 0)
1698 goto fail;
f17618ea 1699
99c3dc11 1700 /* Add stream constants. */
999633ed
TT
1701 if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
1702 || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
1703 || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
1704 goto fail;
d57a3c85 1705
621c8364 1706 gdbpy_gdb_error = PyErr_NewException ("gdb.error", PyExc_RuntimeError, NULL);
999633ed 1707 if (gdbpy_gdb_error == NULL
aa36459a 1708 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0)
999633ed 1709 goto fail;
621c8364
TT
1710
1711 gdbpy_gdb_memory_error = PyErr_NewException ("gdb.MemoryError",
1712 gdbpy_gdb_error, NULL);
999633ed 1713 if (gdbpy_gdb_memory_error == NULL
aa36459a
TT
1714 || gdb_pymodule_addobject (gdb_module, "MemoryError",
1715 gdbpy_gdb_memory_error) < 0)
999633ed 1716 goto fail;
621c8364 1717
07ca107c 1718 gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL);
999633ed 1719 if (gdbpy_gdberror_exc == NULL
aa36459a
TT
1720 || gdb_pymodule_addobject (gdb_module, "GdbError",
1721 gdbpy_gdberror_exc) < 0)
999633ed 1722 goto fail;
07ca107c 1723
037bbc8e 1724 gdbpy_initialize_gdb_readline ();
999633ed
TT
1725
1726 if (gdbpy_initialize_auto_load () < 0
1727 || gdbpy_initialize_values () < 0
1728 || gdbpy_initialize_frames () < 0
1729 || gdbpy_initialize_commands () < 0
1730 || gdbpy_initialize_symbols () < 0
1731 || gdbpy_initialize_symtabs () < 0
1732 || gdbpy_initialize_blocks () < 0
1733 || gdbpy_initialize_functions () < 0
1734 || gdbpy_initialize_parameters () < 0
1735 || gdbpy_initialize_types () < 0
1736 || gdbpy_initialize_pspace () < 0
1737 || gdbpy_initialize_objfile () < 0
1738 || gdbpy_initialize_breakpoints () < 0
1739 || gdbpy_initialize_finishbreakpoints () < 0
1740 || gdbpy_initialize_lazy_string () < 0
bc79de95 1741 || gdbpy_initialize_linetable () < 0
999633ed
TT
1742 || gdbpy_initialize_thread () < 0
1743 || gdbpy_initialize_inferior () < 0
1744 || gdbpy_initialize_events () < 0
1745 || gdbpy_initialize_eventregistry () < 0
1746 || gdbpy_initialize_py_events () < 0
1747 || gdbpy_initialize_event () < 0
1748 || gdbpy_initialize_stop_event () < 0
1749 || gdbpy_initialize_signal_event () < 0
1750 || gdbpy_initialize_breakpoint_event () < 0
1751 || gdbpy_initialize_continue_event () < 0
1752 || gdbpy_initialize_exited_event () < 0
1753 || gdbpy_initialize_thread_event () < 0
1754 || gdbpy_initialize_new_objfile_event () < 0
1755 || gdbpy_initialize_arch () < 0)
1756 goto fail;
505500db 1757
a6bac58e 1758 gdbpy_to_string_cst = PyString_FromString ("to_string");
999633ed
TT
1759 if (gdbpy_to_string_cst == NULL)
1760 goto fail;
a6bac58e 1761 gdbpy_children_cst = PyString_FromString ("children");
999633ed
TT
1762 if (gdbpy_children_cst == NULL)
1763 goto fail;
a6bac58e 1764 gdbpy_display_hint_cst = PyString_FromString ("display_hint");
999633ed
TT
1765 if (gdbpy_display_hint_cst == NULL)
1766 goto fail;
d8906c6f 1767 gdbpy_doc_cst = PyString_FromString ("__doc__");
999633ed
TT
1768 if (gdbpy_doc_cst == NULL)
1769 goto fail;
967cf477 1770 gdbpy_enabled_cst = PyString_FromString ("enabled");
999633ed
TT
1771 if (gdbpy_enabled_cst == NULL)
1772 goto fail;
fb6a3ed3 1773 gdbpy_value_cst = PyString_FromString ("value");
999633ed
TT
1774 if (gdbpy_value_cst == NULL)
1775 goto fail;
d8906c6f 1776
9dea9163
DE
1777 /* Release the GIL while gdb runs. */
1778 PyThreadState_Swap (NULL);
1779 PyEval_ReleaseLock ();
1780
d7de8e3c 1781 make_final_cleanup (finalize_python, NULL);
999633ed
TT
1782
1783 gdb_python_initialized = 1;
1784 return;
1785
1786 fail:
1787 gdbpy_print_stack ();
1788 /* Do not set 'gdb_python_initialized'. */
1789 return;
1790
9dea9163
DE
1791#endif /* HAVE_PYTHON */
1792}
1793
1794#ifdef HAVE_PYTHON
1795
1796/* Perform the remaining python initializations.
1797 These must be done after GDB is at least mostly initialized.
1798 E.g., The "info pretty-printer" command needs the "info" prefix
6dddc817
DE
1799 command installed.
1800 This is the extension_language_ops.finish_initialization "method". */
9dea9163 1801
6dddc817
DE
1802static void
1803gdbpy_finish_initialization (const struct extension_language_defn *extlang)
9dea9163 1804{
b9516fa1
YPK
1805 PyObject *m;
1806 char *gdb_pythondir;
1807 PyObject *sys_path;
9dea9163
DE
1808 struct cleanup *cleanup;
1809
1810 cleanup = ensure_python_env (get_current_arch (), current_language);
f17618ea 1811
b9516fa1
YPK
1812 /* Add the initial data-directory to sys.path. */
1813
1814 gdb_pythondir = concat (gdb_datadir, SLASH_STRING, "python", NULL);
1815 make_cleanup (xfree, gdb_pythondir);
1816
1817 sys_path = PySys_GetObject ("path");
ca30a762 1818
9a27f2c6
PK
1819 /* If sys.path is not defined yet, define it first. */
1820 if (!(sys_path && PyList_Check (sys_path)))
1821 {
1822#ifdef IS_PY3K
1823 PySys_SetPath (L"");
1824#else
1825 PySys_SetPath ("");
1826#endif
1827 sys_path = PySys_GetObject ("path");
1828 }
256458bc 1829 if (sys_path && PyList_Check (sys_path))
b9516fa1
YPK
1830 {
1831 PyObject *pythondir;
1832 int err;
1833
1834 pythondir = PyString_FromString (gdb_pythondir);
1835 if (pythondir == NULL)
1836 goto fail;
1837
1838 err = PyList_Insert (sys_path, 0, pythondir);
ac475191 1839 Py_DECREF (pythondir);
b9516fa1
YPK
1840 if (err)
1841 goto fail;
b9516fa1
YPK
1842 }
1843 else
9a27f2c6 1844 goto fail;
b9516fa1
YPK
1845
1846 /* Import the gdb module to finish the initialization, and
1847 add it to __main__ for convenience. */
1848 m = PyImport_AddModule ("__main__");
1849 if (m == NULL)
1850 goto fail;
1851
1852 gdb_python_module = PyImport_ImportModule ("gdb");
1853 if (gdb_python_module == NULL)
1854 {
1855 gdbpy_print_stack ();
41245087
DE
1856 /* This is passed in one call to warning so that blank lines aren't
1857 inserted between each line of text. */
1858 warning (_("\n"
1859 "Could not load the Python gdb module from `%s'.\n"
1860 "Limited Python support is available from the _gdb module.\n"
1861 "Suggest passing --data-directory=/path/to/gdb/data-directory.\n"),
b9516fa1 1862 gdb_pythondir);
b9516fa1
YPK
1863 do_cleanups (cleanup);
1864 return;
1865 }
1866
aa36459a 1867 if (gdb_pymodule_addobject (m, "gdb", gdb_python_module) < 0)
b9516fa1
YPK
1868 goto fail;
1869
1870 /* Keep the reference to gdb_python_module since it is in a global
1871 variable. */
1872
1873 do_cleanups (cleanup);
1874 return;
1875
1876 fail:
1877 gdbpy_print_stack ();
1878 warning (_("internal error: Unhandled Python exception"));
9dea9163
DE
1879 do_cleanups (cleanup);
1880}
ca30a762 1881
6dddc817
DE
1882/* Return non-zero if Python has successfully initialized.
1883 This is the extension_languages_ops.initialized "method". */
1884
1885static int
1886gdbpy_initialized (const struct extension_language_defn *extlang)
1887{
1888 return gdb_python_initialized;
1889}
1890
d57a3c85 1891#endif /* HAVE_PYTHON */
12453b93
TJB
1892
1893\f
1894
9dea9163 1895#ifdef HAVE_PYTHON
12453b93
TJB
1896
1897static PyMethodDef GdbMethods[] =
1898{
1899 { "history", gdbpy_history, METH_VARARGS,
1900 "Get a value from history" },
bc9f0842 1901 { "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
751e7549
PM
1902 "execute (command [, from_tty] [, to_string]) -> [String]\n\
1903Evaluate command, a string, as a gdb CLI command. Optionally returns\n\
1904a Python String containing the output of the command if to_string is\n\
1905set to True." },
8f500870 1906 { "parameter", gdbpy_parameter, METH_VARARGS,
12453b93
TJB
1907 "Return a gdb parameter's value" },
1908
adc36818
PM
1909 { "breakpoints", gdbpy_breakpoints, METH_NOARGS,
1910 "Return a tuple of all breakpoint objects" },
1911
b6313243
TT
1912 { "default_visualizer", gdbpy_default_visualizer, METH_VARARGS,
1913 "Find the default visualizer for a Value." },
1914
fa33c3cd
DE
1915 { "current_progspace", gdbpy_get_current_progspace, METH_NOARGS,
1916 "Return the current Progspace." },
1917 { "progspaces", gdbpy_progspaces, METH_NOARGS,
1918 "Return a sequence of all progspaces." },
1919
89c73ade
TT
1920 { "current_objfile", gdbpy_get_current_objfile, METH_NOARGS,
1921 "Return the current Objfile being loaded, or None." },
1922 { "objfiles", gdbpy_objfiles, METH_NOARGS,
1923 "Return a sequence of all loaded objfiles." },
1924
d8e22779
TT
1925 { "newest_frame", gdbpy_newest_frame, METH_NOARGS,
1926 "newest_frame () -> gdb.Frame.\n\
1927Return the newest frame object." },
f8f6f20b
TJB
1928 { "selected_frame", gdbpy_selected_frame, METH_NOARGS,
1929 "selected_frame () -> gdb.Frame.\n\
1930Return the selected frame object." },
1931 { "frame_stop_reason_string", gdbpy_frame_stop_reason_string, METH_VARARGS,
1932 "stop_reason_string (Integer) -> String.\n\
1933Return a string explaining unwind stop reason." },
1934
2c74e833
TT
1935 { "lookup_type", (PyCFunction) gdbpy_lookup_type,
1936 METH_VARARGS | METH_KEYWORDS,
1937 "lookup_type (name [, block]) -> type\n\
1938Return a Type corresponding to the given name." },
f3e9a817
PM
1939 { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
1940 METH_VARARGS | METH_KEYWORDS,
1941 "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
1942Return a tuple with the symbol corresponding to the given name (or None) and\n\
1943a boolean indicating if name is a field of the current implied argument\n\
1944`this' (when the current language is object-oriented)." },
6e6fbe60
DE
1945 { "lookup_global_symbol", (PyCFunction) gdbpy_lookup_global_symbol,
1946 METH_VARARGS | METH_KEYWORDS,
1947 "lookup_global_symbol (name [, domain]) -> symbol\n\
1948Return the symbol corresponding to the given name (or None)." },
f3e9a817
PM
1949 { "block_for_pc", gdbpy_block_for_pc, METH_VARARGS,
1950 "Return the block containing the given pc value, or None." },
cb2e07a6
PM
1951 { "solib_name", gdbpy_solib_name, METH_VARARGS,
1952 "solib_name (Long) -> String.\n\
1953Return the name of the shared library holding a given address, or None." },
1954 { "decode_line", gdbpy_decode_line, METH_VARARGS,
1955 "decode_line (String) -> Tuple. Decode a string argument the way\n\
1956that 'break' or 'edit' does. Return a tuple containing two elements.\n\
1957The first element contains any unparsed portion of the String parameter\n\
1958(or None if the string was fully parsed). The second element contains\n\
1959a tuple that contains all the locations that match, represented as\n\
1960gdb.Symtab_and_line objects (or None)."},
57a1d736
TT
1961 { "parse_and_eval", gdbpy_parse_and_eval, METH_VARARGS,
1962 "parse_and_eval (String) -> Value.\n\
1963Parse String as an expression, evaluate it, and return the result as a Value."
1964 },
7efc75aa
SCR
1965 { "find_pc_line", gdbpy_find_pc_line, METH_VARARGS,
1966 "find_pc_line (pc) -> Symtab_and_line.\n\
1967Return the gdb.Symtab_and_line object corresponding to the pc value." },
57a1d736 1968
ca5c20b6
PM
1969 { "post_event", gdbpy_post_event, METH_VARARGS,
1970 "Post an event into gdb's event loop." },
1971
f870a310
TT
1972 { "target_charset", gdbpy_target_charset, METH_NOARGS,
1973 "target_charset () -> string.\n\
1974Return the name of the current target charset." },
1975 { "target_wide_charset", gdbpy_target_wide_charset, METH_NOARGS,
1976 "target_wide_charset () -> string.\n\
1977Return the name of the current target wide charset." },
1978
07ca107c
DE
1979 { "string_to_argv", gdbpy_string_to_argv, METH_VARARGS,
1980 "string_to_argv (String) -> Array.\n\
1981Parse String and return an argv-like array.\n\
1982Arguments are separate by spaces and may be quoted."
1983 },
99c3dc11 1984 { "write", (PyCFunction)gdbpy_write, METH_VARARGS | METH_KEYWORDS,
12453b93 1985 "Write a string using gdb's filtered stream." },
99c3dc11 1986 { "flush", (PyCFunction)gdbpy_flush, METH_VARARGS | METH_KEYWORDS,
12453b93 1987 "Flush gdb's filtered stdout stream." },
595939de
PM
1988 { "selected_thread", gdbpy_selected_thread, METH_NOARGS,
1989 "selected_thread () -> gdb.InferiorThread.\n\
1990Return the selected thread object." },
2aa48337
KP
1991 { "selected_inferior", gdbpy_selected_inferior, METH_NOARGS,
1992 "selected_inferior () -> gdb.Inferior.\n\
1993Return the selected inferior object." },
595939de
PM
1994 { "inferiors", gdbpy_inferiors, METH_NOARGS,
1995 "inferiors () -> (gdb.Inferior, ...).\n\
1996Return a tuple containing all inferiors." },
12453b93
TJB
1997 {NULL, NULL, 0, NULL}
1998};
1999
9a27f2c6
PK
2000#ifdef IS_PY3K
2001static struct PyModuleDef GdbModuleDef =
2002{
2003 PyModuleDef_HEAD_INIT,
2004 "_gdb",
2005 NULL,
256458bc 2006 -1,
9a27f2c6
PK
2007 GdbMethods,
2008 NULL,
2009 NULL,
2010 NULL,
2011 NULL
2012};
2013#endif
12453b93 2014#endif /* HAVE_PYTHON */
This page took 1.036835 seconds and 4 git commands to generate.