Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: matt rice <ratmice@gmail.com>
To: gdb-patches@sourceware.org
Cc: matt rice <ratmice@gmail.com>
Subject: [PATCH 5/7] [python] API for macros: gdb.Objfile symtabs method.
Date: Wed, 24 Aug 2011 15:11:00 -0000	[thread overview]
Message-ID: <1314198654-9008-6-git-send-email-ratmice@gmail.com> (raw)
In-Reply-To: <1314198654-9008-1-git-send-email-ratmice@gmail.com>

2011-08-23  Matt Rice  <ratmice@gmail.com>

	* python/py-symtab.h: New file.  Make symtab_to_symtab_object public.
	* python/py-objfile.c (objfpy_symtabs): New method.
	(objfile_object_methods): Ditto.
---
 gdb/python/py-objfile.c |   42 ++++++++++++++++++++++++++++++++++++++++++
 gdb/python/py-symtab.h  |   26 ++++++++++++++++++++++++++
 2 files changed, 68 insertions(+), 0 deletions(-)
 create mode 100644 gdb/python/py-symtab.h

diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
index f9821f5..1c121ae 100644
--- a/gdb/python/py-objfile.c
+++ b/gdb/python/py-objfile.c
@@ -22,6 +22,7 @@
 #include "charset.h"
 #include "objfiles.h"
 #include "language.h"
+#include "py-symtab.h"
 
 typedef struct
 {
@@ -118,6 +119,44 @@ objfpy_set_printers (PyObject *o, PyObject *value, void *ignore)
   return 0;
 }
 
+static PyObject *
+objfpy_symtabs (PyObject *self, PyObject *ignore)
+{
+  objfile_object *obj = (objfile_object *) self;
+  struct symtab *symtabs;
+  PyObject *list;
+  PyObject *py_symtab;
+
+  if (! obj->objfile)
+    return Py_None;
+
+  list = PyList_New (0);
+  if (!list)
+    return NULL;
+
+  symtabs = obj->objfile->symtabs;
+  while(symtabs)
+    {
+      py_symtab = symtab_to_symtab_object (symtabs);
+      if (! py_symtab)
+        goto fail;
+
+      if (PyList_Append (list, py_symtab) != 0)
+        goto fail;
+
+      Py_DECREF (py_symtab);
+
+      symtabs = symtabs->next;
+    }
+
+  return list;
+
+  fail:
+    Py_XDECREF (py_symtab);
+    Py_XDECREF (list);
+    return NULL;
+}
+
 /* Implementation of gdb.Objfile.is_valid (self) -> Boolean.
    Returns True if this object file still exists in GDB.  */
 
@@ -200,6 +239,9 @@ static PyMethodDef objfile_object_methods[] =
   { "is_valid", objfpy_is_valid, METH_NOARGS,
     "is_valid () -> Boolean.\n\
 Return true if this object file is valid, false if not." },
+  { "symtabs", objfpy_symtabs, METH_NOARGS,
+    "symtabs () -> List.\n\
+A List containing the object file's valid symtabs." },
 
   { NULL }
 };
diff --git a/gdb/python/py-symtab.h b/gdb/python/py-symtab.h
new file mode 100644
index 0000000..10c89cb
--- /dev/null
+++ b/gdb/python/py-symtab.h
@@ -0,0 +1,26 @@
+/* Python interface to Symtabs and Symtab_and_line's.
+
+   Copyright (C) 2011 Free Software Foundation, Inc.
+
+   This file is part of GDB.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+#ifndef GDB_PY_SYMTAB_H
+#define GDB_PY_SYMTAB_H
+
+PyObject *
+symtab_to_symtab_object (struct symtab *symtab);
+
+#endif /* GDB_PY_SYMTAB_H */
-- 
1.7.4.4


  reply	other threads:[~2011-08-24 15:11 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-24 15:11 [PATCH 0/7] [python] API for macros matt rice
2011-08-24 15:11 ` matt rice [this message]
2011-08-30 13:08   ` [PATCH 5/7] [python] API for macros: gdb.Objfile symtabs method Phil Muldoon
2011-09-01 23:18     ` Matt Rice
2011-09-02  1:07       ` Paul_Koning
2011-08-30 17:34   ` Tom Tromey
2011-09-02  0:56     ` Matt Rice
2011-08-24 15:11 ` [PATCH 2/7] [python] API for macros: memory management quirks matt rice
2011-08-26 20:40   ` Tom Tromey
2011-08-30 11:47   ` Phil Muldoon
2011-09-01 22:46     ` Matt Rice
2011-08-24 15:11 ` [PATCH 1/7] [python] API for macros: abort or continuing macro iterators matt rice
2011-08-26 20:23   ` Tom Tromey
2011-08-30 11:10   ` Phil Muldoon
2011-09-01 21:48     ` Matt Rice
2011-08-24 15:12 ` [PATCH 6/7] [python] API for macros: Add docs matt rice
2011-08-24 20:10   ` Eli Zaretskii
2011-08-25 12:33     ` Matt Rice
2011-08-25 17:36       ` Eli Zaretskii
2011-08-26  8:04         ` Matt Rice
2011-08-26 10:42           ` Eli Zaretskii
2011-08-26 11:17             ` Matt Rice
2011-08-26 12:08               ` Eli Zaretskii
2011-08-26 14:06                 ` Matt Rice
2011-08-26 15:05                   ` Eli Zaretskii
2011-08-24 15:12 ` [PATCH 4/7] [python] API for macros: Add methods to get a gdb.Macro matt rice
2011-08-30 13:04   ` Phil Muldoon
2011-08-30 17:41     ` Tom Tromey
2011-08-30 20:28       ` Phil Muldoon
2011-08-30 20:35         ` Phil Muldoon
2011-09-01 23:13           ` Matt Rice
2011-09-02  1:15             ` Paul_Koning
2011-09-02 10:04               ` Paul_Koning
2011-09-02 12:04             ` Phil Muldoon
2011-08-30 20:38         ` Tom Tromey
2011-08-30 20:58           ` Phil Muldoon
2011-08-24 15:12 ` [PATCH 3/7] [python] API for macros: Add gdb.Macro class matt rice
2011-08-30 12:45   ` Phil Muldoon
2011-09-01 22:57     ` Matt Rice
2011-08-24 15:12 ` [PATCH 7/7] [python] API for macros: Add tests matt rice
2011-08-30 13:12   ` Phil Muldoon
2011-08-30 15:54   ` Tom Tromey
2011-08-30  9:44 ` [PATCH 0/7] [python] API for macros Phil Muldoon
2011-09-01 21:33   ` Matt Rice

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1314198654-9008-6-git-send-email-ratmice@gmail.com \
    --to=ratmice@gmail.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox