SConscript (9057:f5ee56466b91) | SConscript (9384:877293183bdf) |
---|---|
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 --- 58 unchanged lines hidden (view full) --- 67 Source('stacktrace.cc') 68 Source('system.cc') 69 Source('table_walker.cc') 70 Source('tlb.cc') 71 Source('utility.cc') 72 Source('vtophys.cc') 73 74 SimObject('ArmInterrupts.py') | 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 --- 58 unchanged lines hidden (view full) --- 67 Source('stacktrace.cc') 68 Source('system.cc') 69 Source('table_walker.cc') 70 Source('tlb.cc') 71 Source('utility.cc') 72 Source('vtophys.cc') 73 74 SimObject('ArmInterrupts.py') |
75 SimObject('ArmISA.py') |
|
75 SimObject('ArmNativeTrace.py') 76 SimObject('ArmSystem.py') 77 SimObject('ArmTLB.py') 78 79 DebugFlag('Arm') 80 DebugFlag('Decoder', "Instructions returned by the predecoder") 81 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 82 DebugFlag('TLBVerbose') 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 | 76 SimObject('ArmNativeTrace.py') 77 SimObject('ArmSystem.py') 78 SimObject('ArmTLB.py') 79 80 DebugFlag('Arm') 81 DebugFlag('Decoder', "Instructions returned by the predecoder") 82 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 83 DebugFlag('TLBVerbose') 84 85 # Add in files generated by the ISA description. 86 isa_desc_files = env.ISADesc('isa/main.isa') 87 # Only non-header files need to be compiled. 88 for f in isa_desc_files: 89 if not f.path.endswith('.hh'): 90 Source(f) 91 |