diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-03-10 19:11:27 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-03-10 19:11:27 -0500 |
commit | 3ed62ad02547ae93f77c7f1f1e6d15b3d889a7a9 (patch) | |
tree | 525c4d3a61a19c30b5c072c22aa1bd1369f33057 /cpu | |
parent | e3651fde0b2c8a12a26cfb5b22b1944a47d59f4d (diff) | |
download | gem5-3ed62ad02547ae93f77c7f1f1e6d15b3d889a7a9.tar.xz |
Work towards factoring isa_traits.hh into smaller, more specialized files.
arch/SConscript:
Sorted the switch headers, and added registerfile.hh, constants.hh, types.hh, and utility.hh.
arch/alpha/isa_traits.hh:
Moved the register file types to registerfile.hh, small functions to utility.hh, and cleaned out alot of stuff that isn't necessary anymore.
base/loader/ecoff_object.cc:
base/loader/elf_object.cc:
cpu/pc_event.hh:
cpu/static_inst.hh:
mem/port.hh:
sim/faults.cc:
sim/system.hh:
base/misc.hh isn't included through isa_traits.hh anymore.
cpu/simple/cpu.cc:
Added include for arch/utility.hh
--HG--
extra : convert_revision : 24f65f330f87e3c909c939596cfcf48336022eaf
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/pc_event.hh | 2 | ||||
-rw-r--r-- | cpu/simple/cpu.cc | 1 | ||||
-rw-r--r-- | cpu/static_inst.hh | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/cpu/pc_event.hh b/cpu/pc_event.hh index 585aba0f1..32b7f3ef5 100644 --- a/cpu/pc_event.hh +++ b/cpu/pc_event.hh @@ -31,6 +31,8 @@ #include <vector> +#include "base/misc.hh" + class ExecContext; class PCEventQueue; diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc index 3fa84d499..35f9ab6c0 100644 --- a/cpu/simple/cpu.cc +++ b/cpu/simple/cpu.cc @@ -35,6 +35,7 @@ #include <sstream> #include <string> +#include "arch/utility.hh" #include "base/cprintf.hh" #include "base/inifile.hh" #include "base/loader/symtab.hh" diff --git a/cpu/static_inst.hh b/cpu/static_inst.hh index 2ed2fe61c..764020577 100644 --- a/cpu/static_inst.hh +++ b/cpu/static_inst.hh @@ -33,6 +33,7 @@ #include <string> #include "base/hashmap.hh" +#include "base/misc.hh" #include "base/refcnt.hh" #include "cpu/op_class.hh" #include "sim/host.hh" |