2020-02-05 13:56:55 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Contains an abstract base class representing a fitness metric and its concrete implementations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <tools/yulPhaser/Chromosome.h>
|
2020-02-05 13:58:06 +00:00
|
|
|
#include <tools/yulPhaser/Program.h>
|
2020-02-05 13:56:55 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
|
|
namespace solidity::phaser
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract base class for fitness metrics.
|
|
|
|
*
|
|
|
|
* The main feature is the @a evaluate() method that can tell how good a given chromosome is.
|
|
|
|
* The lower the value, the better the fitness is. The result should be deterministic and depend
|
|
|
|
* only on the chromosome and metric's state (which is constant).
|
|
|
|
*/
|
|
|
|
class FitnessMetric
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FitnessMetric() = default;
|
|
|
|
FitnessMetric(FitnessMetric const&) = delete;
|
|
|
|
FitnessMetric& operator=(FitnessMetric const&) = delete;
|
|
|
|
virtual ~FitnessMetric() = default;
|
|
|
|
|
2020-02-26 18:58:14 +00:00
|
|
|
virtual size_t evaluate(Chromosome const& _chromosome) = 0;
|
2020-02-05 13:56:55 +00:00
|
|
|
};
|
|
|
|
|
2020-02-05 13:58:06 +00:00
|
|
|
/**
|
2020-02-26 19:47:11 +00:00
|
|
|
* Abstract base class for fitness metrics that return values based on program size.
|
|
|
|
*
|
|
|
|
* The class provides utilities for optimising programs according to the information stored in
|
|
|
|
* chromosomes.
|
|
|
|
*
|
|
|
|
* It can also store weights for the @a CodeSize metric. It does not do anything with
|
|
|
|
* them because it does not actually compute the code size but they are readily available for use
|
|
|
|
* by derived classes.
|
2020-02-05 13:58:06 +00:00
|
|
|
*/
|
2020-02-26 19:47:11 +00:00
|
|
|
class ProgramBasedMetric: public FitnessMetric
|
2020-02-05 13:58:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-02-26 19:47:11 +00:00
|
|
|
explicit ProgramBasedMetric(
|
|
|
|
Program _program,
|
|
|
|
size_t _repetitionCount = 1
|
|
|
|
):
|
2020-02-05 18:24:46 +00:00
|
|
|
m_program(std::move(_program)),
|
|
|
|
m_repetitionCount(_repetitionCount) {}
|
2020-02-05 13:58:06 +00:00
|
|
|
|
2020-03-04 18:46:46 +00:00
|
|
|
Program const& program() const { return m_program; }
|
|
|
|
size_t repetitionCount() const { return m_repetitionCount; }
|
|
|
|
|
2020-02-26 19:47:11 +00:00
|
|
|
Program optimisedProgram(Chromosome const& _chromosome) const;
|
2020-02-05 13:58:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Program m_program;
|
2020-02-05 18:24:46 +00:00
|
|
|
size_t m_repetitionCount;
|
2020-02-05 13:58:06 +00:00
|
|
|
};
|
|
|
|
|
2020-02-26 19:47:11 +00:00
|
|
|
/**
|
|
|
|
* Fitness metric based on the size of a specific program after applying the optimisations from the
|
|
|
|
* chromosome to it.
|
|
|
|
*/
|
|
|
|
class ProgramSize: public ProgramBasedMetric
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using ProgramBasedMetric::ProgramBasedMetric;
|
2020-02-26 18:58:14 +00:00
|
|
|
size_t evaluate(Chromosome const& _chromosome) override;
|
2020-02-26 19:47:11 +00:00
|
|
|
};
|
|
|
|
|
2020-02-05 13:56:55 +00:00
|
|
|
}
|