SConscript (9022:bb25e7646c41) SConscript (9023:e9201a7bce59)
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

--- 48 unchanged lines hidden (view full) ---

57 Source('insts/vfp.cc')
58 Source('interrupts.cc')
59 Source('isa.cc')
60 Source('linux/linux.cc')
61 Source('linux/process.cc')
62 Source('linux/system.cc')
63 Source('miscregs.cc')
64 Source('nativetrace.cc')
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

--- 48 unchanged lines hidden (view full) ---

57 Source('insts/vfp.cc')
58 Source('interrupts.cc')
59 Source('isa.cc')
60 Source('linux/linux.cc')
61 Source('linux/process.cc')
62 Source('linux/system.cc')
63 Source('miscregs.cc')
64 Source('nativetrace.cc')
65 Source('predecoder.cc')
66 Source('process.cc')
67 Source('remote_gdb.cc')
68 Source('stacktrace.cc')
69 Source('system.cc')
70 Source('table_walker.cc')
71 Source('tlb.cc')
72 Source('utility.cc')
73 Source('vtophys.cc')
74
75 SimObject('ArmInterrupts.py')
76 SimObject('ArmNativeTrace.py')
77 SimObject('ArmSystem.py')
78 SimObject('ArmTLB.py')
79
80 DebugFlag('Arm')
65 Source('process.cc')
66 Source('remote_gdb.cc')
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('ArmNativeTrace.py')
76 SimObject('ArmSystem.py')
77 SimObject('ArmTLB.py')
78
79 DebugFlag('Arm')
81 DebugFlag('TLBVerbose')
80 DebugFlag('Decoder', "Instructions returned by the predecoder")
82 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
81 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
83 DebugFlag('Predecoder', "Instructions returned by the predecoder")
82 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
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