diff options
author | Tim Wiederhake <tim.wiederhake@intel.com> | 2016-11-21 16:39:57 +0100 |
---|---|---|
committer | Tim Wiederhake <tim.wiederhake@intel.com> | 2017-02-14 10:57:56 +0100 |
commit | 75c0bdf484b7a949a53b04edd95edca5f4662184 (patch) | |
tree | 7c1029d63d7d27e89d6b76d1ea2033257e90b9dd /gdb/python/py-record-full.h | |
parent | 4726b2d82c89fe6f8e769d1ae9f9e5e528f91156 (diff) | |
download | fsf-binutils-gdb-75c0bdf484b7a949a53b04edd95edca5f4662184.zip fsf-binutils-gdb-75c0bdf484b7a949a53b04edd95edca5f4662184.tar.gz fsf-binutils-gdb-75c0bdf484b7a949a53b04edd95edca5f4662184.tar.bz2 |
python: Implement btrace Python bindings for record history.
This patch implements the gdb.Record Python object methods and fields for
record target btrace. Also, implement a stub for record target full.
Signed-off-by: Tim Wiederhake <tim.wiederhake@intel.com>
gdb/ChangeLog:
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
py-record-full.o.
(SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
* python/py-record-btrace.c, python/py-record-btrace.h,
python/py-record-full.c, python/py-record-full.h: New file.
* python/py-record.c: Add include for py-record-btrace.h and
py-record-full.h.
(recpy_method, recpy_format, recpy_goto, recpy_replay_position,
recpy_instruction_history, recpy_function_call_history, recpy_begin,
recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
* python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
New definition.
(gdbpy_initialize_btrace): New export.
* python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
Change-Id: I8bd893672ffc7e619cc1386767897249e125973a
Diffstat (limited to 'gdb/python/py-record-full.h')
-rw-r--r-- | gdb/python/py-record-full.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gdb/python/py-record-full.h b/gdb/python/py-record-full.h new file mode 100644 index 0000000..30acc51 --- /dev/null +++ b/gdb/python/py-record-full.h @@ -0,0 +1,31 @@ +/* Python interface to full record targets. + + Copyright 2016-2017 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_RECORD_FULL_H +#define GDB_PY_RECORD_FULL_H + +#include "python-internal.h" + +/* Implementation of record.method [str]. */ +extern PyObject *recpy_full_method (PyObject *self, void *value); + +/* Implementation of record.format [str]. */ +extern PyObject *recpy_full_format (PyObject *self, void *value); + +#endif /* GDB_PY_RECORD_FULL_H */ |