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
This commit is contained in:
Gabe Black 2006-02-27 06:05:10 -05:00
parent c5dcd152f2
commit f1ef4a8f06
13 changed files with 18 additions and 18 deletions

View file

@ -46,9 +46,9 @@ sources = []
# List of headers to generate
isa_switch_hdrs = Split('''
isa_traits.hh
alpha_linux_process.hh
alpha_tru64_process.hh
alpha_memory.hh
linux_process.hh
tru64_process.hh
tlb.hh
aout_machdep.h
ecoff_machdep.h
arguments.hh

View file

@ -50,7 +50,7 @@ base_sources = Split('''
# Full-system sources
full_system_sources = Split('''
alpha_memory.cc
tlb.cc
arguments.cc
ev5.cc
osfpal.cc
@ -61,9 +61,9 @@ full_system_sources = Split('''
# Syscall emulation (non-full-system) sources
syscall_emulation_sources = Split('''
alpha_common_syscall_emul.cc
alpha_linux_process.cc
alpha_tru64_process.cc
common_syscall_emul.cc
linux_process.cc
tru64_process.cc
''')
# Set up complete list of sources based on configuration.

View file

@ -26,7 +26,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "arch/alpha/alpha_memory.hh"
#include "arch/alpha/tlb.hh"
#include "arch/alpha/isa_traits.hh"
#include "arch/alpha/osfpal.hh"
#include "base/kgdb.h"

View file

@ -26,8 +26,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "arch/alpha/alpha_common_syscall_emul.hh"
#include "arch/alpha/alpha_linux_process.hh"
#include "arch/alpha/common_syscall_emul.hh"
#include "arch/alpha/linux_process.hh"
#include "arch/alpha/isa_traits.hh"
#include "base/trace.hh"

View file

@ -30,7 +30,7 @@
#include <string>
#include <vector>
#include "arch/alpha/alpha_memory.hh"
#include "arch/alpha/tlb.hh"
#include "base/inifile.hh"
#include "base/str.hh"
#include "base/trace.hh"

View file

@ -27,8 +27,8 @@
*/
#include "arch/alpha/isa_traits.hh"
#include "arch/alpha/alpha_common_syscall_emul.hh"
#include "arch/alpha/alpha_tru64_process.hh"
#include "arch/alpha/common_syscall_emul.hh"
#include "arch/alpha/tru64_process.hh"
#include "cpu/exec_context.hh"
#include "kern/tru64/tru64.hh"
#include "mem/functional/functional.hh"

View file

@ -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;

View file

@ -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"

View file

@ -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

View file

@ -48,8 +48,8 @@
#include "sim/stats.hh"
#include "sim/syscall_emul.hh"
#include "arch/alpha_tru64_process.hh"
#include "arch/alpha_linux_process.hh"
#include "arch/tru64_process.hh"
#include "arch/linux_process.hh"
using namespace std;
using namespace TheISA;