thread_context.cc revision 7720
13760SN/A/* 23760SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan 33760SN/A * All rights reserved. 43760SN/A * 53760SN/A * Redistribution and use in source and binary forms, with or without 63760SN/A * modification, are permitted provided that the following conditions are 73760SN/A * met: redistributions of source code must retain the above copyright 83760SN/A * notice, this list of conditions and the following disclaimer; 93760SN/A * redistributions in binary form must reproduce the above copyright 103760SN/A * notice, this list of conditions and the following disclaimer in the 113760SN/A * documentation and/or other materials provided with the distribution; 123760SN/A * neither the name of the copyright holders nor the names of its 133760SN/A * contributors may be used to endorse or promote products derived from 143760SN/A * this software without specific prior written permission. 153760SN/A * 163760SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 173760SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 183760SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 193760SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 203760SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 213760SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 223760SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 233760SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 243760SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 253760SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 263760SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 273760SN/A * 285597Sgblack@eecs.umich.edu * Authors: Kevin Lim 293760SN/A */ 303760SN/A 313760SN/A#include "cpu/o3/thread_context.hh" 323760SN/A#include "cpu/o3/thread_context_impl.hh" 335597Sgblack@eecs.umich.edu#include "cpu/o3/impl.hh" 343760SN/A 355597Sgblack@eecs.umich.edutemplate class O3ThreadContext<O3CPUImpl>; 363760SN/A 37