36 #include "debug/GPUFetch.hh" 37 #include "debug/GPUPort.hh" 38 #include "debug/GPUTLB.hh" 51 fetchScheduler(params),
128 DPRINTF(GPUTLB,
"CU%d: WF[%d][%d]: Initiating fetch translation: %#x\n",
135 Addr split_addr =
roundDown(vaddr + block_size - 1, block_size);
136 int size = block_size;
138 if (split_addr > vaddr) {
140 size = split_addr -
vaddr;
152 pkt->dataStatic(&fetchBlock);
162 false, pkt->senderState);
167 DPRINTF(GPUTLB,
"Failed to send TLB req for FETCH addr %#x\n",
178 DPRINTF(GPUTLB,
"Failed to send TLB req for FETCH addr %#x\n",
183 DPRINTF(GPUTLB,
"sent FETCH translation request for %#x\n", vaddr);
192 TheISA::GpuTLB::TranslationState *sender_state =
193 safe_cast<TheISA::GpuTLB::TranslationState*>(pkt->senderState);
195 delete sender_state->tlbEntry;
199 fetch(pkt, wavefront);
206 assert(pkt->
req->hasPaddr());
207 assert(pkt->
req->hasSize());
209 DPRINTF(GPUFetch,
"CU%d: WF[%d][%d]: Fetch Access: %#x\n",
211 pkt->
req->getPaddr());
218 pkt =
new Packet(oldPkt->req, oldPkt->cmd);
237 DPRINTF(GPUPort,
"CU%d: WF[%d][%d]: Fetch addr %#x failed!\n",
239 pkt->
req->getPaddr());
241 DPRINTF(GPUPort,
"CU%d: WF[%d][%d]: Fetch addr %#x sent!\n",
243 pkt->
req->getPaddr());
259 DPRINTF(GPUFetch,
"CU%d: WF[%d][%d]: Fetch addr %#x returned " 261 wavefront->simdId, wavefront->wfSlotId, pkt->
req->getPaddr(),
262 pkt->
req->getSize(), pkt->
req->getSize() /
265 if (wavefront->dropFetch) {
266 assert(wavefront->instructionBuffer.empty());
267 wavefront->dropFetch =
false;
272 assert(wavefront->instructionBuffer.size() <= 4);
274 for (
int i = 0;
i < pkt->
req->getSize() /
291 DPRINTF(GPUFetch,
"CU%d: WF[%d][%d]: added %s\n",
296 std::make_shared<GPUDynInst>(
computeUnit, wavefront, inst_ptr,
297 computeUnit->getAndIncSeqNum());
299 wavefront->instructionBuffer.push_back(gpuDynInst);
303 wavefront->pendingFetch =
false;
RubyTester::SenderState SenderState
std::deque< PacketPtr > retries
here we queue all the translation requests that were not successfully sent.
void bindList(std::vector< Wavefront *> *sched_list)
void init(ComputeUnit *cu)
virtual int instSize() const =0
std::shared_ptr< Request > RequestPtr
static uint32_t globalFetchUnitID
ComputeUnit * computeUnit
void processFetchReturn(PacketPtr pkt)
TheGpuISA::Decoder decoder
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the slave port by calling its corresponding receive function...
T * getPtr()
get a pointer to the data ptr.
std::vector< std::pair< Wavefront *, bool > > fetchStatusQueue
FetchUnit(const ComputeUnitParams *params)
RequestPtr req
A pointer to the original request.
bool instructionBufferHasBranch()
std::deque< std::pair< PacketPtr, Wavefront * > > retries
std::shared_ptr< GPUDynInst > GPUDynInstPtr
std::deque< GPUDynInstPtr > instructionBuffer
void bindWaveList(std::vector< Wavefront *> *list)
The request was an instruction fetch.
T roundDown(const T &val, const U &align)
This function is used to align addresses in memory.
void initiateFetch(Wavefront *wavefront)
std::vector< Wavefront * > * waveList
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
SenderState * senderState
This packet's sender state.
const std::string & disassemble()
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
uint64_t RawMachInst
used to represnt a GPU inst in its raw format.
void fetch(PacketPtr pkt, Wavefront *wavefront)
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
std::vector< Wavefront * > fetchQueue
int cacheLineSize() const
ProbePointArg< PacketInfo > Packet
Packet probe point.