diff options
Diffstat (limited to 'base')
49 files changed, 125 insertions, 125 deletions
diff --git a/base/circlebuf.cc b/base/circlebuf.cc index 311de60b7..77da26da6 100644 --- a/base/circlebuf.cc +++ b/base/circlebuf.cc @@ -33,9 +33,9 @@ #include <string.h> #include <unistd.h> -#include "circlebuf.hh" -#include "cprintf.hh" -#include "intmath.hh" +#include "base/circlebuf.hh" +#include "base/cprintf.hh" +#include "base/intmath.hh" using namespace std; diff --git a/base/compression/lzss_compression.cc b/base/compression/lzss_compression.cc index a1933215a..8f235b808 100644 --- a/base/compression/lzss_compression.cc +++ b/base/compression/lzss_compression.cc @@ -32,9 +32,9 @@ #include <assert.h> -#include "lzss_compression.hh" +#include "base/compression/lzss_compression.hh" -#include "misc.hh" //for fatal +#include "base/misc.hh" //for fatal int LZSSCompression::findSubString(uint8_t *src, int front, int back, int size) diff --git a/base/compression/lzss_compression.hh b/base/compression/lzss_compression.hh index 5fb47d3f1..755a52c92 100644 --- a/base/compression/lzss_compression.hh +++ b/base/compression/lzss_compression.hh @@ -33,7 +33,7 @@ * LZSSCompression declarations. */ -#include "host.hh" // for uint8_t +#include "sim/host.hh" // for uint8_t /** * Simple LZSS compression scheme. diff --git a/base/cprintf.cc b/base/cprintf.cc index be6e64f59..945ad5b38 100644 --- a/base/cprintf.cc +++ b/base/cprintf.cc @@ -31,7 +31,7 @@ #include <iostream> #include <sstream> -#include "cprintf.hh" +#include "base/cprintf.hh" using namespace std; diff --git a/base/cprintf.hh b/base/cprintf.hh index 2dc84502a..8360d227c 100644 --- a/base/cprintf.hh +++ b/base/cprintf.hh @@ -36,7 +36,7 @@ namespace cp { -#include "cprintf_formats.hh" +#include "base/cprintf_formats.hh" class ArgList { diff --git a/base/fast_alloc.cc b/base/fast_alloc.cc index 290e59113..ff0a40c37 100644 --- a/base/fast_alloc.cc +++ b/base/fast_alloc.cc @@ -37,7 +37,7 @@ #endif #include <assert.h> -#include "fast_alloc.hh" +#include "base/fast_alloc.hh" void *FastAlloc::freeLists[Num_Buckets]; diff --git a/base/fifo_buffer.cc b/base/fifo_buffer.cc index c702d2999..d103d2e60 100644 --- a/base/fifo_buffer.cc +++ b/base/fifo_buffer.cc @@ -26,7 +26,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "fifo_buffer.hh" +#include "base/fifo_buffer.hh" template<class T> void diff --git a/base/fifo_buffer.hh b/base/fifo_buffer.hh index 75690d36c..767db03a4 100644 --- a/base/fifo_buffer.hh +++ b/base/fifo_buffer.hh @@ -29,7 +29,7 @@ #ifndef __FIFO_BUFFER_HH__ #define __FIFO_BUFFER_HH__ -#include "res_list.hh" +#include "base/res_list.hh" // diff --git a/base/hashmap.hh b/base/hashmap.hh index 21d4a818e..10089980b 100644 --- a/base/hashmap.hh +++ b/base/hashmap.hh @@ -37,7 +37,7 @@ #include <string> -#include "host.hh" +#include "sim/host.hh" #if defined(__GNUC__) && __GNUC__ >= 3 #define __hash_namespace __gnu_cxx diff --git a/base/hostinfo.cc b/base/hostinfo.cc index 48c876122..b530ae237 100644 --- a/base/hostinfo.cc +++ b/base/hostinfo.cc @@ -34,7 +34,7 @@ #include <errno.h> #include <math.h> -#include "host.hh" +#include "sim/host.hh" uint64_t procInfo(char *filename, char *target) diff --git a/base/hostinfo.hh b/base/hostinfo.hh index 3a5d1a61e..2293d2b6a 100644 --- a/base/hostinfo.hh +++ b/base/hostinfo.hh @@ -29,7 +29,7 @@ #ifndef __HOSTINFO_HH__ #define __HOSTINFO_HH__ -#include "host.hh" +#include "sim/host.hh" uint64_t procInfo(char *filename, char *target); diff --git a/base/hybrid_pred.cc b/base/hybrid_pred.cc index ed7f781b2..83ce7f987 100644 --- a/base/hybrid_pred.cc +++ b/base/hybrid_pred.cc @@ -29,9 +29,9 @@ #include <string> #include <sstream> -#include "hybrid_pred.hh" -#include "statistics.hh" -#include "sim_stats.hh" +#include "base/hybrid_pred.hh" +#include "base/statistics.hh" +#include "sim/sim_stats.hh" using namespace std; diff --git a/base/hybrid_pred.hh b/base/hybrid_pred.hh index f6e14e3e3..3fdab9153 100644 --- a/base/hybrid_pred.hh +++ b/base/hybrid_pred.hh @@ -40,10 +40,10 @@ #include <string> -#include "sat_counter.hh" +#include "base/sat_counter.hh" -#include "statistics.hh" -#include "sim_stats.hh" +#include "base/statistics.hh" +#include "sim/sim_stats.hh" class HybridPredictor : public GenericPredictor { diff --git a/base/inet.cc b/base/inet.cc index 33483bb32..46aa027fc 100644 --- a/base/inet.cc +++ b/base/inet.cc @@ -29,9 +29,9 @@ #include <sstream> #include <string> -#include "cprintf.hh" -#include "host.hh" -#include "inet.hh" +#include "base/cprintf.hh" +#include "sim/host.hh" +#include "base/inet.hh" using namespace::std; string diff --git a/base/inet.hh b/base/inet.hh index 1c48d0730..1ae2e8542 100644 --- a/base/inet.hh +++ b/base/inet.hh @@ -29,7 +29,7 @@ #ifndef __INET_HH__ #define __INET_HH__ -#include "host.hh" +#include "sim/host.hh" uint32_t crc32be(const uint8_t *buf, size_t len); uint32_t crc32le(const uint8_t *buf, size_t len); diff --git a/base/inifile.cc b/base/inifile.cc index 3f80ec259..92d88c09b 100644 --- a/base/inifile.cc +++ b/base/inifile.cc @@ -49,8 +49,8 @@ #include <vector> #include <string> -#include "inifile.hh" -#include "str.hh" +#include "base/inifile.hh" +#include "base/str.hh" using namespace std; diff --git a/base/inifile.hh b/base/inifile.hh index b384fe21a..919732e1e 100644 --- a/base/inifile.hh +++ b/base/inifile.hh @@ -34,7 +34,7 @@ #include <string> #include <vector> -#include "hashmap.hh" +#include "base/hashmap.hh" class IniFile { diff --git a/base/intmath.cc b/base/intmath.cc index 7a6858d16..b9a478ba0 100644 --- a/base/intmath.cc +++ b/base/intmath.cc @@ -26,7 +26,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "intmath.hh" +#include "base/intmath.hh" int PrevPrime(int n) diff --git a/base/loader/aout_object.cc b/base/loader/aout_object.cc index c0f43a687..0270e02a3 100644 --- a/base/loader/aout_object.cc +++ b/base/loader/aout_object.cc @@ -28,14 +28,14 @@ #include <string> -#include "aout_object.hh" +#include "base/loader/aout_object.hh" -#include "functional_memory.hh" -#include "symtab.hh" +#include "mem/functional_mem/functional_memory.hh" +#include "base/loader/symtab.hh" -#include "trace.hh" // for DPRINTF +#include "base/trace.hh" // for DPRINTF -#include "exec_aout.h" +#include "base/loader/exec_aout.h" using namespace std; diff --git a/base/loader/aout_object.hh b/base/loader/aout_object.hh index baa8904a8..77c59aef6 100644 --- a/base/loader/aout_object.hh +++ b/base/loader/aout_object.hh @@ -29,7 +29,7 @@ #ifndef __AOUT_OBJECT_HH__ #define __AOUT_OBJECT_HH__ -#include "object_file.hh" +#include "base/loader/object_file.hh" // forward decls: avoid including exec_aout.h here struct aout_exechdr; diff --git a/base/loader/ecoff_object.cc b/base/loader/ecoff_object.cc index 87ad6fdca..5e726a1c5 100644 --- a/base/loader/ecoff_object.cc +++ b/base/loader/ecoff_object.cc @@ -28,16 +28,16 @@ #include <string> -#include "ecoff_object.hh" +#include "base/loader/ecoff_object.hh" -#include "functional_memory.hh" -#include "symtab.hh" +#include "mem/functional_mem/functional_memory.hh" +#include "base/loader/symtab.hh" -#include "trace.hh" // for DPRINTF +#include "base/trace.hh" // for DPRINTF -#include "exec_ecoff.h" -#include "coff_sym.h" -#include "coff_symconst.h" +#include "base/loader/exec_ecoff.h" +#include "base/loader/coff_sym.h" +#include "base/loader/coff_symconst.h" using namespace std; diff --git a/base/loader/ecoff_object.hh b/base/loader/ecoff_object.hh index af757cd0e..94b11c720 100644 --- a/base/loader/ecoff_object.hh +++ b/base/loader/ecoff_object.hh @@ -29,7 +29,7 @@ #ifndef __ECOFF_OBJECT_HH__ #define __ECOFF_OBJECT_HH__ -#include "object_file.hh" +#include "base/loader/object_file.hh" // forward decls: avoid including exec_ecoff.h here struct ecoff_exechdr; diff --git a/base/loader/elf_object.cc b/base/loader/elf_object.cc index 97f50e289..605895c9c 100644 --- a/base/loader/elf_object.cc +++ b/base/loader/elf_object.cc @@ -28,14 +28,14 @@ #include <string> -#include "elf_object.hh" +#include "base/loader/elf_object.hh" -#include "functional_memory.hh" -#include "symtab.hh" +#include "mem/functional_mem/functional_memory.hh" +#include "base/loader/symtab.hh" -#include "trace.hh" // for DPRINTF +#include "base/trace.hh" // for DPRINTF -#include "exec_elf.h" +#include "base/loader/exec_elf.h" using namespace std; diff --git a/base/loader/elf_object.hh b/base/loader/elf_object.hh index c90f6ebd5..28f6bb243 100644 --- a/base/loader/elf_object.hh +++ b/base/loader/elf_object.hh @@ -29,7 +29,7 @@ #ifndef __ELF_OBJECT_HH__ #define __ELF_OBJECT_HH__ -#include "object_file.hh" +#include "base/loader/object_file.hh" // forward decls: avoid including exec_elf.hh here struct Elf64_Ehdr; diff --git a/base/loader/exec_aout.h b/base/loader/exec_aout.h index baed30c42..498e313cb 100644 --- a/base/loader/exec_aout.h +++ b/base/loader/exec_aout.h @@ -57,6 +57,6 @@ (N_GETMAGIC(ex) != NMAGIC && N_GETMAGIC(ex) != OMAGIC && \ N_GETMAGIC(ex) != ZMAGIC) -#include "aout_machdep.h" +#include "targetarch/aout_machdep.h" #endif /* !_SYS_EXEC_AOUT_H_ */ diff --git a/base/loader/exec_ecoff.h b/base/loader/exec_ecoff.h index 8c559ab90..0289c94ef 100644 --- a/base/loader/exec_ecoff.h +++ b/base/loader/exec_ecoff.h @@ -39,7 +39,7 @@ #ifndef _SYS_EXEC_ECOFF_H_ #define _SYS_EXEC_ECOFF_H_ -#include "ecoff_machdep.h" +#include "targetarch/ecoff_machdep.h" struct ecoff_filehdr { coff_ushort f_magic; /* magic number */ diff --git a/base/loader/object_file.cc b/base/loader/object_file.cc index 07b10b5ee..5a13d180c 100644 --- a/base/loader/object_file.cc +++ b/base/loader/object_file.cc @@ -35,13 +35,13 @@ #include <stdio.h> #include <unistd.h> -#include "cprintf.hh" -#include "object_file.hh" -#include "symtab.hh" +#include "base/cprintf.hh" +#include "base/loader/object_file.hh" +#include "base/loader/symtab.hh" -#include "ecoff_object.hh" -#include "aout_object.hh" -#include "elf_object.hh" +#include "base/loader/ecoff_object.hh" +#include "base/loader/aout_object.hh" +#include "base/loader/elf_object.hh" using namespace std; diff --git a/base/loader/object_file.hh b/base/loader/object_file.hh index 1e37b7b70..5950ea326 100644 --- a/base/loader/object_file.hh +++ b/base/loader/object_file.hh @@ -29,7 +29,7 @@ #ifndef __OBJECT_FILE_HH__ #define __OBJECT_FILE_HH__ -#include "isa_traits.hh" // for Addr +#include "targetarch/isa_traits.hh" // for Addr class FunctionalMemory; class SymbolTable; diff --git a/base/loader/symtab.cc b/base/loader/symtab.cc index 7beee182b..075c197a6 100644 --- a/base/loader/symtab.cc +++ b/base/loader/symtab.cc @@ -31,10 +31,10 @@ #include <string> #include <vector> -#include "host.hh" -#include "misc.hh" -#include "str.hh" -#include "symtab.hh" +#include "sim/host.hh" +#include "base/misc.hh" +#include "base/str.hh" +#include "base/loader/symtab.hh" using namespace std; diff --git a/base/loader/symtab.hh b/base/loader/symtab.hh index 073325eba..49a811018 100644 --- a/base/loader/symtab.hh +++ b/base/loader/symtab.hh @@ -29,8 +29,8 @@ #ifndef __SYMTAB_HH__ #define __SYMTAB_HH__ -#include "hashmap.hh" -#include "isa_traits.hh" // for Addr +#include "base/hashmap.hh" +#include "targetarch/isa_traits.hh" // for Addr class SymbolTable { diff --git a/base/misc.cc b/base/misc.cc index 4a8facca8..e798dd656 100644 --- a/base/misc.cc +++ b/base/misc.cc @@ -29,12 +29,12 @@ #include <iostream> #include <string> -#include "cprintf.hh" -#include "host.hh" -#include "hostinfo.hh" -#include "misc.hh" -#include "trace.hh" -#include "universe.hh" +#include "base/cprintf.hh" +#include "sim/host.hh" +#include "base/hostinfo.hh" +#include "base/misc.hh" +#include "base/trace.hh" +#include "sim/universe.hh" using namespace std; diff --git a/base/misc.hh b/base/misc.hh index 3ac4d1491..45e6db35c 100644 --- a/base/misc.hh +++ b/base/misc.hh @@ -30,7 +30,7 @@ #define __MISC_HH__ #include <assert.h> -#include "cprintf.hh" +#include "base/cprintf.hh" // // This implements a cprintf based panic diff --git a/base/pollevent.cc b/base/pollevent.cc index fd08d4c4c..45a32581f 100644 --- a/base/pollevent.cc +++ b/base/pollevent.cc @@ -33,11 +33,11 @@ #include <signal.h> #include <unistd.h> -#include "async.hh" -#include "host.hh" -#include "misc.hh" -#include "pollevent.hh" -#include "universe.hh" +#include "sim/async.hh" +#include "sim/host.hh" +#include "base/misc.hh" +#include "base/pollevent.hh" +#include "sim/universe.hh" PollQueue pollQueue; diff --git a/base/pollevent.hh b/base/pollevent.hh index 57e12f549..7ae37398c 100644 --- a/base/pollevent.hh +++ b/base/pollevent.hh @@ -31,7 +31,7 @@ #include <vector> #include <poll.h> -#include "universe.hh" +#include "sim/universe.hh" class PollEvent { diff --git a/base/random.cc b/base/random.cc index 42a169c06..f18ed546d 100644 --- a/base/random.cc +++ b/base/random.cc @@ -29,8 +29,8 @@ #include <cstdlib> #include <cmath> -#include "param.hh" -#include "random.hh" +#include "sim/param.hh" +#include "base/random.hh" using namespace std; diff --git a/base/random.hh b/base/random.hh index f1b383eda..5169c548a 100644 --- a/base/random.hh +++ b/base/random.hh @@ -29,7 +29,7 @@ #ifndef __RANDOM_HH__ #define __RANDOM_HH__ -#include "host.hh" +#include "sim/host.hh" long getLong(); double getDouble(); diff --git a/base/range.hh b/base/range.hh index dcc863e06..0d3383b01 100644 --- a/base/range.hh +++ b/base/range.hh @@ -31,8 +31,8 @@ #include <assert.h> -#include "intmath.hh" -#include "str.hh" +#include "base/intmath.hh" +#include "base/str.hh" template<class T> class Range diff --git a/base/remote_gdb.cc b/base/remote_gdb.cc index 280b1cc23..0289f29db 100644 --- a/base/remote_gdb.cc +++ b/base/remote_gdb.cc @@ -93,17 +93,17 @@ #include <string> -#include "exec_context.hh" -#include "intmath.hh" -#include "kgdb.h" - -#include "physical_memory.hh" -#include "remote_gdb.hh" -#include "socket.hh" -#include "trace.hh" -#include "vtophys.hh" -#include "system.hh" -#include "static_inst.hh" +#include "cpu/exec_context.hh" +#include "base/intmath.hh" +#include "base/kgdb.h" + +#include "mem/functional_mem/physical_memory.hh" +#include "base/remote_gdb.hh" +#include "base/socket.hh" +#include "base/trace.hh" +#include "targetarch/vtophys.hh" +#include "sim/system.hh" +#include "cpu/static_inst.hh" using namespace std; diff --git a/base/remote_gdb.hh b/base/remote_gdb.hh index 315860ead..ba827c382 100644 --- a/base/remote_gdb.hh +++ b/base/remote_gdb.hh @@ -29,10 +29,10 @@ #ifndef __REMOTE_GDB_HH__ #define __REMOTE_GDB_HH__ -#include "kgdb.h" -#include "pc_event.hh" -#include "pollevent.hh" -#include "socket.hh" +#include "base/kgdb.h" +#include "cpu/pc_event.hh" +#include "base/pollevent.hh" +#include "base/socket.hh" class System; class ExecContext; diff --git a/base/res_list.hh b/base/res_list.hh index a5005c906..ee2ab28a2 100644 --- a/base/res_list.hh +++ b/base/res_list.hh @@ -29,7 +29,7 @@ #ifndef __RES_LIST_HH__ #define __RES_LIST_HH__ -#include "cprintf.hh" +#include "base/cprintf.hh" #include <assert.h> #define DEBUG_REMOVE 0 diff --git a/base/sat_counter.cc b/base/sat_counter.cc index dc365f0f3..c26690a1a 100644 --- a/base/sat_counter.cc +++ b/base/sat_counter.cc @@ -28,10 +28,10 @@ #include <sstream> -#include "sat_counter.hh" +#include "base/sat_counter.hh" -#include "statistics.hh" -#include "sim_stats.hh" +#include "base/statistics.hh" +#include "sim/sim_stats.hh" using namespace std; diff --git a/base/sat_counter.hh b/base/sat_counter.hh index 18eab3574..102feb5c6 100644 --- a/base/sat_counter.hh +++ b/base/sat_counter.hh @@ -31,10 +31,10 @@ #include <string> -#include "predictor.hh" +#include "base/predictor.hh" -#include "statistics.hh" -#include "sim_stats.hh" +#include "base/statistics.hh" +#include "sim/sim_stats.hh" struct stat_sdb_t; diff --git a/base/sched_list.hh b/base/sched_list.hh index f5b90f571..0f922d63c 100644 --- a/base/sched_list.hh +++ b/base/sched_list.hh @@ -30,7 +30,7 @@ #define SCHED_LIST_HH #include <list> -#include "misc.hh" +#include "base/misc.hh" // Any types you use this class for must be covered here... namespace { diff --git a/base/socket.cc b/base/socket.cc index 00fdf1ba3..63b693d94 100644 --- a/base/socket.cc +++ b/base/socket.cc @@ -35,9 +35,9 @@ #include <errno.h> #include <unistd.h> -#include "host.hh" -#include "misc.hh" -#include "socket.hh" +#include "sim/host.hh" +#include "base/misc.hh" +#include "base/socket.hh" using namespace std; diff --git a/base/statistics.cc b/base/statistics.cc index f956de828..7c88e8f64 100644 --- a/base/statistics.cc +++ b/base/statistics.cc @@ -35,12 +35,12 @@ #include <math.h> -#include "cprintf.hh" -#include "intmath.hh" -#include "misc.hh" -#include "statistics.hh" -#include "str.hh" -#include "universe.hh" +#include "base/cprintf.hh" +#include "base/intmath.hh" +#include "base/misc.hh" +#include "base/statistics.hh" +#include "base/str.hh" +#include "sim/universe.hh" #ifdef __M5_NAN float diff --git a/base/statistics.hh b/base/statistics.hh index 3d9d654ed..d9545ec9c 100644 --- a/base/statistics.hh +++ b/base/statistics.hh @@ -51,9 +51,9 @@ #include <assert.h> -#include "host.hh" -#include "refcnt.hh" -#include "str.hh" +#include "sim/host.hh" +#include "base/refcnt.hh" +#include "base/str.hh" #ifndef NAN float __nan(); diff --git a/base/str.cc b/base/str.cc index 19cbea27d..9c3964ce3 100644 --- a/base/str.cc +++ b/base/str.cc @@ -34,8 +34,8 @@ #include <string> #include <vector> -#include "intmath.hh" -#include "str.hh" +#include "base/intmath.hh" +#include "base/str.hh" using namespace std; diff --git a/base/trace.cc b/base/trace.cc index d1baf3000..99e97e7ea 100644 --- a/base/trace.cc +++ b/base/trace.cc @@ -33,9 +33,9 @@ #include <string> #include <vector> -#include "misc.hh" -#include "trace.hh" -#include "str.hh" +#include "base/misc.hh" +#include "base/trace.hh" +#include "base/str.hh" using namespace std; diff --git a/base/trace.hh b/base/trace.hh index 42cd1722b..528311ca2 100644 --- a/base/trace.hh +++ b/base/trace.hh @@ -31,9 +31,9 @@ #include <vector> -#include "cprintf.hh" -#include "host.hh" -#include "universe.hh" +#include "base/cprintf.hh" +#include "sim/host.hh" +#include "sim/universe.hh" #ifndef TRACING_ON #ifdef DEBUG @@ -43,7 +43,7 @@ #endif #endif -#include "trace_flags.hh" +#include "base/trace_flags.hh" namespace Trace { |