Fix a typo in the printf
[gem5.git] / src / mem / cache / base_cache.cc
1 /*
2 * Copyright (c) 2003-2005 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: Erik Hallnor
29 */
30
31 /**
32 * @file
33 * Definition of BaseCache functions.
34 */
35
36 #include "mem/cache/base_cache.hh"
37 #include "cpu/smt.hh"
38 #include "cpu/base.hh"
39
40 using namespace std;
41
42 BaseCache::CachePort::CachePort(const std::string &_name, BaseCache *_cache,
43 bool _isCpuSide)
44 : Port(_name), cache(_cache), isCpuSide(_isCpuSide)
45 {
46 blocked = false;
47 //Start ports at null if more than one is created we should panic
48 //cpuSidePort = NULL;
49 //memSidePort = NULL;
50 }
51
52 void
53 BaseCache::CachePort::recvStatusChange(Port::Status status)
54 {
55 cache->recvStatusChange(status, isCpuSide);
56 }
57
58 void
59 BaseCache::CachePort::getDeviceAddressRanges(AddrRangeList &resp,
60 AddrRangeList &snoop)
61 {
62 cache->getAddressRanges(resp, snoop, isCpuSide);
63 }
64
65 int
66 BaseCache::CachePort::deviceBlockSize()
67 {
68 return cache->getBlockSize();
69 }
70
71 bool
72 BaseCache::CachePort::recvTiming(Packet *pkt)
73 {
74 if (pkt->isRequest() && blocked)
75 {
76 DPRINTF(Cache,"Scheduling a retry while blocked\n");
77 mustSendRetry = true;
78 return false;
79 }
80 return cache->doTimingAccess(pkt, this, isCpuSide);
81 }
82
83 Tick
84 BaseCache::CachePort::recvAtomic(Packet *pkt)
85 {
86 return cache->doAtomicAccess(pkt, isCpuSide);
87 }
88
89 void
90 BaseCache::CachePort::recvFunctional(Packet *pkt)
91 {
92 cache->doFunctionalAccess(pkt, isCpuSide);
93 }
94
95 void
96 BaseCache::CachePort::recvRetry()
97 {
98 Packet *pkt;
99 if (!drainList.empty()) {
100 //We have some responses to drain first
101 bool result = true;
102 while (result && !drainList.empty()) {
103 result = sendTiming(drainList.front());
104 if (result)
105 drainList.pop_front();
106 }
107 }
108
109 if (!isCpuSide)
110 {
111 pkt = cache->getPacket();
112 MSHR* mshr = (MSHR*)pkt->senderState;
113 bool success = sendTiming(pkt);
114 DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
115 pkt->getAddr(), success ? "succesful" : "unsuccesful");
116 cache->sendResult(pkt, mshr, success);
117 if (success && cache->doMasterRequest())
118 {
119 //Still more to issue, rerequest in 1 cycle
120 pkt = NULL;
121 BaseCache::CacheEvent * reqCpu = new BaseCache::CacheEvent(this);
122 reqCpu->schedule(curTick + 1);
123 }
124 }
125 else
126 {
127 //pkt = cache->getCoherencePacket();
128 //We save the packet, no reordering on CSHRS
129 pkt = cshrRetry;
130 bool success = sendTiming(pkt);
131 if (success && cache->doSlaveRequest())
132 {
133 //Still more to issue, rerequest in 1 cycle
134 pkt = NULL;
135 BaseCache::CacheEvent * reqCpu = new BaseCache::CacheEvent(this);
136 reqCpu->schedule(curTick + 1);
137 }
138
139 }
140 return;
141 }
142 void
143 BaseCache::CachePort::setBlocked()
144 {
145 assert(!blocked);
146 DPRINTF(Cache, "Cache Blocking\n");
147 blocked = true;
148 //Clear the retry flag
149 mustSendRetry = false;
150 }
151
152 void
153 BaseCache::CachePort::clearBlocked()
154 {
155 assert(blocked);
156 DPRINTF(Cache, "Cache Unblocking\n");
157 blocked = false;
158 if (mustSendRetry)
159 {
160 DPRINTF(Cache, "Cache Sending Retry\n");
161 mustSendRetry = false;
162 sendRetry();
163 }
164 }
165
166 BaseCache::CacheEvent::CacheEvent(CachePort *_cachePort)
167 : Event(&mainEventQueue, CPU_Tick_Pri), cachePort(_cachePort)
168 {
169 this->setFlags(AutoDelete);
170 pkt = NULL;
171 }
172
173 BaseCache::CacheEvent::CacheEvent(CachePort *_cachePort, Packet *_pkt)
174 : Event(&mainEventQueue, CPU_Tick_Pri), cachePort(_cachePort), pkt(_pkt)
175 {
176 this->setFlags(AutoDelete);
177 }
178
179 void
180 BaseCache::CacheEvent::process()
181 {
182 if (!pkt)
183 {
184 if (!cachePort->isCpuSide)
185 {
186 //MSHR
187 pkt = cachePort->cache->getPacket();
188 MSHR* mshr = (MSHR*) pkt->senderState;
189 bool success = cachePort->sendTiming(pkt);
190 DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
191 pkt->getAddr(), success ? "succesful" : "unsuccesful");
192 cachePort->cache->sendResult(pkt, mshr, success);
193 if (success && cachePort->cache->doMasterRequest())
194 {
195 //Still more to issue, rerequest in 1 cycle
196 pkt = NULL;
197 this->schedule(curTick+1);
198 }
199 }
200 else
201 {
202 //CSHR
203 pkt = cachePort->cache->getCoherencePacket();
204 bool success = cachePort->sendTiming(pkt);
205 if (!success) {
206 //Need to send on a retry
207 cachePort->cshrRetry = pkt;
208 }
209 else if (cachePort->cache->doSlaveRequest())
210 {
211 //Still more to issue, rerequest in 1 cycle
212 pkt = NULL;
213 this->schedule(curTick+1);
214 }
215 }
216 return;
217 }
218 //Response
219 //Know the packet to send
220 pkt->result = Packet::Success;
221 pkt->makeTimingResponse();
222 if (!cachePort->drainList.empty()) {
223 //Already blocked waiting for bus, just append
224 cachePort->drainList.push_back(pkt);
225 }
226 else if (!cachePort->sendTiming(pkt)) {
227 //It failed, save it to list of drain events
228 cachePort->drainList.push_back(pkt);
229 }
230 }
231
232 const char *
233 BaseCache::CacheEvent::description()
234 {
235 return "timing event\n";
236 }
237
238 Port*
239 BaseCache::getPort(const std::string &if_name, int idx)
240 {
241 if (if_name == "")
242 {
243 if(cpuSidePort == NULL)
244 cpuSidePort = new CachePort(name() + "-cpu_side_port", this, true);
245 return cpuSidePort;
246 }
247 else if (if_name == "functional")
248 {
249 if(cpuSidePort == NULL)
250 cpuSidePort = new CachePort(name() + "-cpu_side_port", this, true);
251 return cpuSidePort;
252 }
253 else if (if_name == "cpu_side")
254 {
255 if(cpuSidePort == NULL)
256 cpuSidePort = new CachePort(name() + "-cpu_side_port", this, true);
257 return cpuSidePort;
258 }
259 else if (if_name == "mem_side")
260 {
261 if (memSidePort != NULL)
262 panic("Already have a mem side for this cache\n");
263 memSidePort = new CachePort(name() + "-mem_side_port", this, false);
264 return memSidePort;
265 }
266 else panic("Port name %s unrecognized\n", if_name);
267 }
268
269 void
270 BaseCache::init()
271 {
272 if (!cpuSidePort || !memSidePort)
273 panic("Cache not hooked up on both sides\n");
274 cpuSidePort->sendStatusChange(Port::RangeChange);
275 }
276
277 void
278 BaseCache::regStats()
279 {
280 Request temp_req((Addr) NULL, 4, 0);
281 Packet::Command temp_cmd = Packet::ReadReq;
282 Packet temp_pkt(&temp_req, temp_cmd, 0); //@todo FIx command strings so this isn't neccessary
283 temp_pkt.allocate(); //Temp allocate, all need data
284
285 using namespace Stats;
286
287 // Hit statistics
288 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
289 Packet::Command cmd = (Packet::Command)access_idx;
290 const string &cstr = temp_pkt.cmdIdxToString(cmd);
291
292 hits[access_idx]
293 .init(maxThreadsPerCPU)
294 .name(name() + "." + cstr + "_hits")
295 .desc("number of " + cstr + " hits")
296 .flags(total | nozero | nonan)
297 ;
298 }
299
300 demandHits
301 .name(name() + ".demand_hits")
302 .desc("number of demand (read+write) hits")
303 .flags(total)
304 ;
305 demandHits = hits[Packet::ReadReq] + hits[Packet::WriteReq];
306
307 overallHits
308 .name(name() + ".overall_hits")
309 .desc("number of overall hits")
310 .flags(total)
311 ;
312 overallHits = demandHits + hits[Packet::SoftPFReq] + hits[Packet::HardPFReq]
313 + hits[Packet::Writeback];
314
315 // Miss statistics
316 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
317 Packet::Command cmd = (Packet::Command)access_idx;
318 const string &cstr = temp_pkt.cmdIdxToString(cmd);
319
320 misses[access_idx]
321 .init(maxThreadsPerCPU)
322 .name(name() + "." + cstr + "_misses")
323 .desc("number of " + cstr + " misses")
324 .flags(total | nozero | nonan)
325 ;
326 }
327
328 demandMisses
329 .name(name() + ".demand_misses")
330 .desc("number of demand (read+write) misses")
331 .flags(total)
332 ;
333 demandMisses = misses[Packet::ReadReq] + misses[Packet::WriteReq];
334
335 overallMisses
336 .name(name() + ".overall_misses")
337 .desc("number of overall misses")
338 .flags(total)
339 ;
340 overallMisses = demandMisses + misses[Packet::SoftPFReq] +
341 misses[Packet::HardPFReq] + misses[Packet::Writeback];
342
343 // Miss latency statistics
344 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
345 Packet::Command cmd = (Packet::Command)access_idx;
346 const string &cstr = temp_pkt.cmdIdxToString(cmd);
347
348 missLatency[access_idx]
349 .init(maxThreadsPerCPU)
350 .name(name() + "." + cstr + "_miss_latency")
351 .desc("number of " + cstr + " miss cycles")
352 .flags(total | nozero | nonan)
353 ;
354 }
355
356 demandMissLatency
357 .name(name() + ".demand_miss_latency")
358 .desc("number of demand (read+write) miss cycles")
359 .flags(total)
360 ;
361 demandMissLatency = missLatency[Packet::ReadReq] + missLatency[Packet::WriteReq];
362
363 overallMissLatency
364 .name(name() + ".overall_miss_latency")
365 .desc("number of overall miss cycles")
366 .flags(total)
367 ;
368 overallMissLatency = demandMissLatency + missLatency[Packet::SoftPFReq] +
369 missLatency[Packet::HardPFReq];
370
371 // access formulas
372 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
373 Packet::Command cmd = (Packet::Command)access_idx;
374 const string &cstr = temp_pkt.cmdIdxToString(cmd);
375
376 accesses[access_idx]
377 .name(name() + "." + cstr + "_accesses")
378 .desc("number of " + cstr + " accesses(hits+misses)")
379 .flags(total | nozero | nonan)
380 ;
381
382 accesses[access_idx] = hits[access_idx] + misses[access_idx];
383 }
384
385 demandAccesses
386 .name(name() + ".demand_accesses")
387 .desc("number of demand (read+write) accesses")
388 .flags(total)
389 ;
390 demandAccesses = demandHits + demandMisses;
391
392 overallAccesses
393 .name(name() + ".overall_accesses")
394 .desc("number of overall (read+write) accesses")
395 .flags(total)
396 ;
397 overallAccesses = overallHits + overallMisses;
398
399 // miss rate formulas
400 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
401 Packet::Command cmd = (Packet::Command)access_idx;
402 const string &cstr = temp_pkt.cmdIdxToString(cmd);
403
404 missRate[access_idx]
405 .name(name() + "." + cstr + "_miss_rate")
406 .desc("miss rate for " + cstr + " accesses")
407 .flags(total | nozero | nonan)
408 ;
409
410 missRate[access_idx] = misses[access_idx] / accesses[access_idx];
411 }
412
413 demandMissRate
414 .name(name() + ".demand_miss_rate")
415 .desc("miss rate for demand accesses")
416 .flags(total)
417 ;
418 demandMissRate = demandMisses / demandAccesses;
419
420 overallMissRate
421 .name(name() + ".overall_miss_rate")
422 .desc("miss rate for overall accesses")
423 .flags(total)
424 ;
425 overallMissRate = overallMisses / overallAccesses;
426
427 // miss latency formulas
428 for (int access_idx = 0; access_idx < NUM_MEM_CMDS; ++access_idx) {
429 Packet::Command cmd = (Packet::Command)access_idx;
430 const string &cstr = temp_pkt.cmdIdxToString(cmd);
431
432 avgMissLatency[access_idx]
433 .name(name() + "." + cstr + "_avg_miss_latency")
434 .desc("average " + cstr + " miss latency")
435 .flags(total | nozero | nonan)
436 ;
437
438 avgMissLatency[access_idx] =
439 missLatency[access_idx] / misses[access_idx];
440 }
441
442 demandAvgMissLatency
443 .name(name() + ".demand_avg_miss_latency")
444 .desc("average overall miss latency")
445 .flags(total)
446 ;
447 demandAvgMissLatency = demandMissLatency / demandMisses;
448
449 overallAvgMissLatency
450 .name(name() + ".overall_avg_miss_latency")
451 .desc("average overall miss latency")
452 .flags(total)
453 ;
454 overallAvgMissLatency = overallMissLatency / overallMisses;
455
456 blocked_cycles.init(NUM_BLOCKED_CAUSES);
457 blocked_cycles
458 .name(name() + ".blocked_cycles")
459 .desc("number of cycles access was blocked")
460 .subname(Blocked_NoMSHRs, "no_mshrs")
461 .subname(Blocked_NoTargets, "no_targets")
462 ;
463
464
465 blocked_causes.init(NUM_BLOCKED_CAUSES);
466 blocked_causes
467 .name(name() + ".blocked")
468 .desc("number of cycles access was blocked")
469 .subname(Blocked_NoMSHRs, "no_mshrs")
470 .subname(Blocked_NoTargets, "no_targets")
471 ;
472
473 avg_blocked
474 .name(name() + ".avg_blocked_cycles")
475 .desc("average number of cycles each access was blocked")
476 .subname(Blocked_NoMSHRs, "no_mshrs")
477 .subname(Blocked_NoTargets, "no_targets")
478 ;
479
480 avg_blocked = blocked_cycles / blocked_causes;
481
482 fastWrites
483 .name(name() + ".fast_writes")
484 .desc("number of fast writes performed")
485 ;
486
487 cacheCopies
488 .name(name() + ".cache_copies")
489 .desc("number of cache copies performed")
490 ;
491
492 }