2018-02-02 14:23:44 +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/>.
|
|
|
|
*/
|
|
|
|
/**
|
2018-06-06 04:43:58 +00:00
|
|
|
* Base class to perform data flow analysis during AST walks.
|
2018-02-02 14:23:44 +00:00
|
|
|
* Tracks assignments and is used as base class for both Rematerialiser and
|
|
|
|
* Common Subexpression Eliminator.
|
|
|
|
*/
|
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/DataFlowAnalyzer.h>
|
2018-02-02 14:23:44 +00:00
|
|
|
|
2018-10-15 09:52:35 +00:00
|
|
|
#include <libyul/optimiser/NameCollector.h>
|
|
|
|
#include <libyul/optimiser/Semantics.h>
|
|
|
|
#include <libyul/Exceptions.h>
|
2018-11-23 10:18:57 +00:00
|
|
|
#include <libyul/AsmData.h>
|
2019-05-21 13:52:15 +00:00
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
2018-02-02 14:23:44 +00:00
|
|
|
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
|
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
2019-05-21 13:52:15 +00:00
|
|
|
#include <boost/range/algorithm_ext/erase.hpp>
|
2018-02-02 14:23:44 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2018-11-21 11:42:34 +00:00
|
|
|
using namespace yul;
|
2018-02-02 14:23:44 +00:00
|
|
|
|
2019-05-21 13:52:15 +00:00
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(ExpressionStatement& _statement)
|
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
if (auto vars = isSimpleStore(dev::eth::Instruction::SSTORE, _statement))
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
|
|
|
ASTModifier::operator()(_statement);
|
|
|
|
set<YulString> keysToErase;
|
|
|
|
for (auto const& item: m_storage.values)
|
|
|
|
if (!(
|
|
|
|
m_knowledgeBase.knownToBeDifferent(vars->first, item.first) ||
|
|
|
|
m_knowledgeBase.knownToBeEqual(vars->second, item.second)
|
|
|
|
))
|
|
|
|
keysToErase.insert(item.first);
|
|
|
|
for (YulString const& key: keysToErase)
|
|
|
|
m_storage.eraseKey(key);
|
2019-08-13 16:42:51 +00:00
|
|
|
m_storage.set(vars->first, vars->second);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
2019-05-27 22:14:01 +00:00
|
|
|
else if (auto vars = isSimpleStore(dev::eth::Instruction::MSTORE, _statement))
|
|
|
|
{
|
|
|
|
ASTModifier::operator()(_statement);
|
|
|
|
set<YulString> keysToErase;
|
|
|
|
for (auto const& item: m_memory.values)
|
|
|
|
if (!m_knowledgeBase.knownToBeDifferentByAtLeast32(vars->first, item.first))
|
|
|
|
keysToErase.insert(item.first);
|
|
|
|
for (YulString const& key: keysToErase)
|
|
|
|
m_memory.eraseKey(key);
|
2019-08-13 16:42:51 +00:00
|
|
|
m_memory.set(vars->first, vars->second);
|
2019-05-27 22:14:01 +00:00
|
|
|
}
|
2019-05-21 13:52:15 +00:00
|
|
|
else
|
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(_statement.expression);
|
2019-05-21 13:52:15 +00:00
|
|
|
ASTModifier::operator()(_statement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
void DataFlowAnalyzer::operator()(Assignment& _assignment)
|
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
set<YulString> names;
|
2018-02-02 14:23:44 +00:00
|
|
|
for (auto const& var: _assignment.variableNames)
|
2018-10-29 14:12:02 +00:00
|
|
|
names.emplace(var.name);
|
2018-05-09 09:43:14 +00:00
|
|
|
assertThrow(_assignment.value, OptimizerException, "");
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_assignment.value);
|
2018-02-02 14:23:44 +00:00
|
|
|
visit(*_assignment.value);
|
|
|
|
handleAssignment(names, _assignment.value.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(VariableDeclaration& _varDecl)
|
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
set<YulString> names;
|
2018-02-02 14:23:44 +00:00
|
|
|
for (auto const& var: _varDecl.variables)
|
2018-10-29 14:12:02 +00:00
|
|
|
names.emplace(var.name);
|
2018-02-05 17:02:32 +00:00
|
|
|
m_variableScopes.back().variables += names;
|
2019-01-09 13:05:03 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
if (_varDecl.value)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_varDecl.value);
|
2018-02-02 14:23:44 +00:00
|
|
|
visit(*_varDecl.value);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
2019-01-09 13:05:03 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
handleAssignment(names, _varDecl.value.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(If& _if)
|
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_if.condition);
|
2019-05-21 13:52:15 +00:00
|
|
|
InvertibleMap<YulString, YulString> storage = m_storage;
|
2019-05-27 22:14:01 +00:00
|
|
|
InvertibleMap<YulString, YulString> memory = m_memory;
|
2019-05-21 13:52:15 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
ASTModifier::operator()(_if);
|
|
|
|
|
2019-05-27 22:14:01 +00:00
|
|
|
joinKnowledge(storage, memory);
|
2019-05-21 13:52:15 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
Assignments assignments;
|
|
|
|
assignments(_if.body);
|
|
|
|
clearValues(assignments.names());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(Switch& _switch)
|
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_switch.expression);
|
2018-02-02 14:23:44 +00:00
|
|
|
visit(*_switch.expression);
|
2018-10-29 14:12:02 +00:00
|
|
|
set<YulString> assignedVariables;
|
2018-02-02 14:23:44 +00:00
|
|
|
for (auto& _case: _switch.cases)
|
|
|
|
{
|
2019-05-21 13:52:15 +00:00
|
|
|
InvertibleMap<YulString, YulString> storage = m_storage;
|
2019-05-27 22:14:01 +00:00
|
|
|
InvertibleMap<YulString, YulString> memory = m_memory;
|
2018-02-02 14:23:44 +00:00
|
|
|
(*this)(_case.body);
|
2019-05-27 22:14:01 +00:00
|
|
|
joinKnowledge(storage, memory);
|
2019-05-21 13:52:15 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
Assignments assignments;
|
|
|
|
assignments(_case.body);
|
|
|
|
assignedVariables += assignments.names();
|
|
|
|
// This is a little too destructive, we could retain the old values.
|
|
|
|
clearValues(assignments.names());
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(_case.body);
|
2018-02-02 14:23:44 +00:00
|
|
|
}
|
2019-05-21 13:52:15 +00:00
|
|
|
for (auto& _case: _switch.cases)
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(_case.body);
|
2018-02-02 14:23:44 +00:00
|
|
|
clearValues(assignedVariables);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(FunctionDefinition& _fun)
|
|
|
|
{
|
2018-10-28 11:57:13 +00:00
|
|
|
// Save all information. We might rather reinstantiate this class,
|
|
|
|
// but this could be difficult if it is subclassed.
|
|
|
|
map<YulString, Expression const*> value;
|
2019-05-27 18:27:06 +00:00
|
|
|
InvertibleRelation<YulString> references;
|
2019-05-21 13:52:15 +00:00
|
|
|
InvertibleMap<YulString, YulString> storage;
|
2019-05-27 22:14:01 +00:00
|
|
|
InvertibleMap<YulString, YulString> memory;
|
2018-10-28 11:57:13 +00:00
|
|
|
m_value.swap(value);
|
2019-05-27 18:27:06 +00:00
|
|
|
swap(m_references, references);
|
2019-05-21 13:52:15 +00:00
|
|
|
swap(m_storage, storage);
|
2019-05-27 22:14:01 +00:00
|
|
|
swap(m_memory, memory);
|
2018-10-18 12:45:11 +00:00
|
|
|
pushScope(true);
|
2018-10-28 11:57:13 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
for (auto const& parameter: _fun.parameters)
|
2018-10-29 14:12:02 +00:00
|
|
|
m_variableScopes.back().variables.emplace(parameter.name);
|
2018-02-02 14:23:44 +00:00
|
|
|
for (auto const& var: _fun.returnVariables)
|
2018-12-13 11:33:03 +00:00
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
m_variableScopes.back().variables.emplace(var.name);
|
2018-12-13 11:33:03 +00:00
|
|
|
handleAssignment({var.name}, nullptr);
|
|
|
|
}
|
2018-02-02 14:23:44 +00:00
|
|
|
ASTModifier::operator()(_fun);
|
2018-10-28 11:57:13 +00:00
|
|
|
|
2018-10-18 12:45:11 +00:00
|
|
|
popScope();
|
2018-10-28 11:57:13 +00:00
|
|
|
m_value.swap(value);
|
2019-05-27 18:27:06 +00:00
|
|
|
swap(m_references, references);
|
2019-05-21 13:52:15 +00:00
|
|
|
swap(m_storage, storage);
|
2019-05-27 22:14:01 +00:00
|
|
|
swap(m_memory, memory);
|
2018-02-02 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::operator()(ForLoop& _for)
|
|
|
|
{
|
2019-04-05 18:38:23 +00:00
|
|
|
// If the pre block was not empty,
|
|
|
|
// we would have to deal with more complicated scoping rules.
|
|
|
|
assertThrow(_for.pre.statements.empty(), OptimizerException, "");
|
2018-02-02 14:23:44 +00:00
|
|
|
|
2019-03-11 15:06:43 +00:00
|
|
|
AssignmentsSinceContinue assignmentsSinceCont;
|
|
|
|
assignmentsSinceCont(_for.body);
|
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
Assignments assignments;
|
|
|
|
assignments(_for.body);
|
|
|
|
assignments(_for.post);
|
|
|
|
clearValues(assignments.names());
|
|
|
|
|
2019-05-21 13:52:15 +00:00
|
|
|
// break/continue are tricky for storage and thus we almost always clear here.
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_for.condition);
|
|
|
|
clearKnowledgeIfInvalidated(_for.post);
|
|
|
|
clearKnowledgeIfInvalidated(_for.body);
|
2019-05-21 13:52:15 +00:00
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
visit(*_for.condition);
|
|
|
|
(*this)(_for.body);
|
2019-03-11 15:06:43 +00:00
|
|
|
clearValues(assignmentsSinceCont.names());
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(_for.body);
|
2018-02-02 14:23:44 +00:00
|
|
|
(*this)(_for.post);
|
|
|
|
clearValues(assignments.names());
|
2019-05-27 22:14:01 +00:00
|
|
|
clearKnowledgeIfInvalidated(*_for.condition);
|
|
|
|
clearKnowledgeIfInvalidated(_for.post);
|
|
|
|
clearKnowledgeIfInvalidated(_for.body);
|
2019-03-04 14:38:05 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 14:23:44 +00:00
|
|
|
void DataFlowAnalyzer::operator()(Block& _block)
|
|
|
|
{
|
|
|
|
size_t numScopes = m_variableScopes.size();
|
2018-10-18 12:45:11 +00:00
|
|
|
pushScope(false);
|
2018-02-02 14:23:44 +00:00
|
|
|
ASTModifier::operator()(_block);
|
2018-10-18 12:45:11 +00:00
|
|
|
popScope();
|
2018-05-09 09:43:14 +00:00
|
|
|
assertThrow(numScopes == m_variableScopes.size(), OptimizerException, "");
|
2018-02-02 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
void DataFlowAnalyzer::handleAssignment(set<YulString> const& _variables, Expression* _value)
|
2018-02-02 14:23:44 +00:00
|
|
|
{
|
|
|
|
clearValues(_variables);
|
|
|
|
|
2019-08-13 16:38:11 +00:00
|
|
|
MovableChecker movableChecker{m_dialect, &m_functionSideEffects};
|
2018-02-02 14:23:44 +00:00
|
|
|
if (_value)
|
|
|
|
movableChecker.visit(*_value);
|
2018-12-11 23:49:36 +00:00
|
|
|
else
|
|
|
|
for (auto const& var: _variables)
|
2019-04-24 12:03:09 +00:00
|
|
|
m_value[var] = &m_zero;
|
2018-12-11 23:49:36 +00:00
|
|
|
|
|
|
|
if (_value && _variables.size() == 1)
|
2018-02-02 14:23:44 +00:00
|
|
|
{
|
2018-10-29 14:12:02 +00:00
|
|
|
YulString name = *_variables.begin();
|
2018-02-02 14:23:44 +00:00
|
|
|
// Expression has to be movable and cannot contain a reference
|
|
|
|
// to the variable that will be assigned to.
|
2018-12-11 23:49:36 +00:00
|
|
|
if (movableChecker.movable() && !movableChecker.referencedVariables().count(name))
|
2018-02-02 14:23:44 +00:00
|
|
|
m_value[name] = _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const& referencedVariables = movableChecker.referencedVariables();
|
|
|
|
for (auto const& name: _variables)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-05-27 18:27:06 +00:00
|
|
|
m_references.set(name, referencedVariables);
|
2019-05-21 13:52:15 +00:00
|
|
|
// assignment to slot denoted by "name"
|
|
|
|
m_storage.eraseKey(name);
|
|
|
|
// assignment to slot contents denoted by "name"
|
|
|
|
m_storage.eraseValue(name);
|
2019-05-27 22:14:01 +00:00
|
|
|
// assignment to slot denoted by "name"
|
|
|
|
m_memory.eraseKey(name);
|
|
|
|
// assignment to slot contents denoted by "name"
|
|
|
|
m_memory.eraseValue(name);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
2018-02-02 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 12:45:11 +00:00
|
|
|
void DataFlowAnalyzer::pushScope(bool _functionScope)
|
|
|
|
{
|
|
|
|
m_variableScopes.emplace_back(_functionScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::popScope()
|
|
|
|
{
|
|
|
|
clearValues(std::move(m_variableScopes.back().variables));
|
|
|
|
m_variableScopes.pop_back();
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
void DataFlowAnalyzer::clearValues(set<YulString> _variables)
|
2018-02-02 14:23:44 +00:00
|
|
|
{
|
|
|
|
// All variables that reference variables to be cleared also have to be
|
|
|
|
// cleared, but not recursively, since only the value of the original
|
|
|
|
// variables changes. Example:
|
|
|
|
// let a := 1
|
|
|
|
// let b := a
|
|
|
|
// let c := b
|
|
|
|
// let a := 2
|
|
|
|
// add(b, c)
|
|
|
|
// In the last line, we can replace c by b, but not b by a.
|
|
|
|
//
|
|
|
|
// This cannot be easily tested since the substitutions will be done
|
|
|
|
// one by one on the fly, and the last line will just be add(1, 1)
|
|
|
|
|
2019-05-21 13:52:15 +00:00
|
|
|
// First clear storage knowledge, because we do not have to clear
|
|
|
|
// storage knowledge of variables whose expression has changed,
|
|
|
|
// since the value is still unchanged.
|
|
|
|
for (auto const& name: _variables)
|
|
|
|
{
|
|
|
|
// clear slot denoted by "name"
|
|
|
|
m_storage.eraseKey(name);
|
|
|
|
// clear slot contents denoted by "name"
|
|
|
|
m_storage.eraseValue(name);
|
2019-05-27 22:14:01 +00:00
|
|
|
// assignment to slot denoted by "name"
|
|
|
|
m_memory.eraseKey(name);
|
|
|
|
// assignment to slot contents denoted by "name"
|
|
|
|
m_memory.eraseValue(name);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Also clear variables that reference variables to be cleared.
|
2018-10-18 12:45:11 +00:00
|
|
|
for (auto const& name: _variables)
|
2019-05-27 18:27:06 +00:00
|
|
|
for (auto const& ref: m_references.backward[name])
|
2018-10-29 14:12:02 +00:00
|
|
|
_variables.emplace(ref);
|
2018-02-02 14:23:44 +00:00
|
|
|
|
|
|
|
// Clear the value and update the reference relation.
|
2018-10-18 12:45:11 +00:00
|
|
|
for (auto const& name: _variables)
|
2018-02-02 14:23:44 +00:00
|
|
|
m_value.erase(name);
|
2018-10-18 12:45:11 +00:00
|
|
|
for (auto const& name: _variables)
|
2019-05-27 18:27:06 +00:00
|
|
|
m_references.eraseKey(name);
|
2018-02-02 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 22:14:01 +00:00
|
|
|
void DataFlowAnalyzer::clearKnowledgeIfInvalidated(Block const& _block)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-09-02 12:22:53 +00:00
|
|
|
SideEffectsCollector sideEffects(m_dialect, _block, &m_functionSideEffects);
|
2019-05-27 22:14:01 +00:00
|
|
|
if (sideEffects.invalidatesStorage())
|
2019-05-21 13:52:15 +00:00
|
|
|
m_storage.clear();
|
2019-05-27 22:14:01 +00:00
|
|
|
if (sideEffects.invalidatesMemory())
|
|
|
|
m_memory.clear();
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 22:14:01 +00:00
|
|
|
void DataFlowAnalyzer::clearKnowledgeIfInvalidated(Expression const& _expr)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-09-02 12:22:53 +00:00
|
|
|
SideEffectsCollector sideEffects(m_dialect, _expr, &m_functionSideEffects);
|
2019-05-27 22:14:01 +00:00
|
|
|
if (sideEffects.invalidatesStorage())
|
2019-05-21 13:52:15 +00:00
|
|
|
m_storage.clear();
|
2019-05-27 22:14:01 +00:00
|
|
|
if (sideEffects.invalidatesMemory())
|
|
|
|
m_memory.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataFlowAnalyzer::joinKnowledge(
|
|
|
|
InvertibleMap<YulString, YulString> const& _olderStorage,
|
|
|
|
InvertibleMap<YulString, YulString> const& _olderMemory
|
|
|
|
)
|
|
|
|
{
|
|
|
|
joinKnowledgeHelper(m_storage, _olderStorage);
|
|
|
|
joinKnowledgeHelper(m_memory, _olderMemory);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 22:14:01 +00:00
|
|
|
void DataFlowAnalyzer::joinKnowledgeHelper(
|
|
|
|
InvertibleMap<YulString, YulString>& _this,
|
|
|
|
InvertibleMap<YulString, YulString> const& _older
|
|
|
|
)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
// We clear if the key does not exist in the older map or if the value is different.
|
|
|
|
// This also works for memory because _older is an "older version"
|
|
|
|
// of m_memory and thus any overlapping write would have cleared the keys
|
|
|
|
// that are not known to be different inside m_memory already.
|
2019-05-21 13:52:15 +00:00
|
|
|
set<YulString> keysToErase;
|
2019-05-27 22:14:01 +00:00
|
|
|
for (auto const& item: _this.values)
|
2019-05-21 13:52:15 +00:00
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
auto it = _older.values.find(item.first);
|
|
|
|
if (it == _older.values.end() || it->second != item.second)
|
2019-05-21 13:52:15 +00:00
|
|
|
keysToErase.insert(item.first);
|
|
|
|
}
|
|
|
|
for (auto const& key: keysToErase)
|
2019-05-27 22:14:01 +00:00
|
|
|
_this.eraseKey(key);
|
2019-05-21 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
bool DataFlowAnalyzer::inScope(YulString _variableName) const
|
2018-02-02 14:23:44 +00:00
|
|
|
{
|
|
|
|
for (auto const& scope: m_variableScopes | boost::adaptors::reversed)
|
|
|
|
{
|
2018-02-05 17:02:32 +00:00
|
|
|
if (scope.variables.count(_variableName))
|
2018-02-02 14:23:44 +00:00
|
|
|
return true;
|
2018-02-05 17:02:32 +00:00
|
|
|
if (scope.isFunction)
|
2018-02-02 14:23:44 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-21 13:52:15 +00:00
|
|
|
|
2019-05-27 22:14:01 +00:00
|
|
|
boost::optional<pair<YulString, YulString>> DataFlowAnalyzer::isSimpleStore(
|
|
|
|
dev::eth::Instruction _store,
|
2019-05-21 13:52:15 +00:00
|
|
|
ExpressionStatement const& _statement
|
|
|
|
) const
|
|
|
|
{
|
2019-05-27 22:14:01 +00:00
|
|
|
yulAssert(
|
|
|
|
_store == dev::eth::Instruction::MSTORE ||
|
|
|
|
_store == dev::eth::Instruction::SSTORE,
|
|
|
|
""
|
|
|
|
);
|
2019-05-21 13:52:15 +00:00
|
|
|
if (_statement.expression.type() == typeid(FunctionCall))
|
|
|
|
{
|
|
|
|
FunctionCall const& funCall = boost::get<FunctionCall>(_statement.expression);
|
|
|
|
if (EVMDialect const* dialect = dynamic_cast<EVMDialect const*>(&m_dialect))
|
|
|
|
if (auto const* builtin = dialect->builtin(funCall.functionName.name))
|
2019-05-27 22:14:01 +00:00
|
|
|
if (builtin->instruction == _store)
|
2019-05-21 13:52:15 +00:00
|
|
|
if (
|
|
|
|
funCall.arguments.at(0).type() == typeid(Identifier) &&
|
|
|
|
funCall.arguments.at(1).type() == typeid(Identifier)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
YulString key = boost::get<Identifier>(funCall.arguments.at(0)).name;
|
|
|
|
YulString value = boost::get<Identifier>(funCall.arguments.at(1)).name;
|
|
|
|
return make_pair(key, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|