gem5
v20.0.0.3
|
Internal ring buffer which is used to prefetch/store copies of the in-memory HSA ring buffer. More...
#include <hsa_packet_processor.hh>
Public Member Functions | |
std::string | name () |
AQLRingBuffer (uint32_t size, const std::string name) | |
int | allocEntry (uint32_t nBufReq) |
bool | freeEntry (void *pkt) |
void | saveHostDispAddr (Addr host_pkt_addr, int num_pkts, int ix) |
the kernel may try to read from the dispatch packet, so we need to keep the host address that corresponds to each of the dispatch packets this AQL buffer is storing. More... | |
Addr | hostDispAddr () const |
bool | dispPending () const |
uint32_t | nFree () const |
void * | ptr (uint32_t ix) |
uint32_t | numObjs () const |
uint32_t | objSize () const |
uint64_t | dispIdx () const |
uint64_t | wrIdx () const |
uint64_t | rdIdx () const |
uint64_t * | rdIdxPtr () |
void | incRdIdx (uint64_t value) |
void | incWrIdx (uint64_t value) |
void | incDispIdx (uint64_t value) |
Private Attributes | |
std::vector< hsa_kernel_dispatch_packet_t > | _aqlBuf |
std::string | _name |
std::vector< Addr > | _hostDispAddresses |
std::vector< bool > | _aqlComplete |
uint64_t | _wrIdx |
uint64_t | _rdIdx |
uint64_t | _dispIdx |
Internal ring buffer which is used to prefetch/store copies of the in-memory HSA ring buffer.
Each packet in the queue has three implicit states tracked by a packet's relative location to the write, read, and dispatch pointers.
FREE: Entry is empty ALLOCATED: Entry has been allocated for a packet, but the DMA has not yet completed SUBMITTED: Packet has been submitted to the HSADevice, but has not yet completed
Definition at line 104 of file hsa_packet_processor.hh.
AQLRingBuffer::AQLRingBuffer | ( | uint32_t | size, |
const std::string | name | ||
) |
Definition at line 566 of file hsa_packet_processor.cc.
References _aqlBuf, _aqlComplete, _hostDispAddresses, MipsISA::fill, and HSA_PACKET_TYPE_INVALID.
int AQLRingBuffer::allocEntry | ( | uint32_t | nBufReq | ) |
Definition at line 606 of file hsa_packet_processor.cc.
References DPRINTF, incWrIdx(), nFree(), and wrIdx().
Referenced by HSAPacketProcessor::getCommandsFromHost().
|
inline |
Definition at line 158 of file hsa_packet_processor.hh.
Referenced by HWScheduler::isRLQIdle(), and HSAPacketProcessor::QueueProcessEvent::process().
|
inline |
Definition at line 146 of file hsa_packet_processor.hh.
References HSA_PACKET_HEADER_TYPE, HSA_PACKET_HEADER_WIDTH_TYPE, and HSA_PACKET_TYPE_INVALID.
Referenced by HSAPacketProcessor::RQLEntry::dispPending().
bool AQLRingBuffer::freeEntry | ( | void * | pkt | ) |
Definition at line 580 of file hsa_packet_processor.cc.
References _aqlBuf, _aqlComplete, DPRINTF, HSA_PACKET_TYPE_INVALID, incRdIdx(), nFree(), numObjs(), rdIdx(), and wrIdx().
|
inline |
Definition at line 140 of file hsa_packet_processor.hh.
References HSAQueueDescriptor::numObjs().
Referenced by HSAPacketProcessor::QueueProcessEvent::process().
|
inline |
Definition at line 164 of file hsa_packet_processor.hh.
Referenced by HSAPacketProcessor::QueueProcessEvent::process().
|
inline |
Definition at line 162 of file hsa_packet_processor.hh.
Referenced by freeEntry().
|
inline |
Definition at line 163 of file hsa_packet_processor.hh.
Referenced by allocEntry().
|
inline |
Definition at line 116 of file hsa_packet_processor.hh.
References name().
|
inline |
Definition at line 154 of file hsa_packet_processor.hh.
Referenced by allocEntry(), and freeEntry().
|
inline |
Definition at line 156 of file hsa_packet_processor.hh.
Referenced by freeEntry(), and HSAPacketProcessor::getCommandsFromHost().
|
inline |
Definition at line 157 of file hsa_packet_processor.hh.
References AQL_PACKET_SIZE.
|
inline |
Definition at line 155 of file hsa_packet_processor.hh.
Referenced by HSAPacketProcessor::getCommandsFromHost(), and HSAPacketProcessor::QueueProcessEvent::process().
|
inline |
Definition at line 160 of file hsa_packet_processor.hh.
Referenced by freeEntry(), HWScheduler::isRLQIdle(), HSAPacketProcessor::QueueProcessEvent::process(), and HSAPacketProcessor::updateReadIndex().
|
inline |
Definition at line 161 of file hsa_packet_processor.hh.
Referenced by HSAPacketProcessor::updateReadIndex().
|
inline |
the kernel may try to read from the dispatch packet, so we need to keep the host address that corresponds to each of the dispatch packets this AQL buffer is storing.
when we call submitPkt(), we send along the corresponding host address for the packet so the wavefront can properly initialize its SGPRs - which may include a pointer to the dispatch packet
Definition at line 131 of file hsa_packet_processor.hh.
References ArmISA::i, HSAQueueDescriptor::numObjs(), and HSAQueueDescriptor::objSize().
Referenced by HSAPacketProcessor::getCommandsFromHost().
|
inline |
Definition at line 159 of file hsa_packet_processor.hh.
Referenced by allocEntry(), freeEntry(), HSAPacketProcessor::getCommandsFromHost(), HSAPacketProcessor::QueueProcessEvent::process(), and HSAPacketProcessor::updateReadIndex().
|
private |
Definition at line 107 of file hsa_packet_processor.hh.
Referenced by AQLRingBuffer(), and freeEntry().
|
private |
Definition at line 110 of file hsa_packet_processor.hh.
Referenced by AQLRingBuffer(), and freeEntry().
|
private |
Definition at line 113 of file hsa_packet_processor.hh.
|
private |
Definition at line 109 of file hsa_packet_processor.hh.
Referenced by AQLRingBuffer().
|
private |
Definition at line 108 of file hsa_packet_processor.hh.
|
private |
Definition at line 112 of file hsa_packet_processor.hh.
|
private |
Definition at line 111 of file hsa_packet_processor.hh.