interrupts.cc revision 5811
15703SN/A/*
25703SN/A * Copyright (c) 2008 The Regents of The University of Michigan
38844SAli.Saidi@ARM.com * All rights reserved.
48844SAli.Saidi@ARM.com *
58844SAli.Saidi@ARM.com * Redistribution and use in source and binary forms, with or without
65703SN/A * modification, are permitted provided that the following conditions are
78844SAli.Saidi@ARM.com * met: redistributions of source code must retain the above copyright
88844SAli.Saidi@ARM.com * notice, this list of conditions and the following disclaimer;
98844SAli.Saidi@ARM.com * redistributions in binary form must reproduce the above copyright
108844SAli.Saidi@ARM.com * notice, this list of conditions and the following disclaimer in the
118844SAli.Saidi@ARM.com * documentation and/or other materials provided with the distribution;
128844SAli.Saidi@ARM.com * neither the name of the copyright holders nor the names of its
138844SAli.Saidi@ARM.com * contributors may be used to endorse or promote products derived from
148844SAli.Saidi@ARM.com * this software without specific prior written permission.
158844SAli.Saidi@ARM.com *
168844SAli.Saidi@ARM.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
178844SAli.Saidi@ARM.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
188844SAli.Saidi@ARM.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
198721SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
208844SAli.Saidi@ARM.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
218844SAli.Saidi@ARM.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
228844SAli.Saidi@ARM.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
238844SAli.Saidi@ARM.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
248844SAli.Saidi@ARM.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
258844SAli.Saidi@ARM.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
268844SAli.Saidi@ARM.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
278844SAli.Saidi@ARM.com *
288844SAli.Saidi@ARM.com * Authors: Gabe Black
298844SAli.Saidi@ARM.com */
308844SAli.Saidi@ARM.com
318844SAli.Saidi@ARM.com#include "arch/alpha/interrupts.hh"
328844SAli.Saidi@ARM.com
338844SAli.Saidi@ARM.comAlphaISA::Interrupts *
348844SAli.Saidi@ARM.comAlphaInterruptsParams::create()
358844SAli.Saidi@ARM.com{
368844SAli.Saidi@ARM.com    return new AlphaISA::Interrupts(this);
378844SAli.Saidi@ARM.com}
388844SAli.Saidi@ARM.com