inorder: remove memdep tracking for default pipeline
[gem5.git] / src / cpu / inorder / resources / fetch_unit.cc
1 /*
2 * Copyright (c) 2011 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 *
30 */
31
32 #include <list>
33 #include <vector>
34
35 #include "arch/isa_traits.hh"
36 #include "arch/locked_mem.hh"
37 #include "arch/predecoder.hh"
38 #include "arch/utility.hh"
39 #include "config/the_isa.hh"
40 #include "cpu/inorder/resources/cache_unit.hh"
41 #include "cpu/inorder/resources/fetch_unit.hh"
42 #include "cpu/inorder/cpu.hh"
43 #include "cpu/inorder/pipeline_traits.hh"
44 #include "cpu/inorder/resource_pool.hh"
45 #include "debug/Activity.hh"
46 #include "debug/InOrderCachePort.hh"
47 #include "debug/InOrderStall.hh"
48 #include "debug/RefCount.hh"
49 #include "debug/ThreadModel.hh"
50 #include "mem/request.hh"
51
52 using namespace std;
53 using namespace TheISA;
54 using namespace ThePipeline;
55
56 FetchUnit::FetchUnit(string res_name, int res_id, int res_width,
57 int res_latency, InOrderCPU *_cpu,
58 ThePipeline::Params *params)
59 : CacheUnit(res_name, res_id, res_width, res_latency, _cpu, params),
60 instSize(sizeof(TheISA::MachInst)), fetchBuffSize(params->fetchBuffSize),
61 predecoder(NULL)
62 { }
63
64 FetchUnit::~FetchUnit()
65 {
66 std::list<FetchBlock*>::iterator fetch_it = fetchBuffer.begin();
67 std::list<FetchBlock*>::iterator end_it = fetchBuffer.end();
68 while (fetch_it != end_it) {
69 delete (*fetch_it)->block;
70 delete *fetch_it;
71 fetch_it++;
72 }
73 fetchBuffer.clear();
74
75
76 std::list<FetchBlock*>::iterator pend_it = pendingFetch.begin();
77 std::list<FetchBlock*>::iterator pend_end = pendingFetch.end();
78 while (pend_it != pend_end) {
79 if ((*pend_it)->block) {
80 delete (*pend_it)->block;
81 }
82
83 delete *pend_it;
84 pend_it++;
85 }
86 pendingFetch.clear();
87 }
88
89 void
90 FetchUnit::createMachInst(std::list<FetchBlock*>::iterator fetch_it,
91 DynInstPtr inst)
92 {
93 ExtMachInst ext_inst;
94 Addr block_addr = cacheBlockAlign(inst->getMemAddr());
95 Addr fetch_addr = inst->getMemAddr();
96 unsigned fetch_offset = (fetch_addr - block_addr) / instSize;
97 ThreadID tid = inst->readTid();
98 TheISA::PCState instPC = inst->pcState();
99
100
101 DPRINTF(InOrderCachePort, "Creating instruction [sn:%i] w/fetch data @"
102 "addr:%08p block:%08p\n", inst->seqNum, fetch_addr, block_addr);
103
104 assert((*fetch_it)->valid);
105
106 TheISA::MachInst *fetchInsts =
107 reinterpret_cast<TheISA::MachInst *>((*fetch_it)->block);
108
109 MachInst mach_inst =
110 TheISA::gtoh(fetchInsts[fetch_offset]);
111
112 predecoder.setTC(cpu->thread[tid]->getTC());
113 predecoder.moreBytes(instPC, inst->instAddr(), mach_inst);
114 assert(predecoder.extMachInstReady());
115 ext_inst = predecoder.getExtMachInst(instPC);
116
117 inst->pcState(instPC);
118 inst->setMachInst(ext_inst);
119 }
120
121 void
122 FetchUnit::removeAddrDependency(DynInstPtr inst)
123 {
124 inst->unsetMemAddr();
125 }
126
127 ResReqPtr
128 FetchUnit::getRequest(DynInstPtr inst, int stage_num, int res_idx,
129 int slot_num, unsigned cmd)
130 {
131 ScheduleEntry* sched_entry = *inst->curSkedEntry;
132 CacheRequest* cache_req = dynamic_cast<CacheRequest*>(reqs[slot_num]);
133
134 if (!inst->validMemAddr()) {
135 panic("Mem. Addr. must be set before requesting cache access\n");
136 }
137
138 assert(sched_entry->cmd == InitiateFetch);
139
140 DPRINTF(InOrderCachePort,
141 "[tid:%i]: Fetch request from [sn:%i] for addr %08p\n",
142 inst->readTid(), inst->seqNum, inst->getMemAddr());
143
144 cache_req->setRequest(inst, stage_num, id, slot_num,
145 sched_entry->cmd, MemCmd::ReadReq,
146 inst->curSkedEntry->idx);
147
148 return cache_req;
149 }
150
151 void
152 FetchUnit::setupMemRequest(DynInstPtr inst, CacheReqPtr cache_req,
153 int acc_size, int flags)
154 {
155 ThreadID tid = inst->readTid();
156 Addr aligned_addr = cacheBlockAlign(inst->getMemAddr());
157 if (cache_req->memReq == NULL) {
158 cache_req->memReq =
159 new Request(tid, aligned_addr, acc_size, flags,
160 inst->instAddr(), cpu->readCpuId(), tid);
161 DPRINTF(InOrderCachePort, "[sn:%i] Created memReq @%x, ->%x\n",
162 inst->seqNum, &cache_req->memReq, cache_req->memReq);
163 }
164 }
165
166 std::list<FetchUnit::FetchBlock*>::iterator
167 FetchUnit::findBlock(std::list<FetchBlock*> &fetch_blocks, int asid,
168 Addr block_addr)
169 {
170 std::list<FetchBlock*>::iterator fetch_it = fetch_blocks.begin();
171 std::list<FetchBlock*>::iterator end_it = fetch_blocks.end();
172
173 while (fetch_it != end_it) {
174 if ((*fetch_it)->asid == asid &&
175 (*fetch_it)->addr == block_addr) {
176 return fetch_it;
177 }
178
179 fetch_it++;
180 }
181
182 return fetch_it;
183 }
184
185 std::list<FetchUnit::FetchBlock*>::iterator
186 FetchUnit::findReplacementBlock()
187 {
188 std::list<FetchBlock*>::iterator fetch_it = fetchBuffer.begin();
189 std::list<FetchBlock*>::iterator end_it = fetchBuffer.end();
190
191 while (fetch_it != end_it) {
192 if ((*fetch_it)->cnt == 0) {
193 return fetch_it;
194 } else {
195 DPRINTF(InOrderCachePort, "Block %08p has %i insts pending.\n",
196 (*fetch_it)->addr, (*fetch_it)->cnt);
197 }
198 fetch_it++;
199 }
200
201 return fetch_it;
202 }
203
204 void
205 FetchUnit::markBlockUsed(std::list<FetchBlock*>::iterator block_it)
206 {
207 // Move block from whatever location it is in fetch buffer
208 // to the back (represents most-recently-used location)
209 if (block_it != fetchBuffer.end()) {
210 FetchBlock *mru_blk = *block_it;
211 fetchBuffer.erase(block_it);
212 fetchBuffer.push_back(mru_blk);
213 }
214 }
215
216 int
217 FetchUnit::blocksInUse()
218 {
219 std::list<FetchBlock*>::iterator fetch_it = fetchBuffer.begin();
220 std::list<FetchBlock*>::iterator end_it = fetchBuffer.end();
221
222 int cnt = 0;
223 while (fetch_it != end_it) {
224 if ((*fetch_it)->cnt > 0)
225 cnt++;
226
227 fetch_it++;
228 }
229
230 return cnt;
231 }
232
233 void
234 FetchUnit::execute(int slot_num)
235 {
236 CacheReqPtr cache_req = dynamic_cast<CacheReqPtr>(reqs[slot_num]);
237 assert(cache_req);
238
239 if (cachePortBlocked && cache_req->cmd == InitiateFetch) {
240 DPRINTF(InOrderCachePort, "Cache Port Blocked. Cannot Access\n");
241 cache_req->done(false);
242 return;
243 }
244
245 DynInstPtr inst = cache_req->inst;
246 ThreadID tid = inst->readTid();
247 Addr block_addr = cacheBlockAlign(inst->getMemAddr());
248 int asid = cpu->asid[tid];
249
250 inst->fault = NoFault;
251
252 switch (cache_req->cmd)
253 {
254 case InitiateFetch:
255 {
256 // Check to see if we've already got this request buffered
257 // or pending to be buffered
258 bool do_fetch = true;
259 int total_pending = pendingFetch.size() + blocksInUse();
260
261 std::list<FetchBlock*>::iterator pending_it;
262 pending_it = findBlock(pendingFetch, asid, block_addr);
263 if (pending_it != pendingFetch.end()) {
264 (*pending_it)->cnt++;
265 do_fetch = false;
266
267 DPRINTF(InOrderCachePort, "%08p is a pending fetch block "
268 "(pending:%i).\n", block_addr,
269 (*pending_it)->cnt);
270 } else if (total_pending < fetchBuffSize) {
271 std::list<FetchBlock*>::iterator buff_it;
272 buff_it = findBlock(fetchBuffer, asid, block_addr);
273 if (buff_it != fetchBuffer.end()) {
274 (*buff_it)->cnt++;
275 do_fetch = false;
276
277 DPRINTF(InOrderCachePort, "%08p is in fetch buffer "
278 "(pending:%i).\n", block_addr, (*buff_it)->cnt);
279 }
280 }
281
282 if (!do_fetch) {
283 DPRINTF(InOrderCachePort, "Inst. [sn:%i] marked to be filled "
284 "through fetch buffer.\n", inst->seqNum);
285 cache_req->fetchBufferFill = true;
286 cache_req->setCompleted(true);
287 return;
288 }
289
290 // Check to see if there is room in the fetchbuffer for this instruction.
291 // If not, block this request.
292 if (total_pending >= fetchBuffSize) {
293 DPRINTF(InOrderCachePort, "No room available in fetch buffer.\n");
294 cache_req->done(false);
295 return;
296 }
297
298 doTLBAccess(inst, cache_req, cacheBlkSize, 0, TheISA::TLB::Execute);
299
300 if (inst->fault == NoFault) {
301 DPRINTF(InOrderCachePort,
302 "[tid:%u]: Initiating fetch access to %s for "
303 "addr:%#x (block:%#x)\n", tid, name(),
304 cache_req->inst->getMemAddr(), block_addr);
305
306 cache_req->reqData = new uint8_t[cacheBlkSize];
307
308 inst->setCurResSlot(slot_num);
309
310 doCacheAccess(inst);
311
312 if (cache_req->isMemAccPending()) {
313 pendingFetch.push_back(new FetchBlock(asid, block_addr));
314
315 // mark replacement block
316 }
317 }
318
319 break;
320 }
321
322 case CompleteFetch:
323 if (cache_req->fetchBufferFill) {
324 // Block request if it's depending on a previous fetch, but it hasnt made it yet
325 std::list<FetchBlock*>::iterator fetch_it = findBlock(fetchBuffer, asid, block_addr);
326 if (fetch_it == fetchBuffer.end()) {
327 DPRINTF(InOrderCachePort, "%#x not available yet\n",
328 block_addr);
329 cache_req->setCompleted(false);
330 return;
331 }
332
333 // Make New Instruction
334 createMachInst(fetch_it, inst);
335 if (inst->traceData) {
336 inst->traceData->setStaticInst(inst->staticInst);
337 inst->traceData->setPC(inst->pcState());
338 }
339
340 // FetchBuffer Book-Keeping
341 (*fetch_it)->cnt--;
342 assert((*fetch_it)->cnt >= 0);
343 markBlockUsed(fetch_it);
344
345 cache_req->done();
346 return;
347 }
348
349 if (cache_req->isMemAccComplete()) {
350 if (fetchBuffer.size() >= fetchBuffSize) {
351 // If there is no replacement block, then we'll just have
352 // to wait till that gets cleared before satisfying the fetch
353 // for this instruction
354 std::list<FetchBlock*>::iterator repl_it =
355 findReplacementBlock();
356 if (repl_it == fetchBuffer.end()) {
357 DPRINTF(InOrderCachePort, "Unable to find replacement block"
358 " and complete fetch.\n");
359 cache_req->setCompleted(false);
360 return;
361 }
362
363 delete [] (*repl_it)->block;
364 delete *repl_it;
365 fetchBuffer.erase(repl_it);
366 }
367
368 DPRINTF(InOrderCachePort,
369 "[tid:%i]: Completing Fetch Access for [sn:%i]\n",
370 tid, inst->seqNum);
371
372 // Make New Instruction
373 std::list<FetchBlock*>::iterator fetch_it =
374 findBlock(pendingFetch, asid, block_addr);
375
376 assert(fetch_it != pendingFetch.end());
377 assert((*fetch_it)->valid);
378
379 createMachInst(fetch_it, inst);
380 if (inst->traceData) {
381 inst->traceData->setStaticInst(inst->staticInst);
382 inst->traceData->setPC(inst->pcState());
383 }
384
385
386 // Update instructions waiting on new fetch block
387 FetchBlock *new_block = (*fetch_it);
388 new_block->cnt--;
389 assert(new_block->cnt >= 0);
390
391 // Finally, update FetchBuffer w/Pending Block into the
392 // MRU location
393 pendingFetch.erase(fetch_it);
394 fetchBuffer.push_back(new_block);
395
396 DPRINTF(InOrderCachePort, "[tid:%i]: Instruction [sn:%i] is: %s\n",
397 tid, inst->seqNum,
398 inst->staticInst->disassemble(inst->instAddr()));
399
400 inst->unsetMemAddr();
401
402 cache_req->done();
403 } else {
404 DPRINTF(InOrderCachePort,
405 "[tid:%i]: [sn:%i]: Unable to Complete Fetch Access\n",
406 tid, inst->seqNum);
407 DPRINTF(InOrderStall,
408 "STALL: [tid:%i]: Fetch miss from %08p\n",
409 tid, cache_req->inst->instAddr());
410 cache_req->setCompleted(false);
411 // NOTE: For SwitchOnCacheMiss ThreadModel, we *don't* switch on
412 // fetch miss, but we could ...
413 // cache_req->setMemStall(true);
414 }
415 break;
416
417 default:
418 fatal("Unrecognized command to %s", resName);
419 }
420 }
421
422 void
423 FetchUnit::processCacheCompletion(PacketPtr pkt)
424 {
425 // Cast to correct packet type
426 CacheReqPacket* cache_pkt = dynamic_cast<CacheReqPacket*>(pkt);
427 assert(cache_pkt);
428
429 DPRINTF(InOrderCachePort, "Finished request for %x\n",
430 cache_pkt->getAddr());
431
432 if (processSquash(cache_pkt))
433 return;
434
435 Addr block_addr = cacheBlockAlign(cache_pkt->cacheReq->
436 getInst()->getMemAddr());
437
438 DPRINTF(InOrderCachePort,
439 "[tid:%u]: [sn:%i]: Waking from fetch access to addr:%#x(phys:%#x), size:%i\n",
440 cache_pkt->cacheReq->getInst()->readTid(),
441 cache_pkt->cacheReq->getInst()->seqNum,
442 block_addr, cache_pkt->getAddr(), cache_pkt->getSize());
443
444 // Cast to correct request type
445 CacheRequest *cache_req = dynamic_cast<CacheReqPtr>(
446 findRequest(cache_pkt->cacheReq->getInst(), cache_pkt->instIdx));
447
448 if (!cache_req) {
449 panic("[tid:%u]: [sn:%i]: Can't find slot for fetch access to "
450 "addr. %08p\n", cache_pkt->cacheReq->getInst()->readTid(),
451 cache_pkt->cacheReq->getInst()->seqNum,
452 block_addr);
453 }
454
455 // Get resource request info
456 unsigned stage_num = cache_req->getStageNum();
457 DynInstPtr inst = cache_req->inst;
458 ThreadID tid = cache_req->inst->readTid();
459 short asid = cpu->asid[tid];
460
461 assert(!cache_req->isSquashed());
462 assert(inst->curSkedEntry->cmd == CompleteFetch);
463
464 DPRINTF(InOrderCachePort,
465 "[tid:%u]: [sn:%i]: Processing fetch access for block %#x\n",
466 tid, inst->seqNum, block_addr);
467
468 std::list<FetchBlock*>::iterator pend_it = findBlock(pendingFetch, asid,
469 block_addr);
470 assert(pend_it != pendingFetch.end());
471
472 // Copy Data to pendingFetch queue...
473 (*pend_it)->block = new uint8_t[cacheBlkSize];
474 memcpy((*pend_it)->block, cache_pkt->getPtr<uint8_t>(), cacheBlkSize);
475 (*pend_it)->valid = true;
476
477 cache_req->setMemAccPending(false);
478 cache_req->setMemAccCompleted();
479
480 if (cache_req->isMemStall() &&
481 cpu->threadModel == InOrderCPU::SwitchOnCacheMiss) {
482 DPRINTF(InOrderCachePort, "[tid:%u] Waking up from Cache Miss.\n",
483 tid);
484
485 cpu->activateContext(tid);
486
487 DPRINTF(ThreadModel, "Activating [tid:%i] after return from cache"
488 "miss.\n", tid);
489 }
490
491 // Wake up the CPU (if it went to sleep and was waiting on this
492 // completion event).
493 cpu->wakeCPU();
494
495 DPRINTF(Activity, "[tid:%u] Activating %s due to cache completion\n",
496 tid, cpu->pipelineStage[stage_num]->name());
497
498 cpu->switchToActive(stage_num);
499 }
500
501 void
502 FetchUnit::squashCacheRequest(CacheReqPtr req_ptr)
503 {
504 DynInstPtr inst = req_ptr->getInst();
505 ThreadID tid = inst->readTid();
506 Addr block_addr = cacheBlockAlign(inst->getMemAddr());
507 int asid = cpu->asid[tid];
508
509 // Check Fetch Buffer (or pending fetch) for this block and
510 // update pending counts
511 std::list<FetchBlock*>::iterator buff_it = findBlock(fetchBuffer,
512 asid,
513 block_addr);
514 if (buff_it != fetchBuffer.end()) {
515 (*buff_it)->cnt--;
516 DPRINTF(InOrderCachePort, "[sn:%i] Removing Pending Access "
517 "for Fetch Buffer block %08p (cnt=%i)\n", inst->seqNum,
518 block_addr, (*buff_it)->cnt);
519 assert((*buff_it)->cnt >= 0);
520 } else {
521 std::list<FetchBlock*>::iterator block_it = findBlock(pendingFetch,
522 asid,
523 block_addr);
524 if (block_it != pendingFetch.end()) {
525 (*block_it)->cnt--;
526 DPRINTF(InOrderCachePort, "[sn:%i] Removing Pending Access "
527 "for Pending Buffer Block %08p (cnt=%i)\n",
528 inst->seqNum,
529 block_addr, (*block_it)->cnt);
530 assert((*block_it)->cnt >= 0);
531 if ((*block_it)->cnt == 0) {
532 if ((*block_it)->block) {
533 delete [] (*block_it)->block;
534 }
535 delete *block_it;
536 pendingFetch.erase(block_it);
537 }
538 }
539 }
540
541 CacheUnit::squashCacheRequest(req_ptr);
542 }
543
544 void
545 FetchUnit::trap(Fault fault, ThreadID tid, DynInstPtr inst)
546 {
547 //@todo: per thread?
548 predecoder.reset();
549 }