BaseTLB.py revision 10687
15628SN/A# Copyright (c) 2008 The Hewlett-Packard Development Company
25628SN/A# All rights reserved.
35628SN/A#
45628SN/A# Redistribution and use in source and binary forms, with or without
55628SN/A# modification, are permitted provided that the following conditions are
65628SN/A# met: redistributions of source code must retain the above copyright
75628SN/A# notice, this list of conditions and the following disclaimer;
85628SN/A# redistributions in binary form must reproduce the above copyright
95628SN/A# notice, this list of conditions and the following disclaimer in the
105628SN/A# documentation and/or other materials provided with the distribution;
115628SN/A# neither the name of the copyright holders nor the names of its
125628SN/A# contributors may be used to endorse or promote products derived from
135628SN/A# this software without specific prior written permission.
145628SN/A#
155628SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
165628SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
175628SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
185628SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
195628SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
205628SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
215628SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
225628SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
235628SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
245628SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
255628SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
265628SN/A#
275628SN/A# Authors: Gabe Black
285628SN/A
295628SN/Afrom m5.SimObject import SimObject
305628SN/A
315628SN/Aclass BaseTLB(SimObject):
325628SN/A    type = 'BaseTLB'
335628SN/A    abstract = True
3410687SAndreas.Sandberg@ARM.com    cxx_header = "arch/generic/tlb.hh"
35