diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 06:05:10 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 06:05:10 -0500 |
commit | f1ef4a8f06184df55e26268381cb4f8f56b77a50 (patch) | |
tree | 6b50c04126ab9e10de9b1def5d9d27cf021efe5d /cpu | |
parent | c5dcd152f264a837f50d39f98d0f4f81478e3553 (diff) | |
download | gem5-f1ef4a8f06184df55e26268381cb4f8f56b77a50.tar.xz |
Renamed arch files to remove alpha prefix, and changed alpha_memory.hh and cc to a more accurate tlb.hh and cc
--HG--
rename : arch/alpha/alpha_linux_process.cc => arch/alpha/linux_process.cc
rename : arch/alpha/alpha_linux_process.hh => arch/alpha/linux_process.hh
rename : arch/alpha/alpha_memory.cc => arch/alpha/tlb.cc
rename : arch/alpha/alpha_memory.hh => arch/alpha/tlb.hh
rename : arch/alpha/alpha_tru64_process.cc => arch/alpha/tru64_process.cc
rename : arch/alpha/alpha_tru64_process.hh => arch/alpha/tru64_process.hh
extra : convert_revision : 9fe6863cc37347d2a6bd716c529b0a4a50b36ea7
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/exec_context.hh | 2 | ||||
-rw-r--r-- | cpu/o3/alpha_cpu_builder.cc | 2 | ||||
-rw-r--r-- | cpu/simple/cpu.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cpu/exec_context.hh b/cpu/exec_context.hh index 4083381ea..834eacec8 100644 --- a/cpu/exec_context.hh +++ b/cpu/exec_context.hh @@ -46,7 +46,7 @@ class BaseCPU; #if FULL_SYSTEM #include "sim/system.hh" -#include "arch/alpha_memory.hh" +#include "arch/tlb.hh" class FunctionProfile; class ProfileNode; diff --git a/cpu/o3/alpha_cpu_builder.cc b/cpu/o3/alpha_cpu_builder.cc index 0f6d0d35c..95d2f8f37 100644 --- a/cpu/o3/alpha_cpu_builder.cc +++ b/cpu/o3/alpha_cpu_builder.cc @@ -50,7 +50,7 @@ #include "mem/functional/memory_control.hh" #include "mem/functional/physical.hh" #include "sim/system.hh" -#include "arch/alpha_memory.hh" +#include "arch/tlb.hh" #include "arch/vtophys.hh" #else // !FULL_SYSTEM #include "mem/functional/functional.hh" diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc index 02ecbb12c..4b0eda386 100644 --- a/cpu/simple/cpu.cc +++ b/cpu/simple/cpu.cc @@ -67,7 +67,7 @@ #include "mem/functional/memory_control.hh" #include "mem/functional/physical.hh" #include "sim/system.hh" -#include "arch/alpha_memory.hh" +#include "arch/tlb.hh" #include "arch/stacktrace.hh" #include "arch/vtophys.hh" #else // !FULL_SYSTEM |