diff options
author | Tom Tromey <tromey@adacore.com> | 2022-05-24 10:15:17 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-06-01 06:15:53 -0600 |
commit | 80fa4b2a606763e71c4b599fa88288f554a0ea5b (patch) | |
tree | 251f21a9776f96cc0a0b83e905968385cb409b48 /gdb/python/python.c | |
parent | 46c7fd95fc42466a5a8c3b3d70925f1a8af68de3 (diff) | |
download | gdb-80fa4b2a606763e71c4b599fa88288f554a0ea5b.zip gdb-80fa4b2a606763e71c4b599fa88288f554a0ea5b.tar.gz gdb-80fa4b2a606763e71c4b599fa88288f554a0ea5b.tar.bz2 |
Add gdb.current_language and gdb.Frame.language
This adds the gdb.current_language function, which can be used to find
the current language without (1) ever having the value "auto" or (2)
having to parse the output of "show language".
It also adds the gdb.Frame.language, which can be used to find the
language of a given frame. This is normally preferable if one has a
Frame object handy.
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 11aaa7a..9bef225 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1571,6 +1571,14 @@ gdbpy_progspaces (PyObject *unused1, PyObject *unused2) return list.release (); } +/* Return the name of the current language. */ + +static PyObject * +gdbpy_current_language (PyObject *unused1, PyObject *unused2) +{ + return host_string_to_python_string (current_language->name ()).release (); +} + /* The "current" objfile. This is set when gdb detects that a new @@ -2534,6 +2542,10 @@ Format ADDRESS, an address within PROG_SPACE, a gdb.Progspace, using\n\ ARCH, a gdb.Architecture to determine the address size. The format of\n\ the returned string is 'ADDRESS <SYMBOL+OFFSET>' without the quotes." }, + { "current_language", gdbpy_current_language, METH_NOARGS, + "current_language () -> string\n\ +Return the name of the currently selected language." }, + {NULL, NULL, 0, NULL} }; |