----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: http://reviews.m5sim.org/r/908/#review1947 -----------------------------------------------------------
src/cpu/o3/lsq_unit_impl.hh <http://reviews.m5sim.org/r/908/#comment2453> Here, we should use a member variable inside the LSQUnit instead of the pointer reference to the CPU's member variable. That way we get: if (needsTSO) storeInFlight=false vs. if (cpu->needsTSO) storeInFlight=false src/cpu/o3/lsq_unit_impl.hh <http://reviews.m5sim.org/r/908/#comment2454> Here, we should use a member variable inside the LSQUnit instead of the pointer reference to the CPU's member variable. That way we get: if (needsTSO) storeInFlight=false vs. if (cpu->needsTSO) storeInFlight=false (same for line 773) src/cpu/o3/lsq_unit_impl.hh <http://reviews.m5sim.org/r/908/#comment2452> same as above. - Korey On 2012-01-13 04:57:18, Nilay Vaish wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > http://reviews.m5sim.org/r/908/ > ----------------------------------------------------------- > > (Updated 2012-01-13 04:57:18) > > > Review request for Default. > > > Summary > ------- > > Changeset 8702:9a5651e7bd5b > --------------------------- > O3 LSQ: Implement TSO > This patch makes O3's LSQ maintain total order between stores. Essentially > only the store at the head of the store buffer is allowed to be in flight. > Only after that store completes, the next store is issued to the memory > system. > > > Diffs > ----- > > src/cpu/o3/O3CPU.py f348cf78072c > src/cpu/o3/cpu.hh f348cf78072c > src/cpu/o3/cpu.cc f348cf78072c > src/cpu/o3/lsq_unit.hh f348cf78072c > src/cpu/o3/lsq_unit_impl.hh f348cf78072c > > Diff: http://reviews.m5sim.org/r/908/diff > > > Testing > ------- > > > Thanks, > > Nilay > > _______________________________________________ gem5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/gem5-dev
