This will help in tracking where we are in the stream when debugging.
Reviewed-by: Pavel Dovgalyuk <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Alex Bennée <[email protected]>
Message-Id: <[email protected]>
diff --git a/scripts/replay-dump.py b/scripts/replay-dump.py
index 6f300e4c54e..d668193e793 100755
--- a/scripts/replay-dump.py
+++ b/scripts/replay-dump.py
@@ -157,10 +157,13 @@ def decode_async(eid, name, dumpfile):
return call_decode(async_decode_table, async_event_kind, dumpfile)
+total_insns = 0
def decode_instruction(eid, name, dumpfile):
+ global total_insns
ins_diff = read_dword(dumpfile)
- print_event(eid, name, "0x%x" % (ins_diff))
+ total_insns += ins_diff
+ print_event(eid, name, "+ %d -> %d" % (ins_diff, total_insns))
return True
def decode_char_write(eid, name, dumpfile):
--
2.39.2