SConscript revision 5299:e61b9f2a9732
1955SN/A# -*- mode:python -*- 2955SN/A 310841Sandreas.sandberg@arm.com# Copyright (c) 2005-2006 The Regents of The University of Michigan 49812Sandreas.hansson@arm.com# All rights reserved. 59812Sandreas.hansson@arm.com# 69812Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without 79812Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are 89812Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright 99812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer; 109812Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright 119812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the 129812Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution; 139812Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its 149812Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from 157816Ssteve.reinhardt@amd.com# this software without specific prior written permission. 165871Snate@binkert.org# 171762SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28955SN/A# 29955SN/A# Authors: Gabe Black 30955SN/A 31955SN/A# Copyright (c) 2007 The Hewlett-Packard Development Company 32955SN/A# All rights reserved. 33955SN/A# 34955SN/A# Redistribution and use of this software in source and binary forms, 35955SN/A# with or without modification, are permitted provided that the 36955SN/A# following conditions are met: 37955SN/A# 38955SN/A# The software must be used only for Non-Commercial Use which means any 39955SN/A# use which is NOT directed to receiving any direct monetary 40955SN/A# compensation for, or commercial advantage from such use. Illustrative 41955SN/A# examples of non-commercial use are academic research, personal study, 422665Ssaidi@eecs.umich.edu# teaching, education and corporate research & development. 432665Ssaidi@eecs.umich.edu# Illustrative examples of commercial use are distributing products for 445863Snate@binkert.org# commercial advantage and providing services using the software for 45955SN/A# commercial advantage. 46955SN/A# 47955SN/A# If you wish to use this software or functionality therein that may be 48955SN/A# covered by patents for commercial use, please contact: 49955SN/A# Director of Intellectual Property Licensing 508878Ssteve.reinhardt@amd.com# Office of Strategy and Technology 512632Sstever@eecs.umich.edu# Hewlett-Packard Company 528878Ssteve.reinhardt@amd.com# 1501 Page Mill Road 532632Sstever@eecs.umich.edu# Palo Alto, California 94304 54955SN/A# 558878Ssteve.reinhardt@amd.com# Redistributions of source code must retain the above copyright notice, 562632Sstever@eecs.umich.edu# this list of conditions and the following disclaimer. Redistributions 572761Sstever@eecs.umich.edu# in binary form must reproduce the above copyright notice, this list of 582632Sstever@eecs.umich.edu# conditions and the following disclaimer in the documentation and/or 592632Sstever@eecs.umich.edu# other materials provided with the distribution. Neither the name of 602632Sstever@eecs.umich.edu# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its 612761Sstever@eecs.umich.edu# contributors may be used to endorse or promote products derived from 622761Sstever@eecs.umich.edu# this software without specific prior written permission. No right of 632761Sstever@eecs.umich.edu# sublicense is granted herewith. Derivatives of the software and 648878Ssteve.reinhardt@amd.com# output created using the software may be prepared, but only for 658878Ssteve.reinhardt@amd.com# Non-Commercial Uses. Derivatives of the software may be shared with 662761Sstever@eecs.umich.edu# others provided: (i) the others agree to abide by the list of 672761Sstever@eecs.umich.edu# conditions herein which includes the Non-Commercial Use restrictions; 682761Sstever@eecs.umich.edu# and (ii) such Derivatives of the software include the above copyright 692761Sstever@eecs.umich.edu# notice to acknowledge the contribution from this software where 702761Sstever@eecs.umich.edu# applicable, this list of conditions and the disclaimer below. 718878Ssteve.reinhardt@amd.com# 728878Ssteve.reinhardt@amd.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 732632Sstever@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 742632Sstever@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 758878Ssteve.reinhardt@amd.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 768878Ssteve.reinhardt@amd.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 772632Sstever@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 78955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 79955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 80955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 815863Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 825863Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 835863Snate@binkert.org# 845863Snate@binkert.org# Authors: Gabe Black 855863Snate@binkert.org 865863Snate@binkert.orgImport('*') 875863Snate@binkert.org 885863Snate@binkert.orgif env['TARGET_ISA'] == 'x86': 895863Snate@binkert.org Source('emulenv.cc') 905863Snate@binkert.org Source('floatregfile.cc') 915863Snate@binkert.org Source('faults.cc') 928878Ssteve.reinhardt@amd.com Source('insts/microfpop.cc') 935863Snate@binkert.org Source('insts/microldstop.cc') 945863Snate@binkert.org Source('insts/microop.cc') 955863Snate@binkert.org Source('insts/microregop.cc') 969812Sandreas.hansson@arm.com Source('insts/static_inst.cc') 979812Sandreas.hansson@arm.com Source('intregfile.cc') 985863Snate@binkert.org Source('miscregfile.cc') 999812Sandreas.hansson@arm.com Source('pagetable.cc') 1005863Snate@binkert.org Source('predecoder.cc') 1015863Snate@binkert.org Source('predecoder_tables.cc') 1025863Snate@binkert.org Source('regfile.cc') 1039812Sandreas.hansson@arm.com Source('remote_gdb.cc') 1049812Sandreas.hansson@arm.com Source('tlb.cc') 1055863Snate@binkert.org Source('utility.cc') 1065863Snate@binkert.org 1078878Ssteve.reinhardt@amd.com SimObject('X86TLB.py') 1085863Snate@binkert.org TraceFlag('Predecoder') 1095863Snate@binkert.org TraceFlag('X86') 1105863Snate@binkert.org 1116654Snate@binkert.org if env['FULL_SYSTEM']: 11210196SCurtis.Dunham@arm.com SimObject('X86System.py') 113955SN/A 1145396Ssaidi@eecs.umich.edu # Full-system sources 1155863Snate@binkert.org Source('linux/system.cc') 1165863Snate@binkert.org Source('pagetable_walker.cc') 1174202Sbinkertn@umich.edu Source('system.cc') 1185863Snate@binkert.org Source('stacktrace.cc') 1195863Snate@binkert.org Source('vtophys.cc') 1205863Snate@binkert.org else: 1215863Snate@binkert.org Source('process.cc') 122955SN/A 1236654Snate@binkert.org Source('linux/linux.cc') 1245273Sstever@gmail.com Source('linux/process.cc') 1255871Snate@binkert.org Source('linux/syscalls.cc') 1265273Sstever@gmail.com 1276655Snate@binkert.org python_files = ( 1288878Ssteve.reinhardt@amd.com '__init__.py', 1296655Snate@binkert.org 'general_purpose/__init__.py', 1306655Snate@binkert.org 'general_purpose/arithmetic/__init__.py', 1319219Spower.jg@gmail.com 'general_purpose/arithmetic/add_and_subtract.py', 1326655Snate@binkert.org 'general_purpose/arithmetic/increment_and_decrement.py', 1335871Snate@binkert.org 'general_purpose/arithmetic/multiply_and_divide.py', 1346654Snate@binkert.org 'general_purpose/cache_and_memory_management.py', 1358947Sandreas.hansson@arm.com 'general_purpose/compare_and_test/__init__.py', 1365396Ssaidi@eecs.umich.edu 'general_purpose/compare_and_test/bit_scan.py', 1378120Sgblack@eecs.umich.edu 'general_purpose/compare_and_test/bit_test.py', 1388120Sgblack@eecs.umich.edu 'general_purpose/compare_and_test/bounds.py', 1398120Sgblack@eecs.umich.edu 'general_purpose/compare_and_test/compare.py', 1408120Sgblack@eecs.umich.edu 'general_purpose/compare_and_test/set_byte_on_condition.py', 1418120Sgblack@eecs.umich.edu 'general_purpose/compare_and_test/test.py', 1428120Sgblack@eecs.umich.edu 'general_purpose/control_transfer/__init__.py', 1438120Sgblack@eecs.umich.edu 'general_purpose/control_transfer/call.py', 1448120Sgblack@eecs.umich.edu 'general_purpose/control_transfer/conditional_jump.py', 1458879Ssteve.reinhardt@amd.com 'general_purpose/control_transfer/interrupts_and_exceptions.py', 1468879Ssteve.reinhardt@amd.com 'general_purpose/control_transfer/jump.py', 1478879Ssteve.reinhardt@amd.com 'general_purpose/control_transfer/loop.py', 1488879Ssteve.reinhardt@amd.com 'general_purpose/control_transfer/xreturn.py', 1498879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/__init__.py', 1508879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/ascii_adjust.py', 1518879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/bcd_adjust.py', 1528879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/endian_conversion.py', 1538879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/extract_sign_mask.py', 1548879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/sign_extension.py', 1558879Ssteve.reinhardt@amd.com 'general_purpose/data_conversion/translate.py', 1568879Ssteve.reinhardt@amd.com 'general_purpose/data_transfer/__init__.py', 1578879Ssteve.reinhardt@amd.com 'general_purpose/data_transfer/conditional_move.py', 1588120Sgblack@eecs.umich.edu 'general_purpose/data_transfer/move.py', 1598120Sgblack@eecs.umich.edu 'general_purpose/data_transfer/stack_operations.py', 1608120Sgblack@eecs.umich.edu 'general_purpose/data_transfer/xchg.py', 1618120Sgblack@eecs.umich.edu 'general_purpose/flags/__init__.py', 1628120Sgblack@eecs.umich.edu 'general_purpose/flags/load_and_store.py', 1638120Sgblack@eecs.umich.edu 'general_purpose/flags/push_and_pop.py', 1648120Sgblack@eecs.umich.edu 'general_purpose/flags/set_and_clear.py', 1658120Sgblack@eecs.umich.edu 'general_purpose/input_output/__init__.py', 1668120Sgblack@eecs.umich.edu 'general_purpose/input_output/general_io.py', 1678120Sgblack@eecs.umich.edu 'general_purpose/input_output/string_io.py', 1688120Sgblack@eecs.umich.edu 'general_purpose/load_effective_address.py', 1698120Sgblack@eecs.umich.edu 'general_purpose/load_segment_registers.py', 1708120Sgblack@eecs.umich.edu 'general_purpose/logical.py', 1718120Sgblack@eecs.umich.edu 'general_purpose/no_operation.py', 1728879Ssteve.reinhardt@amd.com 'general_purpose/processor_information.py', 1738879Ssteve.reinhardt@amd.com 'general_purpose/rotate_and_shift/__init__.py', 1748879Ssteve.reinhardt@amd.com 'general_purpose/rotate_and_shift/rotate.py', 1758879Ssteve.reinhardt@amd.com 'general_purpose/rotate_and_shift/shift.py', 17610458Sandreas.hansson@arm.com 'general_purpose/semaphores.py', 17710458Sandreas.hansson@arm.com 'general_purpose/string/__init__.py', 17810458Sandreas.hansson@arm.com 'general_purpose/string/compare_strings.py', 1798879Ssteve.reinhardt@amd.com 'general_purpose/string/load_string.py', 1808879Ssteve.reinhardt@amd.com 'general_purpose/string/move_string.py', 1818879Ssteve.reinhardt@amd.com 'general_purpose/string/scan_string.py', 1828879Ssteve.reinhardt@amd.com 'general_purpose/string/store_string.py', 1839227Sandreas.hansson@arm.com 'general_purpose/system_calls.py', 1849227Sandreas.hansson@arm.com 'system/__init__.py', 1858879Ssteve.reinhardt@amd.com 'system/halt.py', 1868879Ssteve.reinhardt@amd.com 'system/undefined_operation.py', 1878879Ssteve.reinhardt@amd.com 'system/msrs.py', 1888879Ssteve.reinhardt@amd.com 'system/segmentation.py', 18910453SAndrew.Bardsley@arm.com 'simd128/__init__.py', 19010453SAndrew.Bardsley@arm.com 'simd128/integer/__init__.py', 19110453SAndrew.Bardsley@arm.com 'simd128/integer/data_transfer/__init__.py', 19210456SCurtis.Dunham@arm.com 'simd128/integer/data_transfer/move.py', 19310456SCurtis.Dunham@arm.com 'simd128/integer/data_transfer/move_non_temporal.py', 19410456SCurtis.Dunham@arm.com 'simd128/integer/data_transfer/move_mask.py', 19510457Sandreas.hansson@arm.com 'simd128/integer/data_conversion/__init__.py', 19610457Sandreas.hansson@arm.com 'simd128/integer/data_conversion/convert_mmx_integer_to_floating_point.py', 1978120Sgblack@eecs.umich.edu 'simd128/integer/data_conversion/convert_integer_to_floating_point.py', 1988947Sandreas.hansson@arm.com 'simd128/integer/data_conversion/convert_gpr_integer_to_floating_point.py', 1997816Ssteve.reinhardt@amd.com 'simd128/integer/data_reordering/__init__.py', 2005871Snate@binkert.org 'simd128/integer/data_reordering/unpack_and_interleave.py', 2015871Snate@binkert.org 'simd128/integer/data_reordering/pack_with_saturation.py', 2026121Snate@binkert.org 'simd128/integer/data_reordering/extract_and_insert.py', 2035871Snate@binkert.org 'simd128/integer/data_reordering/shuffle.py', 2045871Snate@binkert.org 'simd128/integer/arithmetic/__init__.py', 2059926Sstan.czerniawski@arm.com 'simd128/integer/arithmetic/subtraction.py', 2069926Sstan.czerniawski@arm.com 'simd128/integer/arithmetic/addition.py', 2079119Sandreas.hansson@arm.com 'simd128/integer/arithmetic/multiplication.py', 20810068Sandreas.hansson@arm.com 'simd128/integer/arithmetic/multiply_add.py', 20910068Sandreas.hansson@arm.com 'simd128/integer/arithmetic/average.py', 210955SN/A 'simd128/integer/arithmetic/sum_of_absolute_differences.py', 2119416SAndreas.Sandberg@ARM.com 'simd128/integer/shift/__init__.py', 21211212Sjoseph.gross@amd.com 'simd128/integer/shift/right_arithmetic_shift.py', 21311212Sjoseph.gross@amd.com 'simd128/integer/shift/left_logical_shift.py', 21411212Sjoseph.gross@amd.com 'simd128/integer/shift/right_logical_shift.py', 21511212Sjoseph.gross@amd.com 'simd128/integer/compare/__init__.py', 21611212Sjoseph.gross@amd.com 'simd128/integer/compare/compare_and_write_mask.py', 2179416SAndreas.Sandberg@ARM.com 'simd128/integer/compare/compare_and_write_minimum_or_maximum.py', 2189416SAndreas.Sandberg@ARM.com 'simd128/integer/logical/__init__.py', 2195871Snate@binkert.org 'simd128/integer/logical/pand.py', 22010584Sandreas.hansson@arm.com 'simd128/integer/logical/por.py', 2219416SAndreas.Sandberg@ARM.com 'simd128/integer/logical/exclusive_or.py', 2229416SAndreas.Sandberg@ARM.com 'simd128/integer/save_and_restore_state/__init__.py', 2235871Snate@binkert.org 'simd128/integer/save_and_restore_state/save_and_restore_state.py', 224955SN/A 'simd128/integer/save_and_restore_state/save_and_restore_control_and_status.py', 22510671Sandreas.hansson@arm.com 'simd128/floating_point/__init__.py', 22610671Sandreas.hansson@arm.com 'simd128/floating_point/data_transfer/__init__.py', 22710671Sandreas.hansson@arm.com 'simd128/floating_point/data_transfer/move_mask.py', 22810671Sandreas.hansson@arm.com 'simd128/floating_point/data_transfer/move.py', 2298881Smarc.orr@gmail.com 'simd128/floating_point/data_transfer/move_with_duplication.py', 2306121Snate@binkert.org 'simd128/floating_point/data_transfer/move_non_temporal.py', 2316121Snate@binkert.org 'simd128/floating_point/data_conversion/__init__.py', 2321533SN/A 'simd128/floating_point/data_conversion/convert_floating_point_to_floating_point.py', 2339239Sandreas.hansson@arm.com 'simd128/floating_point/data_conversion/convert_floating_point_to_xmm_integer.py', 2349239Sandreas.hansson@arm.com 'simd128/floating_point/data_conversion/convert_floating_point_to_mmx_integer.py', 2359239Sandreas.hansson@arm.com 'simd128/floating_point/data_conversion/convert_floating_point_to_gpr_integer.py', 2369239Sandreas.hansson@arm.com 'simd128/floating_point/data_reordering/__init__.py', 2379239Sandreas.hansson@arm.com 'simd128/floating_point/data_reordering/unpack_and_interleave.py', 2389239Sandreas.hansson@arm.com 'simd128/floating_point/data_reordering/shuffle.py', 2399239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/__init__.py', 2409239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/subtraction.py', 2419239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/addition.py', 2429239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/horizontal_subtraction.py', 2439239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/horizontal_addition.py', 2449239Sandreas.hansson@arm.com 'simd128/floating_point/arithmetic/square_root.py', 2456655Snate@binkert.org 'simd128/floating_point/arithmetic/simultaneous_addition_and_subtraction.py', 2466655Snate@binkert.org 'simd128/floating_point/arithmetic/multiplication.py', 2476655Snate@binkert.org 'simd128/floating_point/arithmetic/division.py', 2486655Snate@binkert.org 'simd128/floating_point/arithmetic/reciprocal_square_root.py', 2495871Snate@binkert.org 'simd128/floating_point/arithmetic/reciprocal_estimation.py', 2505871Snate@binkert.org 'simd128/floating_point/compare/__init__.py', 2515863Snate@binkert.org 'simd128/floating_point/compare/compare_and_write_mask.py', 2525871Snate@binkert.org 'simd128/floating_point/compare/compare_and_write_rflags.py', 2538878Ssteve.reinhardt@amd.com 'simd128/floating_point/compare/compare_and_write_minimum_or_maximum.py', 2545871Snate@binkert.org 'simd128/floating_point/logical/__init__.py', 2555871Snate@binkert.org 'simd128/floating_point/logical/andp.py', 2565871Snate@binkert.org 'simd128/floating_point/logical/orp.py', 2575863Snate@binkert.org 'simd128/floating_point/logical/exclusive_or.py', 2586121Snate@binkert.org 'simd64/__init__.py', 2595863Snate@binkert.org 'simd64/integer/__init__.py', 2605871Snate@binkert.org 'simd64/integer/data_transfer/__init__.py', 2618336Ssteve.reinhardt@amd.com 'simd64/integer/data_transfer/move_mask.py', 2628336Ssteve.reinhardt@amd.com 'simd64/integer/data_transfer/move.py', 2638336Ssteve.reinhardt@amd.com 'simd64/integer/data_transfer/move_non_temporal.py', 2648336Ssteve.reinhardt@amd.com 'simd64/integer/exit_media_state.py', 2654678Snate@binkert.org 'simd64/integer/data_reordering/__init__.py', 2668336Ssteve.reinhardt@amd.com 'simd64/integer/data_reordering/unpack_and_interleave.py', 2678336Ssteve.reinhardt@amd.com 'simd64/integer/data_reordering/pack_with_saturation.py', 2688336Ssteve.reinhardt@amd.com 'simd64/integer/data_reordering/extract_and_insert.py', 2694678Snate@binkert.org 'simd64/integer/data_reordering/shuffle_and_swap.py', 2704678Snate@binkert.org 'simd64/integer/data_conversion.py', 2714678Snate@binkert.org 'simd64/integer/arithmetic/__init__.py', 2724678Snate@binkert.org 'simd64/integer/arithmetic/subtraction.py', 2737827Snate@binkert.org 'simd64/integer/arithmetic/addition.py', 2747827Snate@binkert.org 'simd64/integer/arithmetic/multiplication.py', 2758336Ssteve.reinhardt@amd.com 'simd64/integer/arithmetic/multiply_add.py', 2764678Snate@binkert.org 'simd64/integer/arithmetic/average.py', 2778336Ssteve.reinhardt@amd.com 'simd64/integer/arithmetic/sum_of_absolute_differences.py', 2788336Ssteve.reinhardt@amd.com 'simd64/integer/shift/__init__.py', 2798336Ssteve.reinhardt@amd.com 'simd64/integer/shift/right_arithmetic_shift.py', 2808336Ssteve.reinhardt@amd.com 'simd64/integer/shift/left_logical_shift.py', 2818336Ssteve.reinhardt@amd.com 'simd64/integer/shift/right_logical_shift.py', 2828336Ssteve.reinhardt@amd.com 'simd64/integer/compare/__init__.py', 2835871Snate@binkert.org 'simd64/integer/compare/compare_and_write_mask.py', 2845871Snate@binkert.org 'simd64/integer/compare/compare_and_write_minimum_or_maximum.py', 2858336Ssteve.reinhardt@amd.com 'simd64/integer/logical/__init__.py', 2868336Ssteve.reinhardt@amd.com 'simd64/integer/logical/pand.py', 2878336Ssteve.reinhardt@amd.com 'simd64/integer/logical/por.py', 2888336Ssteve.reinhardt@amd.com 'simd64/integer/logical/exclusive_or.py', 2898336Ssteve.reinhardt@amd.com 'simd64/integer/save_and_restore_state.py', 2905871Snate@binkert.org 'simd64/floating_point/__init__.py', 2918336Ssteve.reinhardt@amd.com 'simd64/floating_point/arithmetic/__init__.py', 2928336Ssteve.reinhardt@amd.com 'simd64/floating_point/arithmetic/subtraction.py', 2938336Ssteve.reinhardt@amd.com 'simd64/floating_point/arithmetic/addition.py', 2948336Ssteve.reinhardt@amd.com 'simd64/floating_point/arithmetic/reciprocal_estimation.py', 2958336Ssteve.reinhardt@amd.com 'simd64/floating_point/arithmetic/multiplication.py', 2964678Snate@binkert.org 'simd64/floating_point/arithmetic/accumulation.py', 2975871Snate@binkert.org 'simd64/floating_point/arithmetic/reciprocal_square_root.py', 2984678Snate@binkert.org 'simd64/floating_point/data_conversion.py', 2998336Ssteve.reinhardt@amd.com 'simd64/floating_point/compare/__init__.py', 3008336Ssteve.reinhardt@amd.com 'simd64/floating_point/compare/compare_and_write_mask.py', 3018336Ssteve.reinhardt@amd.com 'simd64/floating_point/compare/compare_and_write_minimum_or_maximum.py', 3028336Ssteve.reinhardt@amd.com 'x87/__init__.py', 3038336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/__init__.py', 3048336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/convert_and_load_or_store_integer.py', 3058336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/load_or_store_floating_point.py', 3068336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/exchange.py', 3078336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/convert_and_load_or_store_bcd.py', 3088336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/conditional_move.py', 3098336Ssteve.reinhardt@amd.com 'x87/data_transfer_and_conversion/extract.py', 3108336Ssteve.reinhardt@amd.com 'x87/load_constants/__init__.py', 3118336Ssteve.reinhardt@amd.com 'x87/load_constants/load_0_1_or_pi.py', 3128336Ssteve.reinhardt@amd.com 'x87/load_constants/load_logarithm.py', 3138336Ssteve.reinhardt@amd.com 'x87/arithmetic/__init__.py', 3148336Ssteve.reinhardt@amd.com 'x87/arithmetic/subtraction.py', 3158336Ssteve.reinhardt@amd.com 'x87/arithmetic/addition.py', 3165871Snate@binkert.org 'x87/arithmetic/partial_remainder.py', 3176121Snate@binkert.org 'x87/arithmetic/multiplication.py', 318955SN/A 'x87/arithmetic/division.py', 319955SN/A 'x87/arithmetic/change_sign.py', 3202632Sstever@eecs.umich.edu 'x87/arithmetic/round.py', 3212632Sstever@eecs.umich.edu 'x87/arithmetic/square_root.py', 322955SN/A 'x87/transcendental_functions/__init__.py', 323955SN/A 'x87/transcendental_functions/trigonometric_functions.py', 324955SN/A 'x87/transcendental_functions/logarithmic_functions.py', 325955SN/A 'x87/compare_and_test/__init__.py', 3268878Ssteve.reinhardt@amd.com 'x87/compare_and_test/classify.py', 327955SN/A 'x87/compare_and_test/test.py', 3282632Sstever@eecs.umich.edu 'x87/compare_and_test/floating_point_ordered_compare.py', 3292632Sstever@eecs.umich.edu 'x87/compare_and_test/floating_point_unordered_compare.py', 3302632Sstever@eecs.umich.edu 'x87/compare_and_test/integer_compare.py', 3312632Sstever@eecs.umich.edu 'x87/stack_management/__init__.py', 3322632Sstever@eecs.umich.edu 'x87/stack_management/stack_control.py', 3332632Sstever@eecs.umich.edu 'x87/stack_management/clear_state.py', 3342632Sstever@eecs.umich.edu 'x87/control/__init__.py', 3358268Ssteve.reinhardt@amd.com 'x87/control/clear_exceptions.py', 3368268Ssteve.reinhardt@amd.com 'x87/control/initialize.py', 3378268Ssteve.reinhardt@amd.com 'x87/control/wait_for_exceptions.py', 3388268Ssteve.reinhardt@amd.com 'x87/control/save_x87_status_word.py', 3398268Ssteve.reinhardt@amd.com 'x87/control/save_and_restore_x87_control_word.py', 3408268Ssteve.reinhardt@amd.com 'x87/control/save_and_restore_x87_environment.py', 3418268Ssteve.reinhardt@amd.com 'x87/no_operation.py' 3422632Sstever@eecs.umich.edu ) 3432632Sstever@eecs.umich.edu 3442632Sstever@eecs.umich.edu 3452632Sstever@eecs.umich.edu # Add in files generated by the ISA description. 3468268Ssteve.reinhardt@amd.com isa_desc_files = env.ISADesc('isa/main.isa') 3472632Sstever@eecs.umich.edu for f in isa_desc_files: 3488268Ssteve.reinhardt@amd.com # Add in python file dependencies that won't be caught otherwise 3498268Ssteve.reinhardt@amd.com for pyfile in python_files: 3508268Ssteve.reinhardt@amd.com env.Depends(f, "isa/insts/%s" % pyfile) 3518268Ssteve.reinhardt@amd.com # Only non-header files need to be compiled. 3523718Sstever@eecs.umich.edu if not f.path.endswith('.hh'): 3532634Sstever@eecs.umich.edu Source(f) 3542634Sstever@eecs.umich.edu