SConscript (7399:a378ac1e1615) | SConscript (7404:bfc74724914e) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2009 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 51 unchanged lines hidden (view full) --- 60 Source('tlb.cc') 61 Source('vtophys.cc') 62 Source('utility.cc') 63 64 SimObject('ArmNativeTrace.py') 65 SimObject('ArmTLB.py') 66 67 TraceFlag('Arm') | 1# -*- mode:python -*- 2 3# Copyright (c) 2009 ARM Limited 4# All rights reserved. 5# 6# The license below extends only to copyright in the software and shall 7# not be construed as granting a license to any other intellectual 8# property including but not limited to intellectual property relating --- 51 unchanged lines hidden (view full) --- 60 Source('tlb.cc') 61 Source('vtophys.cc') 62 Source('utility.cc') 63 64 SimObject('ArmNativeTrace.py') 65 SimObject('ArmTLB.py') 66 67 TraceFlag('Arm') |
68 TraceFlag('TLBVerbose') |
|
68 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 69 TraceFlag('Predecoder', "Instructions returned by the predecoder") 70 if env['FULL_SYSTEM']: 71 Source('interrupts.cc') 72 Source('stacktrace.cc') 73 Source('system.cc') | 69 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 70 TraceFlag('Predecoder', "Instructions returned by the predecoder") 71 if env['FULL_SYSTEM']: 72 Source('interrupts.cc') 73 Source('stacktrace.cc') 74 Source('system.cc') |
75 Source('table_walker.cc') |
|
74 75 SimObject('ArmInterrupts.py') 76 SimObject('ArmSystem.py') 77 else: 78 Source('process.cc') 79 Source('linux/linux.cc') 80 Source('linux/process.cc') 81 82 # Add in files generated by the ISA description. 83 isa_desc_files = env.ISADesc('isa/main.isa') 84 # Only non-header files need to be compiled. 85 for f in isa_desc_files: 86 if not f.path.endswith('.hh'): 87 Source(f) 88 | 76 77 SimObject('ArmInterrupts.py') 78 SimObject('ArmSystem.py') 79 else: 80 Source('process.cc') 81 Source('linux/linux.cc') 82 Source('linux/process.cc') 83 84 # Add in files generated by the ISA description. 85 isa_desc_files = env.ISADesc('isa/main.isa') 86 # Only non-header files need to be compiled. 87 for f in isa_desc_files: 88 if not f.path.endswith('.hh'): 89 Source(f) 90 |