Caches.py (6654:4c84e771cca7) Caches.py (7868:6029008db669)
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 28 unchanged lines hidden (view full) ---

37
38class L2Cache(BaseCache):
39 assoc = 8
40 block_size = 64
41 latency = '10ns'
42 mshrs = 20
43 tgts_per_mshr = 12
44
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 28 unchanged lines hidden (view full) ---

37
38class L2Cache(BaseCache):
39 assoc = 8
40 block_size = 64
41 latency = '10ns'
42 mshrs = 20
43 tgts_per_mshr = 12
44
45class PageTableWalkerCache(BaseCache):
46 assoc = 2
47 block_size = 64
48 latency = '1ns'
49 mshrs = 10
50 size = '1kB'
51 tgts_per_mshr = 12
52
45class IOCache(BaseCache):
46 assoc = 8
47 block_size = 64
48 latency = '10ns'
49 mshrs = 20
50 size = '1kB'
51 tgts_per_mshr = 12
52 forward_snoops = False
53class IOCache(BaseCache):
54 assoc = 8
55 block_size = 64
56 latency = '10ns'
57 mshrs = 20
58 size = '1kB'
59 tgts_per_mshr = 12
60 forward_snoops = False