We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8084f56 commit d6c92b5Copy full SHA for d6c92b5
core/lsu/LSU.cpp
@@ -935,7 +935,9 @@ namespace olympia
935
936
void LSU::allocateInstToStoreBuffer_(const InstPtr & inst_ptr)
937
{
938
+ std::cout << "Creating store info for UID: " << inst_ptr->getUniqueID() << "\n";
939
const auto & store_info_ptr = createLoadStoreInst_(inst_ptr);
940
+ std::cout << "Store info created: " << (store_info_ptr != nullptr) << "\n";
941
942
sparta_assert(store_buffer_.size() < ldst_inst_queue_size_,
943
"Appending store buffer causes overflows!");
0 commit comments