Make include paths explicit and update makefile accordingly.
arch/alpha/alpha_memory.cc: arch/alpha/alpha_memory.hh: arch/alpha/arguments.cc: arch/alpha/arguments.hh: arch/alpha/ev5.cc: arch/alpha/ev5.hh: arch/alpha/fake_syscall.cc: arch/alpha/faults.cc: arch/alpha/isa_desc: arch/alpha/isa_traits.hh: arch/alpha/osfpal.cc: arch/alpha/vtophys.cc: arch/alpha/vtophys.hh: base/circlebuf.cc: base/compression/lzss_compression.cc: base/compression/lzss_compression.hh: base/cprintf.cc: base/cprintf.hh: base/fast_alloc.cc: base/fifo_buffer.cc: base/fifo_buffer.hh: base/hashmap.hh: base/hostinfo.cc: base/hostinfo.hh: base/hybrid_pred.cc: base/hybrid_pred.hh: base/inet.cc: base/inet.hh: base/inifile.cc: base/inifile.hh: base/intmath.cc: base/loader/aout_object.cc: base/loader/aout_object.hh: base/loader/ecoff_object.cc: base/loader/ecoff_object.hh: base/loader/elf_object.cc: base/loader/elf_object.hh: base/loader/exec_aout.h: base/loader/exec_ecoff.h: base/loader/object_file.cc: base/loader/object_file.hh: base/loader/symtab.cc: base/loader/symtab.hh: base/misc.cc: base/misc.hh: base/pollevent.cc: base/pollevent.hh: base/random.cc: base/random.hh: base/range.hh: base/remote_gdb.cc: base/remote_gdb.hh: base/res_list.hh: base/sat_counter.cc: base/sat_counter.hh: base/sched_list.hh: base/socket.cc: base/statistics.cc: base/statistics.hh: base/str.cc: base/trace.cc: base/trace.hh: cpu/base_cpu.cc: cpu/base_cpu.hh: cpu/exec_context.cc: cpu/exec_context.hh: cpu/exetrace.cc: cpu/exetrace.hh: cpu/intr_control.cc: cpu/intr_control.hh: cpu/memtest/memtest.cc: cpu/memtest/memtest.hh: cpu/pc_event.cc: cpu/pc_event.hh: cpu/simple_cpu/simple_cpu.cc: cpu/simple_cpu/simple_cpu.hh: cpu/static_inst.cc: cpu/static_inst.hh: dev/alpha_console.cc: dev/alpha_console.hh: dev/console.cc: dev/console.hh: dev/disk_image.cc: dev/disk_image.hh: dev/etherbus.cc: dev/etherbus.hh: dev/etherdump.cc: dev/etherdump.hh: dev/etherint.cc: dev/etherint.hh: dev/etherlink.cc: dev/etherlink.hh: dev/etherpkt.hh: dev/ethertap.cc: dev/ethertap.hh: dev/simple_disk.cc: dev/simple_disk.hh: kern/tru64/tru64_syscalls.cc: kern/tru64/tru64_syscalls.hh: sim/debug.cc: sim/eventq.cc: sim/eventq.hh: sim/main.cc: sim/param.cc: sim/param.hh: sim/prog.cc: sim/prog.hh: sim/serialize.cc: sim/serialize.hh: sim/sim_events.cc: sim/sim_events.hh: sim/sim_object.cc: sim/sim_object.hh: sim/sim_time.cc: sim/system.cc: sim/system.hh: sim/universe.cc: test/circletest.cc: test/cprintftest.cc: test/initest.cc: test/nmtest.cc: test/offtest.cc: test/paramtest.cc: test/rangetest.cc: test/stattest.cc: test/strnumtest.cc: test/symtest.cc: test/tokentest.cc: test/tracetest.cc: util/tap/tap.cc: Make include paths explicit. --HG-- extra : convert_revision : 941cbdc591fd4d3d1d9f095cd58fc23dd2d73840
This commit is contained in:
parent
52b31ea0a6
commit
25693e9e69
130 changed files with 494 additions and 494 deletions
|
@ -30,12 +30,12 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "alpha_memory.hh"
|
||||
#include "ev5.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "trace.hh"
|
||||
#include "inifile.hh"
|
||||
#include "str.hh"
|
||||
#include "targetarch/alpha_memory.hh"
|
||||
#include "targetarch/ev5.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "base/inifile.hh"
|
||||
#include "base/str.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
|
||||
#include <map>
|
||||
|
||||
#include "mem_req.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "statistics.hh"
|
||||
#include "targetarch/mem_req.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
#include "base/statistics.hh"
|
||||
|
||||
class ExecContext;
|
||||
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "arguments.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "physical_memory.hh"
|
||||
#include "vtophys.hh"
|
||||
#include "targetarch/arguments.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "mem/functional_mem/physical_memory.hh"
|
||||
#include "targetarch/vtophys.hh"
|
||||
|
||||
AlphaArguments::Data::~Data()
|
||||
{
|
||||
|
|
|
@ -31,9 +31,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include "host.hh"
|
||||
#include "kernel.hh"
|
||||
#include "refcnt.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "targetarch/kernel.hh"
|
||||
#include "base/refcnt.hh"
|
||||
|
||||
class ExecContext;
|
||||
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
/* $Id$ */
|
||||
|
||||
#include "alpha_memory.hh"
|
||||
#include "annotation.hh"
|
||||
#include "targetarch/alpha_memory.hh"
|
||||
#include "sim/annotation.hh"
|
||||
#ifdef DEBUG
|
||||
#include "debug.hh"
|
||||
#include "sim/debug.hh"
|
||||
#endif
|
||||
#include "exec_context.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "isa_traits.hh"
|
||||
#include "remote_gdb.hh"
|
||||
#include "kgdb.h" // for ALPHA_KENTRY_IF
|
||||
#include "osfpal.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
#include "targetarch/isa_traits.hh"
|
||||
#include "base/remote_gdb.hh"
|
||||
#include "base/kgdb.h" // for ALPHA_KENTRY_IF
|
||||
#include "targetarch/osfpal.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#error This code is only valid for EV5 systems
|
||||
#endif
|
||||
|
||||
#include "isa_traits.hh"
|
||||
#include "targetarch/isa_traits.hh"
|
||||
|
||||
void m5_exit();
|
||||
|
||||
|
|
|
@ -32,18 +32,18 @@
|
|||
#include <sys/stat.h>
|
||||
#include <string.h> // for memset()
|
||||
|
||||
#include "host.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "functional_memory.hh"
|
||||
#include "prog.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "fake_syscall.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "mem/functional_mem/functional_memory.hh"
|
||||
#include "sim/prog.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "sim/fake_syscall.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
|
||||
#include "osf_syscalls.h"
|
||||
#include "universe.hh" // for curTick & ticksPerSecond
|
||||
#include "targetarch/osf_syscalls.h"
|
||||
#include "sim/universe.hh" // for curTick & ticksPerSecond
|
||||
|
||||
#include "trace.hh"
|
||||
#include "base/trace.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "faults.hh"
|
||||
#include "targetarch/faults.hh"
|
||||
|
||||
namespace {
|
||||
const char *
|
||||
|
|
|
@ -18,20 +18,20 @@ let {{
|
|||
#include <fenv.h>
|
||||
#endif
|
||||
|
||||
#include "static_inst.hh"
|
||||
#include "cprintf.hh"
|
||||
#include "misc.hh"
|
||||
#include "op_class.hh"
|
||||
#include "cpu/static_inst.hh"
|
||||
#include "base/cprintf.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "cpu/full_cpu/op_class.hh"
|
||||
|
||||
#include "exec_context.hh"
|
||||
#include "simple_cpu.hh"
|
||||
#include "spec_state.hh"
|
||||
#include "cpu.hh"
|
||||
#include "exetrace.hh"
|
||||
#include "annotation.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "cpu/simple_cpu/simple_cpu.hh"
|
||||
#include "cpu/full_cpu/spec_state.hh"
|
||||
#include "cpu/full_cpu/cpu.hh"
|
||||
#include "cpu/exetrace.hh"
|
||||
#include "sim/annotation.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
#include "ev5.hh"
|
||||
#include "targetarch/ev5.hh"
|
||||
#endif
|
||||
|
||||
namespace AlphaISA;
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
#ifndef __ISA_TRAITS_HH__
|
||||
#define __ISA_TRAITS_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "faults.hh"
|
||||
#include "misc.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "targetarch/faults.hh"
|
||||
#include "base/misc.hh"
|
||||
|
||||
class CPU;
|
||||
class IniFile;
|
||||
|
@ -124,7 +124,7 @@ class AlphaISA
|
|||
|
||||
typedef uint64_t InternalProcReg;
|
||||
|
||||
#include "isa_fullsys_traits.hh"
|
||||
#include "targetarch/isa_fullsys_traits.hh"
|
||||
|
||||
#else
|
||||
enum {
|
||||
|
@ -276,7 +276,7 @@ const int NumInterruptLevels = TheISA::NumInterruptLevels;
|
|||
|
||||
// more stuff that should be imported here, but I'm too tired to do it
|
||||
// right now...
|
||||
#include "ev5.hh"
|
||||
#include "targetarch/ev5.hh"
|
||||
#endif
|
||||
|
||||
#endif // __ALPHA_ISA_H__
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "osfpal.hh"
|
||||
#include "targetarch/osfpal.hh"
|
||||
|
||||
namespace {
|
||||
const char *strings[PAL::NumCodes] = {
|
||||
|
|
|
@ -28,12 +28,12 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "pmap.h"
|
||||
#include "targetarch/pmap.h"
|
||||
|
||||
#include "exec_context.hh"
|
||||
#include "physical_memory.hh"
|
||||
#include "trace.hh"
|
||||
#include "vtophys.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "mem/functional_mem/physical_memory.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "targetarch/vtophys.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef __VTOPHYS_H__
|
||||
#define __VTOPHYS_H__
|
||||
|
||||
#include "pmap.h"
|
||||
#include "targetarch/pmap.h"
|
||||
|
||||
inline bool entry_valid(uint64_t entry)
|
||||
{ return (entry & ALPHA_PTE_VALID) != 0; }
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
* LZSSCompression declarations.
|
||||
*/
|
||||
|
||||
#include "host.hh" // for uint8_t
|
||||
#include "sim/host.hh" // for uint8_t
|
||||
|
||||
/**
|
||||
* Simple LZSS compression scheme.
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
#include "cprintf.hh"
|
||||
#include "base/cprintf.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
namespace cp {
|
||||
|
||||
#include "cprintf_formats.hh"
|
||||
#include "base/cprintf_formats.hh"
|
||||
|
||||
class ArgList
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
#include "fast_alloc.hh"
|
||||
#include "base/fast_alloc.hh"
|
||||
|
||||
void *FastAlloc::freeLists[Num_Buckets];
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef __FIFO_BUFFER_HH__
|
||||
#define __FIFO_BUFFER_HH__
|
||||
|
||||
#include "res_list.hh"
|
||||
#include "base/res_list.hh"
|
||||
|
||||
|
||||
//
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "host.hh"
|
||||
#include "sim/host.hh"
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ >= 3
|
||||
#define __hash_namespace __gnu_cxx
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include <errno.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "host.hh"
|
||||
#include "sim/host.hh"
|
||||
|
||||
uint64_t
|
||||
procInfo(char *filename, char *target)
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef __HOSTINFO_HH__
|
||||
#define __HOSTINFO_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "sim/host.hh"
|
||||
|
||||
uint64_t procInfo(char *filename, char *target);
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "hashmap.hh"
|
||||
#include "base/hashmap.hh"
|
||||
|
||||
class IniFile
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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_ */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
12
base/misc.cc
12
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;
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#define __MISC_HH__
|
||||
|
||||
#include <assert.h>
|
||||
#include "cprintf.hh"
|
||||
#include "base/cprintf.hh"
|
||||
|
||||
//
|
||||
// This implements a cprintf based panic
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <vector>
|
||||
#include <poll.h>
|
||||
#include "universe.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
class PollEvent
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#ifndef __RANDOM_HH__
|
||||
#define __RANDOM_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "sim/host.hh"
|
||||
|
||||
long getLong();
|
||||
double getDouble();
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -93,17 +93,17 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "exec_context.hh"
|
||||
#include "intmath.hh"
|
||||
#include "kgdb.h"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "base/intmath.hh"
|
||||
#include "base/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 "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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -30,11 +30,11 @@
|
|||
#include <sstream>
|
||||
#include <iostream>
|
||||
|
||||
#include "base_cpu.hh"
|
||||
#include "cprintf.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "misc.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "base/cprintf.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -31,10 +31,10 @@
|
|||
|
||||
#include <vector>
|
||||
|
||||
#include "eventq.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
#include "isa_traits.hh" // for Addr
|
||||
#include "targetarch/isa_traits.hh" // for Addr
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
class System;
|
||||
|
|
|
@ -28,13 +28,13 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "base_cpu.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
#include "system.hh"
|
||||
#include "sim/system.hh"
|
||||
#else
|
||||
#include "prog.hh"
|
||||
#include "sim/prog.hh"
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#ifndef __EXEC_CONTEXT_HH__
|
||||
#define __EXEC_CONTEXT_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "mem_req.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "targetarch/mem_req.hh"
|
||||
|
||||
// forward declaration: see functional_memory.hh
|
||||
class FunctionalMemory;
|
||||
|
@ -39,15 +39,15 @@ class BaseCPU;
|
|||
|
||||
#ifdef FULL_SYSTEM
|
||||
|
||||
#include "alpha_memory.hh"
|
||||
#include "targetarch/alpha_memory.hh"
|
||||
class MemoryController;
|
||||
|
||||
#include "kernel_stats.hh"
|
||||
#include "system.hh"
|
||||
#include "kern/tru64/kernel_stats.hh"
|
||||
#include "sim/system.hh"
|
||||
|
||||
#else // !FULL_SYSTEM
|
||||
|
||||
#include "prog.hh"
|
||||
#include "sim/prog.hh"
|
||||
|
||||
#endif // FULL_SYSTEM
|
||||
|
||||
|
|
|
@ -29,14 +29,14 @@
|
|||
#include <fstream>
|
||||
#include <iomanip>
|
||||
|
||||
#include "dyn_inst.hh"
|
||||
#include "spec_state.hh"
|
||||
#include "issue.hh"
|
||||
#include "exetrace.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "symtab.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "static_inst.hh"
|
||||
#include "cpu/full_cpu/dyn_inst.hh"
|
||||
#include "cpu/full_cpu/spec_state.hh"
|
||||
#include "cpu/full_cpu/issue.hh"
|
||||
#include "cpu/exetrace.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "base/loader/symtab.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "cpu/static_inst.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -32,11 +32,11 @@
|
|||
#include <fstream>
|
||||
#include <vector>
|
||||
|
||||
#include "host.hh"
|
||||
#include "inst_seq.hh" // for InstSeqNum
|
||||
#include "trace.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "static_inst.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "cpu/inst_seq.hh" // for InstSeqNum
|
||||
#include "base/trace.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "cpu/static_inst.hh"
|
||||
|
||||
class BaseCPU;
|
||||
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "base_cpu.hh"
|
||||
#include "intr_control.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "cpu/intr_control.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
#ifndef __INTR_CONTROL_HH__
|
||||
#define __INTR_CONTROL_HH__
|
||||
|
||||
#include "misc.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
class IntrControl : public SimObject
|
||||
{
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
#include <iomanip>
|
||||
#include <vector>
|
||||
|
||||
#include "memtest.hh"
|
||||
#include "misc.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "main_memory.hh"
|
||||
#include "base_cache.hh"
|
||||
#include "cpu/memtest/memtest.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
#include "mem/functional_mem/main_memory.hh"
|
||||
#include "mem/cache/base_cache.hh"
|
||||
|
||||
#include "statistics.hh"
|
||||
#include "sim_stats.hh"
|
||||
#include "base/statistics.hh"
|
||||
#include "sim/sim_stats.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -29,14 +29,14 @@
|
|||
#ifndef __MEMTEST_HH__
|
||||
#define __MEMTEST_HH__
|
||||
|
||||
#include "sim_object.hh"
|
||||
#include "mem_interface.hh"
|
||||
#include "functional_memory.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
#include "mem/mem_interface.hh"
|
||||
#include "mem/functional_mem/functional_memory.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
|
||||
#include "statistics.hh"
|
||||
#include "sim_stats.hh"
|
||||
#include "base/statistics.hh"
|
||||
#include "sim/sim_stats.hh"
|
||||
|
||||
class MemTest : public BaseCPU
|
||||
{
|
||||
|
|
|
@ -31,20 +31,20 @@
|
|||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
#include "debug.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "pc_event.hh"
|
||||
#include "trace.hh"
|
||||
#include "universe.hh"
|
||||
#include "sim/debug.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "cpu/pc_event.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
#include "arguments.hh"
|
||||
#include "pmap.h"
|
||||
#include "kernel.hh"
|
||||
#include "memory_control.hh"
|
||||
#include "cpu.hh"
|
||||
#include "system.hh"
|
||||
#include "bpred.hh"
|
||||
#include "targetarch/arguments.hh"
|
||||
#include "targetarch/pmap.h"
|
||||
#include "targetarch/kernel.hh"
|
||||
#include "mem/functional_mem/memory_control.hh"
|
||||
#include "cpu/full_cpu/cpu.hh"
|
||||
#include "sim/system.hh"
|
||||
#include "cpu/full_cpu/bpred.hh"
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <vector>
|
||||
|
||||
#include "mem_req.hh"
|
||||
#include "targetarch/mem_req.hh"
|
||||
|
||||
class ExecContext;
|
||||
class PCEventQueue;
|
||||
|
|
|
@ -36,47 +36,47 @@
|
|||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "host.hh"
|
||||
#include "cprintf.hh"
|
||||
#include "misc.hh"
|
||||
#include "smt.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "base/cprintf.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "cpu/full_cpu/smt.hh"
|
||||
|
||||
#include "annotation.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "debug.hh"
|
||||
#include "simple_cpu.hh"
|
||||
#include "inifile.hh"
|
||||
#include "mem_interface.hh"
|
||||
#include "base_mem.hh"
|
||||
#include "static_inst.hh"
|
||||
#include "sim/annotation.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "sim/debug.hh"
|
||||
#include "cpu/simple_cpu/simple_cpu.hh"
|
||||
#include "base/inifile.hh"
|
||||
#include "mem/mem_interface.hh"
|
||||
#include "mem/base_mem.hh"
|
||||
#include "cpu/static_inst.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
#include "memory_control.hh"
|
||||
#include "physical_memory.hh"
|
||||
#include "alpha_memory.hh"
|
||||
#include "system.hh"
|
||||
#include "mem/functional_mem/memory_control.hh"
|
||||
#include "mem/functional_mem/physical_memory.hh"
|
||||
#include "targetarch/alpha_memory.hh"
|
||||
#include "sim/system.hh"
|
||||
#else // !FULL_SYSTEM
|
||||
#include "functional_memory.hh"
|
||||
#include "prog.hh"
|
||||
#include "eio.hh"
|
||||
#include "mem/functional_mem/functional_memory.hh"
|
||||
#include "sim/prog.hh"
|
||||
#include "eio/eio.hh"
|
||||
#endif // FULL_SYSTEM
|
||||
|
||||
#include "exetrace.hh"
|
||||
#include "trace.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "pollevent.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "sim_stats.hh"
|
||||
#include "cpu/exetrace.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
#include "base/pollevent.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
#include "sim/sim_stats.hh"
|
||||
|
||||
#include "range.hh"
|
||||
#include "symtab.hh"
|
||||
#include "base/range.hh"
|
||||
#include "base/loader/symtab.hh"
|
||||
|
||||
#ifdef FULL_SYSTEM
|
||||
#include "vtophys.hh"
|
||||
#include "pciareg.h"
|
||||
#include "remote_gdb.hh"
|
||||
#include "alpha_access.h"
|
||||
#include "targetarch/vtophys.hh"
|
||||
#include "dev/pciareg.h"
|
||||
#include "base/remote_gdb.hh"
|
||||
#include "dev/alpha_access.h"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -29,11 +29,11 @@
|
|||
#ifndef __SIMPLE_CPU_HH__
|
||||
#define __SIMPLE_CPU_HH__
|
||||
|
||||
#include "base_cpu.hh"
|
||||
#include "eventq.hh"
|
||||
#include "symtab.hh"
|
||||
#include "pc_event.hh"
|
||||
#include "statistics.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "base/loader/symtab.hh"
|
||||
#include "cpu/pc_event.hh"
|
||||
#include "base/statistics.hh"
|
||||
|
||||
|
||||
// forward declarations
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include "static_inst.hh"
|
||||
#include "universe.hh"
|
||||
#include "cpu/static_inst.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
template <class ISA>
|
||||
StaticInstPtr<ISA> StaticInst<ISA>::nullStaticInstPtr;
|
||||
|
|
|
@ -32,12 +32,12 @@
|
|||
#include <bitset>
|
||||
#include <string>
|
||||
|
||||
#include "host.hh"
|
||||
#include "hashmap.hh"
|
||||
#include "refcnt.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "base/hashmap.hh"
|
||||
#include "base/refcnt.hh"
|
||||
|
||||
#include "op_class.hh"
|
||||
#include "isa_traits.hh"
|
||||
#include "cpu/full_cpu/op_class.hh"
|
||||
#include "targetarch/isa_traits.hh"
|
||||
|
||||
// forward declarations
|
||||
class ExecContext;
|
||||
|
|
|
@ -35,17 +35,17 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "alpha_console.hh"
|
||||
#include "base_cpu.hh"
|
||||
#include "console.hh"
|
||||
#include "exec_context.hh"
|
||||
#include "memory_control.hh"
|
||||
#include "simple_disk.hh"
|
||||
#include "tlaser_clock.hh"
|
||||
#include "system.hh"
|
||||
#include "trace.hh"
|
||||
#include "inifile.hh"
|
||||
#include "str.hh" // for to_number()
|
||||
#include "dev/alpha_console.hh"
|
||||
#include "cpu/base_cpu.hh"
|
||||
#include "dev/console.hh"
|
||||
#include "cpu/exec_context.hh"
|
||||
#include "mem/functional_mem/memory_control.hh"
|
||||
#include "dev/simple_disk.hh"
|
||||
#include "dev/tlaser_clock.hh"
|
||||
#include "sim/system.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "base/inifile.hh"
|
||||
#include "base/str.hh" // for to_number()
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
#ifndef __ALPHA_CONSOLE_HH__
|
||||
#define __ALPHA_CONSOLE_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "alpha_access.h"
|
||||
#include "mmap_device.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "dev/alpha_access.h"
|
||||
#include "mem/functional_mem/mmap_device.hh"
|
||||
|
||||
class BaseCPU;
|
||||
class SimConsole;
|
||||
|
|
|
@ -16,13 +16,13 @@
|
|||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
#include "misc.hh"
|
||||
#include "ev5.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "targetarch/ev5.hh"
|
||||
|
||||
#include "console.hh"
|
||||
#include "socket.hh"
|
||||
#include "trace.hh"
|
||||
#include "memory_control.hh"
|
||||
#include "dev/console.hh"
|
||||
#include "base/socket.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "mem/functional_mem/memory_control.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
#include <iostream>
|
||||
|
||||
#include "circlebuf.hh"
|
||||
#include "intr_control.hh"
|
||||
#include "pollevent.hh"
|
||||
#include "socket.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "base/circlebuf.hh"
|
||||
#include "cpu/intr_control.hh"
|
||||
#include "base/pollevent.hh"
|
||||
#include "base/socket.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
class ConsoleListener;
|
||||
class SimConsole : public SimObject
|
||||
|
|
|
@ -40,11 +40,11 @@
|
|||
#include <fstream>
|
||||
#include <string>
|
||||
|
||||
#include "disk_image.hh"
|
||||
#include "misc.hh"
|
||||
#include "trace.hh"
|
||||
#include "sim_exit.hh"
|
||||
#include "callback.hh"
|
||||
#include "dev/disk_image.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "sim/sim_exit.hh"
|
||||
#include "base/callback.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
|
||||
#include <fstream>
|
||||
|
||||
#include "hashmap.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "base/hashmap.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
#define SectorSize (512)
|
||||
|
||||
|
|
|
@ -36,12 +36,12 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#include "etherbus.hh"
|
||||
#include "etherdump.hh"
|
||||
#include "etherint.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "trace.hh"
|
||||
#include "universe.hh"
|
||||
#include "dev/etherbus.hh"
|
||||
#include "dev/etherdump.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
#ifndef __ETHERBUS_H__
|
||||
#define __ETHERBUS_H__
|
||||
|
||||
#include "eventq.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
class EtherDump;
|
||||
class EtherInt;
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "universe.hh"
|
||||
#include "etherdump.hh"
|
||||
#include "universe.hh"
|
||||
#include "sim/universe.hh"
|
||||
#include "dev/etherdump.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
using std::string;
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
#define __ETHERDUMP_H__
|
||||
|
||||
#include <fstream>
|
||||
#include "etherpkt.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
/*
|
||||
* Simple object for creating a simple pcap style packet trace
|
||||
|
|
|
@ -26,9 +26,9 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "etherint.hh"
|
||||
#include "misc.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
void
|
||||
EtherInt::setPeer(EtherInt *p)
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
#include "etherpkt.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
/*
|
||||
* Class representing the actual interface between two ethernet
|
||||
|
|
|
@ -36,12 +36,12 @@
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#include "etherlink.hh"
|
||||
#include "etherdump.hh"
|
||||
#include "etherint.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "trace.hh"
|
||||
#include "universe.hh"
|
||||
#include "dev/etherlink.hh"
|
||||
#include "dev/etherdump.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "sim/universe.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -33,11 +33,11 @@
|
|||
#ifndef __ETHERLINK_HH__
|
||||
#define __ETHERLINK_HH__
|
||||
|
||||
#include "host.hh"
|
||||
#include "eventq.hh"
|
||||
#include "etherint.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "sim/host.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
class EtherDump;
|
||||
|
||||
|
|
|
@ -35,9 +35,9 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
#include "host.hh"
|
||||
#include "sim/host.hh"
|
||||
|
||||
#include "refcnt.hh"
|
||||
#include "base/refcnt.hh"
|
||||
|
||||
/*
|
||||
* Reference counted class containing ethernet packet data
|
||||
|
|
|
@ -40,14 +40,14 @@
|
|||
#include <deque>
|
||||
#include <string>
|
||||
|
||||
#include "etherdump.hh"
|
||||
#include "etherint.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "ethertap.hh"
|
||||
#include "pollevent.hh"
|
||||
#include "socket.hh"
|
||||
#include "trace.hh"
|
||||
#include "misc.hh"
|
||||
#include "dev/etherdump.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "dev/ethertap.hh"
|
||||
#include "base/pollevent.hh"
|
||||
#include "base/socket.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "base/misc.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -36,11 +36,11 @@
|
|||
#include <queue>
|
||||
#include <string>
|
||||
|
||||
#include "etherint.hh"
|
||||
#include "etherpkt.hh"
|
||||
#include "eventq.hh"
|
||||
#include "pollevent.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "dev/etherint.hh"
|
||||
#include "dev/etherpkt.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "base/pollevent.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
/*
|
||||
* Interface to connect a simulated ethernet device to the real world
|
||||
|
|
|
@ -38,11 +38,11 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "disk_image.hh"
|
||||
#include "misc.hh"
|
||||
#include "physical_memory.hh"
|
||||
#include "simple_disk.hh"
|
||||
#include "trace.hh"
|
||||
#include "dev/disk_image.hh"
|
||||
#include "base/misc.hh"
|
||||
#include "mem/functional_mem/physical_memory.hh"
|
||||
#include "dev/simple_disk.hh"
|
||||
#include "base/trace.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@
|
|||
#ifndef __SIMPLE_DISK_HH__
|
||||
#define __SIMPLE_DISK_HH__
|
||||
|
||||
#include "physical_memory.hh"
|
||||
#include "sim_object.hh"
|
||||
#include "mem/functional_mem/physical_memory.hh"
|
||||
#include "sim/sim_object.hh"
|
||||
|
||||
class DiskImage;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "tru64_syscalls.hh"
|
||||
#include "kern/tru64/tru64_syscalls.hh"
|
||||
|
||||
namespace {
|
||||
const char *
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#ifndef __TRU64_SYSCALLS_HH__
|
||||
#define __TRU64_SYSCALLS_HH__
|
||||
|
||||
#include "syscalls.hh"
|
||||
#include "tru64.hh"
|
||||
#include "targetarch/syscalls.hh"
|
||||
#include "kern/tru64/tru64.hh"
|
||||
|
||||
struct SystemCalls<Tru64>
|
||||
{
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "debug.hh"
|
||||
#include "eventq.hh"
|
||||
#include "param.hh"
|
||||
#include "sim_events.hh"
|
||||
#include "sim/debug.hh"
|
||||
#include "sim/eventq.hh"
|
||||
#include "sim/param.hh"
|
||||
#include "sim/sim_events.hh"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue