diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-12-27 14:38:07 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-12-27 14:38:07 -0500 |
commit | ba14d6d0e1debea686681e5738bcdb041522dca0 (patch) | |
tree | ff02350d418a3d1c164357af427d7198c65a9ade /src/python/m5/objects/SparcTLB.py | |
parent | ff88f3b13ab03b1d6e8f371298843cd3b4d0b8cb (diff) | |
download | gem5-ba14d6d0e1debea686681e5738bcdb041522dca0.tar.xz |
Bug fixes in the TLB
Make our replacement algorithm same as legion (although not same as the spec)
itb should be 64 entries not 48
src/arch/sparc/tlb.cc:
Bug fixes in the TLB
Make our replacement algorithm same as legion (although not same as the spec)
src/arch/sparc/tlb.hh:
Make our replacement algorithm same as legion (although not same as the spec)
src/python/m5/objects/SparcTLB.py:
itb should be 64 entries too
--HG--
extra : convert_revision : 1b5cb3597091e3cfe293e94f6f2219b1e621c35f
Diffstat (limited to 'src/python/m5/objects/SparcTLB.py')
-rw-r--r-- | src/python/m5/objects/SparcTLB.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/objects/SparcTLB.py b/src/python/m5/objects/SparcTLB.py index de732e8de..06d2a8231 100644 --- a/src/python/m5/objects/SparcTLB.py +++ b/src/python/m5/objects/SparcTLB.py @@ -11,4 +11,4 @@ class SparcDTB(SparcTLB): class SparcITB(SparcTLB): type = 'SparcITB' - size = 48 + size = 64 |