From bb23c5075e7a247eaa452a5c7d9bae4c785f730e Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 4 Oct 2017 19:29:49 -0700 Subject: misc: Make decode_packet_trace.py print the new master ID fields. Those fields are "repeated" which means they can appear zero times, which they will in older style traces. Change-Id: Ib6ff4aab521332cf1405549d0d6e922c51c12f32 Reviewed-on: https://gem5-review.googlesource.com/5003 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- util/decode_packet_trace.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'util') diff --git a/util/decode_packet_trace.py b/util/decode_packet_trace.py index 34a0d8bbc..c21a150fa 100755 --- a/util/decode_packet_trace.py +++ b/util/decode_packet_trace.py @@ -105,6 +105,9 @@ def main(): print "Object id:", header.obj_id print "Tick frequency:", header.tick_freq + for id_string in header.id_strings: + print 'Master id %d: %s' % (id_string.key, id_string.value) + print "Parsing packets" num_packets = 0 -- cgit v1.2.3