SConscript revision 8753
12139SN/A# -*- mode:python -*- 22139SN/A 32139SN/A# Copyright (c) 2007-2008 The Hewlett-Packard Development Company 42139SN/A# All rights reserved. 52139SN/A# 62139SN/A# The license below extends only to copyright in the software and shall 72139SN/A# not be construed as granting a license to any other intellectual 82139SN/A# property including but not limited to intellectual property relating 92139SN/A# to a hardware implementation of the functionality of the software 102139SN/A# licensed hereunder. You may use the software subject to the license 112139SN/A# terms below provided that you ensure that this notice is replicated 122139SN/A# unmodified and in its entirety in all distributions of the software, 132139SN/A# modified or unmodified, in source code or in binary form. 142139SN/A# 152139SN/A# Copyright (c) 2005-2006 The Regents of The University of Michigan 162139SN/A# All rights reserved. 172139SN/A# 182139SN/A# Redistribution and use in source and binary forms, with or without 192139SN/A# modification, are permitted provided that the following conditions are 202139SN/A# met: redistributions of source code must retain the above copyright 212139SN/A# notice, this list of conditions and the following disclaimer; 222139SN/A# redistributions in binary form must reproduce the above copyright 232139SN/A# notice, this list of conditions and the following disclaimer in the 242139SN/A# documentation and/or other materials provided with the distribution; 252139SN/A# neither the name of the copyright holders nor the names of its 262139SN/A# contributors may be used to endorse or promote products derived from 272139SN/A# this software without specific prior written permission. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 302139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 314202Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 322139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 334202Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 342152SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 352152SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 362139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 372139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 382139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 392139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 402139SN/A# 412152SN/A# Authors: Gabe Black 422152SN/A 432139SN/AImport('*') 442139SN/A 452139SN/Aif env['TARGET_ISA'] == 'x86': 464781Snate@binkert.org Source('cpuid.cc') 474781Snate@binkert.org Source('emulenv.cc') 484781Snate@binkert.org Source('faults.cc') 494781Snate@binkert.org Source('insts/badmicroop.cc') 504781Snate@binkert.org Source('insts/microfpop.cc') 513170Sstever@eecs.umich.edu Source('insts/microldstop.cc') 523806Ssaidi@eecs.umich.edu Source('insts/micromediaop.cc') 534781Snate@binkert.org Source('insts/microop.cc') 544781Snate@binkert.org Source('insts/microregop.cc') 554781Snate@binkert.org Source('insts/static_inst.cc') 564781Snate@binkert.org Source('interrupts.cc') 574781Snate@binkert.org Source('isa.cc') 584781Snate@binkert.org Source('nativetrace.cc') 594781Snate@binkert.org Source('pagetable.cc') 604781Snate@binkert.org Source('pagetable_walker.cc') 614781Snate@binkert.org Source('predecoder.cc') 624781Snate@binkert.org Source('predecoder_tables.cc') 632139SN/A Source('remote_gdb.cc') 642139SN/A Source('tlb.cc') 653546Sgblack@eecs.umich.edu Source('types.cc') 664202Sbinkertn@umich.edu Source('utility.cc') 672152SN/A Source('vtophys.cc') 682152SN/A 692152SN/A SimObject('X86LocalApic.py') 702152SN/A SimObject('X86NativeTrace.py') 712152SN/A SimObject('X86TLB.py') 722152SN/A 732152SN/A DebugFlag('Faults', "Trace all faults/exceptions/traps") 742152SN/A DebugFlag('LocalApic', "Local APIC debugging") 752152SN/A DebugFlag('PageTableWalker', \ 762152SN/A "Page table walker state machine debugging") 772152SN/A DebugFlag('Predecoder', "Predecoder debug output") 782152SN/A DebugFlag('X86', "Generic X86 ISA debugging") 792504SN/A 802504SN/A if env['FULL_SYSTEM']: 812504SN/A 822504SN/A SimObject('X86System.py') 832152SN/A 842504SN/A # Full-system sources 852152SN/A Source('linux/system.cc') 862152SN/A Source('system.cc') 872152SN/A Source('stacktrace.cc') 882152SN/A else: 892152SN/A Source('process.cc') 902152SN/A 912152SN/A Source('linux/linux.cc') 922152SN/A Source('linux/process.cc') 932632Sstever@eecs.umich.edu Source('linux/syscalls.cc') 942155SN/A 952155SN/A python_files = ( 962155SN/A '__init__.py', 972155SN/A 'general_purpose/__init__.py', 982155SN/A 'general_purpose/arithmetic/__init__.py', 992155SN/A 'general_purpose/arithmetic/add_and_subtract.py', 1004202Sbinkertn@umich.edu 'general_purpose/arithmetic/increment_and_decrement.py', 1012155SN/A 'general_purpose/arithmetic/multiply_and_divide.py', 1022155SN/A 'general_purpose/cache_and_memory_management.py', 1032155SN/A 'general_purpose/compare_and_test/__init__.py', 1042152SN/A 'general_purpose/compare_and_test/bit_scan.py', 1052766Sktlim@umich.edu 'general_purpose/compare_and_test/bit_test.py', 1062766Sktlim@umich.edu 'general_purpose/compare_and_test/bounds.py', 1072766Sktlim@umich.edu 'general_purpose/compare_and_test/compare.py', 1082766Sktlim@umich.edu 'general_purpose/compare_and_test/set_byte_on_condition.py', 1092766Sktlim@umich.edu 'general_purpose/compare_and_test/test.py', 1102152SN/A 'general_purpose/control_transfer/__init__.py', 1112152SN/A 'general_purpose/control_transfer/call.py', 1122152SN/A 'general_purpose/control_transfer/conditional_jump.py', 1132155SN/A 'general_purpose/control_transfer/interrupts_and_exceptions.py', 1142152SN/A 'general_purpose/control_transfer/jump.py', 1152152SN/A 'general_purpose/control_transfer/loop.py', 1162718Sstever@eecs.umich.edu 'general_purpose/control_transfer/xreturn.py', 1172921Sktlim@umich.edu 'general_purpose/data_conversion/__init__.py', 1182921Sktlim@umich.edu 'general_purpose/data_conversion/ascii_adjust.py', 1192921Sktlim@umich.edu 'general_purpose/data_conversion/bcd_adjust.py', 1202921Sktlim@umich.edu 'general_purpose/data_conversion/endian_conversion.py', 1212921Sktlim@umich.edu 'general_purpose/data_conversion/extract_sign_mask.py', 1222921Sktlim@umich.edu 'general_purpose/data_conversion/sign_extension.py', 1232921Sktlim@umich.edu 'general_purpose/data_conversion/translate.py', 1242921Sktlim@umich.edu 'general_purpose/data_transfer/__init__.py', 1252921Sktlim@umich.edu 'general_purpose/data_transfer/conditional_move.py', 1262152SN/A 'general_purpose/data_transfer/move.py', 1272152SN/A 'general_purpose/data_transfer/stack_operations.py', 128 'general_purpose/data_transfer/xchg.py', 129 'general_purpose/flags/__init__.py', 130 'general_purpose/flags/load_and_store.py', 131 'general_purpose/flags/push_and_pop.py', 132 'general_purpose/flags/set_and_clear.py', 133 'general_purpose/input_output/__init__.py', 134 'general_purpose/input_output/general_io.py', 135 'general_purpose/input_output/string_io.py', 136 'general_purpose/load_effective_address.py', 137 'general_purpose/load_segment_registers.py', 138 'general_purpose/logical.py', 139 'general_purpose/no_operation.py', 140 'general_purpose/rotate_and_shift/__init__.py', 141 'general_purpose/rotate_and_shift/rotate.py', 142 'general_purpose/rotate_and_shift/shift.py', 143 'general_purpose/semaphores.py', 144 'general_purpose/string/__init__.py', 145 'general_purpose/string/compare_strings.py', 146 'general_purpose/string/load_string.py', 147 'general_purpose/string/move_string.py', 148 'general_purpose/string/scan_string.py', 149 'general_purpose/string/store_string.py', 150 'general_purpose/system_calls.py', 151 'romutil.py', 152 'system/__init__.py', 153 'system/control_registers.py', 154 'system/halt.py', 155 'system/invlpg.py', 156 'system/undefined_operation.py', 157 'system/msrs.py', 158 'system/segmentation.py', 159 'simd128/__init__.py', 160 'simd128/integer/__init__.py', 161 'simd128/integer/data_transfer/__init__.py', 162 'simd128/integer/data_transfer/move.py', 163 'simd128/integer/data_transfer/move_non_temporal.py', 164 'simd128/integer/data_transfer/move_mask.py', 165 'simd128/integer/data_conversion/__init__.py', 166 'simd128/integer/data_conversion/convert_mmx_integer_to_floating_point.py', 167 'simd128/integer/data_conversion/convert_integer_to_floating_point.py', 168 'simd128/integer/data_conversion/convert_gpr_integer_to_floating_point.py', 169 'simd128/integer/data_reordering/__init__.py', 170 'simd128/integer/data_reordering/unpack_and_interleave.py', 171 'simd128/integer/data_reordering/pack_with_saturation.py', 172 'simd128/integer/data_reordering/extract_and_insert.py', 173 'simd128/integer/data_reordering/shuffle.py', 174 'simd128/integer/arithmetic/__init__.py', 175 'simd128/integer/arithmetic/subtraction.py', 176 'simd128/integer/arithmetic/addition.py', 177 'simd128/integer/arithmetic/multiplication.py', 178 'simd128/integer/arithmetic/multiply_add.py', 179 'simd128/integer/arithmetic/average.py', 180 'simd128/integer/arithmetic/sum_of_absolute_differences.py', 181 'simd128/integer/shift/__init__.py', 182 'simd128/integer/shift/right_arithmetic_shift.py', 183 'simd128/integer/shift/left_logical_shift.py', 184 'simd128/integer/shift/right_logical_shift.py', 185 'simd128/integer/compare/__init__.py', 186 'simd128/integer/compare/compare_and_write_mask.py', 187 'simd128/integer/compare/compare_and_write_minimum_or_maximum.py', 188 'simd128/integer/logical/__init__.py', 189 'simd128/integer/logical/pand.py', 190 'simd128/integer/logical/por.py', 191 'simd128/integer/logical/exclusive_or.py', 192 'simd128/integer/save_and_restore_state/__init__.py', 193 'simd128/integer/save_and_restore_state/save_and_restore_state.py', 194 'simd128/integer/save_and_restore_state/save_and_restore_control_and_status.py', 195 'simd128/floating_point/__init__.py', 196 'simd128/floating_point/data_transfer/__init__.py', 197 'simd128/floating_point/data_transfer/move_mask.py', 198 'simd128/floating_point/data_transfer/move.py', 199 'simd128/floating_point/data_transfer/move_with_duplication.py', 200 'simd128/floating_point/data_transfer/move_non_temporal.py', 201 'simd128/floating_point/data_conversion/__init__.py', 202 'simd128/floating_point/data_conversion/convert_floating_point_to_floating_point.py', 203 'simd128/floating_point/data_conversion/convert_floating_point_to_xmm_integer.py', 204 'simd128/floating_point/data_conversion/convert_floating_point_to_mmx_integer.py', 205 'simd128/floating_point/data_conversion/convert_floating_point_to_gpr_integer.py', 206 'simd128/floating_point/data_reordering/__init__.py', 207 'simd128/floating_point/data_reordering/unpack_and_interleave.py', 208 'simd128/floating_point/data_reordering/shuffle.py', 209 'simd128/floating_point/arithmetic/__init__.py', 210 'simd128/floating_point/arithmetic/subtraction.py', 211 'simd128/floating_point/arithmetic/addition.py', 212 'simd128/floating_point/arithmetic/horizontal_subtraction.py', 213 'simd128/floating_point/arithmetic/horizontal_addition.py', 214 'simd128/floating_point/arithmetic/square_root.py', 215 'simd128/floating_point/arithmetic/simultaneous_addition_and_subtraction.py', 216 'simd128/floating_point/arithmetic/multiplication.py', 217 'simd128/floating_point/arithmetic/division.py', 218 'simd128/floating_point/arithmetic/reciprocal_square_root.py', 219 'simd128/floating_point/arithmetic/reciprocal_estimation.py', 220 'simd128/floating_point/compare/__init__.py', 221 'simd128/floating_point/compare/compare_and_write_mask.py', 222 'simd128/floating_point/compare/compare_and_write_rflags.py', 223 'simd128/floating_point/compare/compare_and_write_minimum_or_maximum.py', 224 'simd128/floating_point/logical/__init__.py', 225 'simd128/floating_point/logical/andp.py', 226 'simd128/floating_point/logical/orp.py', 227 'simd128/floating_point/logical/exclusive_or.py', 228 'simd64/__init__.py', 229 'simd64/integer/__init__.py', 230 'simd64/integer/data_transfer/__init__.py', 231 'simd64/integer/data_transfer/move_mask.py', 232 'simd64/integer/data_transfer/move.py', 233 'simd64/integer/data_transfer/move_non_temporal.py', 234 'simd64/integer/exit_media_state.py', 235 'simd64/integer/data_reordering/__init__.py', 236 'simd64/integer/data_reordering/unpack_and_interleave.py', 237 'simd64/integer/data_reordering/pack_with_saturation.py', 238 'simd64/integer/data_reordering/extract_and_insert.py', 239 'simd64/integer/data_reordering/shuffle_and_swap.py', 240 'simd64/integer/data_conversion.py', 241 'simd64/integer/arithmetic/__init__.py', 242 'simd64/integer/arithmetic/subtraction.py', 243 'simd64/integer/arithmetic/addition.py', 244 'simd64/integer/arithmetic/multiplication.py', 245 'simd64/integer/arithmetic/multiply_add.py', 246 'simd64/integer/arithmetic/average.py', 247 'simd64/integer/arithmetic/sum_of_absolute_differences.py', 248 'simd64/integer/shift/__init__.py', 249 'simd64/integer/shift/right_arithmetic_shift.py', 250 'simd64/integer/shift/left_logical_shift.py', 251 'simd64/integer/shift/right_logical_shift.py', 252 'simd64/integer/compare/__init__.py', 253 'simd64/integer/compare/compare_and_write_mask.py', 254 'simd64/integer/compare/compare_and_write_minimum_or_maximum.py', 255 'simd64/integer/logical/__init__.py', 256 'simd64/integer/logical/pand.py', 257 'simd64/integer/logical/por.py', 258 'simd64/integer/logical/exclusive_or.py', 259 'simd64/integer/save_and_restore_state.py', 260 'simd64/floating_point/__init__.py', 261 'simd64/floating_point/arithmetic/__init__.py', 262 'simd64/floating_point/arithmetic/subtraction.py', 263 'simd64/floating_point/arithmetic/addition.py', 264 'simd64/floating_point/arithmetic/reciprocal_estimation.py', 265 'simd64/floating_point/arithmetic/multiplication.py', 266 'simd64/floating_point/arithmetic/accumulation.py', 267 'simd64/floating_point/arithmetic/reciprocal_square_root.py', 268 'simd64/floating_point/data_conversion.py', 269 'simd64/floating_point/compare/__init__.py', 270 'simd64/floating_point/compare/compare_and_write_mask.py', 271 'simd64/floating_point/compare/compare_and_write_minimum_or_maximum.py', 272 'x87/__init__.py', 273 'x87/data_transfer_and_conversion/__init__.py', 274 'x87/data_transfer_and_conversion/convert_and_load_or_store_integer.py', 275 'x87/data_transfer_and_conversion/load_or_store_floating_point.py', 276 'x87/data_transfer_and_conversion/exchange.py', 277 'x87/data_transfer_and_conversion/convert_and_load_or_store_bcd.py', 278 'x87/data_transfer_and_conversion/conditional_move.py', 279 'x87/data_transfer_and_conversion/extract.py', 280 'x87/load_constants/__init__.py', 281 'x87/load_constants/load_0_1_or_pi.py', 282 'x87/load_constants/load_logarithm.py', 283 'x87/arithmetic/__init__.py', 284 'x87/arithmetic/subtraction.py', 285 'x87/arithmetic/addition.py', 286 'x87/arithmetic/partial_remainder.py', 287 'x87/arithmetic/multiplication.py', 288 'x87/arithmetic/division.py', 289 'x87/arithmetic/change_sign.py', 290 'x87/arithmetic/round.py', 291 'x87/arithmetic/square_root.py', 292 'x87/transcendental_functions/__init__.py', 293 'x87/transcendental_functions/trigonometric_functions.py', 294 'x87/transcendental_functions/logarithmic_functions.py', 295 'x87/compare_and_test/__init__.py', 296 'x87/compare_and_test/classify.py', 297 'x87/compare_and_test/test.py', 298 'x87/compare_and_test/floating_point_ordered_compare.py', 299 'x87/compare_and_test/floating_point_unordered_compare.py', 300 'x87/compare_and_test/integer_compare.py', 301 'x87/stack_management/__init__.py', 302 'x87/stack_management/stack_control.py', 303 'x87/stack_management/clear_state.py', 304 'x87/control/__init__.py', 305 'x87/control/clear_exceptions.py', 306 'x87/control/initialize.py', 307 'x87/control/wait_for_exceptions.py', 308 'x87/control/save_x87_status_word.py', 309 'x87/control/save_and_restore_x87_control_word.py', 310 'x87/control/save_and_restore_x87_environment.py', 311 'x87/no_operation.py' 312 ) 313 314 315 # Add in files generated by the ISA description. 316 isa_desc_files = env.ISADesc('isa/main.isa') 317 for f in isa_desc_files: 318 # Add in python file dependencies that won't be caught otherwise 319 for pyfile in python_files: 320 env.Depends(f, "isa/insts/%s" % pyfile) 321 # Only non-header files need to be compiled. 322 if not f.path.endswith('.hh'): 323 Source(f) 324