These tests are very short and do not need to be limited by a set number of ticks. They should be ran to completion. Change-Id: I0ea2193efe01e5ed01afd10d8e5934512a4027c6 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/60251 Maintainer: Jason Lowe-Power <power.jg@gmail.com> Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Reviewed-by: Bobby Bruce <bbruce@ucdavis.edu> Maintainer: Bobby Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com>
247 lines
6.8 KiB
Python
Executable File
247 lines
6.8 KiB
Python
Executable File
# Copyright (c) 2020 The Regents of the University of California
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright (c) 2018, Cornell University
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or
|
|
# without modification, are permitted provided that the following
|
|
# conditions are met:
|
|
#
|
|
# Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# Redistributions in binary form must reproduce the above
|
|
# copyright notice, this list of conditions and the following
|
|
# disclaimer in the documentation and/or other materials provided
|
|
# with the distribution.
|
|
#
|
|
# Neither the name of Cornell University nor the names of its
|
|
# contributors may be used to endorse or promote products derived
|
|
# from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
# CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
import os
|
|
from testlib import *
|
|
|
|
def asm_test(test, #The full path of the test
|
|
cpu_type,
|
|
num_cpus=4,
|
|
max_tick=None,
|
|
ruby=False,
|
|
debug_flags=None, # Debug flags passed to gem5
|
|
full_system = False
|
|
):
|
|
|
|
if full_system:
|
|
config_file = os.path.join(config.base_dir,
|
|
'configs', 'example', 'fs.py')
|
|
else:
|
|
config_file = os.path.join(config.base_dir,
|
|
'configs', 'example', 'se.py')
|
|
|
|
gem5_args = ['--listener-mode', 'off']
|
|
|
|
if not debug_flags is None:
|
|
gem5_args += ['--debug-flags', str(debug_flags)]
|
|
|
|
config_args = ['--cpu-type', cpu_type]
|
|
|
|
if max_tick:
|
|
config_args += ['-m', str(max_tick) ]
|
|
|
|
if full_system:
|
|
config_args += [
|
|
'--caches',
|
|
'--mem-size', '3072MB',
|
|
'--kernel', test
|
|
]
|
|
else:
|
|
config_args += [
|
|
'-n', str(num_cpus),
|
|
'--ruby' if ruby else '--caches',
|
|
'--cmd', test
|
|
]
|
|
|
|
gem5_verify_config(
|
|
name = 'asm-' + os.path.basename(test) + '-' + cpu_type,
|
|
fixtures = (program,),
|
|
verifiers = (),
|
|
gem5_args = gem5_args,
|
|
config = config_file,
|
|
config_args = config_args,
|
|
valid_isas = (constants.riscv_tag,),
|
|
valid_hosts = constants.supported_hosts
|
|
)
|
|
|
|
cpu_types = ('AtomicSimpleCPU', 'TimingSimpleCPU', 'MinorCPU', 'DerivO3CPU')
|
|
|
|
# The following lists the RISCV binaries. Those commented out presently result
|
|
# in a test failure. This is outlined in the following Jira issue:
|
|
# https://gem5.atlassian.net/browse/GEM5-496
|
|
binaries = (
|
|
'rv64samt-ps-sysclone_d',
|
|
'rv64samt-ps-sysfutex1_d',
|
|
# 'rv64samt-ps-sysfutex2_d',
|
|
'rv64samt-ps-sysfutex3_d',
|
|
# 'rv64samt-ps-sysfutex_d',
|
|
'rv64ua-ps-amoadd_d',
|
|
'rv64ua-ps-amoadd_w',
|
|
'rv64ua-ps-amoand_d',
|
|
'rv64ua-ps-amoand_w',
|
|
'rv64ua-ps-amomax_d',
|
|
'rv64ua-ps-amomax_w',
|
|
'rv64ua-ps-amomaxu_d',
|
|
'rv64ua-ps-amomaxu_w',
|
|
'rv64ua-ps-amomin_d',
|
|
'rv64ua-ps-amomin_w',
|
|
'rv64ua-ps-amominu_d',
|
|
'rv64ua-ps-amominu_w',
|
|
'rv64ua-ps-amoor_d',
|
|
'rv64ua-ps-amoor_w',
|
|
'rv64ua-ps-amoswap_d',
|
|
'rv64ua-ps-amoswap_w',
|
|
'rv64ua-ps-amoxor_d',
|
|
'rv64ua-ps-amoxor_w',
|
|
'rv64ua-ps-lrsc',
|
|
'rv64uamt-ps-amoadd_d',
|
|
'rv64uamt-ps-amoand_d',
|
|
'rv64uamt-ps-amomax_d',
|
|
'rv64uamt-ps-amomaxu_d',
|
|
'rv64uamt-ps-amomin_d',
|
|
'rv64uamt-ps-amominu_d',
|
|
'rv64uamt-ps-amoor_d',
|
|
'rv64uamt-ps-amoswap_d',
|
|
'rv64uamt-ps-amoxor_d',
|
|
'rv64uamt-ps-lrsc_d',
|
|
'rv64ud-ps-fadd',
|
|
'rv64ud-ps-fclass',
|
|
'rv64ud-ps-fcmp',
|
|
'rv64ud-ps-fcvt',
|
|
'rv64ud-ps-fcvt_w',
|
|
'rv64ud-ps-fdiv',
|
|
'rv64ud-ps-fmadd',
|
|
'rv64ud-ps-fmin',
|
|
'rv64ud-ps-ldst',
|
|
'rv64ud-ps-move',
|
|
'rv64ud-ps-recoding',
|
|
'rv64ud-ps-structural',
|
|
'rv64uf-ps-fadd',
|
|
'rv64uf-ps-fclass',
|
|
'rv64uf-ps-fcmp',
|
|
'rv64uf-ps-fcvt',
|
|
'rv64uf-ps-fcvt_w',
|
|
'rv64uf-ps-fdiv',
|
|
'rv64uf-ps-fmadd',
|
|
'rv64uf-ps-fmin',
|
|
'rv64uf-ps-ldst',
|
|
'rv64uf-ps-move',
|
|
'rv64uf-ps-recoding',
|
|
'rv64ui-ps-add',
|
|
'rv64ui-ps-addi',
|
|
'rv64ui-ps-addiw',
|
|
'rv64ui-ps-addw',
|
|
'rv64ui-ps-and',
|
|
'rv64ui-ps-andi',
|
|
'rv64ui-ps-auipc',
|
|
'rv64ui-ps-beq',
|
|
'rv64ui-ps-bge',
|
|
'rv64ui-ps-bgeu',
|
|
'rv64ui-ps-blt',
|
|
'rv64ui-ps-bltu',
|
|
'rv64ui-ps-bne',
|
|
'rv64ui-ps-fence_i',
|
|
'rv64ui-ps-jal',
|
|
'rv64ui-ps-jalr',
|
|
'rv64ui-ps-lb',
|
|
'rv64ui-ps-lbu',
|
|
'rv64ui-ps-ld',
|
|
'rv64ui-ps-lh',
|
|
'rv64ui-ps-lhu',
|
|
'rv64ui-ps-lui',
|
|
'rv64ui-ps-lw',
|
|
'rv64ui-ps-lwu',
|
|
'rv64ui-ps-or',
|
|
'rv64ui-ps-ori',
|
|
'rv64ui-ps-sb',
|
|
'rv64ui-ps-sd',
|
|
'rv64ui-ps-sh',
|
|
'rv64ui-ps-simple',
|
|
'rv64ui-ps-sll',
|
|
'rv64ui-ps-slli',
|
|
'rv64ui-ps-slliw',
|
|
'rv64ui-ps-sllw',
|
|
'rv64ui-ps-slt',
|
|
'rv64ui-ps-slti',
|
|
'rv64ui-ps-sltiu',
|
|
'rv64ui-ps-sltu',
|
|
'rv64ui-ps-sra',
|
|
'rv64ui-ps-srai',
|
|
'rv64ui-ps-sraiw',
|
|
'rv64ui-ps-sraw',
|
|
'rv64ui-ps-srl',
|
|
'rv64ui-ps-srli',
|
|
'rv64ui-ps-srliw',
|
|
'rv64ui-ps-srlw',
|
|
'rv64ui-ps-sub',
|
|
'rv64ui-ps-subw',
|
|
'rv64ui-ps-sw',
|
|
'rv64ui-ps-xor',
|
|
'rv64ui-ps-xori',
|
|
'rv64um-ps-div',
|
|
'rv64um-ps-divu',
|
|
'rv64um-ps-divuw',
|
|
'rv64um-ps-divw',
|
|
'rv64um-ps-mul',
|
|
'rv64um-ps-mulh',
|
|
'rv64um-ps-mulhsu',
|
|
'rv64um-ps-mulhu',
|
|
'rv64um-ps-mulw',
|
|
'rv64um-ps-rem',
|
|
'rv64um-ps-remu',
|
|
'rv64um-ps-remuw',
|
|
'rv64um-ps-remw',
|
|
'rv64uzfh-ps-fadd',
|
|
'rv64uzfh-ps-fclass',
|
|
'rv64uzfh-ps-fcmp',
|
|
'rv64uzfh-ps-fcvt',
|
|
'rv64uzfh-ps-fcvt_w',
|
|
'rv64uzfh-ps-fdiv',
|
|
'rv64uzfh-ps-fmadd',
|
|
'rv64uzfh-ps-fmin',
|
|
'rv64uzfh-ps-ldst',
|
|
'rv64uzfh-ps-move',
|
|
'rv64uzfh-ps-recoding',
|
|
)
|
|
|
|
|
|
if config.bin_path:
|
|
bin_path = config.bin_path
|
|
else:
|
|
bin_path = joinpath(absdirpath(__file__), '..', 'resources', 'asmtest')
|
|
|
|
urlbase = config.resource_url + '/test-progs/asmtest/bin/'
|
|
|
|
for cpu in cpu_types:
|
|
for binary in binaries:
|
|
url = urlbase + binary
|
|
path = joinpath(bin_path, binary)
|
|
try:
|
|
program = DownloadedProgram(url, path, binary)
|
|
except:
|
|
continue
|
|
asm_test(joinpath(bin_path, binary, binary), cpu)
|