diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:42 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:42 -0400 |
commit | 078f914e69d6a08b0ff881b0909535307464553f (patch) | |
tree | 50e116b7b7d8a8136a080fe3ea53f6190b71243e /src/cpu/inorder/resources/cache_unit.hh | |
parent | 3cb23bd3a21a50577aaaa12db41d2203f4a9d6eb (diff) | |
download | gem5-078f914e69d6a08b0ff881b0909535307464553f.tar.xz |
inorder: SE mode TLB faults
handle them like we do in FS mode, by blocking the TLB until the fault
is handled by the fault->invoke()
Diffstat (limited to 'src/cpu/inorder/resources/cache_unit.hh')
-rw-r--r-- | src/cpu/inorder/resources/cache_unit.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/inorder/resources/cache_unit.hh b/src/cpu/inorder/resources/cache_unit.hh index 611ab62f2..f74a9136d 100644 --- a/src/cpu/inorder/resources/cache_unit.hh +++ b/src/cpu/inorder/resources/cache_unit.hh @@ -157,6 +157,9 @@ class CacheUnit : public Resource bool processSquash(CacheReqPacket *cache_pkt); +#if !FULL_SYSTEM + void trap(Fault fault, ThreadID tid, DynInstPtr inst); +#endif void recvRetry(); /** Returns a specific port. */ |