From f8d85475757e8be8b528895f302fd2609f0990a4 Mon Sep 17 00:00:00 2001 From: Hoa Nguyen Date: Mon, 12 Apr 2021 15:24:40 -0700 Subject: [PATCH] util: Add missing parameter for print_insts JIRA: https://gem5.atlassian.net/browse/GEM5-949 Change-Id: I74fe7adc06124d193f17d682882766484ac18528 Signed-off-by: Hoa Nguyen Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/44448 Reviewed-by: Gabe Black Maintainer: Gabe Black Tested-by: kokoro --- util/o3-pipeview.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/o3-pipeview.py b/util/o3-pipeview.py index 11e86a7434..630c536cd9 100755 --- a/util/o3-pipeview.py +++ b/util/o3-pipeview.py @@ -129,7 +129,8 @@ def process_trace(trace, outfile, cycle_time, width, color, timestamps, if fields[1] == 'fetch': if ((stop_tick > 0 and int(fields[2]) > stop_tick+insts['tick_drift']) or (stop_sn > 0 and int(fields[5]) > (stop_sn+insts['max_threshold']))): - print_insts(outfile, cycle_time, width, color, timestamps, 0) + print_insts(outfile, cycle_time, width, color, timestamps, + store_completions, 0) return (curr_inst['pc'], curr_inst['upc']) = fields[3:5] curr_inst['sn'] = int(fields[5])