From 2f595167a400d8cf919ecbe6dd6914daff470158 Mon Sep 17 00:00:00 2001 From: Franz Fuchs Date: Fri, 29 Jul 2022 15:41:28 +0100 Subject: [PATCH] commented out debug print statements in Ras.bsv --- src_Core/RISCY_OOO/procs/lib/Ras.bsv | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src_Core/RISCY_OOO/procs/lib/Ras.bsv b/src_Core/RISCY_OOO/procs/lib/Ras.bsv index f8e7ca9..defb506 100644 --- a/src_Core/RISCY_OOO/procs/lib/Ras.bsv +++ b/src_Core/RISCY_OOO/procs/lib/Ras.bsv @@ -100,7 +100,7 @@ module mkRas(ReturnAddrStack) provisos(NumAlias#(TExp#(TLog#(RasEntries)), RasEn RasIndex h = head[i]; if (doPop) begin h = h - 1; - $display("RAS pop head<-%d, val:%x", head[i] - 1, stack[head[i]][0]); + //$display("RAS pop head<-%d, val:%x", head[i] - 1, stack[head[i]][0]); end head[i] <= h; return h; @@ -115,21 +115,21 @@ module mkRas(ReturnAddrStack) provisos(NumAlias#(TExp#(TLog#(RasEntries)), RasEn valids[h+1][0] <= False; `ifndef NO_SPEC_RSB_PUSH stack[h+1][1] <= pushAddr; - $display("RAS push stack[%d] <- %x", h+1, pushAddr); + //$display("RAS push stack[%d] <- %x", h+1, pushAddr); `endif h <= h+1; - $display("RAS head<-%d", h + 1); + //$display("RAS head<-%d", h + 1); endmethod method Action write(CapMem pushAddr, RasIndex h); stack[h][1] <= pushAddr; valids[h][1] <= True; - $display("RAS write stack[%d] <- %x", h, pushAddr); + //$display("RAS write stack[%d] <- %x", h, pushAddr); endmethod method Action setHead(RasIndex h); head[valueof(SupSize)] <= h; - $display("RAS fixup head<-%d", h); + //$display("RAS fixup head<-%d", h); endmethod interface ras = rasIfc;