From 57110107a599cb73589a71751b83dba0084c93d5 Mon Sep 17 00:00:00 2001 From: MayneMei <69469280+MayneMei@users.noreply.github.com> Date: Mon, 2 Dec 2024 00:17:43 -0800 Subject: [PATCH] cout debugging --- core/LSU.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/LSU.cpp b/core/LSU.cpp index dfb4453b..0a94879d 100644 --- a/core/LSU.cpp +++ b/core/LSU.cpp @@ -185,6 +185,8 @@ namespace olympia // allocate to Store buffer if (inst_ptr->isStoreInst()) { + std::cout << "Dispatch: Inst type: " << (inst_ptr->isStoreInst() ? "Store" : "Load") + << " Buffer size: " << store_buffer_.size() << "\n"; allocateInstToStoreBuffer_(inst_ptr); }