diff options
author | Markus Metzger <mmetzger@sourceware.org> | 2013-03-11 08:51:58 +0000 |
---|---|---|
committer | Markus Metzger <mmetzger@sourceware.org> | 2013-03-11 08:51:58 +0000 |
commit | afedecd388d5a4db011c51c617daa1e7224b79e4 (patch) | |
tree | 3d300c5049d95f81e47b272d65b41bc988fa8271 /gdb/Makefile.in | |
parent | 15984c13c729e1f05eb789a3883df82994d5a593 (diff) | |
download | gdb-afedecd388d5a4db011c51c617daa1e7224b79e4.zip gdb-afedecd388d5a4db011c51c617daa1e7224b79e4.tar.gz gdb-afedecd388d5a4db011c51c617daa1e7224b79e4.tar.bz2 |
Add a target for branch trace recording.
The target implements the new record sub-commands
"record instruction-history" and
"record function-call-history".
The target does not support reverse execution or navigation in the
recorded execution log.
gdb/
* Makefile.in (SFILES): Add record-btrace.c
(COMMON_OBS): Add record-btrace.o
* record-btrace.c: New.
* objfiles.c: Include btrace.h.
(free_objfile): call btrace_free_objfile.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index a36d576..5366d9e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -760,7 +760,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ regset.c sol-thread.c windows-termcap.c \ common/gdb_vecs.c common/common-utils.c common/xml-utils.c \ common/ptid.c common/buffer.c gdb-dlfcn.c common/agent.c \ - common/format.c btrace.c + common/format.c btrace.c record-btrace.c LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c @@ -930,7 +930,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ inferior.o osdata.o gdb_usleep.o record.o record-full.o gcore.o \ gdb_vecs.o jit.o progspace.o skip.o probe.o \ common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o \ - format.o registry.o btrace.o + format.o registry.o btrace.o record-btrace.o TSOBS = inflow.o |