18790Sgblack@eecs.umich.edu/*
28790Sgblack@eecs.umich.edu * Copyright (c) 2004-2005 The Regents of The University of Michigan
38790Sgblack@eecs.umich.edu * All rights reserved.
48790Sgblack@eecs.umich.edu *
58790Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
68790Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
78790Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
88790Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
98790Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
108790Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
118790Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
128790Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
138790Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
148790Sgblack@eecs.umich.edu * this software without specific prior written permission.
158790Sgblack@eecs.umich.edu *
168790Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
178790Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
188790Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
198790Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
208790Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
218790Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
228790Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
238790Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
248790Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
258790Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
268790Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
278790Sgblack@eecs.umich.edu *
288790Sgblack@eecs.umich.edu * Authors: Gabe Black
298790Sgblack@eecs.umich.edu */
308790Sgblack@eecs.umich.edu
318790Sgblack@eecs.umich.edu#ifndef __ARCH_POWER_KERNEL_STATS_HH__
328790Sgblack@eecs.umich.edu#define __ARCH_POWER_KERNEL_STATS_HH__
338790Sgblack@eecs.umich.edu
348790Sgblack@eecs.umich.edu#include "kern/kernel_stats.hh"
358790Sgblack@eecs.umich.edu
368790Sgblack@eecs.umich.edunamespace PowerISA {
378790Sgblack@eecs.umich.edunamespace Kernel {
388790Sgblack@eecs.umich.edu
398790Sgblack@eecs.umich.educlass Statistics : public ::Kernel::Statistics
408790Sgblack@eecs.umich.edu{
418790Sgblack@eecs.umich.edu  public:
4212181Sgabeblack@google.com    Statistics() : ::Kernel::Statistics()
438790Sgblack@eecs.umich.edu    {}
448790Sgblack@eecs.umich.edu};
458790Sgblack@eecs.umich.edu
468790Sgblack@eecs.umich.edu} // namespace PowerISA::Kernel
478790Sgblack@eecs.umich.edu} // namespace PowerISA
488790Sgblack@eecs.umich.edu
498790Sgblack@eecs.umich.edu#endif // __ARCH_POWER_KERNEL_STATS_HH__
50