1 /* General python/gdb code
3 Copyright (C) 2008-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
21 #include "arch-utils.h"
24 #include "cli/cli-script.h"
26 #include "progspace.h"
30 #include "exceptions.h"
31 #include "event-loop.h"
33 #include "readline/tilde.h"
35 #include "extension-priv.h"
36 #include "cli/cli-utils.h"
39 /* Declared constants and enum for python stack printing. */
40 static const char python_excp_none[] = "none";
41 static const char python_excp_full[] = "full";
42 static const char python_excp_message[] = "message";
44 /* "set python print-stack" choices. */
45 static const char *const python_excp_enums[] =
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
57 static const char *gdbpy_should_print_stack = python_excp_message;
60 /* Forward decls, these are defined later. */
61 static const struct extension_language_script_ops python_extension_script_ops;
62 static const struct extension_language_ops python_extension_ops;
65 /* The main struct describing GDB's interface to the Python
66 extension language. */
67 const struct extension_language_defn extension_language_python =
79 &python_extension_script_ops,
89 #include "libiberty.h"
90 #include "cli/cli-decode.h"
94 #include "python-internal.h"
99 #include "gdbthread.h"
101 #include "event-top.h"
103 /* True if Python has been successfully initialized, false
106 int gdb_python_initialized;
108 static PyMethodDef GdbMethods[];
111 static struct PyModuleDef GdbModuleDef;
114 PyObject *gdb_module;
115 PyObject *gdb_python_module;
117 /* Some string constants we may wish to use. */
118 PyObject *gdbpy_to_string_cst;
119 PyObject *gdbpy_children_cst;
120 PyObject *gdbpy_display_hint_cst;
121 PyObject *gdbpy_doc_cst;
122 PyObject *gdbpy_enabled_cst;
123 PyObject *gdbpy_value_cst;
125 /* The GdbError exception. */
126 PyObject *gdbpy_gdberror_exc;
128 /* The `gdb.error' base class. */
129 PyObject *gdbpy_gdb_error;
131 /* The `gdb.MemoryError' exception. */
132 PyObject *gdbpy_gdb_memory_error;
134 static script_sourcer_func gdbpy_source_script;
135 static objfile_script_sourcer_func gdbpy_source_objfile_script;
136 static void gdbpy_finish_initialization
137 (const struct extension_language_defn *);
138 static int gdbpy_initialized (const struct extension_language_defn *);
139 static void gdbpy_eval_from_control_command
140 (const struct extension_language_defn *, struct command_line *cmd);
141 static void gdbpy_start_type_printers (const struct extension_language_defn *,
142 struct ext_lang_type_printers *);
143 static enum ext_lang_rc gdbpy_apply_type_printers
144 (const struct extension_language_defn *,
145 const struct ext_lang_type_printers *, struct type *, char **);
146 static void gdbpy_free_type_printers (const struct extension_language_defn *,
147 struct ext_lang_type_printers *);
148 static void gdbpy_clear_quit_flag (const struct extension_language_defn *);
149 static void gdbpy_set_quit_flag (const struct extension_language_defn *);
150 static int gdbpy_check_quit_flag (const struct extension_language_defn *);
151 static enum ext_lang_rc gdbpy_before_prompt_hook
152 (const struct extension_language_defn *, const char *current_gdb_prompt);
154 /* The interface between gdb proper and loading of python scripts. */
156 static const struct extension_language_script_ops python_extension_script_ops =
159 gdbpy_source_objfile_script,
160 gdbpy_auto_load_enabled
163 /* The interface between gdb proper and python extensions. */
165 static const struct extension_language_ops python_extension_ops =
167 gdbpy_finish_initialization,
170 gdbpy_eval_from_control_command,
172 gdbpy_start_type_printers,
173 gdbpy_apply_type_printers,
174 gdbpy_free_type_printers,
176 gdbpy_apply_val_pretty_printer,
178 gdbpy_apply_frame_filter,
180 gdbpy_preserve_values,
182 gdbpy_breakpoint_has_cond,
183 gdbpy_breakpoint_cond_says_stop,
185 gdbpy_clear_quit_flag,
187 gdbpy_check_quit_flag,
189 gdbpy_before_prompt_hook
192 /* Architecture and language to be used in callbacks from
193 the Python interpreter. */
194 struct gdbarch *python_gdbarch;
195 const struct language_defn *python_language;
197 /* Restore global language and architecture and Python GIL state
198 when leaving the Python interpreter. */
202 struct active_ext_lang_state *previous_active;
203 PyGILState_STATE state;
204 struct gdbarch *gdbarch;
205 const struct language_defn *language;
206 PyObject *error_type, *error_value, *error_traceback;
210 restore_python_env (void *p)
212 struct python_env *env = (struct python_env *)p;
214 /* Leftover Python error is forbidden by Python Exception Handling. */
215 if (PyErr_Occurred ())
217 /* This order is similar to the one calling error afterwards. */
218 gdbpy_print_stack ();
219 warning (_("internal error: Unhandled Python exception"));
222 PyErr_Restore (env->error_type, env->error_value, env->error_traceback);
224 PyGILState_Release (env->state);
225 python_gdbarch = env->gdbarch;
226 python_language = env->language;
228 restore_active_ext_lang (env->previous_active);
233 /* Called before entering the Python interpreter to install the
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
240 ensure_python_env (struct gdbarch *gdbarch,
241 const struct language_defn *language)
243 struct python_env *env = xmalloc (sizeof *env);
245 /* We should not ever enter Python unless initialized. */
246 if (!gdb_python_initialized)
247 error (_("Python not initialized"));
249 env->previous_active = set_active_ext_lang (&extension_language_python);
251 env->state = PyGILState_Ensure ();
252 env->gdbarch = python_gdbarch;
253 env->language = python_language;
255 python_gdbarch = gdbarch;
256 python_language = language;
258 /* Save it and ensure ! PyErr_Occurred () afterwards. */
259 PyErr_Fetch (&env->error_type, &env->error_value, &env->error_traceback);
261 return make_cleanup (restore_python_env, env);
264 /* Clear the quit flag. */
267 gdbpy_clear_quit_flag (const struct extension_language_defn *extlang)
269 /* This clears the flag as a side effect. */
270 PyOS_InterruptOccurred ();
273 /* Set the quit flag. */
276 gdbpy_set_quit_flag (const struct extension_language_defn *extlang)
278 PyErr_SetInterrupt ();
281 /* Return true if the quit flag has been set, false otherwise. */
284 gdbpy_check_quit_flag (const struct extension_language_defn *extlang)
286 return PyOS_InterruptOccurred ();
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. */
294 eval_python_command (const char *command)
298 m = PyImport_AddModule ("__main__");
302 d = PyModule_GetDict (m);
305 v = PyRun_StringFlags (command, Py_single_input, d, d, NULL);
318 /* Implementation of the gdb "python-interactive" command. */
321 python_interactive_command (char *arg, int from_tty)
323 struct cleanup *cleanup;
326 cleanup = make_cleanup_restore_integer (&interpreter_async);
327 interpreter_async = 0;
329 arg = skip_spaces (arg);
331 ensure_python_env (get_current_arch (), current_language);
335 int len = strlen (arg);
336 char *script = xmalloc (len + 2);
338 strcpy (script, arg);
340 script[len + 1] = '\0';
341 err = eval_python_command (script);
346 err = PyRun_InteractiveLoop (instream, "<stdin>");
352 gdbpy_print_stack ();
353 error (_("Error while executing Python code."));
356 do_cleanups (cleanup);
359 /* A wrapper around PyRun_SimpleFile. FILE is the Python script to run
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
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. */
376 python_run_simple_file (FILE *file, const char *filename)
380 PyRun_SimpleFile (file, filename);
385 PyObject *python_file;
386 struct cleanup *cleanup;
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");
395 do_cleanups (cleanup);
396 gdbpy_print_stack ();
397 error (_("Error while opening file: %s"), full_path);
400 make_cleanup_py_decref (python_file);
401 PyRun_SimpleFile (PyFile_AsFile (python_file), filename);
402 do_cleanups (cleanup);
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. */
413 compute_python_string (struct command_line *l)
415 struct command_line *iter;
420 for (iter = l; iter; iter = iter->next)
421 size += strlen (iter->line) + 1;
423 script = xmalloc (size + 1);
425 for (iter = l; iter; iter = iter->next)
427 int len = strlen (iter->line);
429 strcpy (&script[here], iter->line);
431 script[here++] = '\n';
437 /* Take a command line structure representing a 'python' command, and
438 evaluate its body using the Python interpreter. */
441 gdbpy_eval_from_control_command (const struct extension_language_defn *extlang,
442 struct command_line *cmd)
446 struct cleanup *cleanup;
448 if (cmd->body_count != 1)
449 error (_("Invalid \"python\" block structure."));
451 cleanup = ensure_python_env (get_current_arch (), current_language);
453 script = compute_python_string (cmd->body_list[0]);
454 ret = PyRun_SimpleString (script);
457 error (_("Error while executing Python code."));
459 do_cleanups (cleanup);
462 /* Implementation of the gdb "python" command. */
465 python_command (char *arg, int from_tty)
467 struct cleanup *cleanup;
469 cleanup = ensure_python_env (get_current_arch (), current_language);
471 make_cleanup_restore_integer (&interpreter_async);
472 interpreter_async = 0;
474 arg = skip_spaces (arg);
477 if (PyRun_SimpleString (arg))
478 error (_("Error while executing Python code."));
482 struct command_line *l = get_command_line (python_control, "");
484 make_cleanup_free_command_lines (&l);
485 execute_control_command_untraced (l);
488 do_cleanups (cleanup);
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
497 gdbpy_parameter_value (enum var_types type, void *var)
502 case var_string_noescape:
503 case var_optional_filename:
507 char *str = * (char **) var;
511 return PyString_Decode (str, strlen (str), host_charset (), NULL);
522 case var_auto_boolean:
524 enum auto_boolean ab = * (enum auto_boolean *) var;
526 if (ab == AUTO_BOOLEAN_TRUE)
528 else if (ab == AUTO_BOOLEAN_FALSE)
535 if ((* (int *) var) == INT_MAX)
539 return PyLong_FromLong (* (int *) var);
543 unsigned int val = * (unsigned int *) var;
547 return PyLong_FromUnsignedLong (val);
551 return PyErr_Format (PyExc_RuntimeError,
552 _("Programmer error: unhandled type."));
555 /* A Python function which returns a gdb parameter's value as a Python
559 gdbpy_parameter (PyObject *self, PyObject *args)
561 struct cmd_list_element *alias, *prefix, *cmd;
565 volatile struct gdb_exception except;
567 if (! PyArg_ParseTuple (args, "s", &arg))
570 newarg = concat ("show ", arg, (char *) NULL);
572 TRY_CATCH (except, RETURN_MASK_ALL)
574 found = lookup_cmd_composition (newarg, &alias, &prefix, &cmd);
577 GDB_PY_HANDLE_EXCEPTION (except);
579 return PyErr_Format (PyExc_RuntimeError,
580 _("Could not find parameter `%s'."), arg);
583 return PyErr_Format (PyExc_RuntimeError,
584 _("`%s' is not a parameter."), arg);
585 return gdbpy_parameter_value (cmd->var_type, cmd->var);
588 /* Wrapper for target_charset. */
591 gdbpy_target_charset (PyObject *self, PyObject *args)
593 const char *cset = target_charset (python_gdbarch);
595 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
598 /* Wrapper for target_wide_charset. */
601 gdbpy_target_wide_charset (PyObject *self, PyObject *args)
603 const char *cset = target_wide_charset (python_gdbarch);
605 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
608 /* A Python function which evaluates a string using the gdb CLI. */
611 execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
614 PyObject *from_tty_obj = NULL, *to_string_obj = NULL;
615 int from_tty, to_string;
616 volatile struct gdb_exception except;
617 static char *keywords[] = {"command", "from_tty", "to_string", NULL };
620 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|O!O!", keywords, &arg,
621 &PyBool_Type, &from_tty_obj,
622 &PyBool_Type, &to_string_obj))
628 int cmp = PyObject_IsTrue (from_tty_obj);
637 int cmp = PyObject_IsTrue (to_string_obj);
643 TRY_CATCH (except, RETURN_MASK_ALL)
645 /* Copy the argument text in case the command modifies it. */
646 char *copy = xstrdup (arg);
647 struct cleanup *cleanup = make_cleanup (xfree, copy);
649 make_cleanup_restore_integer (&interpreter_async);
650 interpreter_async = 0;
652 prevent_dont_repeat ();
654 result = execute_command_to_string (copy, from_tty);
658 execute_command (copy, from_tty);
661 do_cleanups (cleanup);
663 GDB_PY_HANDLE_EXCEPTION (except);
665 /* Do any commands attached to breakpoint we stopped at. */
666 bpstat_do_actions ();
670 PyObject *r = PyString_FromString (result);
677 /* Implementation of gdb.solib_name (Long) -> String.
678 Returns the name of the shared library holding a given address, or None. */
681 gdbpy_solib_name (PyObject *self, PyObject *args)
687 if (!PyArg_ParseTuple (args, GDB_PY_LL_ARG, &pc))
690 soname = solib_name_from_address (current_program_space, pc);
692 str_obj = PyString_Decode (soname, strlen (soname), host_charset (), NULL);
702 /* A Python function which is a wrapper for decode_line_1. */
705 gdbpy_decode_line (PyObject *self, PyObject *args)
707 struct symtabs_and_lines sals = { NULL, 0 }; /* Initialize to
709 struct symtab_and_line sal;
710 const char *arg = NULL;
711 char *copy_to_free = NULL, *copy = NULL;
712 struct cleanup *cleanups;
713 PyObject *result = NULL;
714 PyObject *return_result = NULL;
715 PyObject *unparsed = NULL;
716 volatile struct gdb_exception except;
718 if (! PyArg_ParseTuple (args, "|s", &arg))
721 cleanups = make_cleanup (null_cleanup, NULL);
724 TRY_CATCH (except, RETURN_MASK_ALL)
728 copy = xstrdup (arg);
730 sals = decode_line_1 (©, 0, 0, 0);
734 set_default_source_symtab_and_line ();
735 sal = get_current_source_symtab_and_line ();
741 if (sals.sals != NULL && sals.sals != &sal)
743 make_cleanup (xfree, copy_to_free);
744 make_cleanup (xfree, sals.sals);
747 if (except.reason < 0)
749 do_cleanups (cleanups);
750 /* We know this will always throw. */
751 gdbpy_convert_exception (except);
759 result = PyTuple_New (sals.nelts);
762 for (i = 0; i < sals.nelts; ++i)
766 obj = symtab_and_line_to_sal_object (sals.sals[i]);
773 PyTuple_SetItem (result, i, obj);
782 return_result = PyTuple_New (2);
789 if (copy && strlen (copy) > 0)
791 unparsed = PyString_FromString (copy);
792 if (unparsed == NULL)
795 Py_DECREF (return_result);
796 return_result = NULL;
806 PyTuple_SetItem (return_result, 0, unparsed);
807 PyTuple_SetItem (return_result, 1, result);
810 do_cleanups (cleanups);
812 return return_result;
815 /* Parse a string and evaluate it as an expression. */
817 gdbpy_parse_and_eval (PyObject *self, PyObject *args)
819 const char *expr_str;
820 struct value *result = NULL;
821 volatile struct gdb_exception except;
823 if (!PyArg_ParseTuple (args, "s", &expr_str))
826 TRY_CATCH (except, RETURN_MASK_ALL)
828 result = parse_and_eval (expr_str);
830 GDB_PY_HANDLE_EXCEPTION (except);
832 return value_to_value_object (result);
835 /* Implementation of gdb.find_pc_line function.
836 Returns the gdb.Symtab_and_line object corresponding to a PC value. */
839 gdbpy_find_pc_line (PyObject *self, PyObject *args)
841 gdb_py_ulongest pc_llu;
842 volatile struct gdb_exception except;
843 PyObject *result = NULL; /* init for gcc -Wall */
845 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu))
848 TRY_CATCH (except, RETURN_MASK_ALL)
850 struct symtab_and_line sal;
853 pc = (CORE_ADDR) pc_llu;
854 sal = find_pc_line (pc, 0);
855 result = symtab_and_line_to_sal_object (sal);
857 GDB_PY_HANDLE_EXCEPTION (except);
862 /* Read a file as Python code.
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.
865 This does not throw any errors. If an exception occurs python will print
866 the traceback and clear the error indicator. */
869 gdbpy_source_script (const struct extension_language_defn *extlang,
870 FILE *file, const char *filename)
872 struct cleanup *cleanup;
874 cleanup = ensure_python_env (get_current_arch (), current_language);
875 python_run_simple_file (file, filename);
876 do_cleanups (cleanup);
881 /* Posting and handling events. */
883 /* A single event. */
886 /* The Python event. This is just a callable object. */
888 /* The next event. */
889 struct gdbpy_event *next;
892 /* All pending events. */
893 static struct gdbpy_event *gdbpy_event_list;
894 /* The final link of the event list. */
895 static struct gdbpy_event **gdbpy_event_list_end;
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(). */
899 static struct serial *gdbpy_event_fds[2];
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. */
906 gdbpy_run_events (struct serial *scb, void *context)
908 struct cleanup *cleanup;
910 cleanup = ensure_python_env (get_current_arch (), current_language);
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
915 while (serial_readchar (gdbpy_event_fds[0], 0) >= 0)
918 while (gdbpy_event_list)
920 PyObject *call_result;
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;
930 call_result = PyObject_CallObject (item->event, NULL);
931 if (call_result == NULL)
934 Py_XDECREF (call_result);
935 Py_DECREF (item->event);
939 do_cleanups (cleanup);
942 /* Submit an event to the gdb thread. */
944 gdbpy_post_event (PyObject *self, PyObject *args)
946 struct gdbpy_event *event;
950 if (!PyArg_ParseTuple (args, "O", &func))
953 if (!PyCallable_Check (func))
955 PyErr_SetString (PyExc_RuntimeError,
956 _("Posted event is not callable"));
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;
966 event = XNEW (struct gdbpy_event);
969 *gdbpy_event_list_end = event;
970 gdbpy_event_list_end = &event->next;
972 /* Wake up gdb when needed. */
975 char c = 'q'; /* Anything. */
977 if (serial_write (gdbpy_event_fds[1], &c, 1))
978 return PyErr_SetFromErrno (PyExc_IOError);
984 /* Initialize the Python event handler. */
986 gdbpy_initialize_events (void)
988 if (serial_pipe (gdbpy_event_fds) == 0)
990 gdbpy_event_list_end = &gdbpy_event_list;
991 serial_async (gdbpy_event_fds[0], gdbpy_run_events, NULL);
999 /* This is the extension_language_ops.before_prompt "method". */
1001 static enum ext_lang_rc
1002 gdbpy_before_prompt_hook (const struct extension_language_defn *extlang,
1003 const char *current_gdb_prompt)
1005 struct cleanup *cleanup;
1006 char *prompt = NULL;
1008 if (!gdb_python_initialized)
1009 return EXT_LANG_RC_NOP;
1011 cleanup = ensure_python_env (get_current_arch (), current_language);
1013 if (gdb_python_module
1014 && PyObject_HasAttrString (gdb_python_module, "prompt_hook"))
1018 hook = PyObject_GetAttrString (gdb_python_module, "prompt_hook");
1022 make_cleanup_py_decref (hook);
1024 if (PyCallable_Check (hook))
1027 PyObject *current_prompt;
1029 current_prompt = PyString_FromString (current_gdb_prompt);
1030 if (current_prompt == NULL)
1033 result = PyObject_CallFunctionObjArgs (hook, current_prompt, NULL);
1035 Py_DECREF (current_prompt);
1040 make_cleanup_py_decref (result);
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))
1047 PyErr_Format (PyExc_RuntimeError,
1048 _("Return from prompt_hook must " \
1049 "be either a Python string, or None"));
1053 if (result != Py_None)
1055 prompt = python_string_to_host_string (result);
1060 make_cleanup (xfree, prompt);
1065 /* If a prompt has been set, PROMPT will not be NULL. If it is
1066 NULL, do not set the prompt. */
1068 set_prompt (prompt);
1070 do_cleanups (cleanup);
1071 return prompt != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_NOP;
1074 gdbpy_print_stack ();
1075 do_cleanups (cleanup);
1076 return EXT_LANG_RC_ERROR;
1083 /* A python function to write a single string using gdb's filtered
1084 output stream . The optional keyword STREAM can be used to write
1085 to a particular stream. The default stream is to gdb_stdout. */
1088 gdbpy_write (PyObject *self, PyObject *args, PyObject *kw)
1091 static char *keywords[] = {"text", "stream", NULL };
1092 int stream_type = 0;
1093 volatile struct gdb_exception except;
1095 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &arg,
1099 TRY_CATCH (except, RETURN_MASK_ALL)
1101 switch (stream_type)
1105 fprintf_filtered (gdb_stderr, "%s", arg);
1110 fprintf_filtered (gdb_stdlog, "%s", arg);
1114 fprintf_filtered (gdb_stdout, "%s", arg);
1117 GDB_PY_HANDLE_EXCEPTION (except);
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
1127 gdbpy_flush (PyObject *self, PyObject *args, PyObject *kw)
1129 static char *keywords[] = {"stream", NULL };
1130 int stream_type = 0;
1132 if (! PyArg_ParseTupleAndKeywords (args, kw, "|i", keywords,
1136 switch (stream_type)
1140 gdb_flush (gdb_stderr);
1145 gdb_flush (gdb_stdlog);
1149 gdb_flush (gdb_stdout);
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
1160 gdbpy_print_stack (void)
1162 volatile struct gdb_exception except;
1164 /* Print "none", just clear exception. */
1165 if (gdbpy_should_print_stack == python_excp_none)
1169 /* Print "full" message and backtrace. */
1170 else if (gdbpy_should_print_stack == python_excp_full)
1173 /* PyErr_Print doesn't necessarily end output with a newline.
1174 This works because Python's stdout/stderr is fed through
1176 TRY_CATCH (except, RETURN_MASK_ALL)
1181 /* Print "message", just error print message. */
1184 PyObject *ptype, *pvalue, *ptraceback;
1185 char *msg = NULL, *type = NULL;
1187 PyErr_Fetch (&ptype, &pvalue, &ptraceback);
1189 /* Fetch the error message contained within ptype, pvalue. */
1190 msg = gdbpy_exception_to_string (ptype, pvalue);
1191 type = gdbpy_obj_to_string (ptype);
1193 TRY_CATCH (except, RETURN_MASK_ALL)
1197 /* An error occurred computing the string representation of the
1199 fprintf_filtered (gdb_stderr,
1200 _("Error occurred computing Python error" \
1204 fprintf_filtered (gdb_stderr, "Python Exception %s %s: \n",
1209 Py_XDECREF (pvalue);
1210 Py_XDECREF (ptraceback);
1217 /* Return the current Progspace.
1218 There always is one. */
1221 gdbpy_get_current_progspace (PyObject *unused1, PyObject *unused2)
1225 result = pspace_to_pspace_object (current_program_space);
1231 /* Return a sequence holding all the Progspaces. */
1234 gdbpy_progspaces (PyObject *unused1, PyObject *unused2)
1236 struct program_space *ps;
1239 list = PyList_New (0);
1245 PyObject *item = pspace_to_pspace_object (ps);
1247 if (!item || PyList_Append (list, item) == -1)
1259 /* The "current" objfile. This is set when gdb detects that a new
1260 objfile has been loaded. It is only set for the duration of a call to
1261 gdbpy_source_objfile_script; it is NULL at other times. */
1262 static struct objfile *gdbpy_current_objfile;
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
1266 occurs python will print the traceback and clear the error indicator.
1267 This is the extension_language_script_ops.objfile_script_sourcer
1271 gdbpy_source_objfile_script (const struct extension_language_defn *extlang,
1272 struct objfile *objfile, FILE *file,
1273 const char *filename)
1275 struct cleanup *cleanups;
1277 if (!gdb_python_initialized)
1280 cleanups = ensure_python_env (get_objfile_arch (objfile), current_language);
1281 gdbpy_current_objfile = objfile;
1283 python_run_simple_file (file, filename);
1285 do_cleanups (cleanups);
1286 gdbpy_current_objfile = NULL;
1289 /* Return the current Objfile, or None if there isn't one. */
1292 gdbpy_get_current_objfile (PyObject *unused1, PyObject *unused2)
1296 if (! gdbpy_current_objfile)
1299 result = objfile_to_objfile_object (gdbpy_current_objfile);
1305 /* Return a sequence holding all the Objfiles. */
1308 gdbpy_objfiles (PyObject *unused1, PyObject *unused2)
1310 struct objfile *objf;
1313 list = PyList_New (0);
1319 PyObject *item = objfile_to_objfile_object (objf);
1321 if (!item || PyList_Append (list, item) == -1)
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". */
1337 gdbpy_start_type_printers (const struct extension_language_defn *extlang,
1338 struct ext_lang_type_printers *ext_printers)
1340 struct cleanup *cleanups;
1341 PyObject *type_module, *func = NULL, *printers_obj = NULL;
1343 if (!gdb_python_initialized)
1346 cleanups = ensure_python_env (get_current_arch (), current_language);
1348 type_module = PyImport_ImportModule ("gdb.types");
1349 if (type_module == NULL)
1351 gdbpy_print_stack ();
1355 func = PyObject_GetAttrString (type_module, "get_type_recognizers");
1358 gdbpy_print_stack ();
1362 printers_obj = PyObject_CallFunctionObjArgs (func, (char *) NULL);
1363 if (printers_obj == NULL)
1364 gdbpy_print_stack ();
1366 ext_printers->py_type_printers = printers_obj;
1369 Py_XDECREF (type_module);
1371 do_cleanups (cleanups);
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". */
1381 static enum ext_lang_rc
1382 gdbpy_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)
1386 struct cleanup *cleanups;
1387 PyObject *type_obj, *type_module = NULL, *func = NULL;
1388 PyObject *result_obj = NULL;
1389 PyObject *printers_obj = ext_printers->py_type_printers;
1390 char *result = NULL;
1392 if (printers_obj == NULL)
1393 return EXT_LANG_RC_NOP;
1395 if (!gdb_python_initialized)
1396 return EXT_LANG_RC_NOP;
1398 cleanups = ensure_python_env (get_current_arch (), current_language);
1400 type_obj = type_to_type_object (type);
1401 if (type_obj == NULL)
1403 gdbpy_print_stack ();
1407 type_module = PyImport_ImportModule ("gdb.types");
1408 if (type_module == NULL)
1410 gdbpy_print_stack ();
1414 func = PyObject_GetAttrString (type_module, "apply_type_recognizers");
1417 gdbpy_print_stack ();
1421 result_obj = PyObject_CallFunctionObjArgs (func, printers_obj,
1422 type_obj, (char *) NULL);
1423 if (result_obj == NULL)
1425 gdbpy_print_stack ();
1429 if (result_obj != Py_None)
1431 result = python_string_to_host_string (result_obj);
1433 gdbpy_print_stack ();
1437 Py_XDECREF (type_obj);
1438 Py_XDECREF (type_module);
1440 Py_XDECREF (result_obj);
1441 do_cleanups (cleanups);
1443 *prettied_type = result;
1444 return result != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_ERROR;
1447 /* Free the result of start_type_printers.
1448 This is the extension_language_ops.free_type_printers "method". */
1451 gdbpy_free_type_printers (const struct extension_language_defn *extlang,
1452 struct ext_lang_type_printers *ext_printers)
1454 struct cleanup *cleanups;
1455 PyObject *printers = ext_printers->py_type_printers;
1457 if (printers == NULL)
1460 if (!gdb_python_initialized)
1463 cleanups = ensure_python_env (get_current_arch (), current_language);
1464 Py_DECREF (printers);
1465 do_cleanups (cleanups);
1468 #else /* HAVE_PYTHON */
1470 /* Dummy implementation of the gdb "python-interactive" and "python"
1474 python_interactive_command (char *arg, int from_tty)
1476 arg = skip_spaces (arg);
1478 error (_("Python scripting is not supported in this copy of GDB."));
1481 struct command_line *l = get_command_line (python_control, "");
1482 struct cleanup *cleanups = make_cleanup_free_command_lines (&l);
1484 execute_control_command_untraced (l);
1485 do_cleanups (cleanups);
1490 python_command (char *arg, int from_tty)
1492 python_interactive_command (arg, from_tty);
1495 #endif /* HAVE_PYTHON */
1499 /* Lists for 'set python' commands. */
1501 static struct cmd_list_element *user_set_python_list;
1502 static struct cmd_list_element *user_show_python_list;
1504 /* Function for use by 'set python' prefix command. */
1507 user_set_python (char *args, int from_tty)
1509 help_list (user_set_python_list, "set python ", all_commands,
1513 /* Function for use by 'show python' prefix command. */
1516 user_show_python (char *args, int from_tty)
1518 cmd_show_list (user_show_python_list, from_tty, "");
1521 /* Initialize the Python code. */
1525 /* This is installed as a final cleanup and cleans up the
1526 interpreter. This lets Python's 'atexit' work. */
1529 finalize_python (void *ignore)
1531 struct active_ext_lang_state *previous_active;
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. */
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);
1543 (void) PyGILState_Ensure ();
1544 python_gdbarch = target_gdbarch ();
1545 python_language = current_language;
1549 restore_active_ext_lang (previous_active);
1553 /* Provide a prototype to silence -Wmissing-prototypes. */
1554 extern initialize_file_ftype _initialize_python;
1557 _initialize_python (void)
1562 size_t progsize, count;
1564 wchar_t *progname_copy;
1567 add_com ("python-interactive", class_obscure,
1568 python_interactive_command,
1571 Start an interactive Python prompt.\n\
1573 To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\
1576 Alternatively, a single-line Python command can be given as an\n\
1577 argument, and if the command is an expression, the result will be\n\
1578 printed. For example:\n\
1580 (gdb) python-interactive 2 + 3\n\
1583 #else /* HAVE_PYTHON */
1585 Start a Python interactive prompt.\n\
1587 Python scripting is not supported in this copy of GDB.\n\
1588 This command is only a placeholder.")
1589 #endif /* HAVE_PYTHON */
1591 add_com_alias ("pi", "python-interactive", class_obscure, 1);
1593 add_com ("python", class_obscure, python_command,
1596 Evaluate a Python command.\n\
1598 The command can be given as an argument, for instance:\n\
1602 If no argument is given, the following lines are read and used\n\
1603 as the Python commands. Type a line containing \"end\" to indicate\n\
1604 the end of the command.")
1605 #else /* HAVE_PYTHON */
1607 Evaluate a Python command.\n\
1609 Python scripting is not supported in this copy of GDB.\n\
1610 This command is only a placeholder.")
1611 #endif /* HAVE_PYTHON */
1613 add_com_alias ("py", "python", class_obscure, 1);
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,
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,
1626 add_setshow_enum_cmd ("print-stack", no_class, python_excp_enums,
1627 &gdbpy_should_print_stack, _("\
1628 Set mode for Python stack dump on error."), _("\
1629 Show the mode of Python stack printing on error."), _("\
1630 none == no stack or message will be printed.\n\
1631 full == a message and a stack will be printed.\n\
1632 message == an error message without a stack will be printed."),
1634 &user_set_python_list,
1635 &user_show_python_list);
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:
1643 /foo/lib/pythonX.Y/...
1644 This must be done before calling Py_Initialize. */
1645 progname = concat (ldirname (python_libdir), SLASH_STRING, "bin",
1646 SLASH_STRING, "python", NULL);
1648 oldloc = setlocale (LC_ALL, NULL);
1649 setlocale (LC_ALL, "");
1650 progsize = strlen (progname);
1651 if (progsize == (size_t) -1)
1653 fprintf (stderr, "Could not convert python path to string\n");
1656 progname_copy = PyMem_Malloc ((progsize + 1) * sizeof (wchar_t));
1659 fprintf (stderr, "out of memory\n");
1662 count = mbstowcs (progname_copy, progname, progsize + 1);
1663 if (count == (size_t) -1)
1665 fprintf (stderr, "Could not convert python path to string\n");
1668 setlocale (LC_ALL, oldloc);
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);
1675 Py_SetProgramName (progname);
1680 PyEval_InitThreads ();
1683 gdb_module = PyModule_Create (&GdbModuleDef);
1684 /* Add _gdb module to the list of known built-in modules. */
1685 _PyImport_FixupBuiltin (gdb_module, "_gdb");
1687 gdb_module = Py_InitModule ("_gdb", GdbMethods);
1689 if (gdb_module == NULL)
1692 /* The casts to (char*) are for python 2.4. */
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)
1700 /* Add stream constants. */
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)
1706 gdbpy_gdb_error = PyErr_NewException ("gdb.error", PyExc_RuntimeError, NULL);
1707 if (gdbpy_gdb_error == NULL
1708 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0)
1711 gdbpy_gdb_memory_error = PyErr_NewException ("gdb.MemoryError",
1712 gdbpy_gdb_error, NULL);
1713 if (gdbpy_gdb_memory_error == NULL
1714 || gdb_pymodule_addobject (gdb_module, "MemoryError",
1715 gdbpy_gdb_memory_error) < 0)
1718 gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL);
1719 if (gdbpy_gdberror_exc == NULL
1720 || gdb_pymodule_addobject (gdb_module, "GdbError",
1721 gdbpy_gdberror_exc) < 0)
1724 gdbpy_initialize_gdb_readline ();
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
1741 || gdbpy_initialize_linetable () < 0
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)
1758 gdbpy_to_string_cst = PyString_FromString ("to_string");
1759 if (gdbpy_to_string_cst == NULL)
1761 gdbpy_children_cst = PyString_FromString ("children");
1762 if (gdbpy_children_cst == NULL)
1764 gdbpy_display_hint_cst = PyString_FromString ("display_hint");
1765 if (gdbpy_display_hint_cst == NULL)
1767 gdbpy_doc_cst = PyString_FromString ("__doc__");
1768 if (gdbpy_doc_cst == NULL)
1770 gdbpy_enabled_cst = PyString_FromString ("enabled");
1771 if (gdbpy_enabled_cst == NULL)
1773 gdbpy_value_cst = PyString_FromString ("value");
1774 if (gdbpy_value_cst == NULL)
1777 /* Release the GIL while gdb runs. */
1778 PyThreadState_Swap (NULL);
1779 PyEval_ReleaseLock ();
1781 make_final_cleanup (finalize_python, NULL);
1783 gdb_python_initialized = 1;
1787 gdbpy_print_stack ();
1788 /* Do not set 'gdb_python_initialized'. */
1791 #endif /* HAVE_PYTHON */
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
1800 This is the extension_language_ops.finish_initialization "method". */
1803 gdbpy_finish_initialization (const struct extension_language_defn *extlang)
1806 char *gdb_pythondir;
1808 struct cleanup *cleanup;
1810 cleanup = ensure_python_env (get_current_arch (), current_language);
1812 /* Add the initial data-directory to sys.path. */
1814 gdb_pythondir = concat (gdb_datadir, SLASH_STRING, "python", NULL);
1815 make_cleanup (xfree, gdb_pythondir);
1817 sys_path = PySys_GetObject ("path");
1819 /* If sys.path is not defined yet, define it first. */
1820 if (!(sys_path && PyList_Check (sys_path)))
1823 PySys_SetPath (L"");
1827 sys_path = PySys_GetObject ("path");
1829 if (sys_path && PyList_Check (sys_path))
1831 PyObject *pythondir;
1834 pythondir = PyString_FromString (gdb_pythondir);
1835 if (pythondir == NULL)
1838 err = PyList_Insert (sys_path, 0, pythondir);
1839 Py_DECREF (pythondir);
1846 /* Import the gdb module to finish the initialization, and
1847 add it to __main__ for convenience. */
1848 m = PyImport_AddModule ("__main__");
1852 gdb_python_module = PyImport_ImportModule ("gdb");
1853 if (gdb_python_module == NULL)
1855 gdbpy_print_stack ();
1856 /* This is passed in one call to warning so that blank lines aren't
1857 inserted between each line of text. */
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"),
1863 do_cleanups (cleanup);
1867 if (gdb_pymodule_addobject (m, "gdb", gdb_python_module) < 0)
1870 /* Keep the reference to gdb_python_module since it is in a global
1873 do_cleanups (cleanup);
1877 gdbpy_print_stack ();
1878 warning (_("internal error: Unhandled Python exception"));
1879 do_cleanups (cleanup);
1882 /* Return non-zero if Python has successfully initialized.
1883 This is the extension_languages_ops.initialized "method". */
1886 gdbpy_initialized (const struct extension_language_defn *extlang)
1888 return gdb_python_initialized;
1891 #endif /* HAVE_PYTHON */
1897 static PyMethodDef GdbMethods[] =
1899 { "history", gdbpy_history, METH_VARARGS,
1900 "Get a value from history" },
1901 { "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
1902 "execute (command [, from_tty] [, to_string]) -> [String]\n\
1903 Evaluate command, a string, as a gdb CLI command. Optionally returns\n\
1904 a Python String containing the output of the command if to_string is\n\
1906 { "parameter", gdbpy_parameter, METH_VARARGS,
1907 "Return a gdb parameter's value" },
1909 { "breakpoints", gdbpy_breakpoints, METH_NOARGS,
1910 "Return a tuple of all breakpoint objects" },
1912 { "default_visualizer", gdbpy_default_visualizer, METH_VARARGS,
1913 "Find the default visualizer for a Value." },
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." },
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." },
1925 { "newest_frame", gdbpy_newest_frame, METH_NOARGS,
1926 "newest_frame () -> gdb.Frame.\n\
1927 Return the newest frame object." },
1928 { "selected_frame", gdbpy_selected_frame, METH_NOARGS,
1929 "selected_frame () -> gdb.Frame.\n\
1930 Return the selected frame object." },
1931 { "frame_stop_reason_string", gdbpy_frame_stop_reason_string, METH_VARARGS,
1932 "stop_reason_string (Integer) -> String.\n\
1933 Return a string explaining unwind stop reason." },
1935 { "lookup_type", (PyCFunction) gdbpy_lookup_type,
1936 METH_VARARGS | METH_KEYWORDS,
1937 "lookup_type (name [, block]) -> type\n\
1938 Return a Type corresponding to the given name." },
1939 { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
1940 METH_VARARGS | METH_KEYWORDS,
1941 "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
1942 Return a tuple with the symbol corresponding to the given name (or None) and\n\
1943 a boolean indicating if name is a field of the current implied argument\n\
1944 `this' (when the current language is object-oriented)." },
1945 { "lookup_global_symbol", (PyCFunction) gdbpy_lookup_global_symbol,
1946 METH_VARARGS | METH_KEYWORDS,
1947 "lookup_global_symbol (name [, domain]) -> symbol\n\
1948 Return the symbol corresponding to the given name (or None)." },
1949 { "block_for_pc", gdbpy_block_for_pc, METH_VARARGS,
1950 "Return the block containing the given pc value, or None." },
1951 { "solib_name", gdbpy_solib_name, METH_VARARGS,
1952 "solib_name (Long) -> String.\n\
1953 Return 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\
1956 that 'break' or 'edit' does. Return a tuple containing two elements.\n\
1957 The 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\
1959 a tuple that contains all the locations that match, represented as\n\
1960 gdb.Symtab_and_line objects (or None)."},
1961 { "parse_and_eval", gdbpy_parse_and_eval, METH_VARARGS,
1962 "parse_and_eval (String) -> Value.\n\
1963 Parse String as an expression, evaluate it, and return the result as a Value."
1965 { "find_pc_line", gdbpy_find_pc_line, METH_VARARGS,
1966 "find_pc_line (pc) -> Symtab_and_line.\n\
1967 Return the gdb.Symtab_and_line object corresponding to the pc value." },
1969 { "post_event", gdbpy_post_event, METH_VARARGS,
1970 "Post an event into gdb's event loop." },
1972 { "target_charset", gdbpy_target_charset, METH_NOARGS,
1973 "target_charset () -> string.\n\
1974 Return the name of the current target charset." },
1975 { "target_wide_charset", gdbpy_target_wide_charset, METH_NOARGS,
1976 "target_wide_charset () -> string.\n\
1977 Return the name of the current target wide charset." },
1979 { "string_to_argv", gdbpy_string_to_argv, METH_VARARGS,
1980 "string_to_argv (String) -> Array.\n\
1981 Parse String and return an argv-like array.\n\
1982 Arguments are separate by spaces and may be quoted."
1984 { "write", (PyCFunction)gdbpy_write, METH_VARARGS | METH_KEYWORDS,
1985 "Write a string using gdb's filtered stream." },
1986 { "flush", (PyCFunction)gdbpy_flush, METH_VARARGS | METH_KEYWORDS,
1987 "Flush gdb's filtered stdout stream." },
1988 { "selected_thread", gdbpy_selected_thread, METH_NOARGS,
1989 "selected_thread () -> gdb.InferiorThread.\n\
1990 Return the selected thread object." },
1991 { "selected_inferior", gdbpy_selected_inferior, METH_NOARGS,
1992 "selected_inferior () -> gdb.Inferior.\n\
1993 Return the selected inferior object." },
1994 { "inferiors", gdbpy_inferiors, METH_NOARGS,
1995 "inferiors () -> (gdb.Inferior, ...).\n\
1996 Return a tuple containing all inferiors." },
1997 {NULL, NULL, 0, NULL}
2001 static struct PyModuleDef GdbModuleDef =
2003 PyModuleDef_HEAD_INIT,
2014 #endif /* HAVE_PYTHON */