SConscript (7585:afbc40280b56) SConscript (7694:de057cccee82)
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

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

54 Source('insts/pred_inst.cc')
55 Source('insts/static_inst.cc')
56 Source('insts/vfp.cc')
57 Source('isa.cc')
58 Source('miscregs.cc')
59 Source('predecoder.cc')
60 Source('nativetrace.cc')
61 Source('tlb.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

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

54 Source('insts/pred_inst.cc')
55 Source('insts/static_inst.cc')
56 Source('insts/vfp.cc')
57 Source('isa.cc')
58 Source('miscregs.cc')
59 Source('predecoder.cc')
60 Source('nativetrace.cc')
61 Source('tlb.cc')
62 Source('vtophys.cc')
63 Source('utility.cc')
64
65 SimObject('ArmNativeTrace.py')
66 SimObject('ArmTLB.py')
67
68 TraceFlag('Arm')
69 TraceFlag('TLBVerbose')
70 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
71 TraceFlag('Predecoder', "Instructions returned by the predecoder")
72 if env['FULL_SYSTEM']:
73 Source('interrupts.cc')
74 Source('stacktrace.cc')
75 Source('system.cc')
62 Source('utility.cc')
63
64 SimObject('ArmNativeTrace.py')
65 SimObject('ArmTLB.py')
66
67 TraceFlag('Arm')
68 TraceFlag('TLBVerbose')
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('vtophys.cc')
76 Source('linux/system.cc')
77 Source('table_walker.cc')
78
79 SimObject('ArmInterrupts.py')
80 SimObject('ArmSystem.py')
81 else:
82 Source('process.cc')
83 Source('linux/linux.cc')
84 Source('linux/process.cc')
85
86 # Add in files generated by the ISA description.
87 isa_desc_files = env.ISADesc('isa/main.isa')
88 # Only non-header files need to be compiled.
89 for f in isa_desc_files:
90 if not f.path.endswith('.hh'):
91 Source(f)
92
76 Source('linux/system.cc')
77 Source('table_walker.cc')
78
79 SimObject('ArmInterrupts.py')
80 SimObject('ArmSystem.py')
81 else:
82 Source('process.cc')
83 Source('linux/linux.cc')
84 Source('linux/process.cc')
85
86 # Add in files generated by the ISA description.
87 isa_desc_files = env.ISADesc('isa/main.isa')
88 # Only non-header files need to be compiled.
89 for f in isa_desc_files:
90 if not f.path.endswith('.hh'):
91 Source(f)
92