diff options
author | Markus Metzger <markus.t.metzger@intel.com> | 2013-09-10 12:27:14 +0200 |
---|---|---|
committer | Markus Metzger <markus.t.metzger@intel.com> | 2014-01-16 13:12:00 +0100 |
commit | 6e07b1d27e5d3fb20e7d13f0cadfd923243fc48d (patch) | |
tree | 9e0046ecb5176806772d54c8369024d04a6ae82d /gdb/btrace.h | |
parent | 969c39fbcd6a5675c1f4b97cd23d680e4b5b6487 (diff) | |
download | gdb-6e07b1d27e5d3fb20e7d13f0cadfd923243fc48d.zip gdb-6e07b1d27e5d3fb20e7d13f0cadfd923243fc48d.tar.gz gdb-6e07b1d27e5d3fb20e7d13f0cadfd923243fc48d.tar.bz2 |
record-btrace: show trace from enable location
The btrace record target shows the branch trace from the location of the first
branch destination. This is the first BTS records.
After adding incremental updates, we can now add a dummy record for the current
PC when we enable tracing so we show the trace from the location where branch
tracing has been enabled.
2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
* btrace.c: Include regcache.h.
(btrace_add_pc): New.
(btrace_enable): Call btrace_add_pc.
(btrace_is_empty): New.
* btrace.h (btrace_is_empty): New.
* record-btrace.c (require_btrace, record_btrace_info): Call
btrace_is_empty.
testsuite/
* gdb.btrace/Makefile.in (EXECUTABLES): Add delta.
* gdb.btrace/exception.exp: Update.
* gdb.btrace/instruction_history.exp: Update.
* gdb.btrace/record_goto.exp: Update.
* gdb.btrace/tailcall.exp: Update.
* gdb.btrace/unknown_functions.exp: Update.
* gdb.btrace/delta.exp: New.
Diffstat (limited to 'gdb/btrace.h')
-rw-r--r-- | gdb/btrace.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/btrace.h b/gdb/btrace.h index 93e6940..193f916 100644 --- a/gdb/btrace.h +++ b/gdb/btrace.h @@ -314,4 +314,8 @@ extern void btrace_set_call_history (struct btrace_thread_info *, /* Determine if branch tracing is currently replaying TP. */ extern int btrace_is_replaying (struct thread_info *tp); +/* Return non-zero if the branch trace for TP is empty; zero otherwise. */ +extern int btrace_is_empty (struct thread_info *tp); + + #endif /* BTRACE_H */ |