summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/mem_fetch.cc
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2010-10-02 14:54:02 -0800
committerTor Aamodt <[email protected]>2010-10-02 14:54:02 -0800
commitd3b9d526ecbf5e0bdaa91d21526cb56a2e98b534 (patch)
treed419ff51749e24fb2f30314d42496f25a692561a /src/gpgpu-sim/mem_fetch.cc
parent11b308e7363e937966b035b4891db32b4eece3bf (diff)
refactoring: make shd_cache_t into a class (cache_t), plus some other cleaning up
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7806]
Diffstat (limited to 'src/gpgpu-sim/mem_fetch.cc')
-rw-r--r--src/gpgpu-sim/mem_fetch.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gpgpu-sim/mem_fetch.cc b/src/gpgpu-sim/mem_fetch.cc
index 99a1e58..58ed2cd 100644
--- a/src/gpgpu-sim/mem_fetch.cc
+++ b/src/gpgpu-sim/mem_fetch.cc
@@ -104,3 +104,9 @@ mem_fetch::mem_fetch( unsigned long long int addr,
mf->type = type;
mf->pc = pc;
}
+
+void mem_fetch::print( FILE *fp ) const
+{
+ fprintf(fp," mf: uid=%6u, addr=0x%08llx, sid=%u, wid=%u, pc=0x%04x, %s, bank=%u\n",
+ request_uid, addr, sid, wid, pc, (m_write?"write":"read "), bank);
+}