2015-04-24 15:35:16 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-04-24 15:35:16 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-04-24 15:35:16 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-04-24 15:35:16 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2015-04-24 15:35:16 +00:00
|
|
|
/**
|
|
|
|
* @file SemanticInformation.cpp
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
* Helper to provide semantic information about assembly items.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libevmasm/SemanticInformation.h>
|
|
|
|
#include <libevmasm/AssemblyItem.h>
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::evmasm;
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2022-02-15 15:19:55 +00:00
|
|
|
vector<SemanticInformation::Operation> SemanticInformation::readWriteOperations(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::SSTORE:
|
|
|
|
case Instruction::SLOAD:
|
|
|
|
{
|
|
|
|
assertThrow(memory(_instruction) == Effect::None, OptimizerException, "");
|
|
|
|
assertThrow(storage(_instruction) != Effect::None, OptimizerException, "");
|
|
|
|
Operation op;
|
|
|
|
op.effect = storage(_instruction);
|
|
|
|
op.location = Location::Storage;
|
|
|
|
op.startParameter = 0;
|
|
|
|
// We know that exactly one slot is affected.
|
|
|
|
op.lengthConstant = 1;
|
|
|
|
return {op};
|
|
|
|
}
|
|
|
|
case Instruction::MSTORE:
|
|
|
|
case Instruction::MSTORE8:
|
|
|
|
case Instruction::MLOAD:
|
|
|
|
{
|
|
|
|
assertThrow(memory(_instruction) != Effect::None, OptimizerException, "");
|
|
|
|
assertThrow(storage(_instruction) == Effect::None, OptimizerException, "");
|
|
|
|
Operation op;
|
|
|
|
op.effect = memory(_instruction);
|
|
|
|
op.location = Location::Memory;
|
|
|
|
op.startParameter = 0;
|
|
|
|
if (_instruction == Instruction::MSTORE || _instruction == Instruction::MLOAD)
|
|
|
|
op.lengthConstant = 32;
|
|
|
|
else if (_instruction == Instruction::MSTORE8)
|
|
|
|
op.lengthConstant = 1;
|
|
|
|
|
|
|
|
return {op};
|
|
|
|
}
|
|
|
|
case Instruction::REVERT:
|
|
|
|
case Instruction::RETURN:
|
|
|
|
case Instruction::KECCAK256:
|
|
|
|
case Instruction::LOG0:
|
|
|
|
case Instruction::LOG1:
|
|
|
|
case Instruction::LOG2:
|
|
|
|
case Instruction::LOG3:
|
|
|
|
case Instruction::LOG4:
|
|
|
|
{
|
|
|
|
assertThrow(storage(_instruction) == Effect::None, OptimizerException, "");
|
|
|
|
assertThrow(memory(_instruction) == Effect::Read, OptimizerException, "");
|
|
|
|
Operation op;
|
|
|
|
op.effect = memory(_instruction);
|
|
|
|
op.location = Location::Memory;
|
|
|
|
op.startParameter = 0;
|
|
|
|
op.lengthParameter = 1;
|
|
|
|
return {op};
|
|
|
|
}
|
|
|
|
case Instruction::EXTCODECOPY:
|
|
|
|
{
|
|
|
|
assertThrow(memory(_instruction) == Effect::Write, OptimizerException, "");
|
|
|
|
assertThrow(storage(_instruction) == Effect::None, OptimizerException, "");
|
|
|
|
Operation op;
|
|
|
|
op.effect = memory(_instruction);
|
|
|
|
op.location = Location::Memory;
|
|
|
|
op.startParameter = 1;
|
|
|
|
op.lengthParameter = 3;
|
|
|
|
return {op};
|
|
|
|
}
|
|
|
|
case Instruction::CODECOPY:
|
|
|
|
case Instruction::CALLDATACOPY:
|
|
|
|
case Instruction::RETURNDATACOPY:
|
|
|
|
{
|
|
|
|
assertThrow(memory(_instruction) == Effect::Write, OptimizerException, "");
|
|
|
|
assertThrow(storage(_instruction) == Effect::None, OptimizerException, "");
|
|
|
|
Operation op;
|
|
|
|
op.effect = memory(_instruction);
|
|
|
|
op.location = Location::Memory;
|
|
|
|
op.startParameter = 0;
|
|
|
|
op.lengthParameter = 2;
|
|
|
|
return {op};
|
|
|
|
}
|
|
|
|
case Instruction::STATICCALL:
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
|
|
|
case Instruction::DELEGATECALL:
|
|
|
|
{
|
2022-11-23 10:51:34 +00:00
|
|
|
size_t paramCount = static_cast<size_t>(instructionInfo(_instruction, langutil::EVMVersion()).args);
|
2022-02-15 15:19:55 +00:00
|
|
|
vector<Operation> operations{
|
|
|
|
Operation{Location::Memory, Effect::Read, paramCount - 4, paramCount - 3, {}},
|
|
|
|
Operation{Location::Storage, Effect::Read, {}, {}, {}}
|
|
|
|
};
|
|
|
|
if (_instruction != Instruction::STATICCALL)
|
|
|
|
operations.emplace_back(Operation{Location::Storage, Effect::Write, {}, {}, {}});
|
|
|
|
operations.emplace_back(Operation{
|
|
|
|
Location::Memory,
|
|
|
|
Effect::Write,
|
|
|
|
paramCount - 2,
|
2021-05-05 16:02:35 +00:00
|
|
|
// Length is in paramCount - 1, but it is only a max length,
|
|
|
|
// there is no guarantee that the full area is written to.
|
|
|
|
{},
|
2022-02-15 15:19:55 +00:00
|
|
|
{}
|
|
|
|
});
|
|
|
|
return operations;
|
|
|
|
}
|
|
|
|
case Instruction::CREATE:
|
|
|
|
case Instruction::CREATE2:
|
|
|
|
return vector<Operation>{
|
|
|
|
Operation{
|
|
|
|
Location::Memory,
|
|
|
|
Effect::Read,
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
{}
|
|
|
|
},
|
|
|
|
Operation{Location::Storage, Effect::Read, {}, {}, {}},
|
|
|
|
Operation{Location::Storage, Effect::Write, {}, {}, {}}
|
|
|
|
};
|
|
|
|
case Instruction::MSIZE:
|
|
|
|
// This is just to satisfy the assert below.
|
|
|
|
return vector<Operation>{};
|
|
|
|
default:
|
|
|
|
assertThrow(storage(_instruction) == None && memory(_instruction) == None, AssemblyException, "");
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-03-08 18:41:29 +00:00
|
|
|
bool SemanticInformation::breaksCSEAnalysisBlock(AssemblyItem const& _item, bool _msizeImportant)
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
switch (_item.type())
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case UndefinedItem:
|
|
|
|
case Tag:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2020-03-10 13:30:04 +00:00
|
|
|
case AssignImmutable:
|
2021-03-17 18:37:39 +00:00
|
|
|
case VerbatimBytecode:
|
2015-04-24 15:35:16 +00:00
|
|
|
return true;
|
|
|
|
case Push:
|
|
|
|
case PushTag:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
|
|
|
case PushData:
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2020-03-10 13:30:04 +00:00
|
|
|
case PushImmutable:
|
2015-04-24 15:35:16 +00:00
|
|
|
return false;
|
2022-02-15 15:19:55 +00:00
|
|
|
case evmasm::Operation:
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
if (isSwapInstruction(_item) || isDupInstruction(_item))
|
|
|
|
return false;
|
|
|
|
if (_item.instruction() == Instruction::GAS || _item.instruction() == Instruction::PC)
|
|
|
|
return true; // GAS and PC assume a specific order of opcodes
|
|
|
|
if (_item.instruction() == Instruction::MSIZE)
|
|
|
|
return true; // msize is modified already by memory access, avoid that for now
|
2022-11-23 10:51:34 +00:00
|
|
|
InstructionInfo info = instructionInfo(_item.instruction(), langutil::EVMVersion());
|
2015-04-24 15:35:16 +00:00
|
|
|
if (_item.instruction() == Instruction::SSTORE)
|
|
|
|
return false;
|
|
|
|
if (_item.instruction() == Instruction::MSTORE)
|
|
|
|
return false;
|
2018-03-08 18:41:29 +00:00
|
|
|
if (!_msizeImportant && (
|
|
|
|
_item.instruction() == Instruction::MLOAD ||
|
|
|
|
_item.instruction() == Instruction::KECCAK256
|
|
|
|
))
|
|
|
|
return false;
|
2015-04-24 15:35:16 +00:00
|
|
|
//@todo: We do not handle the following memory instructions for now:
|
|
|
|
// calldatacopy, codecopy, extcodecopy, mstore8,
|
|
|
|
// msize (note that msize also depends on memory read access)
|
|
|
|
|
|
|
|
// the second requirement will be lifted once it is implemented
|
|
|
|
return info.sideEffects || info.args > 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::isCommutativeOperation(AssemblyItem const& _item)
|
|
|
|
{
|
2022-02-15 15:19:55 +00:00
|
|
|
if (_item.type() != evmasm::Operation)
|
2015-04-24 15:35:16 +00:00
|
|
|
return false;
|
|
|
|
switch (_item.instruction())
|
|
|
|
{
|
|
|
|
case Instruction::ADD:
|
|
|
|
case Instruction::MUL:
|
|
|
|
case Instruction::EQ:
|
|
|
|
case Instruction::AND:
|
|
|
|
case Instruction::OR:
|
|
|
|
case Instruction::XOR:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::isDupInstruction(AssemblyItem const& _item)
|
|
|
|
{
|
2022-02-15 15:19:55 +00:00
|
|
|
if (_item.type() != evmasm::Operation)
|
2015-04-24 15:35:16 +00:00
|
|
|
return false;
|
2019-12-11 16:31:36 +00:00
|
|
|
return evmasm::isDupInstruction(_item.instruction());
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::isSwapInstruction(AssemblyItem const& _item)
|
|
|
|
{
|
2022-02-15 15:19:55 +00:00
|
|
|
if (_item.type() != evmasm::Operation)
|
2015-04-24 15:35:16 +00:00
|
|
|
return false;
|
2019-12-11 16:31:36 +00:00
|
|
|
return evmasm::isSwapInstruction(_item.instruction());
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::isJumpInstruction(AssemblyItem const& _item)
|
|
|
|
{
|
2018-12-18 15:09:51 +00:00
|
|
|
return _item == Instruction::JUMP || _item == Instruction::JUMPI;
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::altersControlFlow(AssemblyItem const& _item)
|
|
|
|
{
|
2022-02-15 15:19:55 +00:00
|
|
|
if (_item.type() != evmasm::Operation)
|
2015-04-24 15:35:16 +00:00
|
|
|
return false;
|
|
|
|
switch (_item.instruction())
|
|
|
|
{
|
|
|
|
// note that CALL, CALLCODE and CREATE do not really alter the control flow, because we
|
2015-05-22 07:33:57 +00:00
|
|
|
// continue on the next instruction
|
2015-04-24 15:35:16 +00:00
|
|
|
case Instruction::JUMP:
|
|
|
|
case Instruction::JUMPI:
|
|
|
|
case Instruction::RETURN:
|
2017-02-06 18:35:18 +00:00
|
|
|
case Instruction::SELFDESTRUCT:
|
2015-04-24 15:35:16 +00:00
|
|
|
case Instruction::STOP:
|
2017-01-26 14:59:29 +00:00
|
|
|
case Instruction::INVALID:
|
2017-02-06 20:21:27 +00:00
|
|
|
case Instruction::REVERT:
|
2015-04-24 15:35:16 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-04-30 13:31:16 +00:00
|
|
|
|
2019-05-13 09:00:45 +00:00
|
|
|
bool SemanticInformation::terminatesControlFlow(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
2019-03-28 13:18:17 +00:00
|
|
|
{
|
|
|
|
case Instruction::RETURN:
|
|
|
|
case Instruction::SELFDESTRUCT:
|
|
|
|
case Instruction::STOP:
|
|
|
|
case Instruction::INVALID:
|
|
|
|
case Instruction::REVERT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-04-30 13:31:16 +00:00
|
|
|
|
2020-03-05 09:47:01 +00:00
|
|
|
bool SemanticInformation::reverts(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::INVALID:
|
|
|
|
case Instruction::REVERT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-30 13:31:16 +00:00
|
|
|
bool SemanticInformation::isDeterministic(AssemblyItem const& _item)
|
|
|
|
{
|
2021-03-17 18:37:39 +00:00
|
|
|
assertThrow(_item.type() != VerbatimBytecode, AssemblyException, "");
|
|
|
|
|
2022-02-15 15:19:55 +00:00
|
|
|
if (_item.type() != evmasm::Operation)
|
2015-04-30 13:31:16 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
switch (_item.instruction())
|
|
|
|
{
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
2016-03-03 15:56:22 +00:00
|
|
|
case Instruction::DELEGATECALL:
|
2017-06-08 14:44:03 +00:00
|
|
|
case Instruction::STATICCALL:
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::CREATE:
|
2017-04-20 20:36:53 +00:00
|
|
|
case Instruction::CREATE2:
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::GAS:
|
|
|
|
case Instruction::PC:
|
|
|
|
case Instruction::MSIZE: // depends on previous writes and reads, not only on content
|
|
|
|
case Instruction::BALANCE: // depends on previous calls
|
2019-09-02 13:23:45 +00:00
|
|
|
case Instruction::SELFBALANCE: // depends on previous calls
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::EXTCODESIZE:
|
2018-07-31 00:54:43 +00:00
|
|
|
case Instruction::EXTCODEHASH:
|
2017-05-17 11:29:42 +00:00
|
|
|
case Instruction::RETURNDATACOPY: // depends on previous calls
|
|
|
|
case Instruction::RETURNDATASIZE:
|
2015-04-30 13:31:16 +00:00
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 10:11:48 +00:00
|
|
|
bool SemanticInformation::movable(Instruction _instruction)
|
|
|
|
{
|
|
|
|
// These are not really functional.
|
|
|
|
if (isDupInstruction(_instruction) || isSwapInstruction(_instruction))
|
|
|
|
return false;
|
2022-11-23 10:51:34 +00:00
|
|
|
InstructionInfo info = instructionInfo(_instruction, langutil::EVMVersion());
|
2017-11-22 10:11:48 +00:00
|
|
|
if (info.sideEffects)
|
|
|
|
return false;
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::KECCAK256:
|
|
|
|
case Instruction::BALANCE:
|
2019-09-02 13:23:45 +00:00
|
|
|
case Instruction::SELFBALANCE:
|
2017-11-22 10:11:48 +00:00
|
|
|
case Instruction::EXTCODESIZE:
|
2018-07-31 00:54:43 +00:00
|
|
|
case Instruction::EXTCODEHASH:
|
2017-11-22 10:11:48 +00:00
|
|
|
case Instruction::RETURNDATASIZE:
|
|
|
|
case Instruction::SLOAD:
|
|
|
|
case Instruction::PC:
|
|
|
|
case Instruction::MSIZE:
|
|
|
|
case Instruction::GAS:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-01 10:07:00 +00:00
|
|
|
bool SemanticInformation::canBeRemoved(Instruction _instruction)
|
2019-05-13 16:36:25 +00:00
|
|
|
{
|
|
|
|
// These are not really functional.
|
|
|
|
assertThrow(!isDupInstruction(_instruction) && !isSwapInstruction(_instruction), AssemblyException, "");
|
|
|
|
|
2022-11-23 10:51:34 +00:00
|
|
|
return !instructionInfo(_instruction, langutil::EVMVersion()).sideEffects;
|
2019-05-27 11:11:00 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 10:07:00 +00:00
|
|
|
bool SemanticInformation::canBeRemovedIfNoMSize(Instruction _instruction)
|
2019-05-27 11:11:00 +00:00
|
|
|
{
|
|
|
|
if (_instruction == Instruction::KECCAK256 || _instruction == Instruction::MLOAD)
|
2019-05-13 16:36:25 +00:00
|
|
|
return true;
|
2019-05-27 11:11:00 +00:00
|
|
|
else
|
2020-07-01 10:07:00 +00:00
|
|
|
return canBeRemoved(_instruction);
|
2019-05-13 16:36:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 10:07:00 +00:00
|
|
|
SemanticInformation::Effect SemanticInformation::memory(Instruction _instruction)
|
2015-04-30 13:31:16 +00:00
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::CALLDATACOPY:
|
|
|
|
case Instruction::CODECOPY:
|
|
|
|
case Instruction::EXTCODECOPY:
|
2017-05-17 11:29:42 +00:00
|
|
|
case Instruction::RETURNDATACOPY:
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::MSTORE:
|
|
|
|
case Instruction::MSTORE8:
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
2016-03-03 15:56:22 +00:00
|
|
|
case Instruction::DELEGATECALL:
|
2017-06-08 14:44:03 +00:00
|
|
|
case Instruction::STATICCALL:
|
2020-07-01 10:07:00 +00:00
|
|
|
return SemanticInformation::Write;
|
|
|
|
|
|
|
|
case Instruction::CREATE:
|
|
|
|
case Instruction::CREATE2:
|
|
|
|
case Instruction::KECCAK256:
|
|
|
|
case Instruction::MLOAD:
|
|
|
|
case Instruction::MSIZE:
|
|
|
|
case Instruction::RETURN:
|
|
|
|
case Instruction::REVERT:
|
|
|
|
case Instruction::LOG0:
|
|
|
|
case Instruction::LOG1:
|
|
|
|
case Instruction::LOG2:
|
|
|
|
case Instruction::LOG3:
|
|
|
|
case Instruction::LOG4:
|
|
|
|
return SemanticInformation::Read;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return SemanticInformation::None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::movableApartFromEffects(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::EXTCODEHASH:
|
|
|
|
case Instruction::EXTCODESIZE:
|
|
|
|
case Instruction::RETURNDATASIZE:
|
|
|
|
case Instruction::BALANCE:
|
|
|
|
case Instruction::SELFBALANCE:
|
|
|
|
case Instruction::SLOAD:
|
|
|
|
case Instruction::KECCAK256:
|
|
|
|
case Instruction::MLOAD:
|
2015-04-30 13:31:16 +00:00
|
|
|
return true;
|
2020-07-01 10:07:00 +00:00
|
|
|
|
2015-04-30 13:31:16 +00:00
|
|
|
default:
|
2020-07-01 10:07:00 +00:00
|
|
|
return movable(_instruction);
|
2015-04-30 13:31:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 10:07:00 +00:00
|
|
|
SemanticInformation::Effect SemanticInformation::storage(Instruction _instruction)
|
2015-04-30 13:31:16 +00:00
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
2016-03-03 15:56:22 +00:00
|
|
|
case Instruction::DELEGATECALL:
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::CREATE:
|
2017-04-20 20:36:53 +00:00
|
|
|
case Instruction::CREATE2:
|
2015-04-30 13:31:16 +00:00
|
|
|
case Instruction::SSTORE:
|
2020-07-01 10:07:00 +00:00
|
|
|
return SemanticInformation::Write;
|
|
|
|
|
|
|
|
case Instruction::SLOAD:
|
|
|
|
case Instruction::STATICCALL:
|
|
|
|
return SemanticInformation::Read;
|
|
|
|
|
2015-04-30 13:31:16 +00:00
|
|
|
default:
|
2020-07-01 10:07:00 +00:00
|
|
|
return SemanticInformation::None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SemanticInformation::Effect SemanticInformation::otherState(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
|
|
|
case Instruction::DELEGATECALL:
|
|
|
|
case Instruction::CREATE:
|
|
|
|
case Instruction::CREATE2:
|
|
|
|
case Instruction::SELFDESTRUCT:
|
|
|
|
case Instruction::STATICCALL: // because it can affect returndatasize
|
|
|
|
// Strictly speaking, log0, .., log4 writes to the state, but the EVM cannot read it, so they
|
|
|
|
// are just marked as having 'other side effects.'
|
|
|
|
return SemanticInformation::Write;
|
|
|
|
|
|
|
|
case Instruction::EXTCODESIZE:
|
|
|
|
case Instruction::EXTCODEHASH:
|
|
|
|
case Instruction::RETURNDATASIZE:
|
|
|
|
case Instruction::BALANCE:
|
|
|
|
case Instruction::SELFBALANCE:
|
|
|
|
case Instruction::RETURNDATACOPY:
|
|
|
|
case Instruction::EXTCODECOPY:
|
|
|
|
// PC and GAS are specifically excluded here. Instructions such as CALLER, CALLVALUE,
|
|
|
|
// ADDRESS are excluded because they cannot change during execution.
|
|
|
|
return SemanticInformation::Read;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return SemanticInformation::None;
|
2015-04-30 13:31:16 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-31 11:13:05 +00:00
|
|
|
|
2017-09-13 15:18:22 +00:00
|
|
|
bool SemanticInformation::invalidInPureFunctions(Instruction _instruction)
|
2017-08-31 11:13:05 +00:00
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::ADDRESS:
|
2019-09-02 13:23:45 +00:00
|
|
|
case Instruction::SELFBALANCE:
|
2017-08-31 11:13:05 +00:00
|
|
|
case Instruction::BALANCE:
|
|
|
|
case Instruction::ORIGIN:
|
|
|
|
case Instruction::CALLER:
|
|
|
|
case Instruction::CALLVALUE:
|
2020-12-09 15:00:02 +00:00
|
|
|
case Instruction::CHAINID:
|
2021-07-12 14:48:18 +00:00
|
|
|
case Instruction::BASEFEE:
|
2017-10-16 11:28:44 +00:00
|
|
|
case Instruction::GAS:
|
2017-08-31 11:13:05 +00:00
|
|
|
case Instruction::GASPRICE:
|
|
|
|
case Instruction::EXTCODESIZE:
|
|
|
|
case Instruction::EXTCODECOPY:
|
2018-07-31 00:54:43 +00:00
|
|
|
case Instruction::EXTCODEHASH:
|
2017-08-31 11:13:05 +00:00
|
|
|
case Instruction::BLOCKHASH:
|
|
|
|
case Instruction::COINBASE:
|
|
|
|
case Instruction::TIMESTAMP:
|
|
|
|
case Instruction::NUMBER:
|
2022-11-23 10:51:34 +00:00
|
|
|
case Instruction::PREVRANDAO:
|
2017-08-31 11:13:05 +00:00
|
|
|
case Instruction::GASLIMIT:
|
2017-08-31 11:13:35 +00:00
|
|
|
case Instruction::STATICCALL:
|
2017-08-31 11:13:05 +00:00
|
|
|
case Instruction::SLOAD:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return invalidInViewFunctions(_instruction);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SemanticInformation::invalidInViewFunctions(Instruction _instruction)
|
|
|
|
{
|
|
|
|
switch (_instruction)
|
|
|
|
{
|
|
|
|
case Instruction::SSTORE:
|
|
|
|
case Instruction::JUMP:
|
|
|
|
case Instruction::JUMPI:
|
|
|
|
case Instruction::LOG0:
|
|
|
|
case Instruction::LOG1:
|
|
|
|
case Instruction::LOG2:
|
|
|
|
case Instruction::LOG3:
|
|
|
|
case Instruction::LOG4:
|
|
|
|
case Instruction::CREATE:
|
|
|
|
case Instruction::CALL:
|
|
|
|
case Instruction::CALLCODE:
|
|
|
|
case Instruction::DELEGATECALL:
|
|
|
|
case Instruction::CREATE2:
|
|
|
|
case Instruction::SELFDESTRUCT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|