summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2006-03-30 18:06:00 -0500
committerAli Saidi <saidi@eecs.umich.edu>2006-03-30 18:06:00 -0500
commit5936c79ba0f3fd29ef2bbf41fcaddc78fcd9c75c (patch)
tree0497503600b01e23dd60a2802509d6bb48a27e99 /SConscript
parente196d20d9d047a869e1d853fd02077b1d909a576 (diff)
downloadgem5-5936c79ba0f3fd29ef2bbf41fcaddc78fcd9c75c.tar.xz
Add a functional port that is used to load the original binaries in FS
SE mode now has a port that goes to whatever toplevel mem object the CPU sees that does the appropriate translation for syscall emulation SConscript: translating port is a syscall emu only source arch/alpha/system.cc: base/loader/object_file.cc: base/loader/object_file.hh: Use the new functional port to write the binaries into memory cpu/cpu_exec_context.cc: cpu/cpu_exec_context.hh: cpu/simple/cpu.cc: We aren't always going to be writing straight to memory with syscalls support writing to a cache mem/port.hh: Add a simple unidirectional functional port that panics on any incoming requests mem/translating_port.hh: make translating port inherit from the simple port sim/system.cc: sim/system.hh: Add a functional port that is used to load the original binaries --HG-- extra : convert_revision : 9096866d0b23e3aceea68394abb76e63c0f8fd8d
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConscript b/SConscript
index daca62c06..ea77f0ec7 100644
--- a/SConscript
+++ b/SConscript
@@ -92,7 +92,6 @@ base_sources = Split('''
mem/mem_object.cc
mem/physical.cc
mem/port.cc
- mem/translating_port.cc
mem/bus.cc
python/pyconfig.cc
@@ -254,6 +253,7 @@ turbolaser_sources = Split('''
# Syscall emulation (non-full-system) sources
syscall_emulation_sources = Split('''
kern/linux/linux.cc
+ mem/translating_port.cc
mem/page_table.cc
sim/process.cc
sim/syscall_emul.cc