mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
gdb/python: Make cmdpy_completer_helper return gdbpy_ref<>
Make cmdpy_completer_helper return a gdbpy_ref<> directly rather than building a gdbpy_ref<>, releasing it, and then having a new gdbpy_ref<> created to hold the result. gdb/ChangeLog: * python/py-cmd.c (cmdpy_completer_helper): Return gdbpy_ref<>. (cmdpy_completer_handle_brkchars): Adjust. (cmdpy_completer): Adjust.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
|
* python/py-cmd.c (cmdpy_completer_helper): Return gdbpy_ref<>.
|
||||||
|
(cmdpy_completer_handle_brkchars): Adjust.
|
||||||
|
(cmdpy_completer): Adjust.
|
||||||
|
|
||||||
2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
|
* riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
|
||||||
|
@ -174,10 +174,10 @@ cmdpy_function (struct cmd_list_element *command,
|
|||||||
and then a "complete"-completion sequentially. Therefore, we just
|
and then a "complete"-completion sequentially. Therefore, we just
|
||||||
recalculate everything twice for TAB-completions.
|
recalculate everything twice for TAB-completions.
|
||||||
|
|
||||||
This function returns the PyObject representing the Python method
|
This function returns a reference to the PyObject representing the
|
||||||
call. */
|
Python method call. */
|
||||||
|
|
||||||
static PyObject *
|
static gdbpy_ref<>
|
||||||
cmdpy_completer_helper (struct cmd_list_element *command,
|
cmdpy_completer_helper (struct cmd_list_element *command,
|
||||||
const char *text, const char *word)
|
const char *text, const char *word)
|
||||||
{
|
{
|
||||||
@ -220,7 +220,7 @@ cmdpy_completer_helper (struct cmd_list_element *command,
|
|||||||
PyErr_Clear ();
|
PyErr_Clear ();
|
||||||
}
|
}
|
||||||
|
|
||||||
return resultobj.release ();
|
return resultobj;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Python function called to determine the break characters of a
|
/* Python function called to determine the break characters of a
|
||||||
@ -235,9 +235,9 @@ cmdpy_completer_handle_brkchars (struct cmd_list_element *command,
|
|||||||
{
|
{
|
||||||
gdbpy_enter enter_py (get_current_arch (), current_language);
|
gdbpy_enter enter_py (get_current_arch (), current_language);
|
||||||
|
|
||||||
/* Calling our helper to obtain the PyObject of the Python
|
/* Calling our helper to obtain a reference to the PyObject of the Python
|
||||||
function. */
|
function. */
|
||||||
gdbpy_ref<> resultobj (cmdpy_completer_helper (command, text, word));
|
gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
|
||||||
|
|
||||||
/* Check if there was an error. */
|
/* Check if there was an error. */
|
||||||
if (resultobj == NULL)
|
if (resultobj == NULL)
|
||||||
@ -278,9 +278,9 @@ cmdpy_completer (struct cmd_list_element *command,
|
|||||||
{
|
{
|
||||||
gdbpy_enter enter_py (get_current_arch (), current_language);
|
gdbpy_enter enter_py (get_current_arch (), current_language);
|
||||||
|
|
||||||
/* Calling our helper to obtain the PyObject of the Python
|
/* Calling our helper to obtain a reference to the PyObject of the Python
|
||||||
function. */
|
function. */
|
||||||
gdbpy_ref<> resultobj (cmdpy_completer_helper (command, text, word));
|
gdbpy_ref<> resultobj = cmdpy_completer_helper (command, text, word);
|
||||||
|
|
||||||
/* If the result object of calling the Python function is NULL, it
|
/* If the result object of calling the Python function is NULL, it
|
||||||
means that there was an error. In this case, just give up. */
|
means that there was an error. In this case, just give up. */
|
||||||
|
Reference in New Issue
Block a user