SConscript (8760:df5f2151161d) | SConscript (8778:fbaf6af0be93) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 22 unchanged lines hidden (view full) --- 31 32Import('*') 33 34if env['TARGET_ISA'] == 'sparc': 35 Source('asi.cc') 36 Source('faults.cc') 37 Source('interrupts.cc') 38 Source('isa.cc') | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 22 unchanged lines hidden (view full) --- 31 32Import('*') 33 34if env['TARGET_ISA'] == 'sparc': 35 Source('asi.cc') 36 Source('faults.cc') 37 Source('interrupts.cc') 38 Source('isa.cc') |
39 Source('linux/linux.cc') 40 Source('linux/process.cc') 41 Source('linux/syscalls.cc') |
|
39 Source('nativetrace.cc') 40 Source('pagetable.cc') | 42 Source('nativetrace.cc') 43 Source('pagetable.cc') |
44 Source('process.cc') |
|
41 Source('remote_gdb.cc') | 45 Source('remote_gdb.cc') |
46 Source('solaris/process.cc') 47 Source('solaris/solaris.cc') 48 Source('system.cc') |
|
42 Source('tlb.cc') 43 Source('ua2005.cc') 44 Source('utility.cc') 45 Source('vtophys.cc') 46 47 SimObject('SparcInterrupts.py') 48 SimObject('SparcNativeTrace.py') | 49 Source('tlb.cc') 50 Source('ua2005.cc') 51 Source('utility.cc') 52 Source('vtophys.cc') 53 54 SimObject('SparcInterrupts.py') 55 SimObject('SparcNativeTrace.py') |
56 SimObject('SparcSystem.py') |
|
49 SimObject('SparcTLB.py') 50 51 DebugFlag('Sparc', "Generic SPARC ISA stuff") 52 DebugFlag('RegisterWindows', "Register window manipulation") 53 | 57 SimObject('SparcTLB.py') 58 59 DebugFlag('Sparc', "Generic SPARC ISA stuff") 60 DebugFlag('RegisterWindows', "Register window manipulation") 61 |
54 if env['FULL_SYSTEM']: 55 SimObject('SparcSystem.py') 56 57 Source('system.cc') 58 else: 59 Source('process.cc') 60 61 Source('linux/linux.cc') 62 Source('linux/process.cc') 63 Source('linux/syscalls.cc') 64 65 Source('solaris/process.cc') 66 Source('solaris/solaris.cc') 67 | |
68 # Add in files generated by the ISA description. 69 isa_desc_files = env.ISADesc('isa/main.isa') 70 # Only non-header files need to be compiled. 71 for f in isa_desc_files: 72 if not f.path.endswith('.hh'): 73 Source(f) | 62 # Add in files generated by the ISA description. 63 isa_desc_files = env.ISADesc('isa/main.isa') 64 # Only non-header files need to be compiled. 65 for f in isa_desc_files: 66 if not f.path.endswith('.hh'): 67 Source(f) |