]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/doc/ChangeLog
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
authorPhil Muldoon <pmuldoon@redhat.com>
Wed, 24 Feb 2010 21:18:28 +0000 (21:18 +0000)
committerPhil Muldoon <pmuldoon@redhat.com>
Wed, 24 Feb 2010 21:18:28 +0000 (21:18 +0000)
commitf3e9a8177c41893858fce2bdf339dbe90b3a4ef5
treeace904e14067df9b07c95ad1b45fbb079b6ab54e
parent101654612f383f5427e2d727556eda80537de76b
2010-02-24  Phil Muldoon  <pmuldoon@redhat.com>
        Tom Tromey  <tromey@redhat.com>
    Thiago Jung Bauermann  <bauerman@br.ibm.com>

* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line.  Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object,  block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.

2010-02-24  Phil Muldoon  <pmuldoon@redhat.com>

* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.

2010-02-24  Phil Muldoon  <pmuldoon@redhat.com>

* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
18 files changed:
gdb/ChangeLog
gdb/Makefile.in
gdb/NEWS
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/python/py-block.c [new file with mode: 0644]
gdb/python/py-frame.c
gdb/python/py-symbol.c [new file with mode: 0644]
gdb/python/py-symtab.c [new file with mode: 0644]
gdb/python/python-internal.h
gdb/python/python.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.python/Makefile.in
gdb/testsuite/gdb.python/py-block.c [new file with mode: 0644]
gdb/testsuite/gdb.python/py-block.exp [new file with mode: 0644]
gdb/testsuite/gdb.python/py-symbol.c [new file with mode: 0644]
gdb/testsuite/gdb.python/py-symbol.exp [new file with mode: 0644]
gdb/testsuite/gdb.python/py-symtab.exp [new file with mode: 0644]