14202Sbinkertn@umich.edu# -*- mode:python -*-
212966SMatteo.Andreozzi@arm.com
312966SMatteo.Andreozzi@arm.com# Copyright (c) 2015-2018 Advanced Micro Devices, Inc.
412966SMatteo.Andreozzi@arm.com# All rights reserved.
512966SMatteo.Andreozzi@arm.com#
612966SMatteo.Andreozzi@arm.com# For use for simulation and test purposes only
712966SMatteo.Andreozzi@arm.com#
812966SMatteo.Andreozzi@arm.com# Redistribution and use in source and binary forms, with or without
912966SMatteo.Andreozzi@arm.com# modification, are permitted provided that the following conditions are met:
1012966SMatteo.Andreozzi@arm.com#
1112966SMatteo.Andreozzi@arm.com# 1. Redistributions of source code must retain the above copyright notice,
1212966SMatteo.Andreozzi@arm.com# this list of conditions and the following disclaimer.
1312966SMatteo.Andreozzi@arm.com#
1412966SMatteo.Andreozzi@arm.com# 2. Redistributions in binary form must reproduce the above copyright notice,
154202Sbinkertn@umich.edu# this list of conditions and the following disclaimer in the documentation
164202Sbinkertn@umich.edu# and/or other materials provided with the distribution.
174202Sbinkertn@umich.edu#
184202Sbinkertn@umich.edu# 3. Neither the name of the copyright holder nor the names of its
194202Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from this
204202Sbinkertn@umich.edu# software without specific prior written permission.
214202Sbinkertn@umich.edu#
224202Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
234202Sbinkertn@umich.edu# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
244202Sbinkertn@umich.edu# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
254202Sbinkertn@umich.edu# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
264202Sbinkertn@umich.edu# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
274202Sbinkertn@umich.edu# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
284202Sbinkertn@umich.edu# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
294202Sbinkertn@umich.edu# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
304202Sbinkertn@umich.edu# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
314202Sbinkertn@umich.edu# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
324202Sbinkertn@umich.edu# POSSIBILITY OF SUCH DAMAGE.
334202Sbinkertn@umich.edu#
344202Sbinkertn@umich.edu# Authors: Anthony Gutierrez
354202Sbinkertn@umich.edu
364202Sbinkertn@umich.eduImport('*')
374202Sbinkertn@umich.edu
384202Sbinkertn@umich.eduif not env['BUILD_GPU']:
394202Sbinkertn@umich.edu    Return()
404202Sbinkertn@umich.edu
414202Sbinkertn@umich.eduSimObject('GPU.py')
424202Sbinkertn@umich.eduSimObject('GPUStaticInstFlags.py')
434202Sbinkertn@umich.eduSimObject('LdsState.py')
444202Sbinkertn@umich.eduSimObject('X86GPUTLB.py')
4510996Sandreas.sandberg@arm.com
4610996Sandreas.sandberg@arm.comif env['TARGET_GPU_ISA'] == 'hsail':
479398Sandreas.hansson@arm.com    Source('brig_object.cc')
489850Sandreas.hansson@arm.com    Source('hsail_code.cc')
499259SAli.Saidi@ARM.com
504486Sbinkertn@umich.eduSource('cl_driver.cc')
5110146Sandreas.hansson@arm.comSource('compute_unit.cc')
5210478SAndrew.Bardsley@arm.comSource('condition_register_state.cc')
5310478SAndrew.Bardsley@arm.comSource('dispatcher.cc')
546165Ssanchezd@stanford.eduSource('exec_stage.cc')
559850Sandreas.hansson@arm.comSource('fetch_stage.cc')
5610405Sandreas.hansson@arm.comSource('fetch_unit.cc')
5711184Serfan.azarkhish@unibo.itSource('global_memory_pipeline.cc')
5811185Serfan.azarkhish@unibo.itSource('gpu_dyn_inst.cc')
5912802Sandreas.sandberg@arm.comSource('gpu_exec_context.cc')
606168Snate@binkert.orgSource('gpu_static_inst.cc')
619850Sandreas.hansson@arm.comSource('gpu_tlb.cc')
629259SAli.Saidi@ARM.comSource('hsa_object.cc')
634202Sbinkertn@umich.eduSource('kernel_cfg.cc')
6410405Sandreas.hansson@arm.comSource('lds_state.cc')
6510431SOmar.Naji@arm.comSource('local_memory_pipeline.cc')
6610146Sandreas.hansson@arm.comSource('pool_manager.cc')
6710478SAndrew.Bardsley@arm.comSource('schedule_stage.cc')
6810478SAndrew.Bardsley@arm.comSource('scheduler.cc')
6910405Sandreas.hansson@arm.comSource('scoreboard_check_stage.cc')
704202Sbinkertn@umich.eduSource('shader.cc')
714202Sbinkertn@umich.eduSource('simple_pool_manager.cc')
728914Sandreas.hansson@arm.comSource('tlb_coalescer.cc')
7310405Sandreas.hansson@arm.comSource('vector_register_file.cc')
7410405Sandreas.hansson@arm.comSource('vector_register_state.cc')
7514007Sgabeblack@google.comSource('wavefront.cc')
7610405Sandreas.hansson@arm.com
7710405Sandreas.hansson@arm.comDebugFlag('BRIG')
7810614Skanishk.sugand@arm.comDebugFlag('GPUCoalescer')
794202Sbinkertn@umich.eduDebugFlag('GPUDisp')
8010405Sandreas.hansson@arm.comDebugFlag('GPUExec')
8111184Serfan.azarkhish@unibo.itDebugFlag('GPUFetch')
8211185Serfan.azarkhish@unibo.itDebugFlag('GPUHsailCFInfo')
8312802Sandreas.sandberg@arm.comDebugFlag('GPUMem')
846168Snate@binkert.orgDebugFlag('GPUPort')
859850Sandreas.hansson@arm.comDebugFlag('GPUPrefetch')
869850Sandreas.hansson@arm.comDebugFlag('GPUReg')
879850Sandreas.hansson@arm.comDebugFlag('GPUSync')
888763Sgblack@eecs.umich.eduDebugFlag('GPUTLB')
897768SAli.Saidi@ARM.comDebugFlag('GPUVRF')
9010131Sandreas.hansson@arm.comDebugFlag('HSALoader')
9110131Sandreas.hansson@arm.comDebugFlag('HSAIL')
9210131Sandreas.hansson@arm.comDebugFlag('HSAILObject')
9310131Sandreas.hansson@arm.comDebugFlag('Predictor')
9410066Sandreas.hansson@arm.comDebugFlag('WavefrontStack')
9510612SMarco.Elver@ARM.com
9610612SMarco.Elver@ARM.comCompoundFlag('GPUALL', ['GPUCoalescer', 'GPUDisp', 'GPUExec', 'GPUFetch',
9710612SMarco.Elver@ARM.com                        'GPUMem', 'GPUPort', 'GPUSync', 'GPUTLB', 'HSAIL',
9810612SMarco.Elver@ARM.com                        'GPUVRF'])
9910405Sandreas.hansson@arm.com