2020-01-17 06:51:45 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2020-01-17 06:51:45 +00:00
|
|
|
|
2020-03-02 08:40:58 +00:00
|
|
|
#include <test/yulPhaser/TestHelpers.h>
|
2020-02-05 23:49:11 +00:00
|
|
|
|
2020-01-17 06:53:21 +00:00
|
|
|
#include <tools/yulPhaser/Chromosome.h>
|
2020-02-15 02:03:22 +00:00
|
|
|
#include <tools/yulPhaser/SimulationRNG.h>
|
2020-01-17 06:53:21 +00:00
|
|
|
|
|
|
|
#include <libyul/optimiser/BlockFlattener.h>
|
2020-02-08 00:51:04 +00:00
|
|
|
#include <libyul/optimiser/ConditionalSimplifier.h>
|
|
|
|
#include <libyul/optimiser/ExpressionInliner.h>
|
|
|
|
#include <libyul/optimiser/ExpressionSimplifier.h>
|
|
|
|
#include <libyul/optimiser/ForLoopConditionOutOfBody.h>
|
|
|
|
#include <libyul/optimiser/ForLoopConditionOutOfBody.h>
|
|
|
|
#include <libyul/optimiser/ForLoopInitRewriter.h>
|
|
|
|
#include <libyul/optimiser/FunctionHoister.h>
|
|
|
|
#include <libyul/optimiser/LoopInvariantCodeMotion.h>
|
2021-11-23 09:37:12 +00:00
|
|
|
#include <libyul/optimiser/UnusedAssignEliminator.h>
|
2020-02-08 00:51:04 +00:00
|
|
|
#include <libyul/optimiser/Rematerialiser.h>
|
2020-01-17 06:53:21 +00:00
|
|
|
#include <libyul/optimiser/Suite.h>
|
2020-02-08 00:51:04 +00:00
|
|
|
#include <libyul/optimiser/StructuralSimplifier.h>
|
2020-01-17 06:53:21 +00:00
|
|
|
#include <libyul/optimiser/UnusedPruner.h>
|
|
|
|
|
|
|
|
#include <libsolutil/CommonIO.h>
|
|
|
|
|
2020-01-17 06:51:45 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2020-01-17 06:53:21 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::util;
|
|
|
|
|
2020-01-17 06:51:45 +00:00
|
|
|
namespace solidity::phaser::test
|
|
|
|
{
|
|
|
|
|
2020-09-11 16:33:25 +00:00
|
|
|
vector<string> const ChrOmOsoMeSteps{
|
|
|
|
ConditionalSimplifier::name,
|
|
|
|
FunctionHoister::name,
|
2021-11-23 09:37:12 +00:00
|
|
|
UnusedAssignEliminator::name,
|
2020-09-11 16:33:25 +00:00
|
|
|
ForLoopConditionOutOfBody::name,
|
|
|
|
Rematerialiser::name,
|
|
|
|
ForLoopConditionOutOfBody::name,
|
|
|
|
ExpressionSimplifier::name,
|
|
|
|
ForLoopInitRewriter::name,
|
|
|
|
LoopInvariantCodeMotion::name,
|
|
|
|
ExpressionInliner::name
|
|
|
|
};
|
|
|
|
|
2020-07-08 15:56:14 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE(Phaser, *boost::unit_test::label("nooptions"))
|
2020-01-17 06:51:45 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE(ChromosomeTest)
|
2020-01-17 06:53:21 +00:00
|
|
|
|
2020-02-14 05:07:28 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(makeRandom_should_return_different_chromosome_each_time)
|
2020-01-17 06:53:21 +00:00
|
|
|
{
|
2020-02-14 05:07:28 +00:00
|
|
|
SimulationRNG::reset(1);
|
|
|
|
for (size_t i = 0; i < 10; ++i)
|
|
|
|
BOOST_TEST(Chromosome::makeRandom(100) != Chromosome::makeRandom(100));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(makeRandom_should_use_every_possible_step_with_the_same_probability)
|
|
|
|
{
|
|
|
|
SimulationRNG::reset(1);
|
2020-09-11 20:05:45 +00:00
|
|
|
constexpr int samplesPerStep = 500;
|
|
|
|
constexpr double relativeTolerance = 0.02;
|
2020-02-14 05:07:28 +00:00
|
|
|
|
|
|
|
map<string, size_t> stepIndices = enumerateOptmisationSteps();
|
|
|
|
auto chromosome = Chromosome::makeRandom(stepIndices.size() * samplesPerStep);
|
|
|
|
|
|
|
|
vector<size_t> samples;
|
|
|
|
for (auto& step: chromosome.optimisationSteps())
|
|
|
|
samples.push_back(stepIndices.at(step));
|
|
|
|
|
2019-12-12 23:39:29 +00:00
|
|
|
const double expectedValue = double(stepIndices.size() - 1) / 2.0;
|
|
|
|
const double variance = double(stepIndices.size() * stepIndices.size() - 1) / 12.0;
|
2020-02-14 05:07:28 +00:00
|
|
|
|
|
|
|
BOOST_TEST(abs(mean(samples) - expectedValue) < expectedValue * relativeTolerance);
|
|
|
|
BOOST_TEST(abs(meanSquaredError(samples, expectedValue) - variance) < variance * relativeTolerance);
|
2020-01-17 06:53:21 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 16:53:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(constructor_should_store_genes)
|
|
|
|
{
|
|
|
|
BOOST_TEST(Chromosome("ChrOmOsoMe").genes() == "ChrOmOsoMe");
|
|
|
|
}
|
|
|
|
|
2020-01-17 06:53:21 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(constructor_should_store_optimisation_steps)
|
|
|
|
{
|
|
|
|
vector<string> steps = {
|
|
|
|
StructuralSimplifier::name,
|
|
|
|
BlockFlattener::name,
|
|
|
|
UnusedPruner::name,
|
|
|
|
};
|
|
|
|
|
2020-09-11 16:53:47 +00:00
|
|
|
BOOST_TEST(Chromosome(steps).genes() == "tfu");
|
2020-01-17 06:53:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(constructor_should_allow_duplicate_steps)
|
|
|
|
{
|
|
|
|
vector<string> steps = {
|
|
|
|
StructuralSimplifier::name,
|
|
|
|
StructuralSimplifier::name,
|
|
|
|
BlockFlattener::name,
|
|
|
|
UnusedPruner::name,
|
|
|
|
BlockFlattener::name,
|
|
|
|
};
|
|
|
|
|
2020-09-11 16:53:47 +00:00
|
|
|
BOOST_TEST(Chromosome(steps).genes() == "ttfuf");
|
|
|
|
BOOST_TEST(Chromosome("ttfuf").genes() == "ttfuf");
|
2020-01-17 06:53:21 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 18:49:25 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(constructor_should_allow_genes_that_do_not_correspond_to_any_step)
|
|
|
|
{
|
|
|
|
assert(OptimiserSuite::stepAbbreviationToNameMap().count('.') == 0);
|
|
|
|
assert(OptimiserSuite::stepAbbreviationToNameMap().count('b') == 0);
|
|
|
|
|
|
|
|
BOOST_TEST(Chromosome(".").genes() == ".");
|
|
|
|
BOOST_TEST(Chromosome("a..abatbb").genes() == "a..abatbb");
|
|
|
|
}
|
|
|
|
|
2020-01-17 06:53:21 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(output_operator_should_create_concise_and_unambiguous_string_representation)
|
|
|
|
{
|
|
|
|
vector<string> allSteps;
|
|
|
|
for (auto const& step: OptimiserSuite::allSteps())
|
|
|
|
allSteps.push_back(step.first);
|
|
|
|
Chromosome chromosome(allSteps);
|
|
|
|
|
|
|
|
BOOST_TEST(chromosome.length() == allSteps.size());
|
|
|
|
BOOST_TEST(chromosome.optimisationSteps() == allSteps);
|
2022-01-03 09:49:25 +00:00
|
|
|
BOOST_TEST(toString(chromosome) == "flcCUnDEvejsxIOoighFTLMRmVatrpud");
|
2020-01-17 06:53:21 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 16:53:47 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(optimisationSteps_should_translate_chromosomes_genes_to_optimisation_step_names)
|
|
|
|
{
|
|
|
|
BOOST_TEST(Chromosome("ChrOmOsoMe").optimisationSteps() == ChrOmOsoMeSteps);
|
|
|
|
}
|
|
|
|
|
2020-02-05 23:49:11 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(randomOptimisationStep_should_return_each_step_with_same_probability)
|
|
|
|
{
|
|
|
|
SimulationRNG::reset(1);
|
2020-09-11 20:05:45 +00:00
|
|
|
constexpr int samplesPerStep = 500;
|
|
|
|
constexpr double relativeTolerance = 0.02;
|
2020-02-05 23:49:11 +00:00
|
|
|
|
|
|
|
map<string, size_t> stepIndices = enumerateOptmisationSteps();
|
|
|
|
vector<size_t> samples;
|
|
|
|
for (size_t i = 0; i <= stepIndices.size() * samplesPerStep; ++i)
|
|
|
|
samples.push_back(stepIndices.at(Chromosome::randomOptimisationStep()));
|
|
|
|
|
2019-12-12 23:39:29 +00:00
|
|
|
const double expectedValue = double(stepIndices.size() - 1) / 2.0;
|
|
|
|
const double variance = double(stepIndices.size() * stepIndices.size() - 1) / 12.0;
|
2020-02-05 23:49:11 +00:00
|
|
|
|
|
|
|
BOOST_TEST(abs(mean(samples) - expectedValue) < expectedValue * relativeTolerance);
|
|
|
|
BOOST_TEST(abs(meanSquaredError(samples, expectedValue) - variance) < variance * relativeTolerance);
|
|
|
|
}
|
|
|
|
|
2020-09-11 16:33:25 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(stepsToGenes_should_translate_optimisation_step_names_to_abbreviations)
|
|
|
|
{
|
|
|
|
BOOST_TEST(Chromosome::stepsToGenes({}) == "");
|
|
|
|
BOOST_TEST(Chromosome::stepsToGenes(ChrOmOsoMeSteps) == "ChrOmOsoMe");
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(genesToSteps_should_translate_optimisation_step_abbreviations_to_names)
|
|
|
|
{
|
|
|
|
BOOST_TEST(Chromosome::genesToSteps("") == vector<string>{});
|
|
|
|
BOOST_TEST(Chromosome::genesToSteps("ChrOmOsoMe") == ChrOmOsoMeSteps);
|
|
|
|
}
|
|
|
|
|
2020-01-17 06:53:21 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
2020-01-17 06:51:45 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
}
|