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')
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')
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