File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -282,8 +282,8 @@ namespace olympia
282
282
283
283
if (inst_ptr->isStoreInst ())
284
284
{
285
- std::cout << " RETIRE: Buffer size before:" << store_buffer_.size ()
286
- << " UID:" << inst_ptr->getUniqueID () << " \n " ;
285
+ // std::cout << "RETIRE: Buffer size before:" << store_buffer_.size()
286
+ // << " UID:" << inst_ptr->getUniqueID() << "\n";
287
287
auto oldest_store = getOldestStore_ ();
288
288
sparta_assert (oldest_store && oldest_store->getInstPtr ()->getUniqueID () == inst_ptr->getUniqueID (),
289
289
" Attempting to retire store out of order! Expected: "
@@ -1446,7 +1446,7 @@ namespace olympia
1446
1446
1447
1447
void LSU::flushStoreBuffer_ (const FlushCriteria & criteria)
1448
1448
{
1449
- std::cout << " FLUSH: Store buffer size before:" << store_buffer_.size () << " \n " ;
1449
+ // std::cout << "FLUSH: Store buffer size before:" << store_buffer_.size() << "\n";
1450
1450
auto sb_iter = store_buffer_.begin ();
1451
1451
while (sb_iter != store_buffer_.end ()) {
1452
1452
auto inst_ptr = (*sb_iter)->getInstPtr ();
@@ -1459,7 +1459,7 @@ namespace olympia
1459
1459
++sb_iter;
1460
1460
}
1461
1461
}
1462
- std::cout << " FLUSH: Store buffer size after:" << store_buffer_.size () << " \n " ;
1462
+ // std::cout << "FLUSH: Store buffer size after:" << store_buffer_.size() << "\n";
1463
1463
}
1464
1464
1465
1465
} // namespace olympia
You can’t perform that action at this time.
0 commit comments