isa_specific.hh (3760:a4fadb8ef046) isa_specific.hh (5529:9ae69b9cd7fd)
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;

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

28 * Authors: Korey Sewell
29 */
30
31#include "cpu/base.hh"
32
33#if THE_ISA == ALPHA_ISA
34 #include "cpu/o3/alpha/cpu.hh"
35 #include "cpu/o3/alpha/impl.hh"
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;

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

28 * Authors: Korey Sewell
29 */
30
31#include "cpu/base.hh"
32
33#if THE_ISA == ALPHA_ISA
34 #include "cpu/o3/alpha/cpu.hh"
35 #include "cpu/o3/alpha/impl.hh"
36 #include "cpu/o3/alpha/params.hh"
37 #include "cpu/o3/alpha/dyn_inst.hh"
38#elif THE_ISA == MIPS_ISA
39 #include "cpu/o3/mips/cpu.hh"
40 #include "cpu/o3/mips/impl.hh"
36 #include "cpu/o3/alpha/dyn_inst.hh"
37#elif THE_ISA == MIPS_ISA
38 #include "cpu/o3/mips/cpu.hh"
39 #include "cpu/o3/mips/impl.hh"
41 #include "cpu/o3/mips/params.hh"
42 #include "cpu/o3/mips/dyn_inst.hh"
43#elif THE_ISA == SPARC_ISA
44 #include "cpu/o3/sparc/cpu.hh"
45 #include "cpu/o3/sparc/impl.hh"
40 #include "cpu/o3/mips/dyn_inst.hh"
41#elif THE_ISA == SPARC_ISA
42 #include "cpu/o3/sparc/cpu.hh"
43 #include "cpu/o3/sparc/impl.hh"
46 #include "cpu/o3/sparc/params.hh"
47 #include "cpu/o3/sparc/dyn_inst.hh"
48#else
49 #error "ISA-specific header files O3CPU not defined ISA"
50#endif
44 #include "cpu/o3/sparc/dyn_inst.hh"
45#else
46 #error "ISA-specific header files O3CPU not defined ISA"
47#endif