diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-12-06 06:02:13 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-12-06 06:02:13 -0500 |
commit | be29adf51cb115e7e55321bd58b7f6593e6d0080 (patch) | |
tree | 36afd5ec18592c5eca8191bc5fc8898e39f242bc /src/cpu/o3/fetch_impl.hh | |
parent | 75b93179ab96de17c1ea62c3928d5fca9d5eb1be (diff) | |
download | gem5-be29adf51cb115e7e55321bd58b7f6593e6d0080.tar.xz |
Added a DPRINTF to print out the actual value pulled from memory.
--HG--
extra : convert_revision : 18780f753a7e98f8de3047dd6781b944b0826b4e
Diffstat (limited to 'src/cpu/o3/fetch_impl.hh')
-rw-r--r-- | src/cpu/o3/fetch_impl.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/o3/fetch_impl.hh b/src/cpu/o3/fetch_impl.hh index 63d22b293..8213e8fa2 100644 --- a/src/cpu/o3/fetch_impl.hh +++ b/src/cpu/o3/fetch_impl.hh @@ -1155,6 +1155,8 @@ DefaultFetch<Impl>::fetch(bool &status_change) "[sn:%lli]\n", tid, instruction->readPC(), inst_seq); + DPRINTF(Fetch, "[tid:%i]: MachInst is %#x\n", tid, ext_inst); + DPRINTF(Fetch, "[tid:%i]: Instruction is: %s\n", tid, instruction->staticInst->disassemble(fetch_PC)); |