19384SAndreas.Sandberg@arm.com# Copyright (c) 2012 ARM Limited
29384SAndreas.Sandberg@arm.com# All rights reserved.
39384SAndreas.Sandberg@arm.com#
49384SAndreas.Sandberg@arm.com# The license below extends only to copyright in the software and shall
59384SAndreas.Sandberg@arm.com# not be construed as granting a license to any other intellectual
69384SAndreas.Sandberg@arm.com# property including but not limited to intellectual property relating
79384SAndreas.Sandberg@arm.com# to a hardware implementation of the functionality of the software
89384SAndreas.Sandberg@arm.com# licensed hereunder.  You may use the software subject to the license
99384SAndreas.Sandberg@arm.com# terms below provided that you ensure that this notice is replicated
109384SAndreas.Sandberg@arm.com# unmodified and in its entirety in all distributions of the software,
119384SAndreas.Sandberg@arm.com# modified or unmodified, in source code or in binary form.
129384SAndreas.Sandberg@arm.com#
139384SAndreas.Sandberg@arm.com# Redistribution and use in source and binary forms, with or without
149384SAndreas.Sandberg@arm.com# modification, are permitted provided that the following conditions are
159384SAndreas.Sandberg@arm.com# met: redistributions of source code must retain the above copyright
169384SAndreas.Sandberg@arm.com# notice, this list of conditions and the following disclaimer;
179384SAndreas.Sandberg@arm.com# redistributions in binary form must reproduce the above copyright
189384SAndreas.Sandberg@arm.com# notice, this list of conditions and the following disclaimer in the
199384SAndreas.Sandberg@arm.com# documentation and/or other materials provided with the distribution;
209384SAndreas.Sandberg@arm.com# neither the name of the copyright holders nor the names of its
219384SAndreas.Sandberg@arm.com# contributors may be used to endorse or promote products derived from
229384SAndreas.Sandberg@arm.com# this software without specific prior written permission.
239384SAndreas.Sandberg@arm.com#
249384SAndreas.Sandberg@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
259384SAndreas.Sandberg@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
269384SAndreas.Sandberg@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
279384SAndreas.Sandberg@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
289384SAndreas.Sandberg@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
299384SAndreas.Sandberg@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
309384SAndreas.Sandberg@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
319384SAndreas.Sandberg@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
329384SAndreas.Sandberg@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
339384SAndreas.Sandberg@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
349384SAndreas.Sandberg@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
359384SAndreas.Sandberg@arm.com#
369384SAndreas.Sandberg@arm.com# Authors: Andreas Sandberg
379384SAndreas.Sandberg@arm.com
3810033SAli.Saidi@ARM.comfrom m5.params import *
3910033SAli.Saidi@ARM.comfrom m5.proxy import *
409384SAndreas.Sandberg@arm.comfrom m5.SimObject import SimObject
419384SAndreas.Sandberg@arm.com
429384SAndreas.Sandberg@arm.comclass AlphaISA(SimObject):
439384SAndreas.Sandberg@arm.com    type = 'AlphaISA'
449384SAndreas.Sandberg@arm.com    cxx_class = 'AlphaISA::ISA'
459384SAndreas.Sandberg@arm.com    cxx_header = "arch/alpha/isa.hh"
4610033SAli.Saidi@ARM.com
4710033SAli.Saidi@ARM.com    system = Param.System(Parent.any, "System this ISA object belongs to")
48