1 /* General python/gdb code
3 Copyright (C) 2008-2017 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 "event-loop.h"
32 #include "readline/tilde.h"
34 #include "extension-priv.h"
35 #include "cli/cli-utils.h"
38 #include "ser-event.h"
40 /* Declared constants and enum for python stack printing. */
41 static const char python_excp_none[] = "none";
42 static const char python_excp_full[] = "full";
43 static const char python_excp_message[] = "message";
45 /* "set python print-stack" choices. */
46 static const char *const python_excp_enums[] =
54 /* The exception printing variable. 'full' if we want to print the
55 error message and stack, 'none' if we want to print nothing, and
56 'message' if we only want to print the error message. 'message' is
58 static const char *gdbpy_should_print_stack = python_excp_message;
61 /* Forward decls, these are defined later. */
62 extern const struct extension_language_script_ops python_extension_script_ops;
63 extern const struct extension_language_ops python_extension_ops;
66 /* The main struct describing GDB's interface to the Python
67 extension language. */
68 const struct extension_language_defn extension_language_python =
80 &python_extension_script_ops,
90 #include "cli/cli-decode.h"
94 #include "python-internal.h"
99 #include "gdbthread.h"
101 #include "event-top.h"
103 #include "py-event.h"
105 /* True if Python has been successfully initialized, false
108 int gdb_python_initialized;
110 extern PyMethodDef python_GdbMethods[];
113 extern struct PyModuleDef python_GdbModuleDef;
116 PyObject *gdb_module;
117 PyObject *gdb_python_module;
119 /* Some string constants we may wish to use. */
120 PyObject *gdbpy_to_string_cst;
121 PyObject *gdbpy_children_cst;
122 PyObject *gdbpy_display_hint_cst;
123 PyObject *gdbpy_doc_cst;
124 PyObject *gdbpy_enabled_cst;
125 PyObject *gdbpy_value_cst;
127 /* The GdbError exception. */
128 PyObject *gdbpy_gdberror_exc;
130 /* The `gdb.error' base class. */
131 PyObject *gdbpy_gdb_error;
133 /* The `gdb.MemoryError' exception. */
134 PyObject *gdbpy_gdb_memory_error;
136 static script_sourcer_func gdbpy_source_script;
137 static objfile_script_sourcer_func gdbpy_source_objfile_script;
138 static objfile_script_executor_func gdbpy_execute_objfile_script;
139 static void gdbpy_finish_initialization
140 (const struct extension_language_defn *);
141 static int gdbpy_initialized (const struct extension_language_defn *);
142 static void gdbpy_eval_from_control_command
143 (const struct extension_language_defn *, struct command_line *cmd);
144 static void gdbpy_start_type_printers (const struct extension_language_defn *,
145 struct ext_lang_type_printers *);
146 static enum ext_lang_rc gdbpy_apply_type_printers
147 (const struct extension_language_defn *,
148 const struct ext_lang_type_printers *, struct type *, char **);
149 static void gdbpy_free_type_printers (const struct extension_language_defn *,
150 struct ext_lang_type_printers *);
151 static void gdbpy_set_quit_flag (const struct extension_language_defn *);
152 static int gdbpy_check_quit_flag (const struct extension_language_defn *);
153 static enum ext_lang_rc gdbpy_before_prompt_hook
154 (const struct extension_language_defn *, const char *current_gdb_prompt);
156 /* The interface between gdb proper and loading of python scripts. */
158 const struct extension_language_script_ops python_extension_script_ops =
161 gdbpy_source_objfile_script,
162 gdbpy_execute_objfile_script,
163 gdbpy_auto_load_enabled
166 /* The interface between gdb proper and python extensions. */
168 const struct extension_language_ops python_extension_ops =
170 gdbpy_finish_initialization,
173 gdbpy_eval_from_control_command,
175 gdbpy_start_type_printers,
176 gdbpy_apply_type_printers,
177 gdbpy_free_type_printers,
179 gdbpy_apply_val_pretty_printer,
181 gdbpy_apply_frame_filter,
183 gdbpy_preserve_values,
185 gdbpy_breakpoint_has_cond,
186 gdbpy_breakpoint_cond_says_stop,
189 gdbpy_check_quit_flag,
191 gdbpy_before_prompt_hook,
193 gdbpy_clone_xmethod_worker_data,
194 gdbpy_free_xmethod_worker_data,
195 gdbpy_get_matching_xmethod_workers,
196 gdbpy_get_xmethod_arg_types,
197 gdbpy_get_xmethod_result_type,
201 /* Architecture and language to be used in callbacks from
202 the Python interpreter. */
203 struct gdbarch *python_gdbarch;
204 const struct language_defn *python_language;
206 gdbpy_enter::gdbpy_enter (struct gdbarch *gdbarch,
207 const struct language_defn *language)
208 : m_gdbarch (python_gdbarch),
209 m_language (python_language)
211 /* We should not ever enter Python unless initialized. */
212 if (!gdb_python_initialized)
213 error (_("Python not initialized"));
215 m_previous_active = set_active_ext_lang (&extension_language_python);
217 m_state = PyGILState_Ensure ();
219 python_gdbarch = gdbarch;
220 python_language = language;
222 /* Save it and ensure ! PyErr_Occurred () afterwards. */
223 PyErr_Fetch (&m_error_type, &m_error_value, &m_error_traceback);
226 gdbpy_enter::~gdbpy_enter ()
228 /* Leftover Python error is forbidden by Python Exception Handling. */
229 if (PyErr_Occurred ())
231 /* This order is similar to the one calling error afterwards. */
232 gdbpy_print_stack ();
233 warning (_("internal error: Unhandled Python exception"));
236 PyErr_Restore (m_error_type, m_error_value, m_error_traceback);
238 PyGILState_Release (m_state);
239 python_gdbarch = m_gdbarch;
240 python_language = m_language;
242 restore_active_ext_lang (m_previous_active);
245 /* Set the quit flag. */
248 gdbpy_set_quit_flag (const struct extension_language_defn *extlang)
250 PyErr_SetInterrupt ();
253 /* Return true if the quit flag has been set, false otherwise. */
256 gdbpy_check_quit_flag (const struct extension_language_defn *extlang)
258 return PyOS_InterruptOccurred ();
261 /* Evaluate a Python command like PyRun_SimpleString, but uses
262 Py_single_input which prints the result of expressions, and does
263 not automatically print the stack on errors. */
266 eval_python_command (const char *command)
270 m = PyImport_AddModule ("__main__");
274 d = PyModule_GetDict (m);
277 gdbpy_ref<> v (PyRun_StringFlags (command, Py_single_input, d, d, NULL));
289 /* Implementation of the gdb "python-interactive" command. */
292 python_interactive_command (char *arg, int from_tty)
294 struct ui *ui = current_ui;
297 scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0);
299 arg = skip_spaces (arg);
301 gdbpy_enter enter_py (get_current_arch (), current_language);
305 int len = strlen (arg);
306 char *script = (char *) xmalloc (len + 2);
308 strcpy (script, arg);
310 script[len + 1] = '\0';
311 err = eval_python_command (script);
316 err = PyRun_InteractiveLoop (ui->instream, "<stdin>");
322 gdbpy_print_stack ();
323 error (_("Error while executing Python code."));
327 /* A wrapper around PyRun_SimpleFile. FILE is the Python script to run
330 On Windows hosts few users would build Python themselves (this is no
331 trivial task on this platform), and thus use binaries built by
332 someone else instead. There may happen situation where the Python
333 library and GDB are using two different versions of the C runtime
334 library. Python, being built with VC, would use one version of the
335 msvcr DLL (Eg. msvcr100.dll), while MinGW uses msvcrt.dll.
336 A FILE * from one runtime does not necessarily operate correctly in
339 To work around this potential issue, we create on Windows hosts the
340 FILE object using Python routines, thus making sure that it is
341 compatible with the Python library. */
344 python_run_simple_file (FILE *file, const char *filename)
348 PyRun_SimpleFile (file, filename);
352 /* Because we have a string for a filename, and are using Python to
353 open the file, we need to expand any tilde in the path first. */
354 gdb::unique_xmalloc_ptr<char> full_path (tilde_expand (filename));
355 gdbpy_ref<> python_file (PyFile_FromString (full_path.get (), (char *) "r"));
356 if (python_file == NULL)
358 gdbpy_print_stack ();
359 error (_("Error while opening file: %s"), full_path.get ());
362 PyRun_SimpleFile (PyFile_AsFile (python_file.get ()), filename);
367 /* Given a command_line, return a command string suitable for passing
368 to Python. Lines in the string are separated by newlines. */
371 compute_python_string (struct command_line *l)
373 struct command_line *iter;
376 for (iter = l; iter; iter = iter->next)
378 script += iter->line;
384 /* Take a command line structure representing a 'python' command, and
385 evaluate its body using the Python interpreter. */
388 gdbpy_eval_from_control_command (const struct extension_language_defn *extlang,
389 struct command_line *cmd)
393 if (cmd->body_count != 1)
394 error (_("Invalid \"python\" block structure."));
396 gdbpy_enter enter_py (get_current_arch (), current_language);
398 std::string script = compute_python_string (cmd->body_list[0]);
399 ret = PyRun_SimpleString (script.c_str ());
401 error (_("Error while executing Python code."));
404 /* Implementation of the gdb "python" command. */
407 python_command (char *arg, int from_tty)
409 gdbpy_enter enter_py (get_current_arch (), current_language);
411 scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0);
413 arg = skip_spaces (arg);
416 if (PyRun_SimpleString (arg))
417 error (_("Error while executing Python code."));
421 command_line_up l = get_command_line (python_control, "");
423 execute_control_command_untraced (l.get ());
429 /* Transform a gdb parameters's value into a Python value. May return
430 NULL (and set a Python exception) on error. Helper function for
433 gdbpy_parameter_value (enum var_types type, void *var)
438 case var_string_noescape:
439 case var_optional_filename:
443 const char *str = *(char **) var;
447 return host_string_to_python_string (str);
458 case var_auto_boolean:
460 enum auto_boolean ab = * (enum auto_boolean *) var;
462 if (ab == AUTO_BOOLEAN_TRUE)
464 else if (ab == AUTO_BOOLEAN_FALSE)
471 if ((* (int *) var) == INT_MAX)
475 return PyLong_FromLong (* (int *) var);
479 unsigned int val = * (unsigned int *) var;
483 return PyLong_FromUnsignedLong (val);
487 return PyErr_Format (PyExc_RuntimeError,
488 _("Programmer error: unhandled type."));
491 /* A Python function which returns a gdb parameter's value as a Python
495 gdbpy_parameter (PyObject *self, PyObject *args)
497 struct gdb_exception except = exception_none;
498 struct cmd_list_element *alias, *prefix, *cmd;
503 if (! PyArg_ParseTuple (args, "s", &arg))
506 newarg = concat ("show ", arg, (char *) NULL);
510 found = lookup_cmd_composition (newarg, &alias, &prefix, &cmd);
512 CATCH (ex, RETURN_MASK_ALL)
519 GDB_PY_HANDLE_EXCEPTION (except);
521 return PyErr_Format (PyExc_RuntimeError,
522 _("Could not find parameter `%s'."), arg);
525 return PyErr_Format (PyExc_RuntimeError,
526 _("`%s' is not a parameter."), arg);
527 return gdbpy_parameter_value (cmd->var_type, cmd->var);
530 /* Wrapper for target_charset. */
533 gdbpy_target_charset (PyObject *self, PyObject *args)
535 const char *cset = target_charset (python_gdbarch);
537 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
540 /* Wrapper for target_wide_charset. */
543 gdbpy_target_wide_charset (PyObject *self, PyObject *args)
545 const char *cset = target_wide_charset (python_gdbarch);
547 return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
550 /* A Python function which evaluates a string using the gdb CLI. */
553 execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
556 PyObject *from_tty_obj = NULL, *to_string_obj = NULL;
557 int from_tty, to_string;
558 static const char *keywords[] = { "command", "from_tty", "to_string", NULL };
560 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "s|O!O!", keywords, &arg,
561 &PyBool_Type, &from_tty_obj,
562 &PyBool_Type, &to_string_obj))
568 int cmp = PyObject_IsTrue (from_tty_obj);
577 int cmp = PyObject_IsTrue (to_string_obj);
583 std::string to_string_res;
587 /* Copy the argument text in case the command modifies it. */
588 std::string copy (arg);
589 struct interp *interp;
591 scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0);
593 scoped_restore save_uiout = make_scoped_restore (¤t_uiout);
595 /* Use the console interpreter uiout to have the same print format
596 for console or MI. */
597 interp = interp_lookup (current_ui, "console");
598 current_uiout = interp_ui_out (interp);
600 scoped_restore preventer = prevent_dont_repeat ();
602 to_string_res = execute_command_to_string (©[0], from_tty);
604 execute_command (©[0], from_tty);
606 CATCH (except, RETURN_MASK_ALL)
608 GDB_PY_HANDLE_EXCEPTION (except);
612 /* Do any commands attached to breakpoint we stopped at. */
613 bpstat_do_actions ();
616 return PyString_FromString (to_string_res.c_str ());
620 /* Implementation of gdb.solib_name (Long) -> String.
621 Returns the name of the shared library holding a given address, or None. */
624 gdbpy_solib_name (PyObject *self, PyObject *args)
630 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc))
633 soname = solib_name_from_address (current_program_space, pc);
635 str_obj = host_string_to_python_string (soname);
645 /* A Python function which is a wrapper for decode_line_1. */
648 gdbpy_decode_line (PyObject *self, PyObject *args)
650 struct gdb_exception except = exception_none;
651 struct symtabs_and_lines sals = { NULL, 0 }; /* Initialize to
653 struct symtab_and_line sal;
655 struct cleanup *cleanups;
657 gdbpy_ref<> unparsed;
658 event_location_up location;
660 if (! PyArg_ParseTuple (args, "|s", &arg))
663 cleanups = make_cleanup (null_cleanup, NULL);
668 location = string_to_event_location_basic (&arg, python_language);
672 if (location != NULL)
673 sals = decode_line_1 (location.get (), 0, NULL, NULL, 0);
676 set_default_source_symtab_and_line ();
677 sal = get_current_source_symtab_and_line ();
682 CATCH (ex, RETURN_MASK_ALL)
688 if (sals.sals != NULL && sals.sals != &sal)
689 make_cleanup (xfree, sals.sals);
691 if (except.reason < 0)
693 do_cleanups (cleanups);
694 /* We know this will always throw. */
695 gdbpy_convert_exception (except);
703 result.reset (PyTuple_New (sals.nelts));
706 do_cleanups (cleanups);
709 for (i = 0; i < sals.nelts; ++i)
713 obj = symtab_and_line_to_sal_object (sals.sals[i]);
716 do_cleanups (cleanups);
720 PyTuple_SetItem (result.get (), i, obj);
725 result.reset (Py_None);
729 gdbpy_ref<> return_result (PyTuple_New (2));
730 if (return_result == NULL)
732 do_cleanups (cleanups);
736 if (arg != NULL && strlen (arg) > 0)
738 unparsed.reset (PyString_FromString (arg));
739 if (unparsed == NULL)
741 do_cleanups (cleanups);
747 unparsed.reset (Py_None);
751 PyTuple_SetItem (return_result.get (), 0, unparsed.release ());
752 PyTuple_SetItem (return_result.get (), 1, result.release ());
754 do_cleanups (cleanups);
756 return return_result.release ();
759 /* Parse a string and evaluate it as an expression. */
761 gdbpy_parse_and_eval (PyObject *self, PyObject *args)
763 const char *expr_str;
764 struct value *result = NULL;
766 if (!PyArg_ParseTuple (args, "s", &expr_str))
771 result = parse_and_eval (expr_str);
773 CATCH (except, RETURN_MASK_ALL)
775 GDB_PY_HANDLE_EXCEPTION (except);
779 return value_to_value_object (result);
782 /* Implementation of gdb.find_pc_line function.
783 Returns the gdb.Symtab_and_line object corresponding to a PC value. */
786 gdbpy_find_pc_line (PyObject *self, PyObject *args)
788 gdb_py_ulongest pc_llu;
789 PyObject *result = NULL; /* init for gcc -Wall */
791 if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu))
796 struct symtab_and_line sal;
799 pc = (CORE_ADDR) pc_llu;
800 sal = find_pc_line (pc, 0);
801 result = symtab_and_line_to_sal_object (sal);
803 CATCH (except, RETURN_MASK_ALL)
805 GDB_PY_HANDLE_EXCEPTION (except);
812 /* Implementation of gdb.invalidate_cached_frames. */
815 gdbpy_invalidate_cached_frames (PyObject *self, PyObject *args)
817 reinit_frame_cache ();
821 /* Read a file as Python code.
822 This is the extension_language_script_ops.script_sourcer "method".
823 FILE is the file to load. FILENAME is name of the file FILE.
824 This does not throw any errors. If an exception occurs python will print
825 the traceback and clear the error indicator. */
828 gdbpy_source_script (const struct extension_language_defn *extlang,
829 FILE *file, const char *filename)
831 gdbpy_enter enter_py (get_current_arch (), current_language);
832 python_run_simple_file (file, filename);
837 /* Posting and handling events. */
839 /* A single event. */
842 /* The Python event. This is just a callable object. */
844 /* The next event. */
845 struct gdbpy_event *next;
848 /* All pending events. */
849 static struct gdbpy_event *gdbpy_event_list;
850 /* The final link of the event list. */
851 static struct gdbpy_event **gdbpy_event_list_end;
853 /* So that we can wake up the main thread even when it is blocked in
855 static struct serial_event *gdbpy_serial_event;
857 /* The file handler callback. This reads from the internal pipe, and
858 then processes the Python event queue. This will always be run in
859 the main gdb thread. */
862 gdbpy_run_events (int error, gdb_client_data client_data)
864 gdbpy_enter enter_py (get_current_arch (), current_language);
866 /* Clear the event fd. Do this before flushing the events list, so
867 that any new event post afterwards is sure to re-awake the event
869 serial_event_clear (gdbpy_serial_event);
871 while (gdbpy_event_list)
873 /* Dispatching the event might push a new element onto the event
874 loop, so we update here "atomically enough". */
875 struct gdbpy_event *item = gdbpy_event_list;
876 gdbpy_event_list = gdbpy_event_list->next;
877 if (gdbpy_event_list == NULL)
878 gdbpy_event_list_end = &gdbpy_event_list;
881 gdbpy_ref<> call_result (PyObject_CallObject (item->event, NULL));
882 if (call_result == NULL)
885 Py_DECREF (item->event);
890 /* Submit an event to the gdb thread. */
892 gdbpy_post_event (PyObject *self, PyObject *args)
894 struct gdbpy_event *event;
898 if (!PyArg_ParseTuple (args, "O", &func))
901 if (!PyCallable_Check (func))
903 PyErr_SetString (PyExc_RuntimeError,
904 _("Posted event is not callable"));
910 /* From here until the end of the function, we have the GIL, so we
911 can operate on our global data structures without worrying. */
912 wakeup = gdbpy_event_list == NULL;
914 event = XNEW (struct gdbpy_event);
917 *gdbpy_event_list_end = event;
918 gdbpy_event_list_end = &event->next;
920 /* Wake up gdb when needed. */
922 serial_event_set (gdbpy_serial_event);
927 /* Initialize the Python event handler. */
929 gdbpy_initialize_events (void)
931 gdbpy_event_list_end = &gdbpy_event_list;
933 gdbpy_serial_event = make_serial_event ();
934 add_file_handler (serial_event_fd (gdbpy_serial_event),
935 gdbpy_run_events, NULL);
942 /* This is the extension_language_ops.before_prompt "method". */
944 static enum ext_lang_rc
945 gdbpy_before_prompt_hook (const struct extension_language_defn *extlang,
946 const char *current_gdb_prompt)
948 if (!gdb_python_initialized)
949 return EXT_LANG_RC_NOP;
951 gdbpy_enter enter_py (get_current_arch (), current_language);
953 if (!evregpy_no_listeners_p (gdb_py_events.before_prompt)
954 && evpy_emit_event (NULL, gdb_py_events.before_prompt) < 0)
955 return EXT_LANG_RC_ERROR;
957 if (gdb_python_module
958 && PyObject_HasAttrString (gdb_python_module, "prompt_hook"))
960 gdbpy_ref<> hook (PyObject_GetAttrString (gdb_python_module,
964 gdbpy_print_stack ();
965 return EXT_LANG_RC_ERROR;
968 if (PyCallable_Check (hook.get ()))
970 gdbpy_ref<> current_prompt (PyString_FromString (current_gdb_prompt));
971 if (current_prompt == NULL)
973 gdbpy_print_stack ();
974 return EXT_LANG_RC_ERROR;
978 (PyObject_CallFunctionObjArgs (hook.get (), current_prompt.get (),
982 gdbpy_print_stack ();
983 return EXT_LANG_RC_ERROR;
986 /* Return type should be None, or a String. If it is None,
987 fall through, we will not set a prompt. If it is a
988 string, set PROMPT. Anything else, set an exception. */
989 if (result != Py_None && ! PyString_Check (result.get ()))
991 PyErr_Format (PyExc_RuntimeError,
992 _("Return from prompt_hook must " \
993 "be either a Python string, or None"));
994 gdbpy_print_stack ();
995 return EXT_LANG_RC_ERROR;
998 if (result != Py_None)
1000 gdb::unique_xmalloc_ptr<char>
1001 prompt (python_string_to_host_string (result.get ()));
1005 gdbpy_print_stack ();
1006 return EXT_LANG_RC_ERROR;
1009 set_prompt (prompt.get ());
1010 return EXT_LANG_RC_OK;
1015 return EXT_LANG_RC_NOP;
1022 /* A python function to write a single string using gdb's filtered
1023 output stream . The optional keyword STREAM can be used to write
1024 to a particular stream. The default stream is to gdb_stdout. */
1027 gdbpy_write (PyObject *self, PyObject *args, PyObject *kw)
1030 static const char *keywords[] = { "text", "stream", NULL };
1031 int stream_type = 0;
1033 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &arg,
1039 switch (stream_type)
1043 fprintf_filtered (gdb_stderr, "%s", arg);
1048 fprintf_filtered (gdb_stdlog, "%s", arg);
1052 fprintf_filtered (gdb_stdout, "%s", arg);
1055 CATCH (except, RETURN_MASK_ALL)
1057 GDB_PY_HANDLE_EXCEPTION (except);
1064 /* A python function to flush a gdb stream. The optional keyword
1065 STREAM can be used to flush a particular stream. The default stream
1069 gdbpy_flush (PyObject *self, PyObject *args, PyObject *kw)
1071 static const char *keywords[] = { "stream", NULL };
1072 int stream_type = 0;
1074 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "|i", keywords,
1078 switch (stream_type)
1082 gdb_flush (gdb_stderr);
1087 gdb_flush (gdb_stdlog);
1091 gdb_flush (gdb_stdout);
1097 /* Return non-zero if print-stack is not "none". */
1100 gdbpy_print_python_errors_p (void)
1102 return gdbpy_should_print_stack != python_excp_none;
1105 /* Print a python exception trace, print just a message, or print
1106 nothing and clear the python exception, depending on
1107 gdbpy_should_print_stack. Only call this if a python exception is
1110 gdbpy_print_stack (void)
1113 /* Print "none", just clear exception. */
1114 if (gdbpy_should_print_stack == python_excp_none)
1118 /* Print "full" message and backtrace. */
1119 else if (gdbpy_should_print_stack == python_excp_full)
1122 /* PyErr_Print doesn't necessarily end output with a newline.
1123 This works because Python's stdout/stderr is fed through
1129 CATCH (except, RETURN_MASK_ALL)
1134 /* Print "message", just error print message. */
1137 PyObject *ptype, *pvalue, *ptraceback;
1139 PyErr_Fetch (&ptype, &pvalue, &ptraceback);
1141 /* Fetch the error message contained within ptype, pvalue. */
1142 gdb::unique_xmalloc_ptr<char>
1143 msg (gdbpy_exception_to_string (ptype, pvalue));
1144 gdb::unique_xmalloc_ptr<char> type (gdbpy_obj_to_string (ptype));
1150 /* An error occurred computing the string representation of the
1152 fprintf_filtered (gdb_stderr,
1153 _("Error occurred computing Python error" \
1157 fprintf_filtered (gdb_stderr, "Python Exception %s %s: \n",
1158 type.get (), msg.get ());
1160 CATCH (except, RETURN_MASK_ALL)
1166 Py_XDECREF (pvalue);
1167 Py_XDECREF (ptraceback);
1173 /* Return the current Progspace.
1174 There always is one. */
1177 gdbpy_get_current_progspace (PyObject *unused1, PyObject *unused2)
1181 result = pspace_to_pspace_object (current_program_space);
1187 /* Return a sequence holding all the Progspaces. */
1190 gdbpy_progspaces (PyObject *unused1, PyObject *unused2)
1192 struct program_space *ps;
1194 gdbpy_ref<> list (PyList_New (0));
1200 PyObject *item = pspace_to_pspace_object (ps);
1202 if (!item || PyList_Append (list.get (), item) == -1)
1206 return list.release ();
1211 /* The "current" objfile. This is set when gdb detects that a new
1212 objfile has been loaded. It is only set for the duration of a call to
1213 gdbpy_source_objfile_script and gdbpy_execute_objfile_script; it is NULL
1215 static struct objfile *gdbpy_current_objfile;
1217 /* Set the current objfile to OBJFILE and then read FILE named FILENAME
1218 as Python code. This does not throw any errors. If an exception
1219 occurs python will print the traceback and clear the error indicator.
1220 This is the extension_language_script_ops.objfile_script_sourcer
1224 gdbpy_source_objfile_script (const struct extension_language_defn *extlang,
1225 struct objfile *objfile, FILE *file,
1226 const char *filename)
1228 if (!gdb_python_initialized)
1231 gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
1232 gdbpy_current_objfile = objfile;
1234 python_run_simple_file (file, filename);
1236 gdbpy_current_objfile = NULL;
1239 /* Set the current objfile to OBJFILE and then execute SCRIPT
1240 as Python code. This does not throw any errors. If an exception
1241 occurs python will print the traceback and clear the error indicator.
1242 This is the extension_language_script_ops.objfile_script_executor
1246 gdbpy_execute_objfile_script (const struct extension_language_defn *extlang,
1247 struct objfile *objfile, const char *name,
1250 if (!gdb_python_initialized)
1253 gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
1254 gdbpy_current_objfile = objfile;
1256 PyRun_SimpleString (script);
1258 gdbpy_current_objfile = NULL;
1261 /* Return the current Objfile, or None if there isn't one. */
1264 gdbpy_get_current_objfile (PyObject *unused1, PyObject *unused2)
1268 if (! gdbpy_current_objfile)
1271 result = objfile_to_objfile_object (gdbpy_current_objfile);
1277 /* Return a sequence holding all the Objfiles. */
1280 gdbpy_objfiles (PyObject *unused1, PyObject *unused2)
1282 struct objfile *objf;
1284 gdbpy_ref<> list (PyList_New (0));
1290 PyObject *item = objfile_to_objfile_object (objf);
1292 if (!item || PyList_Append (list.get (), item) == -1)
1296 return list.release ();
1299 /* Compute the list of active python type printers and store them in
1300 EXT_PRINTERS->py_type_printers. The product of this function is used by
1301 gdbpy_apply_type_printers, and freed by gdbpy_free_type_printers.
1302 This is the extension_language_ops.start_type_printers "method". */
1305 gdbpy_start_type_printers (const struct extension_language_defn *extlang,
1306 struct ext_lang_type_printers *ext_printers)
1308 PyObject *printers_obj = NULL;
1310 if (!gdb_python_initialized)
1313 gdbpy_enter enter_py (get_current_arch (), current_language);
1315 gdbpy_ref<> type_module (PyImport_ImportModule ("gdb.types"));
1316 if (type_module == NULL)
1318 gdbpy_print_stack ();
1322 gdbpy_ref<> func (PyObject_GetAttrString (type_module.get (),
1323 "get_type_recognizers"));
1326 gdbpy_print_stack ();
1330 printers_obj = PyObject_CallFunctionObjArgs (func.get (), (char *) NULL);
1331 if (printers_obj == NULL)
1332 gdbpy_print_stack ();
1334 ext_printers->py_type_printers = printers_obj;
1337 /* If TYPE is recognized by some type printer, store in *PRETTIED_TYPE
1338 a newly allocated string holding the type's replacement name, and return
1339 EXT_LANG_RC_OK. The caller is responsible for freeing the string.
1340 If there's a Python error return EXT_LANG_RC_ERROR.
1341 Otherwise, return EXT_LANG_RC_NOP.
1342 This is the extension_language_ops.apply_type_printers "method". */
1344 static enum ext_lang_rc
1345 gdbpy_apply_type_printers (const struct extension_language_defn *extlang,
1346 const struct ext_lang_type_printers *ext_printers,
1347 struct type *type, char **prettied_type)
1349 PyObject *printers_obj = (PyObject *) ext_printers->py_type_printers;
1350 gdb::unique_xmalloc_ptr<char> result;
1352 if (printers_obj == NULL)
1353 return EXT_LANG_RC_NOP;
1355 if (!gdb_python_initialized)
1356 return EXT_LANG_RC_NOP;
1358 gdbpy_enter enter_py (get_current_arch (), current_language);
1360 gdbpy_ref<> type_obj (type_to_type_object (type));
1361 if (type_obj == NULL)
1363 gdbpy_print_stack ();
1364 return EXT_LANG_RC_ERROR;
1367 gdbpy_ref<> type_module (PyImport_ImportModule ("gdb.types"));
1368 if (type_module == NULL)
1370 gdbpy_print_stack ();
1371 return EXT_LANG_RC_ERROR;
1374 gdbpy_ref<> func (PyObject_GetAttrString (type_module.get (),
1375 "apply_type_recognizers"));
1378 gdbpy_print_stack ();
1379 return EXT_LANG_RC_ERROR;
1382 gdbpy_ref<> result_obj (PyObject_CallFunctionObjArgs (func.get (),
1386 if (result_obj == NULL)
1388 gdbpy_print_stack ();
1389 return EXT_LANG_RC_ERROR;
1392 if (result_obj == Py_None)
1393 return EXT_LANG_RC_NOP;
1395 result = python_string_to_host_string (result_obj.get ());
1398 gdbpy_print_stack ();
1399 return EXT_LANG_RC_ERROR;
1402 *prettied_type = result.release ();
1403 return EXT_LANG_RC_OK;
1406 /* Free the result of start_type_printers.
1407 This is the extension_language_ops.free_type_printers "method". */
1410 gdbpy_free_type_printers (const struct extension_language_defn *extlang,
1411 struct ext_lang_type_printers *ext_printers)
1413 PyObject *printers = (PyObject *) ext_printers->py_type_printers;
1415 if (printers == NULL)
1418 if (!gdb_python_initialized)
1421 gdbpy_enter enter_py (get_current_arch (), current_language);
1422 Py_DECREF (printers);
1425 #else /* HAVE_PYTHON */
1427 /* Dummy implementation of the gdb "python-interactive" and "python"
1431 python_interactive_command (char *arg, int from_tty)
1433 arg = skip_spaces (arg);
1435 error (_("Python scripting is not supported in this copy of GDB."));
1438 command_line_up l = get_command_line (python_control, "");
1440 execute_control_command_untraced (l.get ());
1445 python_command (char *arg, int from_tty)
1447 python_interactive_command (arg, from_tty);
1450 #endif /* HAVE_PYTHON */
1454 /* Lists for 'set python' commands. */
1456 static struct cmd_list_element *user_set_python_list;
1457 static struct cmd_list_element *user_show_python_list;
1459 /* Function for use by 'set python' prefix command. */
1462 user_set_python (char *args, int from_tty)
1464 help_list (user_set_python_list, "set python ", all_commands,
1468 /* Function for use by 'show python' prefix command. */
1471 user_show_python (char *args, int from_tty)
1473 cmd_show_list (user_show_python_list, from_tty, "");
1476 /* Initialize the Python code. */
1480 /* This is installed as a final cleanup and cleans up the
1481 interpreter. This lets Python's 'atexit' work. */
1484 finalize_python (void *ignore)
1486 struct active_ext_lang_state *previous_active;
1488 /* We don't use ensure_python_env here because if we ever ran the
1489 cleanup, gdb would crash -- because the cleanup calls into the
1490 Python interpreter, which we are about to destroy. It seems
1491 clearer to make the needed calls explicitly here than to create a
1492 cleanup and then mysteriously discard it. */
1494 /* This is only called as a final cleanup so we can assume the active
1495 SIGINT handler is gdb's. We still need to tell it to notify Python. */
1496 previous_active = set_active_ext_lang (&extension_language_python);
1498 (void) PyGILState_Ensure ();
1499 python_gdbarch = target_gdbarch ();
1500 python_language = current_language;
1504 restore_active_ext_lang (previous_active);
1508 /* Provide a prototype to silence -Wmissing-prototypes. */
1509 extern initialize_file_ftype _initialize_python;
1514 do_start_initialization ()
1519 size_t progsize, count;
1520 wchar_t *progname_copy;
1523 #ifdef WITH_PYTHON_PATH
1524 /* Work around problem where python gets confused about where it is,
1525 and then can't find its libraries, etc.
1526 NOTE: Python assumes the following layout:
1528 /foo/lib/pythonX.Y/...
1529 This must be done before calling Py_Initialize. */
1530 progname = concat (ldirname (python_libdir).c_str (), SLASH_STRING, "bin",
1531 SLASH_STRING, "python", (char *) NULL);
1533 std::string oldloc = setlocale (LC_ALL, NULL);
1534 setlocale (LC_ALL, "");
1535 progsize = strlen (progname);
1536 progname_copy = (wchar_t *) PyMem_Malloc ((progsize + 1) * sizeof (wchar_t));
1539 fprintf (stderr, "out of memory\n");
1542 count = mbstowcs (progname_copy, progname, progsize + 1);
1543 if (count == (size_t) -1)
1545 fprintf (stderr, "Could not convert python path to string\n");
1548 setlocale (LC_ALL, oldloc.c_str ());
1550 /* Note that Py_SetProgramName expects the string it is passed to
1551 remain alive for the duration of the program's execution, so
1552 it is not freed after this call. */
1553 Py_SetProgramName (progname_copy);
1555 Py_SetProgramName (progname);
1560 PyEval_InitThreads ();
1563 gdb_module = PyModule_Create (&python_GdbModuleDef);
1564 /* Add _gdb module to the list of known built-in modules. */
1565 _PyImport_FixupBuiltin (gdb_module, "_gdb");
1567 gdb_module = Py_InitModule ("_gdb", python_GdbMethods);
1569 if (gdb_module == NULL)
1572 /* The casts to (char*) are for python 2.4. */
1573 if (PyModule_AddStringConstant (gdb_module, "VERSION", (char*) version) < 0
1574 || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG",
1575 (char*) host_name) < 0
1576 || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
1577 (char*) target_name) < 0)
1580 /* Add stream constants. */
1581 if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
1582 || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
1583 || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
1586 gdbpy_gdb_error = PyErr_NewException ("gdb.error", PyExc_RuntimeError, NULL);
1587 if (gdbpy_gdb_error == NULL
1588 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0)
1591 gdbpy_gdb_memory_error = PyErr_NewException ("gdb.MemoryError",
1592 gdbpy_gdb_error, NULL);
1593 if (gdbpy_gdb_memory_error == NULL
1594 || gdb_pymodule_addobject (gdb_module, "MemoryError",
1595 gdbpy_gdb_memory_error) < 0)
1598 gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL);
1599 if (gdbpy_gdberror_exc == NULL
1600 || gdb_pymodule_addobject (gdb_module, "GdbError",
1601 gdbpy_gdberror_exc) < 0)
1604 gdbpy_initialize_gdb_readline ();
1606 if (gdbpy_initialize_auto_load () < 0
1607 || gdbpy_initialize_values () < 0
1608 || gdbpy_initialize_frames () < 0
1609 || gdbpy_initialize_commands () < 0
1610 || gdbpy_initialize_instruction () < 0
1611 || gdbpy_initialize_record () < 0
1612 || gdbpy_initialize_btrace () < 0
1613 || gdbpy_initialize_symbols () < 0
1614 || gdbpy_initialize_symtabs () < 0
1615 || gdbpy_initialize_blocks () < 0
1616 || gdbpy_initialize_functions () < 0
1617 || gdbpy_initialize_parameters () < 0
1618 || gdbpy_initialize_types () < 0
1619 || gdbpy_initialize_pspace () < 0
1620 || gdbpy_initialize_objfile () < 0
1621 || gdbpy_initialize_breakpoints () < 0
1622 || gdbpy_initialize_finishbreakpoints () < 0
1623 || gdbpy_initialize_lazy_string () < 0
1624 || gdbpy_initialize_linetable () < 0
1625 || gdbpy_initialize_thread () < 0
1626 || gdbpy_initialize_inferior () < 0
1627 || gdbpy_initialize_events () < 0
1628 || gdbpy_initialize_eventregistry () < 0
1629 || gdbpy_initialize_py_events () < 0
1630 || gdbpy_initialize_event () < 0
1631 || gdbpy_initialize_stop_event () < 0
1632 || gdbpy_initialize_signal_event () < 0
1633 || gdbpy_initialize_breakpoint_event () < 0
1634 || gdbpy_initialize_continue_event () < 0
1635 || gdbpy_initialize_inferior_call_pre_event () < 0
1636 || gdbpy_initialize_inferior_call_post_event () < 0
1637 || gdbpy_initialize_register_changed_event () < 0
1638 || gdbpy_initialize_memory_changed_event () < 0
1639 || gdbpy_initialize_exited_event () < 0
1640 || gdbpy_initialize_thread_event () < 0
1641 || gdbpy_initialize_new_objfile_event () < 0
1642 || gdbpy_initialize_clear_objfiles_event () < 0
1643 || gdbpy_initialize_arch () < 0
1644 || gdbpy_initialize_xmethods () < 0
1645 || gdbpy_initialize_unwind () < 0)
1648 gdbpy_to_string_cst = PyString_FromString ("to_string");
1649 if (gdbpy_to_string_cst == NULL)
1651 gdbpy_children_cst = PyString_FromString ("children");
1652 if (gdbpy_children_cst == NULL)
1654 gdbpy_display_hint_cst = PyString_FromString ("display_hint");
1655 if (gdbpy_display_hint_cst == NULL)
1657 gdbpy_doc_cst = PyString_FromString ("__doc__");
1658 if (gdbpy_doc_cst == NULL)
1660 gdbpy_enabled_cst = PyString_FromString ("enabled");
1661 if (gdbpy_enabled_cst == NULL)
1663 gdbpy_value_cst = PyString_FromString ("value");
1664 if (gdbpy_value_cst == NULL)
1667 /* Release the GIL while gdb runs. */
1668 PyThreadState_Swap (NULL);
1669 PyEval_ReleaseLock ();
1671 make_final_cleanup (finalize_python, NULL);
1673 /* Only set this when initialization has succeeded. */
1674 gdb_python_initialized = 1;
1678 #endif /* HAVE_PYTHON */
1681 _initialize_python (void)
1683 add_com ("python-interactive", class_obscure,
1684 python_interactive_command,
1687 Start an interactive Python prompt.\n\
1689 To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\
1692 Alternatively, a single-line Python command can be given as an\n\
1693 argument, and if the command is an expression, the result will be\n\
1694 printed. For example:\n\
1696 (gdb) python-interactive 2 + 3\n\
1699 #else /* HAVE_PYTHON */
1701 Start a Python interactive prompt.\n\
1703 Python scripting is not supported in this copy of GDB.\n\
1704 This command is only a placeholder.")
1705 #endif /* HAVE_PYTHON */
1707 add_com_alias ("pi", "python-interactive", class_obscure, 1);
1709 add_com ("python", class_obscure, python_command,
1712 Evaluate a Python command.\n\
1714 The command can be given as an argument, for instance:\n\
1718 If no argument is given, the following lines are read and used\n\
1719 as the Python commands. Type a line containing \"end\" to indicate\n\
1720 the end of the command.")
1721 #else /* HAVE_PYTHON */
1723 Evaluate a Python command.\n\
1725 Python scripting is not supported in this copy of GDB.\n\
1726 This command is only a placeholder.")
1727 #endif /* HAVE_PYTHON */
1729 add_com_alias ("py", "python", class_obscure, 1);
1731 /* Add set/show python print-stack. */
1732 add_prefix_cmd ("python", no_class, user_show_python,
1733 _("Prefix command for python preference settings."),
1734 &user_show_python_list, "show python ", 0,
1737 add_prefix_cmd ("python", no_class, user_set_python,
1738 _("Prefix command for python preference settings."),
1739 &user_set_python_list, "set python ", 0,
1742 add_setshow_enum_cmd ("print-stack", no_class, python_excp_enums,
1743 &gdbpy_should_print_stack, _("\
1744 Set mode for Python stack dump on error."), _("\
1745 Show the mode of Python stack printing on error."), _("\
1746 none == no stack or message will be printed.\n\
1747 full == a message and a stack will be printed.\n\
1748 message == an error message without a stack will be printed."),
1750 &user_set_python_list,
1751 &user_show_python_list);
1754 if (!do_start_initialization () && PyErr_Occurred ())
1755 gdbpy_print_stack ();
1756 #endif /* HAVE_PYTHON */
1761 /* Helper function for gdbpy_finish_initialization. This does the
1762 work and then returns false if an error has occurred and must be
1763 displayed, or true on success. */
1766 do_finish_initialization (const struct extension_language_defn *extlang)
1771 /* Add the initial data-directory to sys.path. */
1773 std::string gdb_pythondir = (std::string (gdb_datadir) + SLASH_STRING
1776 sys_path = PySys_GetObject ("path");
1778 /* If sys.path is not defined yet, define it first. */
1779 if (!(sys_path && PyList_Check (sys_path)))
1782 PySys_SetPath (L"");
1786 sys_path = PySys_GetObject ("path");
1788 if (sys_path && PyList_Check (sys_path))
1790 gdbpy_ref<> pythondir (PyString_FromString (gdb_pythondir.c_str ()));
1791 if (pythondir == NULL || PyList_Insert (sys_path, 0, pythondir.get ()))
1797 /* Import the gdb module to finish the initialization, and
1798 add it to __main__ for convenience. */
1799 m = PyImport_AddModule ("__main__");
1803 /* Keep the reference to gdb_python_module since it is in a global
1805 gdb_python_module = PyImport_ImportModule ("gdb");
1806 if (gdb_python_module == NULL)
1808 gdbpy_print_stack ();
1809 /* This is passed in one call to warning so that blank lines aren't
1810 inserted between each line of text. */
1812 "Could not load the Python gdb module from `%s'.\n"
1813 "Limited Python support is available from the _gdb module.\n"
1814 "Suggest passing --data-directory=/path/to/gdb/data-directory.\n"),
1815 gdb_pythondir.c_str ());
1816 /* We return "success" here as we've already emitted the
1821 return gdb_pymodule_addobject (m, "gdb", gdb_python_module) >= 0;
1824 /* Perform the remaining python initializations.
1825 These must be done after GDB is at least mostly initialized.
1826 E.g., The "info pretty-printer" command needs the "info" prefix
1828 This is the extension_language_ops.finish_initialization "method". */
1831 gdbpy_finish_initialization (const struct extension_language_defn *extlang)
1833 gdbpy_enter enter_py (get_current_arch (), current_language);
1835 if (!do_finish_initialization (extlang))
1837 gdbpy_print_stack ();
1838 warning (_("internal error: Unhandled Python exception"));
1842 /* Return non-zero if Python has successfully initialized.
1843 This is the extension_languages_ops.initialized "method". */
1846 gdbpy_initialized (const struct extension_language_defn *extlang)
1848 return gdb_python_initialized;
1851 #endif /* HAVE_PYTHON */
1857 PyMethodDef python_GdbMethods[] =
1859 { "history", gdbpy_history, METH_VARARGS,
1860 "Get a value from history" },
1861 { "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
1862 "execute (command [, from_tty] [, to_string]) -> [String]\n\
1863 Evaluate command, a string, as a gdb CLI command. Optionally returns\n\
1864 a Python String containing the output of the command if to_string is\n\
1866 { "parameter", gdbpy_parameter, METH_VARARGS,
1867 "Return a gdb parameter's value" },
1869 { "breakpoints", gdbpy_breakpoints, METH_NOARGS,
1870 "Return a tuple of all breakpoint objects" },
1872 { "default_visualizer", gdbpy_default_visualizer, METH_VARARGS,
1873 "Find the default visualizer for a Value." },
1875 { "current_progspace", gdbpy_get_current_progspace, METH_NOARGS,
1876 "Return the current Progspace." },
1877 { "progspaces", gdbpy_progspaces, METH_NOARGS,
1878 "Return a sequence of all progspaces." },
1880 { "current_objfile", gdbpy_get_current_objfile, METH_NOARGS,
1881 "Return the current Objfile being loaded, or None." },
1882 { "objfiles", gdbpy_objfiles, METH_NOARGS,
1883 "Return a sequence of all loaded objfiles." },
1885 { "newest_frame", gdbpy_newest_frame, METH_NOARGS,
1886 "newest_frame () -> gdb.Frame.\n\
1887 Return the newest frame object." },
1888 { "selected_frame", gdbpy_selected_frame, METH_NOARGS,
1889 "selected_frame () -> gdb.Frame.\n\
1890 Return the selected frame object." },
1891 { "frame_stop_reason_string", gdbpy_frame_stop_reason_string, METH_VARARGS,
1892 "stop_reason_string (Integer) -> String.\n\
1893 Return a string explaining unwind stop reason." },
1895 { "start_recording", gdbpy_start_recording, METH_VARARGS,
1896 "start_recording ([method] [, format]) -> gdb.Record.\n\
1897 Start recording with the given method. If no method is given, will fall back\n\
1898 to the system default method. If no format is given, will fall back to the\n\
1899 default format for the given method."},
1900 { "current_recording", gdbpy_current_recording, METH_NOARGS,
1901 "current_recording () -> gdb.Record.\n\
1902 Return current recording object." },
1903 { "stop_recording", gdbpy_stop_recording, METH_NOARGS,
1904 "stop_recording () -> None.\n\
1905 Stop current recording." },
1907 { "lookup_type", (PyCFunction) gdbpy_lookup_type,
1908 METH_VARARGS | METH_KEYWORDS,
1909 "lookup_type (name [, block]) -> type\n\
1910 Return a Type corresponding to the given name." },
1911 { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
1912 METH_VARARGS | METH_KEYWORDS,
1913 "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
1914 Return a tuple with the symbol corresponding to the given name (or None) and\n\
1915 a boolean indicating if name is a field of the current implied argument\n\
1916 `this' (when the current language is object-oriented)." },
1917 { "lookup_global_symbol", (PyCFunction) gdbpy_lookup_global_symbol,
1918 METH_VARARGS | METH_KEYWORDS,
1919 "lookup_global_symbol (name [, domain]) -> symbol\n\
1920 Return the symbol corresponding to the given name (or None)." },
1922 { "lookup_objfile", (PyCFunction) gdbpy_lookup_objfile,
1923 METH_VARARGS | METH_KEYWORDS,
1924 "lookup_objfile (name, [by_build_id]) -> objfile\n\
1925 Look up the specified objfile.\n\
1926 If by_build_id is True, the objfile is looked up by using name\n\
1927 as its build id." },
1929 { "block_for_pc", gdbpy_block_for_pc, METH_VARARGS,
1930 "Return the block containing the given pc value, or None." },
1931 { "solib_name", gdbpy_solib_name, METH_VARARGS,
1932 "solib_name (Long) -> String.\n\
1933 Return the name of the shared library holding a given address, or None." },
1934 { "decode_line", gdbpy_decode_line, METH_VARARGS,
1935 "decode_line (String) -> Tuple. Decode a string argument the way\n\
1936 that 'break' or 'edit' does. Return a tuple containing two elements.\n\
1937 The first element contains any unparsed portion of the String parameter\n\
1938 (or None if the string was fully parsed). The second element contains\n\
1939 a tuple that contains all the locations that match, represented as\n\
1940 gdb.Symtab_and_line objects (or None)."},
1941 { "parse_and_eval", gdbpy_parse_and_eval, METH_VARARGS,
1942 "parse_and_eval (String) -> Value.\n\
1943 Parse String as an expression, evaluate it, and return the result as a Value."
1945 { "find_pc_line", gdbpy_find_pc_line, METH_VARARGS,
1946 "find_pc_line (pc) -> Symtab_and_line.\n\
1947 Return the gdb.Symtab_and_line object corresponding to the pc value." },
1949 { "post_event", gdbpy_post_event, METH_VARARGS,
1950 "Post an event into gdb's event loop." },
1952 { "target_charset", gdbpy_target_charset, METH_NOARGS,
1953 "target_charset () -> string.\n\
1954 Return the name of the current target charset." },
1955 { "target_wide_charset", gdbpy_target_wide_charset, METH_NOARGS,
1956 "target_wide_charset () -> string.\n\
1957 Return the name of the current target wide charset." },
1959 { "string_to_argv", gdbpy_string_to_argv, METH_VARARGS,
1960 "string_to_argv (String) -> Array.\n\
1961 Parse String and return an argv-like array.\n\
1962 Arguments are separate by spaces and may be quoted."
1964 { "write", (PyCFunction)gdbpy_write, METH_VARARGS | METH_KEYWORDS,
1965 "Write a string using gdb's filtered stream." },
1966 { "flush", (PyCFunction)gdbpy_flush, METH_VARARGS | METH_KEYWORDS,
1967 "Flush gdb's filtered stdout stream." },
1968 { "selected_thread", gdbpy_selected_thread, METH_NOARGS,
1969 "selected_thread () -> gdb.InferiorThread.\n\
1970 Return the selected thread object." },
1971 { "selected_inferior", gdbpy_selected_inferior, METH_NOARGS,
1972 "selected_inferior () -> gdb.Inferior.\n\
1973 Return the selected inferior object." },
1974 { "inferiors", gdbpy_inferiors, METH_NOARGS,
1975 "inferiors () -> (gdb.Inferior, ...).\n\
1976 Return a tuple containing all inferiors." },
1978 { "invalidate_cached_frames", gdbpy_invalidate_cached_frames, METH_NOARGS,
1979 "invalidate_cached_frames () -> None.\n\
1980 Invalidate any cached frame objects in gdb.\n\
1981 Intended for internal use only." },
1983 {NULL, NULL, 0, NULL}
1987 struct PyModuleDef python_GdbModuleDef =
1989 PyModuleDef_HEAD_INIT,
2000 #endif /* HAVE_PYTHON */