X86: Get rid of the unused getAllocator on the python base microop class.
[gem5.git] / src / arch / alpha / SConscript
index addd49884c8c732d759a4ba320ca5bc432553d39..e3701d2a4bf9cea00adeb9791804f267a9900412 100644 (file)
 # Authors: Gabe Black
 #          Steve Reinhardt
 
-import os
-import sys
-from os.path import isdir
+Import('*')
 
-# This file defines how to build a particular configuration of M5
-# based on variable settings in the 'env' build environment.
+if env['TARGET_ISA'] == 'alpha':
+    Source('ev5.cc')
+    Source('faults.cc')
+    Source('ipr.cc')
+    Source('isa.cc')
+    Source('pagetable.cc')
+    Source('regredir.cc')
+    Source('remote_gdb.cc')
+    Source('tlb.cc')
+    Source('utility.cc')
 
-# Import build environment variable from SConstruct.
-Import('env')
-
-###################################################
-#
-# Define needed sources.
-#
-###################################################
-
-# Base sources used by all configurations.
-base_sources = Split('''
-       faults.cc
-       floatregfile.cc
-       intregfile.cc
-       miscregfile.cc
-       regfile.cc
-       remote_gdb.cc
-       ''')
-
-# Full-system sources
-full_system_sources = Split('''
-       arguments.cc
-       ev5.cc
-       freebsd/system.cc
-       idle_event.cc
-       ipr.cc
-       kernel_stats.cc
-       linux/system.cc
-       osfpal.cc
-       pagetable.cc
-       stacktrace.cc
-       system.cc
-       tlb.cc
-       tru64/system.cc
-       vtophys.cc
-       ''')
+    SimObject('AlphaTLB.py')
 
+    if env['FULL_SYSTEM']:
+        SimObject('AlphaInterrupts.py')
+        SimObject('AlphaSystem.py')
 
-# Syscall emulation (non-full-system) sources
-syscall_emulation_sources = Split('''
-        linux/linux.cc
-       linux/process.cc
-        tru64/tru64.cc
-       tru64/process.cc
-       process.cc
-       ''')
+        Source('idle_event.cc')
+        Source('interrupts.cc')
+        Source('kernel_stats.cc')
+        Source('osfpal.cc')
+        Source('stacktrace.cc')
+        Source('system.cc')
+        Source('vtophys.cc')
 
-# Set up complete list of sources based on configuration.
-sources = base_sources
+        Source('freebsd/system.cc')
+        Source('linux/system.cc')
+        Source('tru64/system.cc')
 
-if env['FULL_SYSTEM']:
-    sources += full_system_sources
-else:
-    sources += syscall_emulation_sources
+    else:
+        Source('process.cc')
 
-# Convert file names to SCons File objects.  This takes care of the
-# path relative to the top of the directory tree.
-sources = [File(s) for s in sources]
+        Source('linux/linux.cc')
+        Source('linux/process.cc')
 
-# Add in files generated by the ISA description.
-isa_desc_files = env.ISADesc('isa/main.isa')
-# Only non-header files need to be compiled.
-isa_desc_sources = [f for f in isa_desc_files if not f.path.endswith('.hh')]
-sources += isa_desc_sources
+        Source('tru64/tru64.cc')
+        Source('tru64/process.cc')
 
-Return('sources')
+    # Add in files generated by the ISA description.
+    isa_desc_files = env.ISADesc('isa/main.isa')
+    # Only non-header files need to be compiled.
+    for f in isa_desc_files:
+        if not f.path.endswith('.hh'):
+            Source(f)