Use gdbpy_ref to simplify some logic
This uses the new gdbpy_ref template to simplify logic in various parts of the Python layer; for example removing repeated error code or removing gotos. gdb/ChangeLog 2017-02-10 Tom Tromey <tom@tromey.com> * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref. * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use gdbpy_ref. * python/py-type.c (field_new): Use gdbpy_ref. * python/py-symtab.c (symtab_and_line_to_sal_object): Use gdbpy_ref. * python/py-progspace.c (pspy_new): Use gdbpy_ref. (py_free_pspace): Likewise. (pspace_to_pspace_object): Likewise. * python/py-objfile.c (objfpy_new): Use gdbpy_ref. (py_free_objfile): Likewise. (objfile_to_objfile_object): Likewise. * python/py-inferior.c (delete_thread_object): Use gdbpy_ref. (infpy_read_memory): Likewise. (py_free_inferior): Likewise. * python/py-evtregistry.c (create_eventregistry_object): Use gdbpy_ref. * python/py-event.c (create_event_object): Use gdbpy_ref.
This commit is contained in:
parent
7780f18678
commit
88b6faea99
11 changed files with 94 additions and 116 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "python-internal.h"
|
||||
#include "objfiles.h"
|
||||
#include "block.h"
|
||||
#include "py-ref.h"
|
||||
|
||||
typedef struct stpy_symtab_object {
|
||||
PyObject_HEAD
|
||||
|
@ -436,19 +437,14 @@ symtab_to_symtab_object (struct symtab *symtab)
|
|||
PyObject *
|
||||
symtab_and_line_to_sal_object (struct symtab_and_line sal)
|
||||
{
|
||||
sal_object *sal_obj;
|
||||
|
||||
sal_obj = PyObject_New (sal_object, &sal_object_type);
|
||||
if (sal_obj)
|
||||
gdbpy_ref<sal_object> sal_obj (PyObject_New (sal_object, &sal_object_type));
|
||||
if (sal_obj != NULL)
|
||||
{
|
||||
if (set_sal (sal_obj, sal) < 0)
|
||||
{
|
||||
Py_DECREF (sal_obj);
|
||||
return NULL;
|
||||
}
|
||||
if (set_sal (sal_obj.get (), sal) < 0)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return (PyObject *) sal_obj;
|
||||
return (PyObject *) sal_obj.release ();
|
||||
}
|
||||
|
||||
/* Return struct symtab_and_line reference that is wrapped by this
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue