X86TLB.py (9701:f02f3b6562d5) X86TLB.py (9818:ebd7d3e04b5f)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

49 system = Param.System(Parent.any, "system object")
50 num_squash_per_cycle = Param.Unsigned(4,
51 "Number of outstanding walks that can be squashed per cycle")
52
53class X86TLB(BaseTLB):
54 type = 'X86TLB'
55 cxx_class = 'X86ISA::TLB'
56 cxx_header = 'arch/x86/tlb.hh'
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

49 system = Param.System(Parent.any, "system object")
50 num_squash_per_cycle = Param.Unsigned(4,
51 "Number of outstanding walks that can be squashed per cycle")
52
53class X86TLB(BaseTLB):
54 type = 'X86TLB'
55 cxx_class = 'X86ISA::TLB'
56 cxx_header = 'arch/x86/tlb.hh'
57 size = Param.Int(64, "TLB size")
57 size = Param.Unsigned(64, "TLB size")
58 walker = Param.X86PagetableWalker(\
59 X86PagetableWalker(), "page table walker")
58 walker = Param.X86PagetableWalker(\
59 X86PagetableWalker(), "page table walker")