Skip to content

Commit

Permalink
Rebased, vlsu test
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongchan committed Aug 1, 2024
1 parent 1adf72f commit b371d6f
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 105 deletions.
2 changes: 1 addition & 1 deletion core/MemoryAccessInfo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ namespace olympia

inline std::ostream & operator<<(std::ostream & os, const olympia::MemoryAccessInfo & mem)
{
os << "memptr: " << mem.getInstPtr() << " " << mem.getVAddr();
os << "memptr: " << mem.getInstPtr() << " vaddr: " << mem.getVAddr();
return os;
}

Expand Down
3 changes: 3 additions & 0 deletions core/ROB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ namespace olympia
// UPDATE:
ex_inst.setStatus(Inst::Status::RETIRED);
if (ex_inst.isStoreInst() && !ex_inst.isVector()) {
// We don't send signal back for vector because
// statuses are held by load_store_info_ptr, not inst_ptr
// like in LSU
out_rob_retire_ack_.send(ex_inst_ptr);
}

Expand Down
Loading

0 comments on commit b371d6f

Please sign in to comment.