SConscript (5173:07204d59a328) SConscript (5192:582e583f8e7e)
1# -*- mode:python -*-
2
3# Copyright (c) 2005-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer;
10# redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution;
13# neither the name of the copyright holders nor the names of its
14# contributors may be used to endorse or promote products derived from
15# this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30
31# Copyright (c) 2007 The Hewlett-Packard Development Company
32# All rights reserved.
33#
34# Redistribution and use of this software in source and binary forms,
35# with or without modification, are permitted provided that the
36# following conditions are met:
37#
38# The software must be used only for Non-Commercial Use which means any
39# use which is NOT directed to receiving any direct monetary
40# compensation for, or commercial advantage from such use. Illustrative
41# examples of non-commercial use are academic research, personal study,
42# teaching, education and corporate research & development.
43# Illustrative examples of commercial use are distributing products for
44# commercial advantage and providing services using the software for
45# commercial advantage.
46#
47# If you wish to use this software or functionality therein that may be
48# covered by patents for commercial use, please contact:
49# Director of Intellectual Property Licensing
50# Office of Strategy and Technology
51# Hewlett-Packard Company
52# 1501 Page Mill Road
53# Palo Alto, California 94304
54#
55# Redistributions of source code must retain the above copyright notice,
56# this list of conditions and the following disclaimer. Redistributions
57# in binary form must reproduce the above copyright notice, this list of
58# conditions and the following disclaimer in the documentation and/or
59# other materials provided with the distribution. Neither the name of
60# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
61# contributors may be used to endorse or promote products derived from
62# this software without specific prior written permission. No right of
63# sublicense is granted herewith. Derivatives of the software and
64# output created using the software may be prepared, but only for
65# Non-Commercial Uses. Derivatives of the software may be shared with
66# others provided: (i) the others agree to abide by the list of
67# conditions herein which includes the Non-Commercial Use restrictions;
68# and (ii) such Derivatives of the software include the above copyright
69# notice to acknowledge the contribution from this software where
70# applicable, this list of conditions and the disclaimer below.
71#
72# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
73# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
74# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
75# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
76# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
77# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
78# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
79# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
80# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
82# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
83#
84# Authors: Gabe Black
85
86Import('*')
87
88if env['TARGET_ISA'] == 'x86':
89 Source('emulenv.cc')
90 Source('floatregfile.cc')
91 Source('faults.cc')
92 Source('insts/microfpop.cc')
93 Source('insts/microldstop.cc')
94 Source('insts/microop.cc')
95 Source('insts/microregop.cc')
96 Source('insts/static_inst.cc')
97 Source('intregfile.cc')
98 Source('miscregfile.cc')
99 Source('pagetable.cc')
100 Source('predecoder.cc')
101 Source('predecoder_tables.cc')
102 Source('regfile.cc')
103 Source('remote_gdb.cc')
104 Source('tlb.cc')
105 Source('utility.cc')
106
107 SimObject('X86TLB.py')
1# -*- mode:python -*-
2
3# Copyright (c) 2005-2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer;
10# redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution;
13# neither the name of the copyright holders nor the names of its
14# contributors may be used to endorse or promote products derived from
15# this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30
31# Copyright (c) 2007 The Hewlett-Packard Development Company
32# All rights reserved.
33#
34# Redistribution and use of this software in source and binary forms,
35# with or without modification, are permitted provided that the
36# following conditions are met:
37#
38# The software must be used only for Non-Commercial Use which means any
39# use which is NOT directed to receiving any direct monetary
40# compensation for, or commercial advantage from such use. Illustrative
41# examples of non-commercial use are academic research, personal study,
42# teaching, education and corporate research & development.
43# Illustrative examples of commercial use are distributing products for
44# commercial advantage and providing services using the software for
45# commercial advantage.
46#
47# If you wish to use this software or functionality therein that may be
48# covered by patents for commercial use, please contact:
49# Director of Intellectual Property Licensing
50# Office of Strategy and Technology
51# Hewlett-Packard Company
52# 1501 Page Mill Road
53# Palo Alto, California 94304
54#
55# Redistributions of source code must retain the above copyright notice,
56# this list of conditions and the following disclaimer. Redistributions
57# in binary form must reproduce the above copyright notice, this list of
58# conditions and the following disclaimer in the documentation and/or
59# other materials provided with the distribution. Neither the name of
60# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
61# contributors may be used to endorse or promote products derived from
62# this software without specific prior written permission. No right of
63# sublicense is granted herewith. Derivatives of the software and
64# output created using the software may be prepared, but only for
65# Non-Commercial Uses. Derivatives of the software may be shared with
66# others provided: (i) the others agree to abide by the list of
67# conditions herein which includes the Non-Commercial Use restrictions;
68# and (ii) such Derivatives of the software include the above copyright
69# notice to acknowledge the contribution from this software where
70# applicable, this list of conditions and the disclaimer below.
71#
72# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
73# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
74# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
75# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
76# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
77# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
78# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
79# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
80# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
82# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
83#
84# Authors: Gabe Black
85
86Import('*')
87
88if env['TARGET_ISA'] == 'x86':
89 Source('emulenv.cc')
90 Source('floatregfile.cc')
91 Source('faults.cc')
92 Source('insts/microfpop.cc')
93 Source('insts/microldstop.cc')
94 Source('insts/microop.cc')
95 Source('insts/microregop.cc')
96 Source('insts/static_inst.cc')
97 Source('intregfile.cc')
98 Source('miscregfile.cc')
99 Source('pagetable.cc')
100 Source('predecoder.cc')
101 Source('predecoder_tables.cc')
102 Source('regfile.cc')
103 Source('remote_gdb.cc')
104 Source('tlb.cc')
105 Source('utility.cc')
106
107 SimObject('X86TLB.py')
108 TraceFlag('Predecoder')
109 TraceFlag('X86')
108
109 if env['FULL_SYSTEM']:
110 SimObject('X86System.py')
111
112 # Full-system sources
113 Source('system.cc')
114 Source('stacktrace.cc')
115 Source('vtophys.cc')
116 else:
117 Source('process.cc')
118
119 Source('linux/linux.cc')
120 Source('linux/process.cc')
121 Source('linux/syscalls.cc')
122
123 python_files = (
124 '__init__.py',
125 'general_purpose/__init__.py',
126 'general_purpose/arithmetic/__init__.py',
127 'general_purpose/arithmetic/add_and_subtract.py',
128 'general_purpose/arithmetic/increment_and_decrement.py',
129 'general_purpose/arithmetic/multiply_and_divide.py',
130 'general_purpose/cache_and_memory_management.py',
131 'general_purpose/compare_and_test/__init__.py',
132 'general_purpose/compare_and_test/bit_scan.py',
133 'general_purpose/compare_and_test/bit_test.py',
134 'general_purpose/compare_and_test/bounds.py',
135 'general_purpose/compare_and_test/compare.py',
136 'general_purpose/compare_and_test/set_byte_on_condition.py',
137 'general_purpose/compare_and_test/test.py',
138 'general_purpose/control_transfer/__init__.py',
139 'general_purpose/control_transfer/call.py',
140 'general_purpose/control_transfer/conditional_jump.py',
141 'general_purpose/control_transfer/interrupts_and_exceptions.py',
142 'general_purpose/control_transfer/jump.py',
143 'general_purpose/control_transfer/loop.py',
144 'general_purpose/control_transfer/xreturn.py',
145 'general_purpose/data_conversion/__init__.py',
146 'general_purpose/data_conversion/ascii_adjust.py',
147 'general_purpose/data_conversion/bcd_adjust.py',
148 'general_purpose/data_conversion/endian_conversion.py',
149 'general_purpose/data_conversion/extract_sign_mask.py',
150 'general_purpose/data_conversion/sign_extension.py',
151 'general_purpose/data_conversion/translate.py',
152 'general_purpose/data_transfer/__init__.py',
153 'general_purpose/data_transfer/conditional_move.py',
154 'general_purpose/data_transfer/move.py',
155 'general_purpose/data_transfer/stack_operations.py',
156 'general_purpose/data_transfer/xchg.py',
157 'general_purpose/flags/__init__.py',
158 'general_purpose/flags/load_and_store.py',
159 'general_purpose/flags/push_and_pop.py',
160 'general_purpose/flags/set_and_clear.py',
161 'general_purpose/input_output/__init__.py',
162 'general_purpose/input_output/general_io.py',
163 'general_purpose/input_output/string_io.py',
164 'general_purpose/load_effective_address.py',
165 'general_purpose/load_segment_registers.py',
166 'general_purpose/logical.py',
167 'general_purpose/no_operation.py',
168 'general_purpose/processor_information.py',
169 'general_purpose/rotate_and_shift/__init__.py',
170 'general_purpose/rotate_and_shift/rotate.py',
171 'general_purpose/rotate_and_shift/shift.py',
172 'general_purpose/semaphores.py',
173 'general_purpose/string/__init__.py',
174 'general_purpose/string/compare_strings.py',
175 'general_purpose/string/load_string.py',
176 'general_purpose/string/move_string.py',
177 'general_purpose/string/scan_string.py',
178 'general_purpose/string/store_string.py',
179 'general_purpose/system_calls.py',
180 'system/__init__.py',
181 'system/halt.py',
182 'system/undefined_operation.py',
183 'system/msrs.py',
184 'simd128/__init__.py',
185 'simd128/integer/__init__.py',
186 'simd128/integer/data_transfer/__init__.py',
187 'simd128/integer/data_transfer/move.py',
188 'simd128/integer/data_transfer/move_non_temporal.py',
189 'simd128/integer/data_transfer/move_mask.py',
190 'simd128/integer/data_conversion/__init__.py',
191 'simd128/integer/data_conversion/convert_mmx_integer_to_floating_point.py',
192 'simd128/integer/data_conversion/convert_integer_to_floating_point.py',
193 'simd128/integer/data_conversion/convert_gpr_integer_to_floating_point.py',
194 'simd128/integer/data_reordering/__init__.py',
195 'simd128/integer/data_reordering/unpack_and_interleave.py',
196 'simd128/integer/data_reordering/pack_with_saturation.py',
197 'simd128/integer/data_reordering/extract_and_insert.py',
198 'simd128/integer/data_reordering/shuffle.py',
199 'simd128/integer/arithmetic/__init__.py',
200 'simd128/integer/arithmetic/subtraction.py',
201 'simd128/integer/arithmetic/addition.py',
202 'simd128/integer/arithmetic/multiplication.py',
203 'simd128/integer/arithmetic/multiply_add.py',
204 'simd128/integer/arithmetic/average.py',
205 'simd128/integer/arithmetic/sum_of_absolute_differences.py',
206 'simd128/integer/shift/__init__.py',
207 'simd128/integer/shift/right_arithmetic_shift.py',
208 'simd128/integer/shift/left_logical_shift.py',
209 'simd128/integer/shift/right_logical_shift.py',
210 'simd128/integer/compare/__init__.py',
211 'simd128/integer/compare/compare_and_write_mask.py',
212 'simd128/integer/compare/compare_and_write_minimum_or_maximum.py',
213 'simd128/integer/logical/__init__.py',
214 'simd128/integer/logical/pand.py',
215 'simd128/integer/logical/por.py',
216 'simd128/integer/logical/exclusive_or.py',
217 'simd128/integer/save_and_restore_state/__init__.py',
218 'simd128/integer/save_and_restore_state/save_and_restore_state.py',
219 'simd128/integer/save_and_restore_state/save_and_restore_control_and_status.py',
220 'simd128/floating_point/__init__.py',
221 'simd128/floating_point/data_transfer/__init__.py',
222 'simd128/floating_point/data_transfer/move_mask.py',
223 'simd128/floating_point/data_transfer/move.py',
224 'simd128/floating_point/data_transfer/move_with_duplication.py',
225 'simd128/floating_point/data_transfer/move_non_temporal.py',
226 'simd128/floating_point/data_conversion/__init__.py',
227 'simd128/floating_point/data_conversion/convert_floating_point_to_floating_point.py',
228 'simd128/floating_point/data_conversion/convert_floating_point_to_xmm_integer.py',
229 'simd128/floating_point/data_conversion/convert_floating_point_to_mmx_integer.py',
230 'simd128/floating_point/data_conversion/convert_floating_point_to_gpr_integer.py',
231 'simd128/floating_point/data_reordering/__init__.py',
232 'simd128/floating_point/data_reordering/unpack_and_interleave.py',
233 'simd128/floating_point/data_reordering/shuffle.py',
234 'simd128/floating_point/arithmetic/__init__.py',
235 'simd128/floating_point/arithmetic/subtraction.py',
236 'simd128/floating_point/arithmetic/addition.py',
237 'simd128/floating_point/arithmetic/horizontal_subtraction.py',
238 'simd128/floating_point/arithmetic/horizontal_addition.py',
239 'simd128/floating_point/arithmetic/square_root.py',
240 'simd128/floating_point/arithmetic/simultaneous_addition_and_subtraction.py',
241 'simd128/floating_point/arithmetic/multiplication.py',
242 'simd128/floating_point/arithmetic/division.py',
243 'simd128/floating_point/arithmetic/reciprocal_square_root.py',
244 'simd128/floating_point/arithmetic/reciprocal_estimation.py',
245 'simd128/floating_point/compare/__init__.py',
246 'simd128/floating_point/compare/compare_and_write_mask.py',
247 'simd128/floating_point/compare/compare_and_write_rflags.py',
248 'simd128/floating_point/compare/compare_and_write_minimum_or_maximum.py',
249 'simd128/floating_point/logical/__init__.py',
250 'simd128/floating_point/logical/andp.py',
251 'simd128/floating_point/logical/orp.py',
252 'simd128/floating_point/logical/exclusive_or.py',
253 'simd64/__init__.py',
254 'simd64/integer/__init__.py',
255 'simd64/integer/data_transfer/__init__.py',
256 'simd64/integer/data_transfer/move_mask.py',
257 'simd64/integer/data_transfer/move.py',
258 'simd64/integer/data_transfer/move_non_temporal.py',
259 'simd64/integer/exit_media_state.py',
260 'simd64/integer/data_reordering/__init__.py',
261 'simd64/integer/data_reordering/unpack_and_interleave.py',
262 'simd64/integer/data_reordering/pack_with_saturation.py',
263 'simd64/integer/data_reordering/extract_and_insert.py',
264 'simd64/integer/data_reordering/shuffle_and_swap.py',
265 'simd64/integer/data_conversion.py',
266 'simd64/integer/arithmetic/__init__.py',
267 'simd64/integer/arithmetic/subtraction.py',
268 'simd64/integer/arithmetic/addition.py',
269 'simd64/integer/arithmetic/multiplication.py',
270 'simd64/integer/arithmetic/multiply_add.py',
271 'simd64/integer/arithmetic/average.py',
272 'simd64/integer/arithmetic/sum_of_absolute_differences.py',
273 'simd64/integer/shift/__init__.py',
274 'simd64/integer/shift/right_arithmetic_shift.py',
275 'simd64/integer/shift/left_logical_shift.py',
276 'simd64/integer/shift/right_logical_shift.py',
277 'simd64/integer/compare/__init__.py',
278 'simd64/integer/compare/compare_and_write_mask.py',
279 'simd64/integer/compare/compare_and_write_minimum_or_maximum.py',
280 'simd64/integer/logical/__init__.py',
281 'simd64/integer/logical/pand.py',
282 'simd64/integer/logical/por.py',
283 'simd64/integer/logical/exclusive_or.py',
284 'simd64/integer/save_and_restore_state.py',
285 'simd64/floating_point/__init__.py',
286 'simd64/floating_point/arithmetic/__init__.py',
287 'simd64/floating_point/arithmetic/subtraction.py',
288 'simd64/floating_point/arithmetic/addition.py',
289 'simd64/floating_point/arithmetic/reciprocal_estimation.py',
290 'simd64/floating_point/arithmetic/multiplication.py',
291 'simd64/floating_point/arithmetic/accumulation.py',
292 'simd64/floating_point/arithmetic/reciprocal_square_root.py',
293 'simd64/floating_point/data_conversion.py',
294 'simd64/floating_point/compare/__init__.py',
295 'simd64/floating_point/compare/compare_and_write_mask.py',
296 'simd64/floating_point/compare/compare_and_write_minimum_or_maximum.py',
297 'x87/__init__.py',
298 'x87/data_transfer_and_conversion/__init__.py',
299 'x87/data_transfer_and_conversion/convert_and_load_or_store_integer.py',
300 'x87/data_transfer_and_conversion/load_or_store_floating_point.py',
301 'x87/data_transfer_and_conversion/exchange.py',
302 'x87/data_transfer_and_conversion/convert_and_load_or_store_bcd.py',
303 'x87/data_transfer_and_conversion/conditional_move.py',
304 'x87/data_transfer_and_conversion/extract.py',
305 'x87/load_constants/__init__.py',
306 'x87/load_constants/load_0_1_or_pi.py',
307 'x87/load_constants/load_logarithm.py',
308 'x87/arithmetic/__init__.py',
309 'x87/arithmetic/subtraction.py',
310 'x87/arithmetic/addition.py',
311 'x87/arithmetic/partial_remainder.py',
312 'x87/arithmetic/multiplication.py',
313 'x87/arithmetic/division.py',
314 'x87/arithmetic/change_sign.py',
315 'x87/arithmetic/round.py',
316 'x87/arithmetic/square_root.py',
317 'x87/transcendental_functions/__init__.py',
318 'x87/transcendental_functions/trigonometric_functions.py',
319 'x87/transcendental_functions/logarithmic_functions.py',
320 'x87/compare_and_test/__init__.py',
321 'x87/compare_and_test/classify.py',
322 'x87/compare_and_test/test.py',
323 'x87/compare_and_test/floating_point_ordered_compare.py',
324 'x87/compare_and_test/floating_point_unordered_compare.py',
325 'x87/compare_and_test/integer_compare.py',
326 'x87/stack_management/__init__.py',
327 'x87/stack_management/stack_control.py',
328 'x87/stack_management/clear_state.py',
329 'x87/control/__init__.py',
330 'x87/control/clear_exceptions.py',
331 'x87/control/initialize.py',
332 'x87/control/wait_for_exceptions.py',
333 'x87/control/save_x87_status_word.py',
334 'x87/control/save_and_restore_x87_control_word.py',
335 'x87/control/save_and_restore_x87_environment.py',
336 'x87/no_operation.py'
337 )
338
339
340 # Add in files generated by the ISA description.
341 isa_desc_files = env.ISADesc('isa/main.isa')
342 for f in isa_desc_files:
343 # Add in python file dependencies that won't be caught otherwise
344 for pyfile in python_files:
345 env.Depends(f, "isa/insts/%s" % pyfile)
346 # Only non-header files need to be compiled.
347 if not f.path.endswith('.hh'):
348 Source(f)
110
111 if env['FULL_SYSTEM']:
112 SimObject('X86System.py')
113
114 # Full-system sources
115 Source('system.cc')
116 Source('stacktrace.cc')
117 Source('vtophys.cc')
118 else:
119 Source('process.cc')
120
121 Source('linux/linux.cc')
122 Source('linux/process.cc')
123 Source('linux/syscalls.cc')
124
125 python_files = (
126 '__init__.py',
127 'general_purpose/__init__.py',
128 'general_purpose/arithmetic/__init__.py',
129 'general_purpose/arithmetic/add_and_subtract.py',
130 'general_purpose/arithmetic/increment_and_decrement.py',
131 'general_purpose/arithmetic/multiply_and_divide.py',
132 'general_purpose/cache_and_memory_management.py',
133 'general_purpose/compare_and_test/__init__.py',
134 'general_purpose/compare_and_test/bit_scan.py',
135 'general_purpose/compare_and_test/bit_test.py',
136 'general_purpose/compare_and_test/bounds.py',
137 'general_purpose/compare_and_test/compare.py',
138 'general_purpose/compare_and_test/set_byte_on_condition.py',
139 'general_purpose/compare_and_test/test.py',
140 'general_purpose/control_transfer/__init__.py',
141 'general_purpose/control_transfer/call.py',
142 'general_purpose/control_transfer/conditional_jump.py',
143 'general_purpose/control_transfer/interrupts_and_exceptions.py',
144 'general_purpose/control_transfer/jump.py',
145 'general_purpose/control_transfer/loop.py',
146 'general_purpose/control_transfer/xreturn.py',
147 'general_purpose/data_conversion/__init__.py',
148 'general_purpose/data_conversion/ascii_adjust.py',
149 'general_purpose/data_conversion/bcd_adjust.py',
150 'general_purpose/data_conversion/endian_conversion.py',
151 'general_purpose/data_conversion/extract_sign_mask.py',
152 'general_purpose/data_conversion/sign_extension.py',
153 'general_purpose/data_conversion/translate.py',
154 'general_purpose/data_transfer/__init__.py',
155 'general_purpose/data_transfer/conditional_move.py',
156 'general_purpose/data_transfer/move.py',
157 'general_purpose/data_transfer/stack_operations.py',
158 'general_purpose/data_transfer/xchg.py',
159 'general_purpose/flags/__init__.py',
160 'general_purpose/flags/load_and_store.py',
161 'general_purpose/flags/push_and_pop.py',
162 'general_purpose/flags/set_and_clear.py',
163 'general_purpose/input_output/__init__.py',
164 'general_purpose/input_output/general_io.py',
165 'general_purpose/input_output/string_io.py',
166 'general_purpose/load_effective_address.py',
167 'general_purpose/load_segment_registers.py',
168 'general_purpose/logical.py',
169 'general_purpose/no_operation.py',
170 'general_purpose/processor_information.py',
171 'general_purpose/rotate_and_shift/__init__.py',
172 'general_purpose/rotate_and_shift/rotate.py',
173 'general_purpose/rotate_and_shift/shift.py',
174 'general_purpose/semaphores.py',
175 'general_purpose/string/__init__.py',
176 'general_purpose/string/compare_strings.py',
177 'general_purpose/string/load_string.py',
178 'general_purpose/string/move_string.py',
179 'general_purpose/string/scan_string.py',
180 'general_purpose/string/store_string.py',
181 'general_purpose/system_calls.py',
182 'system/__init__.py',
183 'system/halt.py',
184 'system/undefined_operation.py',
185 'system/msrs.py',
186 'simd128/__init__.py',
187 'simd128/integer/__init__.py',
188 'simd128/integer/data_transfer/__init__.py',
189 'simd128/integer/data_transfer/move.py',
190 'simd128/integer/data_transfer/move_non_temporal.py',
191 'simd128/integer/data_transfer/move_mask.py',
192 'simd128/integer/data_conversion/__init__.py',
193 'simd128/integer/data_conversion/convert_mmx_integer_to_floating_point.py',
194 'simd128/integer/data_conversion/convert_integer_to_floating_point.py',
195 'simd128/integer/data_conversion/convert_gpr_integer_to_floating_point.py',
196 'simd128/integer/data_reordering/__init__.py',
197 'simd128/integer/data_reordering/unpack_and_interleave.py',
198 'simd128/integer/data_reordering/pack_with_saturation.py',
199 'simd128/integer/data_reordering/extract_and_insert.py',
200 'simd128/integer/data_reordering/shuffle.py',
201 'simd128/integer/arithmetic/__init__.py',
202 'simd128/integer/arithmetic/subtraction.py',
203 'simd128/integer/arithmetic/addition.py',
204 'simd128/integer/arithmetic/multiplication.py',
205 'simd128/integer/arithmetic/multiply_add.py',
206 'simd128/integer/arithmetic/average.py',
207 'simd128/integer/arithmetic/sum_of_absolute_differences.py',
208 'simd128/integer/shift/__init__.py',
209 'simd128/integer/shift/right_arithmetic_shift.py',
210 'simd128/integer/shift/left_logical_shift.py',
211 'simd128/integer/shift/right_logical_shift.py',
212 'simd128/integer/compare/__init__.py',
213 'simd128/integer/compare/compare_and_write_mask.py',
214 'simd128/integer/compare/compare_and_write_minimum_or_maximum.py',
215 'simd128/integer/logical/__init__.py',
216 'simd128/integer/logical/pand.py',
217 'simd128/integer/logical/por.py',
218 'simd128/integer/logical/exclusive_or.py',
219 'simd128/integer/save_and_restore_state/__init__.py',
220 'simd128/integer/save_and_restore_state/save_and_restore_state.py',
221 'simd128/integer/save_and_restore_state/save_and_restore_control_and_status.py',
222 'simd128/floating_point/__init__.py',
223 'simd128/floating_point/data_transfer/__init__.py',
224 'simd128/floating_point/data_transfer/move_mask.py',
225 'simd128/floating_point/data_transfer/move.py',
226 'simd128/floating_point/data_transfer/move_with_duplication.py',
227 'simd128/floating_point/data_transfer/move_non_temporal.py',
228 'simd128/floating_point/data_conversion/__init__.py',
229 'simd128/floating_point/data_conversion/convert_floating_point_to_floating_point.py',
230 'simd128/floating_point/data_conversion/convert_floating_point_to_xmm_integer.py',
231 'simd128/floating_point/data_conversion/convert_floating_point_to_mmx_integer.py',
232 'simd128/floating_point/data_conversion/convert_floating_point_to_gpr_integer.py',
233 'simd128/floating_point/data_reordering/__init__.py',
234 'simd128/floating_point/data_reordering/unpack_and_interleave.py',
235 'simd128/floating_point/data_reordering/shuffle.py',
236 'simd128/floating_point/arithmetic/__init__.py',
237 'simd128/floating_point/arithmetic/subtraction.py',
238 'simd128/floating_point/arithmetic/addition.py',
239 'simd128/floating_point/arithmetic/horizontal_subtraction.py',
240 'simd128/floating_point/arithmetic/horizontal_addition.py',
241 'simd128/floating_point/arithmetic/square_root.py',
242 'simd128/floating_point/arithmetic/simultaneous_addition_and_subtraction.py',
243 'simd128/floating_point/arithmetic/multiplication.py',
244 'simd128/floating_point/arithmetic/division.py',
245 'simd128/floating_point/arithmetic/reciprocal_square_root.py',
246 'simd128/floating_point/arithmetic/reciprocal_estimation.py',
247 'simd128/floating_point/compare/__init__.py',
248 'simd128/floating_point/compare/compare_and_write_mask.py',
249 'simd128/floating_point/compare/compare_and_write_rflags.py',
250 'simd128/floating_point/compare/compare_and_write_minimum_or_maximum.py',
251 'simd128/floating_point/logical/__init__.py',
252 'simd128/floating_point/logical/andp.py',
253 'simd128/floating_point/logical/orp.py',
254 'simd128/floating_point/logical/exclusive_or.py',
255 'simd64/__init__.py',
256 'simd64/integer/__init__.py',
257 'simd64/integer/data_transfer/__init__.py',
258 'simd64/integer/data_transfer/move_mask.py',
259 'simd64/integer/data_transfer/move.py',
260 'simd64/integer/data_transfer/move_non_temporal.py',
261 'simd64/integer/exit_media_state.py',
262 'simd64/integer/data_reordering/__init__.py',
263 'simd64/integer/data_reordering/unpack_and_interleave.py',
264 'simd64/integer/data_reordering/pack_with_saturation.py',
265 'simd64/integer/data_reordering/extract_and_insert.py',
266 'simd64/integer/data_reordering/shuffle_and_swap.py',
267 'simd64/integer/data_conversion.py',
268 'simd64/integer/arithmetic/__init__.py',
269 'simd64/integer/arithmetic/subtraction.py',
270 'simd64/integer/arithmetic/addition.py',
271 'simd64/integer/arithmetic/multiplication.py',
272 'simd64/integer/arithmetic/multiply_add.py',
273 'simd64/integer/arithmetic/average.py',
274 'simd64/integer/arithmetic/sum_of_absolute_differences.py',
275 'simd64/integer/shift/__init__.py',
276 'simd64/integer/shift/right_arithmetic_shift.py',
277 'simd64/integer/shift/left_logical_shift.py',
278 'simd64/integer/shift/right_logical_shift.py',
279 'simd64/integer/compare/__init__.py',
280 'simd64/integer/compare/compare_and_write_mask.py',
281 'simd64/integer/compare/compare_and_write_minimum_or_maximum.py',
282 'simd64/integer/logical/__init__.py',
283 'simd64/integer/logical/pand.py',
284 'simd64/integer/logical/por.py',
285 'simd64/integer/logical/exclusive_or.py',
286 'simd64/integer/save_and_restore_state.py',
287 'simd64/floating_point/__init__.py',
288 'simd64/floating_point/arithmetic/__init__.py',
289 'simd64/floating_point/arithmetic/subtraction.py',
290 'simd64/floating_point/arithmetic/addition.py',
291 'simd64/floating_point/arithmetic/reciprocal_estimation.py',
292 'simd64/floating_point/arithmetic/multiplication.py',
293 'simd64/floating_point/arithmetic/accumulation.py',
294 'simd64/floating_point/arithmetic/reciprocal_square_root.py',
295 'simd64/floating_point/data_conversion.py',
296 'simd64/floating_point/compare/__init__.py',
297 'simd64/floating_point/compare/compare_and_write_mask.py',
298 'simd64/floating_point/compare/compare_and_write_minimum_or_maximum.py',
299 'x87/__init__.py',
300 'x87/data_transfer_and_conversion/__init__.py',
301 'x87/data_transfer_and_conversion/convert_and_load_or_store_integer.py',
302 'x87/data_transfer_and_conversion/load_or_store_floating_point.py',
303 'x87/data_transfer_and_conversion/exchange.py',
304 'x87/data_transfer_and_conversion/convert_and_load_or_store_bcd.py',
305 'x87/data_transfer_and_conversion/conditional_move.py',
306 'x87/data_transfer_and_conversion/extract.py',
307 'x87/load_constants/__init__.py',
308 'x87/load_constants/load_0_1_or_pi.py',
309 'x87/load_constants/load_logarithm.py',
310 'x87/arithmetic/__init__.py',
311 'x87/arithmetic/subtraction.py',
312 'x87/arithmetic/addition.py',
313 'x87/arithmetic/partial_remainder.py',
314 'x87/arithmetic/multiplication.py',
315 'x87/arithmetic/division.py',
316 'x87/arithmetic/change_sign.py',
317 'x87/arithmetic/round.py',
318 'x87/arithmetic/square_root.py',
319 'x87/transcendental_functions/__init__.py',
320 'x87/transcendental_functions/trigonometric_functions.py',
321 'x87/transcendental_functions/logarithmic_functions.py',
322 'x87/compare_and_test/__init__.py',
323 'x87/compare_and_test/classify.py',
324 'x87/compare_and_test/test.py',
325 'x87/compare_and_test/floating_point_ordered_compare.py',
326 'x87/compare_and_test/floating_point_unordered_compare.py',
327 'x87/compare_and_test/integer_compare.py',
328 'x87/stack_management/__init__.py',
329 'x87/stack_management/stack_control.py',
330 'x87/stack_management/clear_state.py',
331 'x87/control/__init__.py',
332 'x87/control/clear_exceptions.py',
333 'x87/control/initialize.py',
334 'x87/control/wait_for_exceptions.py',
335 'x87/control/save_x87_status_word.py',
336 'x87/control/save_and_restore_x87_control_word.py',
337 'x87/control/save_and_restore_x87_environment.py',
338 'x87/no_operation.py'
339 )
340
341
342 # Add in files generated by the ISA description.
343 isa_desc_files = env.ISADesc('isa/main.isa')
344 for f in isa_desc_files:
345 # Add in python file dependencies that won't be caught otherwise
346 for pyfile in python_files:
347 env.Depends(f, "isa/insts/%s" % pyfile)
348 # Only non-header files need to be compiled.
349 if not f.path.endswith('.hh'):
350 Source(f)