2018-02-06 11:20:00 +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
|
2018-02-06 11:20:00 +00:00
|
|
|
/**
|
|
|
|
* Expression simplification pattern.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-11-06 21:12:40 +00:00
|
|
|
#include <libevmasm/Instruction.h>
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2018-02-06 11:20:00 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::evmasm
|
2018-02-06 11:20:00 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rule that contains a pattern, an action that can be applied
|
2020-08-03 20:42:39 +00:00
|
|
|
* after the pattern has matched and optional condition to check if the
|
|
|
|
* action should be applied.
|
2018-02-06 11:20:00 +00:00
|
|
|
*/
|
|
|
|
template <class Pattern>
|
|
|
|
struct SimplificationRule
|
|
|
|
{
|
2019-02-25 11:31:35 +00:00
|
|
|
SimplificationRule(
|
|
|
|
Pattern _pattern,
|
|
|
|
std::function<Pattern()> _action,
|
|
|
|
std::function<bool()> _feasible = {}
|
|
|
|
):
|
|
|
|
pattern(std::move(_pattern)),
|
|
|
|
action(std::move(_action)),
|
|
|
|
feasible(std::move(_feasible))
|
|
|
|
{}
|
|
|
|
|
2018-02-06 11:20:00 +00:00
|
|
|
Pattern pattern;
|
|
|
|
std::function<Pattern()> action;
|
2019-02-25 11:31:35 +00:00
|
|
|
std::function<bool()> feasible;
|
2018-02-06 11:20:00 +00:00
|
|
|
};
|
|
|
|
|
2019-11-07 20:29:56 +00:00
|
|
|
template <typename Pattern>
|
2019-11-06 21:12:40 +00:00
|
|
|
struct EVMBuiltins
|
|
|
|
{
|
|
|
|
using InstrType = Instruction;
|
2019-11-07 20:29:56 +00:00
|
|
|
|
|
|
|
template<Instruction inst>
|
|
|
|
struct PatternGenerator
|
|
|
|
{
|
|
|
|
template<typename... Args> constexpr Pattern operator()(Args&&... _args) const
|
|
|
|
{
|
|
|
|
return {inst, {std::forward<Args>(_args)...}};
|
2019-12-12 23:25:12 +00:00
|
|
|
}
|
2019-11-07 20:29:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PatternGeneratorInstance
|
|
|
|
{
|
|
|
|
Instruction instruction;
|
|
|
|
template<typename... Args> constexpr Pattern operator()(Args&&... _args) const
|
|
|
|
{
|
|
|
|
return {instruction, {std::forward<Args>(_args)...}};
|
2019-12-12 23:25:12 +00:00
|
|
|
}
|
2019-11-07 20:29:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static auto constexpr STOP = PatternGenerator<Instruction::STOP>{};
|
|
|
|
static auto constexpr ADD = PatternGenerator<Instruction::ADD>{};
|
|
|
|
static auto constexpr SUB = PatternGenerator<Instruction::SUB>{};
|
|
|
|
static auto constexpr MUL = PatternGenerator<Instruction::MUL>{};
|
|
|
|
static auto constexpr DIV = PatternGenerator<Instruction::DIV>{};
|
|
|
|
static auto constexpr SDIV = PatternGenerator<Instruction::SDIV>{};
|
|
|
|
static auto constexpr MOD = PatternGenerator<Instruction::MOD>{};
|
|
|
|
static auto constexpr SMOD = PatternGenerator<Instruction::SMOD>{};
|
|
|
|
static auto constexpr EXP = PatternGenerator<Instruction::EXP>{};
|
|
|
|
static auto constexpr NOT = PatternGenerator<Instruction::NOT>{};
|
|
|
|
static auto constexpr LT = PatternGenerator<Instruction::LT>{};
|
|
|
|
static auto constexpr GT = PatternGenerator<Instruction::GT>{};
|
|
|
|
static auto constexpr SLT = PatternGenerator<Instruction::SLT>{};
|
|
|
|
static auto constexpr SGT = PatternGenerator<Instruction::SGT>{};
|
|
|
|
static auto constexpr EQ = PatternGenerator<Instruction::EQ>{};
|
|
|
|
static auto constexpr ISZERO = PatternGenerator<Instruction::ISZERO>{};
|
|
|
|
static auto constexpr AND = PatternGenerator<Instruction::AND>{};
|
|
|
|
static auto constexpr OR = PatternGenerator<Instruction::OR>{};
|
|
|
|
static auto constexpr XOR = PatternGenerator<Instruction::XOR>{};
|
|
|
|
static auto constexpr BYTE = PatternGenerator<Instruction::BYTE>{};
|
|
|
|
static auto constexpr SHL = PatternGenerator<Instruction::SHL>{};
|
|
|
|
static auto constexpr SHR = PatternGenerator<Instruction::SHR>{};
|
|
|
|
static auto constexpr SAR = PatternGenerator<Instruction::SAR>{};
|
|
|
|
static auto constexpr ADDMOD = PatternGenerator<Instruction::ADDMOD>{};
|
|
|
|
static auto constexpr MULMOD = PatternGenerator<Instruction::MULMOD>{};
|
|
|
|
static auto constexpr SIGNEXTEND = PatternGenerator<Instruction::SIGNEXTEND>{};
|
|
|
|
static auto constexpr KECCAK256 = PatternGenerator<Instruction::KECCAK256>{};
|
|
|
|
static auto constexpr ADDRESS = PatternGenerator<Instruction::ADDRESS>{};
|
|
|
|
static auto constexpr BALANCE = PatternGenerator<Instruction::BALANCE>{};
|
|
|
|
static auto constexpr ORIGIN = PatternGenerator<Instruction::ORIGIN>{};
|
|
|
|
static auto constexpr CALLER = PatternGenerator<Instruction::CALLER>{};
|
|
|
|
static auto constexpr CALLVALUE = PatternGenerator<Instruction::CALLVALUE>{};
|
|
|
|
static auto constexpr CALLDATALOAD = PatternGenerator<Instruction::CALLDATALOAD>{};
|
|
|
|
static auto constexpr CALLDATASIZE = PatternGenerator<Instruction::CALLDATASIZE>{};
|
|
|
|
static auto constexpr CALLDATACOPY = PatternGenerator<Instruction::CALLDATACOPY>{};
|
|
|
|
static auto constexpr CODESIZE = PatternGenerator<Instruction::CODESIZE>{};
|
|
|
|
static auto constexpr CODECOPY = PatternGenerator<Instruction::CODECOPY>{};
|
|
|
|
static auto constexpr GASPRICE = PatternGenerator<Instruction::GASPRICE>{};
|
|
|
|
static auto constexpr EXTCODESIZE = PatternGenerator<Instruction::EXTCODESIZE>{};
|
|
|
|
static auto constexpr EXTCODECOPY = PatternGenerator<Instruction::EXTCODECOPY>{};
|
|
|
|
static auto constexpr RETURNDATASIZE = PatternGenerator<Instruction::RETURNDATASIZE>{};
|
|
|
|
static auto constexpr RETURNDATACOPY = PatternGenerator<Instruction::RETURNDATACOPY>{};
|
|
|
|
static auto constexpr EXTCODEHASH = PatternGenerator<Instruction::EXTCODEHASH>{};
|
|
|
|
static auto constexpr BLOCKHASH = PatternGenerator<Instruction::BLOCKHASH>{};
|
|
|
|
static auto constexpr COINBASE = PatternGenerator<Instruction::COINBASE>{};
|
|
|
|
static auto constexpr TIMESTAMP = PatternGenerator<Instruction::TIMESTAMP>{};
|
|
|
|
static auto constexpr NUMBER = PatternGenerator<Instruction::NUMBER>{};
|
2022-11-23 10:51:34 +00:00
|
|
|
static auto constexpr PREVRANDAO = PatternGenerator<Instruction::PREVRANDAO>{};
|
2019-11-07 20:29:56 +00:00
|
|
|
static auto constexpr GASLIMIT = PatternGenerator<Instruction::GASLIMIT>{};
|
|
|
|
static auto constexpr CHAINID = PatternGenerator<Instruction::CHAINID>{};
|
|
|
|
static auto constexpr SELFBALANCE = PatternGenerator<Instruction::SELFBALANCE>{};
|
2021-08-11 10:19:10 +00:00
|
|
|
static auto constexpr BASEFEE = PatternGenerator<Instruction::BASEFEE>{};
|
2019-11-07 20:29:56 +00:00
|
|
|
static auto constexpr POP = PatternGenerator<Instruction::POP>{};
|
|
|
|
static auto constexpr MLOAD = PatternGenerator<Instruction::MLOAD>{};
|
|
|
|
static auto constexpr MSTORE = PatternGenerator<Instruction::MSTORE>{};
|
|
|
|
static auto constexpr MSTORE8 = PatternGenerator<Instruction::MSTORE8>{};
|
|
|
|
static auto constexpr SLOAD = PatternGenerator<Instruction::SLOAD>{};
|
|
|
|
static auto constexpr SSTORE = PatternGenerator<Instruction::SSTORE>{};
|
|
|
|
static auto constexpr PC = PatternGenerator<Instruction::PC>{};
|
|
|
|
static auto constexpr MSIZE = PatternGenerator<Instruction::MSIZE>{};
|
|
|
|
static auto constexpr GAS = PatternGenerator<Instruction::GAS>{};
|
|
|
|
static auto constexpr LOG0 = PatternGenerator<Instruction::LOG0>{};
|
|
|
|
static auto constexpr LOG1 = PatternGenerator<Instruction::LOG1>{};
|
|
|
|
static auto constexpr LOG2 = PatternGenerator<Instruction::LOG2>{};
|
|
|
|
static auto constexpr LOG3 = PatternGenerator<Instruction::LOG3>{};
|
|
|
|
static auto constexpr LOG4 = PatternGenerator<Instruction::LOG4>{};
|
|
|
|
static auto constexpr CREATE = PatternGenerator<Instruction::CREATE>{};
|
|
|
|
static auto constexpr CALL = PatternGenerator<Instruction::CALL>{};
|
|
|
|
static auto constexpr CALLCODE = PatternGenerator<Instruction::CALLCODE>{};
|
|
|
|
static auto constexpr STATICCALL = PatternGenerator<Instruction::STATICCALL>{};
|
|
|
|
static auto constexpr RETURN = PatternGenerator<Instruction::RETURN>{};
|
|
|
|
static auto constexpr DELEGATECALL = PatternGenerator<Instruction::DELEGATECALL>{};
|
|
|
|
static auto constexpr CREATE2 = PatternGenerator<Instruction::CREATE2>{};
|
|
|
|
static auto constexpr REVERT = PatternGenerator<Instruction::REVERT>{};
|
|
|
|
static auto constexpr INVALID = PatternGenerator<Instruction::INVALID>{};
|
|
|
|
static auto constexpr SELFDESTRUCT = PatternGenerator<Instruction::SELFDESTRUCT>{};
|
2019-11-06 21:12:40 +00:00
|
|
|
};
|
|
|
|
|
2018-02-06 11:20:00 +00:00
|
|
|
}
|