From df5a81183303fa941d71e866ff8d258e4d6a510e Mon Sep 17 00:00:00 2001 From: Victor Garcia Date: Thu, 7 Apr 2016 11:32:38 -0500 Subject: mem: Add Program Counter to MemTraceProbe --- util/decode_packet_trace.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/decode_packet_trace.py b/util/decode_packet_trace.py index e9105753d..97d344163 100755 --- a/util/decode_packet_trace.py +++ b/util/decode_packet_trace.py @@ -118,11 +118,15 @@ def main(): if packet.HasField('pkt_id'): ascii_out.write('%s,' % (packet.pkt_id)) if packet.HasField('flags'): - ascii_out.write('%s,%s,%s,%s,%s\n' % (cmd, packet.addr, packet.size, + ascii_out.write('%s,%s,%s,%s,%s' % (cmd, packet.addr, packet.size, packet.flags, packet.tick)) else: - ascii_out.write('%s,%s,%s,%s\n' % (cmd, packet.addr, packet.size, + ascii_out.write('%s,%s,%s,%s' % (cmd, packet.addr, packet.size, packet.tick)) + if packet.HasField('pc'): + ascii_out.write(',%s\n' % (packet.pc)) + else: + ascii_out.write('\n') print "Parsed packets:", num_packets -- cgit v1.2.3