14776Sgblack@eecs.umich.edu# Copyright (c) 2007 The Regents of The University of Michigan
24776Sgblack@eecs.umich.edu# All rights reserved.
34776Sgblack@eecs.umich.edu#
44776Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
54776Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
64776Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
74776Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
84776Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
94776Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
104776Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
114776Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
124776Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
134776Sgblack@eecs.umich.edu# this software without specific prior written permission.
144776Sgblack@eecs.umich.edu#
154776Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
164776Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
174776Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
184776Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
194776Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
204776Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
214776Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
224776Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
234776Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
244776Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
254776Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
264776Sgblack@eecs.umich.edu#
274776Sgblack@eecs.umich.edu# Authors: Gabe Black
284776Sgblack@eecs.umich.edu
294776Sgblack@eecs.umich.edufrom m5.SimObject import SimObject
304776Sgblack@eecs.umich.edufrom m5.params import *
314776Sgblack@eecs.umich.edu
324776Sgblack@eecs.umich.educlass InstTracer(SimObject):
334776Sgblack@eecs.umich.edu    type = 'InstTracer'
345610Snate@binkert.org    cxx_class = 'Trace::InstTracer'
354776Sgblack@eecs.umich.edu    abstract = True
369338SAndreas.Sandberg@arm.com    cxx_header = "sim/insttracer.hh"
37