gem5
v21.0.0.0
|
#include <GPUCoalescer.hh>
Public Member Functions | |
UncoalescedTable (GPUCoalescer *gc) | |
~UncoalescedTable () | |
void | insertPacket (PacketPtr pkt) |
bool | packetAvailable () |
void | printRequestTable (std::stringstream &ss) |
void | initPacketsRemaining (InstSeqNum seqNum, int count) |
int | getPacketsRemaining (InstSeqNum seqNum) |
void | setPacketsRemaining (InstSeqNum seqNum, int count) |
PerInstPackets * | getInstPackets (int offset) |
void | updateResources () |
bool | areRequestsDone (const InstSeqNum instSeqNum) |
void | checkDeadlock (Tick threshold) |
Private Attributes | |
GPUCoalescer * | coalescer |
std::map< InstSeqNum, PerInstPackets > | instMap |
std::map< InstSeqNum, int > | instPktsRemaining |
Definition at line 63 of file GPUCoalescer.hh.
UncoalescedTable::UncoalescedTable | ( | GPUCoalescer * | gc | ) |
Definition at line 57 of file GPUCoalescer.cc.
|
inline |
Definition at line 67 of file GPUCoalescer.hh.
bool UncoalescedTable::areRequestsDone | ( | const InstSeqNum | instSeqNum | ) |
Definition at line 137 of file GPUCoalescer.cc.
References DPRINTF, and instMap.
Referenced by GPUCoalescer::writeCompleteCallback().
void UncoalescedTable::checkDeadlock | ( | Tick | threshold | ) |
Definition at line 161 of file GPUCoalescer.cc.
References coalescer, curTick(), RubyPort::getId(), instMap, panic, printRequestTable(), and ArmISA::ss.
Referenced by GPUCoalescer::wakeup().
PerInstPackets * UncoalescedTable::getInstPackets | ( | int | offset | ) |
Definition at line 99 of file GPUCoalescer.cc.
References instMap, and ArmISA::offset.
Referenced by GPUCoalescer::completeIssue().
int UncoalescedTable::getPacketsRemaining | ( | InstSeqNum | seqNum | ) |
Definition at line 87 of file GPUCoalescer.cc.
References instPktsRemaining.
Referenced by GPUCoalescer::completeIssue().
void UncoalescedTable::initPacketsRemaining | ( | InstSeqNum | seqNum, |
int | count | ||
) |
Definition at line 79 of file GPUCoalescer.cc.
References X86ISA::count, and instPktsRemaining.
Referenced by GPUCoalescer::makeRequest().
void UncoalescedTable::insertPacket | ( | PacketPtr | pkt | ) |
Definition at line 63 of file GPUCoalescer.cc.
References DPRINTF, Packet::getAddr(), instMap, and Packet::req.
Referenced by GPUCoalescer::makeRequest().
bool UncoalescedTable::packetAvailable | ( | ) |
Definition at line 73 of file GPUCoalescer.cc.
References instMap.
Referenced by GPUCoalescer::completeHitCallback().
void UncoalescedTable::printRequestTable | ( | std::stringstream & | ss | ) |
Definition at line 150 of file GPUCoalescer.cc.
References instMap, printAddress(), and ArmISA::ss.
Referenced by checkDeadlock(), and GPUCoalescer::printRequestTable().
void UncoalescedTable::setPacketsRemaining | ( | InstSeqNum | seqNum, |
int | count | ||
) |
Definition at line 93 of file GPUCoalescer.cc.
References X86ISA::count, and instPktsRemaining.
Referenced by GPUCoalescer::completeIssue().
void UncoalescedTable::updateResources | ( | ) |
Definition at line 112 of file GPUCoalescer.cc.
References coalescer, DPRINTF, GPUCoalescer::getGMTokenPort(), instMap, instPktsRemaining, SimObject::name(), and TokenResponsePort::sendTokens().
Referenced by GPUCoalescer::completeIssue().
|
private |
Definition at line 91 of file GPUCoalescer.hh.
Referenced by checkDeadlock(), and updateResources().
|
private |
Definition at line 97 of file GPUCoalescer.hh.
Referenced by areRequestsDone(), checkDeadlock(), getInstPackets(), insertPacket(), packetAvailable(), printRequestTable(), and updateResources().
|
private |
Definition at line 99 of file GPUCoalescer.hh.
Referenced by getPacketsRemaining(), initPacketsRemaining(), setPacketsRemaining(), and updateResources().