isa_specific.hh revision 3760:a4fadb8ef046
11817SN/A/*
21817SN/A * Copyright (c) 2006 The Regents of The University of Michigan
31817SN/A * All rights reserved.
41817SN/A *
51817SN/A * Redistribution and use in source and binary forms, with or without
61817SN/A * modification, are permitted provided that the following conditions are
71817SN/A * met: redistributions of source code must retain the above copyright
81817SN/A * notice, this list of conditions and the following disclaimer;
91817SN/A * redistributions in binary form must reproduce the above copyright
101817SN/A * notice, this list of conditions and the following disclaimer in the
111817SN/A * documentation and/or other materials provided with the distribution;
121817SN/A * neither the name of the copyright holders nor the names of its
131817SN/A * contributors may be used to endorse or promote products derived from
141817SN/A * this software without specific prior written permission.
151817SN/A *
161817SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
171817SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
181817SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
191817SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
201817SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
211817SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
221817SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
231817SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
241817SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251817SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
261817SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Korey Sewell
292665Ssaidi@eecs.umich.edu */
301817SN/A
311817SN/A#include "cpu/base.hh"
321817SN/A
331817SN/A#if THE_ISA == ALPHA_ISA
341817SN/A    #include "cpu/o3/alpha/cpu.hh"
351817SN/A    #include "cpu/o3/alpha/impl.hh"
361817SN/A    #include "cpu/o3/alpha/params.hh"
371817SN/A    #include "cpu/o3/alpha/dyn_inst.hh"
381817SN/A#elif THE_ISA == MIPS_ISA
391817SN/A    #include "cpu/o3/mips/cpu.hh"
401817SN/A    #include "cpu/o3/mips/impl.hh"
412542SN/A    #include "cpu/o3/mips/params.hh"
422542SN/A    #include "cpu/o3/mips/dyn_inst.hh"
433348Sbinkertn@umich.edu#elif THE_ISA == SPARC_ISA
441817SN/A    #include "cpu/o3/sparc/cpu.hh"
451817SN/A    #include "cpu/o3/sparc/impl.hh"
461817SN/A    #include "cpu/o3/sparc/params.hh"
471817SN/A    #include "cpu/o3/sparc/dyn_inst.hh"
481817SN/A#else
492539SN/A    #error "ISA-specific header files O3CPU not defined ISA"
502539SN/A#endif
511817SN/A