19341SAndreas.Sandberg@arm.com/*
29341SAndreas.Sandberg@arm.com * Copyright (c) 2004-2006 The Regents of The University of Michigan
39341SAndreas.Sandberg@arm.com * All rights reserved.
49341SAndreas.Sandberg@arm.com *
59341SAndreas.Sandberg@arm.com * Redistribution and use in source and binary forms, with or without
69341SAndreas.Sandberg@arm.com * modification, are permitted provided that the following conditions are
79341SAndreas.Sandberg@arm.com * met: redistributions of source code must retain the above copyright
89341SAndreas.Sandberg@arm.com * notice, this list of conditions and the following disclaimer;
99341SAndreas.Sandberg@arm.com * redistributions in binary form must reproduce the above copyright
109341SAndreas.Sandberg@arm.com * notice, this list of conditions and the following disclaimer in the
119341SAndreas.Sandberg@arm.com * documentation and/or other materials provided with the distribution;
129341SAndreas.Sandberg@arm.com * neither the name of the copyright holders nor the names of its
139341SAndreas.Sandberg@arm.com * contributors may be used to endorse or promote products derived from
149341SAndreas.Sandberg@arm.com * this software without specific prior written permission.
159341SAndreas.Sandberg@arm.com *
169341SAndreas.Sandberg@arm.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
179341SAndreas.Sandberg@arm.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
189341SAndreas.Sandberg@arm.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
199341SAndreas.Sandberg@arm.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
209341SAndreas.Sandberg@arm.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
219341SAndreas.Sandberg@arm.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
229341SAndreas.Sandberg@arm.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
239341SAndreas.Sandberg@arm.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
249341SAndreas.Sandberg@arm.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
259341SAndreas.Sandberg@arm.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
269341SAndreas.Sandberg@arm.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
279341SAndreas.Sandberg@arm.com *
289341SAndreas.Sandberg@arm.com * Authors: Kevin Lim
299341SAndreas.Sandberg@arm.com */
309341SAndreas.Sandberg@arm.com
319341SAndreas.Sandberg@arm.com#ifndef __CPU_O3_DERIV_HH__
329341SAndreas.Sandberg@arm.com#define __CPU_O3_DERIV_HH__
339341SAndreas.Sandberg@arm.com
349341SAndreas.Sandberg@arm.com#include "cpu/o3/cpu.hh"
359341SAndreas.Sandberg@arm.com#include "cpu/o3/impl.hh"
369341SAndreas.Sandberg@arm.com#include "params/DerivO3CPU.hh"
379341SAndreas.Sandberg@arm.com
389341SAndreas.Sandberg@arm.comclass DerivO3CPU : public FullO3CPU<O3CPUImpl>
399341SAndreas.Sandberg@arm.com{
409341SAndreas.Sandberg@arm.com  public:
419341SAndreas.Sandberg@arm.com    DerivO3CPU(DerivO3CPUParams *p)
429341SAndreas.Sandberg@arm.com        : FullO3CPU<O3CPUImpl>(p)
439341SAndreas.Sandberg@arm.com    { }
449341SAndreas.Sandberg@arm.com};
459341SAndreas.Sandberg@arm.com
469341SAndreas.Sandberg@arm.com#endif // __CPU_O3_DERIV_HH__
47