Searched refs:outstandingSnoop (Results 1 - 4 of 4) sorted by relevance

/gem5/src/mem/cache/
H A Dcache.hh82 std::unordered_set<RequestPtr> outstandingSnoop; member in class:Cache
H A Dcache.cc275 // (in which case it should be in the outstandingSnoop), or if we
277 const bool forwardAsSnoop = outstandingSnoop.find(pkt->req) ==
278 outstandingSnoop.end();
285 outstandingSnoop.erase(pkt->req);
1384 auto M5_VAR_USED r = outstandingSnoop.insert(snoop_pkt.req);
/gem5/src/mem/
H A Dcoherent_xbar.cc324 assert(outstandingSnoop.find(pkt->req) ==
325 outstandingSnoop.end());
326 outstandingSnoop.insert(pkt->req);
329 panic_if(outstandingSnoop.size() > maxOutstandingSnoopCheck,
575 // should be in the outstandingSnoop), or if we merely forwarded
577 const bool forwardAsSnoop = outstandingSnoop.find(pkt->req) ==
578 outstandingSnoop.end();
649 outstandingSnoop.erase(pkt->req);
H A Dcoherent_xbar.hh262 std::unordered_set<RequestPtr> outstandingSnoop; member in class:CoherentXBar

Completed in 15 milliseconds