Searched refs:wq_entry (Results 1 - 2 of 2) sorted by relevance

/gem5/src/mem/cache/
H A Dbase.hh1105 WriteQueueEntry *wq_entry = local
1107 if (wq_entry && !wq_entry->inService) {
1248 * @param wq_entry The write-queue entry to turn into a packet and send
1251 bool sendWriteQueuePacket(WriteQueueEntry* wq_entry);
H A Dbase.cc727 WriteQueueEntry *wq_entry = writeBuffer.getNext(); local
731 if (wq_entry && (writeBuffer.isFull() || !miss_mshr)) {
733 MSHR *conflict_mshr = mshrQueue.findPending(wq_entry);
735 if (conflict_mshr && conflict_mshr->order < wq_entry->order) {
743 return wq_entry;
757 // should we return wq_entry here instead? I.e. do we
770 assert(!miss_mshr && !wq_entry);
1821 BaseCache::sendWriteQueuePacket(WriteQueueEntry* wq_entry)
1823 assert(wq_entry);
1826 PacketPtr tgt_pkt = wq_entry
[all...]

Completed in 14 milliseconds