SConscript (8753:8369dcf5b3a8) SConscript (8771:a2a4416cadc8)
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
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

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

50 Source('insts/microfpop.cc')
51 Source('insts/microldstop.cc')
52 Source('insts/micromediaop.cc')
53 Source('insts/microop.cc')
54 Source('insts/microregop.cc')
55 Source('insts/static_inst.cc')
56 Source('interrupts.cc')
57 Source('isa.cc')
1# -*- mode:python -*-
2
3# Copyright (c) 2007-2008 The Hewlett-Packard Development Company
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

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

50 Source('insts/microfpop.cc')
51 Source('insts/microldstop.cc')
52 Source('insts/micromediaop.cc')
53 Source('insts/microop.cc')
54 Source('insts/microregop.cc')
55 Source('insts/static_inst.cc')
56 Source('interrupts.cc')
57 Source('isa.cc')
58 Source('linux/linux.cc')
59 Source('linux/process.cc')
60 Source('linux/syscalls.cc')
61 Source('linux/system.cc')
58 Source('nativetrace.cc')
59 Source('pagetable.cc')
60 Source('pagetable_walker.cc')
61 Source('predecoder.cc')
62 Source('predecoder_tables.cc')
62 Source('nativetrace.cc')
63 Source('pagetable.cc')
64 Source('pagetable_walker.cc')
65 Source('predecoder.cc')
66 Source('predecoder_tables.cc')
67 Source('process.cc')
63 Source('remote_gdb.cc')
68 Source('remote_gdb.cc')
69 Source('stacktrace.cc')
70 Source('system.cc')
64 Source('tlb.cc')
65 Source('types.cc')
66 Source('utility.cc')
67 Source('vtophys.cc')
68
69 SimObject('X86LocalApic.py')
70 SimObject('X86NativeTrace.py')
71 Source('tlb.cc')
72 Source('types.cc')
73 Source('utility.cc')
74 Source('vtophys.cc')
75
76 SimObject('X86LocalApic.py')
77 SimObject('X86NativeTrace.py')
78 SimObject('X86System.py')
71 SimObject('X86TLB.py')
72
73 DebugFlag('Faults', "Trace all faults/exceptions/traps")
74 DebugFlag('LocalApic', "Local APIC debugging")
75 DebugFlag('PageTableWalker', \
76 "Page table walker state machine debugging")
77 DebugFlag('Predecoder', "Predecoder debug output")
78 DebugFlag('X86', "Generic X86 ISA debugging")
79
79 SimObject('X86TLB.py')
80
81 DebugFlag('Faults', "Trace all faults/exceptions/traps")
82 DebugFlag('LocalApic', "Local APIC debugging")
83 DebugFlag('PageTableWalker', \
84 "Page table walker state machine debugging")
85 DebugFlag('Predecoder', "Predecoder debug output")
86 DebugFlag('X86', "Generic X86 ISA debugging")
87
80 if env['FULL_SYSTEM']:
81
82 SimObject('X86System.py')
83
84 # Full-system sources
85 Source('linux/system.cc')
86 Source('system.cc')
87 Source('stacktrace.cc')
88 else:
89 Source('process.cc')
90
91 Source('linux/linux.cc')
92 Source('linux/process.cc')
93 Source('linux/syscalls.cc')
94
95 python_files = (
96 '__init__.py',
97 'general_purpose/__init__.py',
98 'general_purpose/arithmetic/__init__.py',
99 'general_purpose/arithmetic/add_and_subtract.py',
100 'general_purpose/arithmetic/increment_and_decrement.py',
101 'general_purpose/arithmetic/multiply_and_divide.py',
102 'general_purpose/cache_and_memory_management.py',

--- 221 unchanged lines hidden ---
88 python_files = (
89 '__init__.py',
90 'general_purpose/__init__.py',
91 'general_purpose/arithmetic/__init__.py',
92 'general_purpose/arithmetic/add_and_subtract.py',
93 'general_purpose/arithmetic/increment_and_decrement.py',
94 'general_purpose/arithmetic/multiply_and_divide.py',
95 'general_purpose/cache_and_memory_management.py',

--- 221 unchanged lines hidden ---