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
2016-11-21 23:39:57 +08:00
|
|
|
/* Python interface to btrace record targets.
|
|
|
|
|
2018-01-01 12:43:02 +08:00
|
|
|
Copyright 2016-2018 Free Software Foundation, Inc.
|
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
2016-11-21 23:39:57 +08:00
|
|
|
|
|
|
|
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_BTRACE_H
|
|
|
|
#define GDB_PY_RECORD_BTRACE_H
|
|
|
|
|
|
|
|
#include "python-internal.h"
|
|
|
|
|
|
|
|
/* Implementation of record.method [str]. */
|
|
|
|
extern PyObject *recpy_bt_method (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.format [str]. */
|
|
|
|
extern PyObject *recpy_bt_format (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.goto (instruction) -> None. */
|
|
|
|
extern PyObject *recpy_bt_goto (PyObject *self, PyObject *value);
|
|
|
|
|
|
|
|
/* Implementation of record.instruction_history [list]. */
|
|
|
|
extern PyObject *recpy_bt_instruction_history (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.function_call_history [list]. */
|
|
|
|
extern PyObject *recpy_bt_function_call_history (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.replay_position [instruction]. */
|
|
|
|
extern PyObject *recpy_bt_replay_position (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.begin [instruction]. */
|
|
|
|
extern PyObject *recpy_bt_begin (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of record.end [instruction]. */
|
|
|
|
extern PyObject *recpy_bt_end (PyObject *self, void *closure);
|
|
|
|
|
2017-05-02 17:35:54 +08:00
|
|
|
/* Implementation of RecordInstruction.number [int]. */
|
|
|
|
extern PyObject *recpy_bt_insn_number (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.sal [gdb.Symtab_and_line]. */
|
|
|
|
extern PyObject *recpy_bt_insn_sal (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.pc [int]. */
|
|
|
|
extern PyObject *recpy_bt_insn_pc (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.data [buffer]. */
|
|
|
|
extern PyObject *recpy_bt_insn_data (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.decoded [str]. */
|
|
|
|
extern PyObject *recpy_bt_insn_decoded (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.size [int]. */
|
|
|
|
extern PyObject *recpy_bt_insn_size (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordInstruction.is_speculative [bool]. */
|
|
|
|
extern PyObject *recpy_bt_insn_is_speculative (PyObject *self, void *closure);
|
|
|
|
|
2017-05-02 17:35:54 +08:00
|
|
|
/* Implementation of RecordFunctionSegment.number [int]. */
|
|
|
|
extern PyObject *recpy_bt_func_number (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.number [int]. */
|
|
|
|
extern PyObject *recpy_bt_func_level (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.symbol [gdb.Symbol]. */
|
|
|
|
extern PyObject *recpy_bt_func_symbol (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.instructions [list]. */
|
|
|
|
extern PyObject *recpy_bt_func_instructions (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.up [RecordFunctionSegment]. */
|
|
|
|
extern PyObject *recpy_bt_func_up (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.prev [RecordFunctionSegment]. */
|
|
|
|
extern PyObject *recpy_bt_func_prev (PyObject *self, void *closure);
|
|
|
|
|
|
|
|
/* Implementation of RecordFunctionSegment.next [RecordFunctionSegment]. */
|
|
|
|
extern PyObject *recpy_bt_func_next (PyObject *self, void *closure);
|
|
|
|
|
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
2016-11-21 23:39:57 +08:00
|
|
|
#endif /* GDB_PY_RECORD_BTRACE_H */
|