fetch.cc revision 2665
19520SAndreas.Sandberg@ARM.com/*
29520SAndreas.Sandberg@ARM.com * Copyright (c) 2004-2005 The Regents of The University of Michigan
39520SAndreas.Sandberg@ARM.com * All rights reserved.
49520SAndreas.Sandberg@ARM.com *
59520SAndreas.Sandberg@ARM.com * Redistribution and use in source and binary forms, with or without
69520SAndreas.Sandberg@ARM.com * modification, are permitted provided that the following conditions are
79520SAndreas.Sandberg@ARM.com * met: redistributions of source code must retain the above copyright
89520SAndreas.Sandberg@ARM.com * notice, this list of conditions and the following disclaimer;
99520SAndreas.Sandberg@ARM.com * redistributions in binary form must reproduce the above copyright
109520SAndreas.Sandberg@ARM.com * notice, this list of conditions and the following disclaimer in the
119520SAndreas.Sandberg@ARM.com * documentation and/or other materials provided with the distribution;
129520SAndreas.Sandberg@ARM.com * neither the name of the copyright holders nor the names of its
139520SAndreas.Sandberg@ARM.com * contributors may be used to endorse or promote products derived from
149520SAndreas.Sandberg@ARM.com * this software without specific prior written permission.
159520SAndreas.Sandberg@ARM.com *
169520SAndreas.Sandberg@ARM.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
179520SAndreas.Sandberg@ARM.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
189520SAndreas.Sandberg@ARM.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
199520SAndreas.Sandberg@ARM.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
209520SAndreas.Sandberg@ARM.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
219520SAndreas.Sandberg@ARM.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
229520SAndreas.Sandberg@ARM.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
239520SAndreas.Sandberg@ARM.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
249520SAndreas.Sandberg@ARM.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
259520SAndreas.Sandberg@ARM.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
269520SAndreas.Sandberg@ARM.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
279520SAndreas.Sandberg@ARM.com *
289520SAndreas.Sandberg@ARM.com * Authors: Kevin Lim
299520SAndreas.Sandberg@ARM.com */
309520SAndreas.Sandberg@ARM.com
319520SAndreas.Sandberg@ARM.com#include "cpu/o3/alpha_dyn_inst.hh"
329520SAndreas.Sandberg@ARM.com#include "cpu/o3/alpha_impl.hh"
339520SAndreas.Sandberg@ARM.com#include "cpu/o3/fetch_impl.hh"
349520SAndreas.Sandberg@ARM.com
359520SAndreas.Sandberg@ARM.comtemplate class SimpleFetch<AlphaSimpleImpl>;
369520SAndreas.Sandberg@ARM.com