X86TLB.py (5236:0050ad4fb3ef) X86TLB.py (5237:6c819dbe8045)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56from MemObject import MemObject
57from m5.params import *
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

50# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54# Authors: Gabe Black
55
56from MemObject import MemObject
57from m5.params import *
58from m5.proxy import *
58
59class X86TLB(MemObject):
60 type = 'X86TLB'
61 abstract = True
62 size = Param.Int("TLB size")
63 walker_port = Port("Port for the hardware table walker")
64 system = Param.System(Parent.any, "system object")
65

--- 13 unchanged lines hidden ---
59
60class X86TLB(MemObject):
61 type = 'X86TLB'
62 abstract = True
63 size = Param.Int("TLB size")
64 walker_port = Port("Port for the hardware table walker")
65 system = Param.System(Parent.any, "system object")
66

--- 13 unchanged lines hidden ---