summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/loader/aout_object.cc2
-rw-r--r--base/loader/ecoff_object.cc2
-rw-r--r--base/loader/elf_object.cc2
-rw-r--r--base/remote_gdb.cc12
4 files changed, 8 insertions, 10 deletions
diff --git a/base/loader/aout_object.cc b/base/loader/aout_object.cc
index 42a376ed1..c1e49bff6 100644
--- a/base/loader/aout_object.cc
+++ b/base/loader/aout_object.cc
@@ -30,7 +30,7 @@
#include "base/loader/aout_object.hh"
-#include "mem/functional_mem/functional_memory.hh"
+#include "mem/functional/functional.hh"
#include "base/loader/symtab.hh"
#include "base/trace.hh" // for DPRINTF
diff --git a/base/loader/ecoff_object.cc b/base/loader/ecoff_object.cc
index 714f1d7b8..bc80ffb96 100644
--- a/base/loader/ecoff_object.cc
+++ b/base/loader/ecoff_object.cc
@@ -30,7 +30,7 @@
#include "base/loader/ecoff_object.hh"
-#include "mem/functional_mem/functional_memory.hh"
+#include "mem/functional/functional.hh"
#include "base/loader/symtab.hh"
#include "base/trace.hh" // for DPRINTF
diff --git a/base/loader/elf_object.cc b/base/loader/elf_object.cc
index d434d199d..cec18d2f7 100644
--- a/base/loader/elf_object.cc
+++ b/base/loader/elf_object.cc
@@ -43,7 +43,7 @@
#include "base/loader/elf_object.hh"
-#include "mem/functional_mem/functional_memory.hh"
+#include "mem/functional/functional.hh"
#include "base/loader/symtab.hh"
#include "base/trace.hh" // for DPRINTF
diff --git a/base/remote_gdb.cc b/base/remote_gdb.cc
index 484a01944..c3590920a 100644
--- a/base/remote_gdb.cc
+++ b/base/remote_gdb.cc
@@ -116,22 +116,20 @@
#include <sys/signal.h>
-#include <unistd.h>
-
#include <cstdio>
#include <string>
+#include <unistd.h>
-#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/exec_context.hh"
#include "cpu/static_inst.hh"
+#include "mem/functional/physical.hh"
+#include "sim/system.hh"
+#include "targetarch/vtophys.hh"
using namespace std;