old-cross-binutils/gdb/testsuite/gdb.python
Phil Muldoon 1e611234ee 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
* stack.c (backtrace_command_1): Add "no-filters", and Python frame
	filter logic.
	(backtrace_command): Add "no-filters" option parsing.
	(_initialize_stack): Alter help to reflect "no-filters" option.
	* Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
	(SUBDIR_PYTHON_SRCS): Add py-framefilter.c
	(py-frame.o): Add target
	* data-directory/Makefile.in (PYTHON_DIR): Add Python frame
	filter files.
	* python/python.h: Add new frame filter constants, and flag enum.
	(apply_frame_filter): Add definition.
	* python/python.c (apply_frame_filter): New non-Python
	enabled function.
	* python/py-utils.c (py_xdecref): New function.
	(make_cleanup_py_xdecref): Ditto.
	* python/py-objfile.c: Declare frame_filters dictionary.
	(objfpy_dealloc): Add frame_filters dealloc.
	(objfpy_new): Initialize frame_filters attribute.
	(objfile_to_objfile_object): Ditto.
	(objfpy_get_frame_filters): New function.
	(objfpy_set_frame_filters): New function.
	* python/py-progspace.c: Declare frame_filters dictionary.
	(pspy_dealloc): Add frame_filters dealloc.
	(pspy_new): Initialize frame_filters attribute.
	(pspacee_to_pspace_object): Ditto.
	(pspy_get_frame_filters): New function.
	(pspy_set_frame_filters): New function.
	* python/py-framefilter.c: New file.
	* python/lib/gdb/command/frame_filters.py: New file.
	* python/lib/gdb/frames.py: New file.
	* python/lib/gdb/__init__.py: Initialize global frame_filters
	dictionary
	* python/lib/gdb/FrameDecorator.py: New file.
	* python/lib/gdb/FrameIterator.py: New file.
	* mi/mi-cmds.c (mi_cmds): Add frame filters command.
	* mi/mi-cmds.h: Declare.
	* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
	--no-frame-filter logic, and Python frame filter logic.
	(stack_enable_frame_filters): New function.
	(parse_no_frame_option): Ditto.
	(mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
	filter logic.
	(mi_cmd_stack_list_locals): Ditto.
	(mi_cmd_stack_list_args): Ditto.
	(mi_cmd_stack_list_variables): Ditto.
	* NEWS: Add frame filter note.

2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>

	* gdb.python/py-framefilter.py: New File.
	* gdb.python/py-framefilter-mi.exp: Ditto.
	* gdb.python/py-framefilter.c: Ditto.
	* gdb.python/py-framefilter-mi.exp: Ditto.
	* gdb.python/py-framefilter-mi.c: Ditto,
	* gdb.python/py-framefilter-gdb.py.in: Ditto.

2013-05-10 Phil Muldoon  <pmuldoon@redhat.com>

	* gdb.texinfo (Backtrace): Add "no-filter" argument.
	(Python API): Add Frame	Filters API, Frame Wrapper API,
	Writing a Frame Filter/Wrapper,	Managing Management of Frame
	Filters chapter entries.
	(Frame Filters API): New Node.
	(Frame Wrapper API): New Node.
	(Writing a Frame Filter): New Node.
	(Managing Frame Filters): New Node.
	(Progspaces In Python): Add note about frame_filters attribute.
	(Objfiles in Python): Ditto.
	(GDB/MI Stack Manipulation): Add -enable-frame-filters command,
	@anchors and --no-frame-filters option to -stack-list-variables,
	-stack-list-frames, -stack-list-locals and -stack-list-arguments
	commands.
2013-05-10 10:26:03 +00:00
..
lib-types.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
lib-types.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
Makefile.in Add a new method 'disassemble' to gdb.Architecture class. 2013-02-21 01:46:57 +00:00
py-arch.c Add a new method 'disassemble' to gdb.Architecture class. 2013-02-21 01:46:57 +00:00
py-arch.exp Add a new method 'disassemble' to gdb.Architecture class. 2013-02-21 01:46:57 +00:00
py-block.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-block.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-breakpoint.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-breakpoint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-cmd.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-error.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-error.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-events-shlib.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-events.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-events.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-events.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-evsignal.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-evthreads.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-evthreads.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-explore-cc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-explore.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-explore.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-explore.exp * gdb.python/py-explore.exp: Expect the gdb prompt. 2013-01-25 17:59:29 +00:00
py-finish-breakpoint.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-finish-breakpoint.exp Fix gdb.python/py-finish-breakpoint.exp ERROR. 2013-01-13 08:24:22 +00:00
py-finish-breakpoint.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-finish-breakpoint2.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-finish-breakpoint2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-finish-breakpoint2.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-frame-inline.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-frame-inline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-frame.c
py-frame.exp Add a new class gdb.Architecture which exposes GDB's 2013-01-23 19:59:13 +00:00
py-framefilter-gdb.py.in 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-framefilter-mi.c 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-framefilter-mi.exp 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-framefilter.c 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-framefilter.exp 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-framefilter.py 2013-05-10 Phil Muldoon <pmuldoon@redhat.com> 2013-05-10 10:26:03 +00:00
py-function.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-inferior.c gdb/ 2012-07-26 19:09:35 +00:00
py-inferior.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-infthread.c
py-infthread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-mi.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-objfile-script-gdb.py.in Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-objfile-script.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-objfile-script.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-objfile.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-objfile.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-parameter.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-pp-maint.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-pp-maint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-pp-maint.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-prettyprint.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-prettyprint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-prettyprint.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-progspace.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-progspace.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-prompt.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-prompt.exp gdb/testsuite/ 2013-02-10 08:05:15 +00:00
py-section-script.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-section-script.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-section-script.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-shared-sl.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-shared.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-shared.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-strfns.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-strfns.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-symbol.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-symbol.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-symtab.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-template.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-template.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-type.c http://sourceware.org/ml/gdb-patches/2012-11/msg00312.html 2013-01-25 17:16:43 +00:00
py-type.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
py-typeprint.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-typeprint.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-typeprint.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-value-cc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-value.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-value.cc Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
py-value.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
python-1.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
python.c Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
python.exp Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
source1 Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00
source2.py Update years in copyright notice for the GDB files. 2013-01-01 06:41:43 +00:00