commit.cc revision 2670:9107b8bd08cd
112953Sgabeblack@google.com/*
212953Sgabeblack@google.com * Copyright (c) 2004-2005 The Regents of The University of Michigan
312953Sgabeblack@google.com * All rights reserved.
412953Sgabeblack@google.com *
512953Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
612953Sgabeblack@google.com * modification, are permitted provided that the following conditions are
712953Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
812953Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
912953Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
1012953Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1112953Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1212953Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1312953Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1412953Sgabeblack@google.com * this software without specific prior written permission.
1512953Sgabeblack@google.com *
1612953Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1712953Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1812953Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1912953Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2012953Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2112953Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2212953Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2312953Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2412953Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2512953Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2612953Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2712953Sgabeblack@google.com *
2812953Sgabeblack@google.com * Authors: Kevin Lim
2912953Sgabeblack@google.com */
3012953Sgabeblack@google.com
3112953Sgabeblack@google.com#include "cpu/o3/alpha_dyn_inst.hh"
3212953Sgabeblack@google.com#include "cpu/o3/alpha_impl.hh"
3313063Sgabeblack@google.com#include "cpu/o3/commit_impl.hh"
3413063Sgabeblack@google.com
3513063Sgabeblack@google.comtemplate class DefaultCommit<AlphaSimpleImpl>;
3612957Sgabeblack@google.com