If supported this will compress the debug information in object files, libraries, and binaries. This decreases the size of the build/ARM directory from 11GB to 7.2GB. Because the benefit of this mechanism depends on the performance and capacity of the build machine's storage, it can be disabled with the --no-compress-debug scons flag. For instance if your storage is very fast, writing out a larger binary may take less time than compressing that same number of bytes, plus the time to write out the smaller file. This feature seems to make our presubmit test machine run out of memory when trying to build gem5, and so is disabled in the testing scripts. Change-Id: I71919062d23742b7658918b0fa9c4d91d0521fbf Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40715 Reviewed-by: Gabe Black <gabe.black@gmail.com> Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Maintainer: Gabe Black <gabe.black@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
362 lines
13 KiB
Python
362 lines
13 KiB
Python
# Copyright (c) 2019 ARM Limited
|
|
# All rights reserved
|
|
#
|
|
# The license below extends only to copyright in the software and shall
|
|
# not be construed as granting a license to any other intellectual
|
|
# property including but not limited to intellectual property relating
|
|
# to a hardware implementation of the functionality of the software
|
|
# licensed hereunder. You may use the software subject to the license
|
|
# terms below provided that you ensure that this notice is replicated
|
|
# unmodified and in its entirety in all distributions of the software,
|
|
# modified or unmodified, in source code or in binary form.
|
|
#
|
|
# Copyright (c) 2017 Mark D. Hill and David A. Wood
|
|
# 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 the copyright holders 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
|
|
# OWNER 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
|
|
import tempfile
|
|
import shutil
|
|
import sys
|
|
import socket
|
|
import threading
|
|
import gzip
|
|
|
|
import urllib.error
|
|
import urllib.request
|
|
|
|
from testlib.fixture import Fixture
|
|
from testlib.configuration import config, constants
|
|
from testlib.helper import log_call, cacheresult, joinpath, absdirpath
|
|
import testlib.log as log
|
|
from testlib.state import Result
|
|
|
|
|
|
class VariableFixture(Fixture):
|
|
def __init__(self, value=None, name=None):
|
|
super(VariableFixture, self).__init__(name=name)
|
|
self.value = value
|
|
|
|
|
|
class TempdirFixture(Fixture):
|
|
def __init__(self):
|
|
self.path = None
|
|
super(TempdirFixture, self).__init__(
|
|
name=constants.tempdir_fixture_name)
|
|
|
|
def setup(self, testitem):
|
|
self.path = tempfile.mkdtemp(prefix='gem5out')
|
|
|
|
def post_test_procedure(self, testitem):
|
|
suiteUID = testitem.metadata.uid.suite
|
|
testUID = testitem.metadata.name
|
|
testing_result_folder = os.path.join(config.result_path,
|
|
"SuiteUID:" + suiteUID,
|
|
"TestUID:" + testUID)
|
|
|
|
# Copy the output files of the run from /tmp to testing-results
|
|
# We want to wipe the entire result folder for this test first. Why?
|
|
# If the result folder exists (probably from the previous run), if
|
|
# this run emits fewer files, there'll be files from the previous
|
|
# run in this folder, which would cause confusion if one does not
|
|
# check the timestamp of the file.
|
|
if os.path.exists(testing_result_folder):
|
|
shutil.rmtree(testing_result_folder)
|
|
shutil.copytree(self.path, testing_result_folder)
|
|
|
|
def teardown(self, testitem):
|
|
if testitem.result == Result.Passed:
|
|
shutil.rmtree(self.path)
|
|
|
|
class UniqueFixture(Fixture):
|
|
'''
|
|
Base class for fixtures that generate a target in the
|
|
filesystem. If the same fixture is used by more than one
|
|
test/suite, rather than creating a copy of the fixture, it returns
|
|
the same object and makes sure that setup is only executed
|
|
once. Devired classses should override the _init and _setup
|
|
functions.
|
|
|
|
:param target: The absolute path of the target in the filesystem.
|
|
|
|
'''
|
|
fixtures = {}
|
|
|
|
def __new__(cls, target):
|
|
if target in cls.fixtures:
|
|
obj = cls.fixtures[target]
|
|
else:
|
|
obj = super(UniqueFixture, cls).__new__(cls)
|
|
obj.lock = threading.Lock()
|
|
obj.target = target
|
|
cls.fixtures[target] = obj
|
|
return obj
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
with self.lock:
|
|
if hasattr(self, '_init_done'):
|
|
return
|
|
super(UniqueFixture, self).__init__(self, **kwargs)
|
|
self._init(*args, **kwargs)
|
|
self._init_done = True
|
|
|
|
def setup(self, testitem):
|
|
with self.lock:
|
|
if hasattr(self, '_setup_done'):
|
|
return
|
|
self._setup_done = True
|
|
self._setup(testitem)
|
|
|
|
|
|
class SConsFixture(UniqueFixture):
|
|
'''
|
|
Fixture will wait until all SCons targets are collected and tests are
|
|
about to be ran, then will invocate a single instance of SCons for all
|
|
targets.
|
|
|
|
:param directory: The directory which scons will -C (cd) into before
|
|
executing. If None is provided, will choose the config base_dir.
|
|
'''
|
|
|
|
def __new__(cls, target):
|
|
obj = super(SConsFixture, cls).__new__(cls, target)
|
|
return obj
|
|
|
|
def _setup(self, testitem):
|
|
if config.skip_build:
|
|
return
|
|
|
|
command = [
|
|
'scons', '-C', self.directory,
|
|
'-j', str(config.threads),
|
|
'--ignore-style',
|
|
'--no-compress-debug'
|
|
]
|
|
|
|
if not self.targets:
|
|
log.test_log.warn(
|
|
'No SCons targets specified, this will'
|
|
' build the default all target.\n'
|
|
'This is likely unintended, and you'
|
|
' may wish to kill testlib and reconfigure.')
|
|
else:
|
|
log.test_log.message(
|
|
'Building the following targets.'
|
|
' This may take a while.')
|
|
log.test_log.message('%s' % (', '.join(self.targets)))
|
|
log.test_log.message(
|
|
"You may want to run with only a single ISA"
|
|
"(--isa=), use --skip-build, or use 'rerun'.")
|
|
|
|
command.extend(self.targets)
|
|
if self.options:
|
|
command.extend(self.options)
|
|
log_call(log.test_log, command, time=None, stderr=sys.stderr)
|
|
|
|
class Gem5Fixture(SConsFixture):
|
|
def __new__(cls, isa, variant, protocol=None):
|
|
target_dir = joinpath(config.build_dir, isa.upper())
|
|
if protocol:
|
|
target_dir += '_' + protocol
|
|
target = joinpath(target_dir, 'gem5.%s' % variant)
|
|
obj = super(Gem5Fixture, cls).__new__(cls, target)
|
|
return obj
|
|
|
|
def _init(self, isa, variant, protocol=None):
|
|
self.name = constants.gem5_binary_fixture_name
|
|
|
|
self.targets = [self.target]
|
|
self.path = self.target
|
|
self.directory = config.base_dir
|
|
|
|
self.options = []
|
|
if protocol:
|
|
self.options = [ '--default=' + isa.upper(),
|
|
'PROTOCOL=' + protocol ]
|
|
self.set_global()
|
|
|
|
class MakeFixture(Fixture):
|
|
def __init__(self, directory, *args, **kwargs):
|
|
name = 'make -C %s' % directory
|
|
super(MakeFixture, self).__init__(build_once=True, lazy_init=False,
|
|
name=name,
|
|
*args, **kwargs)
|
|
self.targets = []
|
|
self.directory = directory
|
|
|
|
def setup(self):
|
|
super(MakeFixture, self).setup()
|
|
targets = set(self.required_by)
|
|
command = ['make', '-C', self.directory]
|
|
command.extend([target.target for target in targets])
|
|
log_call(log.test_log, command, time=None, stderr=sys.stderr)
|
|
|
|
|
|
class MakeTarget(Fixture):
|
|
def __init__(self, target, make_fixture=None, *args, **kwargs):
|
|
'''
|
|
:param make_fixture: The make invocation we will be attached to.
|
|
Since we don't have a single global instance of make in gem5 like we do
|
|
scons we need to know what invocation to attach to. If none given,
|
|
creates its own.
|
|
'''
|
|
super(MakeTarget, self).__init__(name=target, *args, **kwargs)
|
|
self.target = self.name
|
|
|
|
if make_fixture is None:
|
|
make_fixture = MakeFixture(
|
|
absdirpath(target),
|
|
lazy_init=True,
|
|
build_once=False)
|
|
|
|
self.make_fixture = make_fixture
|
|
|
|
# Add our self to the required targets of the main MakeFixture
|
|
self.require(self.make_fixture)
|
|
|
|
def setup(self, testitem):
|
|
super(MakeTarget, self).setup()
|
|
self.make_fixture.setup()
|
|
return self
|
|
|
|
class TestProgram(MakeTarget):
|
|
def __init__(self, program, isa, os, recompile=False):
|
|
make_dir = joinpath(config.bin_dir, program)
|
|
make_fixture = MakeFixture(make_dir)
|
|
target = joinpath('bin', isa, os, program)
|
|
super(TestProgram, self).__init__(target, make_fixture)
|
|
self.path = joinpath(make_dir, target)
|
|
self.recompile = recompile
|
|
|
|
def setup(self, testitem):
|
|
# Check if the program exists if it does then only compile if
|
|
# recompile was given.
|
|
if self.recompile:
|
|
super(MakeTarget, self).setup()
|
|
elif not os.path.exists(self.path):
|
|
super(MakeTarget, self).setup()
|
|
|
|
class DownloadedProgram(UniqueFixture):
|
|
""" Like TestProgram, but checks the version in the gem5 binary repository
|
|
and downloads an updated version if it is needed.
|
|
"""
|
|
|
|
def __new__(cls, url, path, filename, gzip_decompress=False):
|
|
target = joinpath(path, filename)
|
|
return super(DownloadedProgram, cls).__new__(cls, target)
|
|
|
|
def _init(self, url, path, filename, gzip_decompress=False, **kwargs):
|
|
"""
|
|
url: string
|
|
The url of the archive
|
|
path: string
|
|
The absolute path of the directory containing the archive
|
|
filename: string
|
|
The name of the archive
|
|
gzip_decompress: boolean
|
|
True if this target resource have been compressed using gzip and
|
|
is to be decompressed prior to usage.
|
|
"""
|
|
|
|
self.url = url
|
|
self.path = path
|
|
self.filename = joinpath(path, filename)
|
|
self.name = "Downloaded:" + self.filename
|
|
self.gzip_decompress = gzip_decompress
|
|
|
|
def _download(self):
|
|
import errno
|
|
log.test_log.debug("Downloading " + self.url + " to " + self.path)
|
|
if not os.path.exists(self.path):
|
|
try:
|
|
os.makedirs(self.path)
|
|
except OSError as e:
|
|
if e.errno != errno.EEXIST:
|
|
raise
|
|
if self.gzip_decompress:
|
|
gzipped_filename = self.filename + ".gz"
|
|
urllib.request.urlretrieve(self.url, gzipped_filename)
|
|
|
|
with open(self.filename, 'wb') as outfile:
|
|
with gzip.open(gzipped_filename, 'r') as infile:
|
|
shutil.copyfileobj(infile, outfile)
|
|
|
|
os.remove(gzipped_filename)
|
|
else:
|
|
urllib.request.urlretrieve(self.url, self.filename)
|
|
|
|
def _getremotetime(self):
|
|
import datetime, time
|
|
import _strptime # Needed for python threading bug
|
|
|
|
u = urllib.request.urlopen(self.url, timeout=10)
|
|
|
|
return time.mktime(datetime.datetime.strptime( \
|
|
u.info()["Last-Modified"],
|
|
"%a, %d %b %Y %X GMT").timetuple())
|
|
|
|
def _setup(self, testitem):
|
|
# Check to see if there is a file downloaded
|
|
if not os.path.exists(self.filename):
|
|
self._download()
|
|
else:
|
|
try:
|
|
t = self._getremotetime()
|
|
except (urllib.error.URLError, socket.timeout):
|
|
# Problem checking the server, use the old files.
|
|
log.test_log.debug("Could not contact server. Binaries may be old.")
|
|
return
|
|
# If the server version is more recent, download it
|
|
if t > os.path.getmtime(self.filename):
|
|
self._download()
|
|
|
|
class DownloadedArchive(DownloadedProgram):
|
|
""" Like TestProgram, but checks the version in the gem5 binary repository
|
|
and downloads an updated version if it is needed.
|
|
"""
|
|
|
|
def _extract(self):
|
|
import tarfile
|
|
with tarfile.open(self.filename) as tf:
|
|
tf.extractall(self.path)
|
|
|
|
def _setup(self, testitem):
|
|
# Check to see if there is a file downloaded
|
|
if not os.path.exists(self.filename):
|
|
self._download()
|
|
self._extract()
|
|
else:
|
|
try:
|
|
t = self._getremotetime()
|
|
except (urllib.error.URLError, socket.timeout):
|
|
# Problem checking the server, use the old files.
|
|
log.test_log.debug("Could not contact server. "
|
|
"Binaries may be old.")
|
|
return
|
|
# If the server version is more recent, download it
|
|
if t > os.path.getmtime(self.filename):
|
|
self._download()
|
|
self._extract()
|