isa_specific.hh (5596:cdc8893c649e) isa_specific.hh (5597:e2983d751be4)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 16 unchanged lines hidden (view full) ---

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#include "cpu/base.hh"
32
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 16 unchanged lines hidden (view full) ---

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#include "cpu/base.hh"
32
33#if THE_ISA == ALPHA_ISA
34 #include "cpu/o3/alpha/impl.hh"
35#elif THE_ISA == MIPS_ISA
36 #include "cpu/o3/mips/impl.hh"
37#elif THE_ISA == SPARC_ISA
38 #include "cpu/o3/sparc/impl.hh"
39#else
40 #error "ISA-specific header files O3CPU not defined ISA"
41#endif
33#include "cpu/o3/impl.hh"
42#include "cpu/o3/dyn_inst.hh"
34#include "cpu/o3/dyn_inst.hh"