solidity/libyul/AsmAnalysis.cpp

734 lines
20 KiB
C++
Raw Normal View History

2017-02-15 13:52:53 +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/>.
*/
/**
* Analyzer part of inline assembly.
*/
#include <libyul/AsmAnalysis.h>
2017-02-15 13:52:53 +00:00
#include <libyul/AsmData.h>
#include <libyul/AsmScopeFiller.h>
#include <libyul/AsmScope.h>
#include <libyul/AsmAnalysisInfo.h>
#include <libyul/Utilities.h>
#include <libyul/Exceptions.h>
2017-02-15 13:52:53 +00:00
#include <liblangutil/ErrorReporter.h>
2017-02-15 13:52:53 +00:00
#include <boost/range/adaptor/reversed.hpp>
#include <boost/algorithm/string.hpp>
2017-02-15 13:52:53 +00:00
#include <memory>
#include <functional>
#include <utility>
2017-02-15 13:52:53 +00:00
using namespace std;
using namespace dev;
using namespace langutil;
using namespace yul;
using namespace dev;
2017-02-15 13:52:53 +00:00
using namespace dev::solidity;
2017-05-26 19:43:28 +00:00
namespace {
set<string> const builtinTypes{"bool", "u8", "s8", "u32", "s32", "u64", "s64", "u128", "s128", "u256", "s256"};
}
bool AsmAnalyzer::analyze(Block const& _block)
2017-02-15 13:52:53 +00:00
{
if (!(ScopeFiller(m_info, m_errorReporter))(_block))
2017-02-15 13:52:53 +00:00
return false;
bool success = (*this)(_block);
if (!success)
solAssert(m_errorReporter.hasErrors(), "No success but no error.");
return success && !m_errorReporter.hasErrors();
2017-02-15 13:52:53 +00:00
}
2019-01-29 14:01:30 +00:00
AsmAnalysisInfo AsmAnalyzer::analyzeStrictAssertCorrect(
shared_ptr<Dialect> _dialect,
Block const& _ast
)
{
ErrorList errorList;
langutil::ErrorReporter errors(errorList);
yul::AsmAnalysisInfo analysisInfo;
bool success = yul::AsmAnalyzer(
analysisInfo,
errors,
Error::Type::SyntaxError,
_dialect
).analyze(_ast);
solAssert(success && errorList.empty(), "Invalid assembly/yul code.");
return analysisInfo;
}
bool AsmAnalyzer::operator()(Label const& _label)
2017-04-26 10:34:24 +00:00
{
solAssert(!_label.name.empty(), "");
checkLooseFeature(
_label.location,
"The use of labels is disallowed. Please use \"if\", \"switch\", \"for\" or function calls instead."
);
m_info.stackHeightInfo[&_label] = m_stackHeight;
2017-12-05 10:44:28 +00:00
warnOnInstructions(solidity::Instruction::JUMPDEST, _label.location);
return true;
2017-04-26 10:34:24 +00:00
}
bool AsmAnalyzer::operator()(yul::Instruction const& _instruction)
{
checkLooseFeature(
_instruction.location,
"The use of non-functional instructions is disallowed. Please use functional notation instead."
);
auto const& info = instructionInfo(_instruction.instruction);
m_stackHeight += info.ret - info.args;
m_info.stackHeightInfo[&_instruction] = m_stackHeight;
2017-06-13 18:10:26 +00:00
warnOnInstructions(_instruction.instruction, _instruction.location);
return true;
}
bool AsmAnalyzer::operator()(Literal const& _literal)
2017-02-16 22:44:22 +00:00
{
expectValidType(_literal.type.str(), _literal.location);
++m_stackHeight;
if (_literal.kind == LiteralKind::String && _literal.value.str().size() > 32)
{
m_errorReporter.typeError(
_literal.location,
"String literal too long (" + to_string(_literal.value.str().size()) + " > 32)"
);
2017-02-16 22:44:22 +00:00
return false;
}
else if (_literal.kind == LiteralKind::Number && bigint(_literal.value.str()) > u256(-1))
{
m_errorReporter.typeError(
_literal.location,
"Number literal too large (> 256 bits)"
);
return false;
}
else if (_literal.kind == LiteralKind::Boolean)
{
2018-12-06 23:56:16 +00:00
solAssert(m_dialect->flavour == AsmFlavour::Yul, "");
solAssert(_literal.value == "true"_yulstring || _literal.value == "false"_yulstring, "");
}
m_info.stackHeightInfo[&_literal] = m_stackHeight;
2017-02-16 22:44:22 +00:00
return true;
}
bool AsmAnalyzer::operator()(Identifier const& _identifier)
2017-02-15 13:52:53 +00:00
{
solAssert(!_identifier.name.empty(), "");
size_t numErrorsBefore = m_errorReporter.errors().size();
bool success = true;
if (m_currentScope->lookup(_identifier.name, Scope::Visitor(
[&](Scope::Variable const& _var)
2017-02-17 11:03:55 +00:00
{
if (!m_activeVariables.count(&_var))
{
m_errorReporter.declarationError(
_identifier.location,
"Variable " + _identifier.name.str() + " used before it was declared."
);
success = false;
}
++m_stackHeight;
},
[&](Scope::Label const&)
{
++m_stackHeight;
},
[&](Scope::Function const&)
{
m_errorReporter.typeError(
_identifier.location,
"Function " + _identifier.name.str() + " used without being called."
);
success = false;
2017-02-17 11:03:55 +00:00
}
)))
{
2017-02-17 11:03:55 +00:00
}
else
2017-02-15 13:52:53 +00:00
{
size_t stackSize(-1);
if (m_resolver)
{
bool insideFunction = m_currentScope->insideFunction();
stackSize = m_resolver(_identifier, yul::IdentifierContext::RValue, insideFunction);
}
if (stackSize == size_t(-1))
{
2017-04-25 11:15:42 +00:00
// Only add an error message if the callback did not do it.
if (numErrorsBefore == m_errorReporter.errors().size())
m_errorReporter.declarationError(_identifier.location, "Identifier not found.");
success = false;
}
m_stackHeight += stackSize == size_t(-1) ? 1 : stackSize;
2017-02-15 13:52:53 +00:00
}
m_info.stackHeightInfo[&_identifier] = m_stackHeight;
return success;
2017-02-15 13:52:53 +00:00
}
bool AsmAnalyzer::operator()(FunctionalInstruction const& _instr)
{
2018-12-06 23:56:16 +00:00
solAssert(m_dialect->flavour != AsmFlavour::Yul, "");
2017-02-15 13:52:53 +00:00
bool success = true;
for (auto const& arg: _instr.arguments | boost::adaptors::reversed)
if (!expectExpression(arg))
success = false;
// Parser already checks that the number of arguments is correct.
auto const& info = instructionInfo(_instr.instruction);
solAssert(info.args == int(_instr.arguments.size()), "");
m_stackHeight += info.ret - info.args;
m_info.stackHeightInfo[&_instr] = m_stackHeight;
warnOnInstructions(_instr.instruction, _instr.location);
2017-02-15 13:52:53 +00:00
return success;
}
bool AsmAnalyzer::operator()(ExpressionStatement const& _statement)
2017-12-08 13:01:22 +00:00
{
int initialStackHeight = m_stackHeight;
2017-12-08 13:01:22 +00:00
bool success = boost::apply_visitor(*this, _statement.expression);
2018-12-06 23:56:16 +00:00
if (m_stackHeight != initialStackHeight && (m_dialect->flavour != AsmFlavour::Loose || m_errorTypeForLoose))
{
2018-12-06 23:56:16 +00:00
Error::Type errorType = m_dialect->flavour == AsmFlavour::Loose ? *m_errorTypeForLoose : Error::Type::TypeError;
string msg =
"Top-level expressions are not supposed to return values (this expression returns " +
to_string(m_stackHeight - initialStackHeight) +
" value" +
(m_stackHeight - initialStackHeight == 1 ? "" : "s") +
"). Use ``pop()`` or assign them.";
m_errorReporter.error(errorType, _statement.location, msg);
if (errorType != Error::Type::Warning)
success = false;
}
2017-12-08 13:01:22 +00:00
m_info.stackHeightInfo[&_statement] = m_stackHeight;
return success;
}
bool AsmAnalyzer::operator()(StackAssignment const& _assignment)
2017-02-15 13:52:53 +00:00
{
checkLooseFeature(
_assignment.location,
"The use of stack assignment is disallowed. Please use assignment in functional notation instead."
);
2017-04-26 10:34:24 +00:00
bool success = checkAssignment(_assignment.variableName, size_t(-1));
m_info.stackHeightInfo[&_assignment] = m_stackHeight;
2017-04-26 10:34:24 +00:00
return success;
2017-02-15 13:52:53 +00:00
}
bool AsmAnalyzer::operator()(Assignment const& _assignment)
2017-02-15 13:52:53 +00:00
{
solAssert(_assignment.value, "");
int const expectedItems = _assignment.variableNames.size();
solAssert(expectedItems >= 1, "");
int const stackHeight = m_stackHeight;
bool success = boost::apply_visitor(*this, *_assignment.value);
if ((m_stackHeight - stackHeight) != expectedItems)
{
m_errorReporter.declarationError(
_assignment.location,
"Variable count does not match number of values (" +
to_string(expectedItems) +
" vs. " +
to_string(m_stackHeight - stackHeight) +
")"
);
return false;
}
for (auto const& variableName: _assignment.variableNames)
if (!checkAssignment(variableName, 1))
success = false;
m_info.stackHeightInfo[&_assignment] = m_stackHeight;
return success;
2017-02-15 13:52:53 +00:00
}
bool AsmAnalyzer::operator()(VariableDeclaration const& _varDecl)
2017-02-15 13:52:53 +00:00
{
bool success = true;
2017-07-12 18:51:16 +00:00
int const numVariables = _varDecl.variables.size();
if (_varDecl.value)
{
int const stackHeight = m_stackHeight;
success = boost::apply_visitor(*this, *_varDecl.value);
int numValues = m_stackHeight - stackHeight;
if (numValues != numVariables)
{
m_errorReporter.declarationError(_varDecl.location,
"Variable count mismatch: " +
to_string(numVariables) +
" variables and " +
to_string(numValues) +
" values."
);
// Adjust stack height to avoid misleading additional errors.
m_stackHeight += numVariables - numValues;
return false;
}
}
else
2017-07-12 18:51:16 +00:00
m_stackHeight += numVariables;
for (auto const& variable: _varDecl.variables)
{
expectValidType(variable.type.str(), variable.location);
m_activeVariables.insert(&boost::get<Scope::Variable>(m_currentScope->identifiers.at(variable.name)));
}
m_info.stackHeightInfo[&_varDecl] = m_stackHeight;
2017-05-05 17:56:29 +00:00
return success;
2017-02-17 11:03:55 +00:00
}
bool AsmAnalyzer::operator()(FunctionDefinition const& _funDef)
{
solAssert(!_funDef.name.empty(), "");
Block const* virtualBlock = m_info.virtualBlocks.at(&_funDef).get();
solAssert(virtualBlock, "");
Scope& varScope = scope(virtualBlock);
for (auto const& var: _funDef.parameters + _funDef.returnVariables)
{
expectValidType(var.type.str(), var.location);
m_activeVariables.insert(&boost::get<Scope::Variable>(varScope.identifiers.at(var.name)));
}
int const stackHeight = m_stackHeight;
m_stackHeight = _funDef.parameters.size() + _funDef.returnVariables.size();
bool success = (*this)(_funDef.body);
m_stackHeight = stackHeight;
m_info.stackHeightInfo[&_funDef] = m_stackHeight;
return success;
}
bool AsmAnalyzer::operator()(FunctionCall const& _funCall)
2017-02-17 11:03:55 +00:00
{
solAssert(!_funCall.functionName.name.empty(), "");
2017-02-17 11:03:55 +00:00
bool success = true;
size_t parameters = 0;
size_t returns = 0;
bool needsLiteralArguments = false;
2018-12-06 23:56:16 +00:00
if (BuiltinFunction const* f = m_dialect->builtin(_funCall.functionName.name))
2018-12-04 10:23:28 +00:00
{
// TODO: compare types, too
parameters = f->parameters.size();
returns = f->returns.size();
if (f->literalArguments)
needsLiteralArguments = true;
2018-12-04 10:23:28 +00:00
}
else if (!m_currentScope->lookup(_funCall.functionName.name, Scope::Visitor(
[&](Scope::Variable const&)
{
m_errorReporter.typeError(
_funCall.functionName.location,
"Attempt to call variable instead of function."
);
success = false;
},
[&](Scope::Label const&)
{
m_errorReporter.typeError(
_funCall.functionName.location,
"Attempt to call label instead of function."
);
success = false;
},
[&](Scope::Function const& _fun)
{
2017-04-26 22:58:34 +00:00
/// TODO: compare types too
parameters = _fun.arguments.size();
2017-04-26 22:58:34 +00:00
returns = _fun.returns.size();
}
)))
2017-02-15 13:52:53 +00:00
{
m_errorReporter.declarationError(_funCall.functionName.location, "Function not found.");
2017-02-15 13:52:53 +00:00
success = false;
}
if (success)
if (_funCall.arguments.size() != parameters)
{
m_errorReporter.typeError(
_funCall.functionName.location,
"Function expects " +
to_string(parameters) +
" arguments but got " +
to_string(_funCall.arguments.size()) + "."
);
2017-02-17 11:03:55 +00:00
success = false;
}
2017-02-17 11:03:55 +00:00
for (auto const& arg: _funCall.arguments | boost::adaptors::reversed)
{
if (!expectExpression(arg))
2017-02-17 11:03:55 +00:00
success = false;
else if (needsLiteralArguments && arg.type() != typeid(Literal))
m_errorReporter.typeError(
_funCall.functionName.location,
"Function expects direct literals as arguments."
);
}
// Use argument size instead of parameter count to avoid misleading errors.
m_stackHeight += int(returns) - int(_funCall.arguments.size());
m_info.stackHeightInfo[&_funCall] = m_stackHeight;
2017-02-17 11:03:55 +00:00
return success;
2017-02-16 22:44:22 +00:00
}
bool AsmAnalyzer::operator()(If const& _if)
{
bool success = true;
if (!expectExpression(*_if.condition))
success = false;
m_stackHeight--;
if (!(*this)(_if.body))
success = false;
m_info.stackHeightInfo[&_if] = m_stackHeight;
return success;
}
bool AsmAnalyzer::operator()(Switch const& _switch)
{
solAssert(_switch.expression, "");
2017-05-19 17:33:25 +00:00
bool success = true;
if (!expectExpression(*_switch.expression))
2017-05-19 17:33:25 +00:00
success = false;
if (m_dialect->flavour == AsmFlavour::Yul)
{
YulString caseType;
bool mismatchingTypes = false;
for (auto const& _case: _switch.cases)
if (_case.value)
{
if (caseType.empty())
caseType = _case.value->type;
else if (caseType != _case.value->type)
{
mismatchingTypes = true;
break;
}
}
if (mismatchingTypes)
m_errorReporter.typeError(
_switch.location,
"Switch cases have non-matching types."
);
}
set<Literal const*, Less<Literal*>> cases;
for (auto const& _case: _switch.cases)
{
2017-05-17 10:21:37 +00:00
if (_case.value)
{
2017-06-07 09:40:47 +00:00
int const initialStackHeight = m_stackHeight;
// We cannot use "expectExpression" here because *_case.value is not a
// Statement and would be converted to a Statement otherwise.
if (!(*this)(*_case.value))
2017-05-19 17:33:25 +00:00
success = false;
2017-06-07 09:40:47 +00:00
expectDeposit(1, initialStackHeight, _case.value->location);
2017-05-17 10:21:37 +00:00
m_stackHeight--;
/// Note: the parser ensures there is only one default case
if (!cases.insert(_case.value.get()).second)
2017-05-17 10:21:37 +00:00
{
m_errorReporter.declarationError(
_case.location,
"Duplicate case defined."
);
2017-05-19 17:33:25 +00:00
success = false;
2017-05-17 10:21:37 +00:00
}
}
if (!(*this)(_case.body))
2017-05-19 17:33:25 +00:00
success = false;
}
m_stackHeight--;
m_info.stackHeightInfo[&_switch] = m_stackHeight;
2017-05-19 17:33:25 +00:00
return success;
}
bool AsmAnalyzer::operator()(ForLoop const& _for)
{
solAssert(_for.condition, "");
Scope* outerScope = m_currentScope;
2017-06-01 12:16:12 +00:00
bool success = true;
if (!(*this)(_for.pre))
success = false;
// The block was closed already, but we re-open it again and stuff the
// condition, the body and the post part inside.
m_stackHeight += scope(&_for.pre).numberOfVariables();
m_currentScope = &scope(&_for.pre);
if (!expectExpression(*_for.condition))
success = false;
m_stackHeight--;
// backup outer for-loop & create new state
auto outerForLoop = m_currentForLoop;
m_currentForLoop = &_for;
2017-06-01 12:16:12 +00:00
if (!(*this)(_for.body))
success = false;
2017-06-01 12:16:12 +00:00
if (!(*this)(_for.post))
success = false;
m_stackHeight -= scope(&_for.pre).numberOfVariables();
m_info.stackHeightInfo[&_for] = m_stackHeight;
m_currentScope = outerScope;
m_currentForLoop = outerForLoop;
2017-06-01 12:16:12 +00:00
return success;
}
bool AsmAnalyzer::operator()(Break const& _break)
{
m_info.stackHeightInfo[&_break] = m_stackHeight;
return true;
}
bool AsmAnalyzer::operator()(Continue const& _continue)
{
m_info.stackHeightInfo[&_continue] = m_stackHeight;
return true;
}
2017-02-15 13:52:53 +00:00
bool AsmAnalyzer::operator()(Block const& _block)
{
bool success = true;
auto previousScope = m_currentScope;
2017-02-17 11:03:55 +00:00
m_currentScope = &scope(&_block);
2017-02-15 13:52:53 +00:00
int const initialStackHeight = m_stackHeight;
2017-02-15 13:52:53 +00:00
for (auto const& s: _block.statements)
if (!boost::apply_visitor(*this, s))
success = false;
m_stackHeight -= scope(&_block).numberOfVariables();
2017-03-22 18:02:27 +00:00
int const stackDiff = m_stackHeight - initialStackHeight;
if (stackDiff != 0)
{
m_errorReporter.declarationError(
_block.location,
"Unbalanced stack at the end of a block: " +
(
stackDiff > 0 ?
to_string(stackDiff) + string(" surplus item(s).") :
to_string(-stackDiff) + string(" missing item(s).")
)
);
success = false;
}
m_info.stackHeightInfo[&_block] = m_stackHeight;
m_currentScope = previousScope;
2017-02-15 13:52:53 +00:00
return success;
}
2017-02-17 11:03:55 +00:00
2017-12-08 13:01:22 +00:00
bool AsmAnalyzer::expectExpression(Expression const& _expr)
{
bool success = true;
int const initialHeight = m_stackHeight;
2017-12-08 13:01:22 +00:00
if (!boost::apply_visitor(*this, _expr))
success = false;
2017-12-08 13:01:22 +00:00
if (!expectDeposit(1, initialHeight, locationOf(_expr)))
2017-06-07 09:40:47 +00:00
success = false;
return success;
}
bool AsmAnalyzer::expectDeposit(int _deposit, int _oldHeight, SourceLocation const& _location)
{
if (m_stackHeight - _oldHeight != _deposit)
{
m_errorReporter.typeError(
2017-06-07 09:40:47 +00:00
_location,
2017-06-01 13:56:49 +00:00
"Expected expression to return one item to the stack, but did return " +
to_string(m_stackHeight - _oldHeight) +
" items."
);
2017-06-07 09:40:47 +00:00
return false;
}
2017-06-07 09:40:47 +00:00
return true;
}
bool AsmAnalyzer::checkAssignment(Identifier const& _variable, size_t _valueSize)
2017-02-17 11:03:55 +00:00
{
solAssert(!_variable.name.empty(), "");
bool success = true;
size_t numErrorsBefore = m_errorReporter.errors().size();
size_t variableSize(-1);
if (Scope::Identifier const* var = m_currentScope->lookup(_variable.name))
{
// Check that it is a variable
if (var->type() != typeid(Scope::Variable))
{
m_errorReporter.typeError(_variable.location, "Assignment requires variable.");
success = false;
}
else if (!m_activeVariables.count(&boost::get<Scope::Variable>(*var)))
{
m_errorReporter.declarationError(
_variable.location,
"Variable " + _variable.name.str() + " used before it was declared."
);
success = false;
}
variableSize = 1;
2017-02-17 11:03:55 +00:00
}
else if (m_resolver)
{
bool insideFunction = m_currentScope->insideFunction();
variableSize = m_resolver(_variable, yul::IdentifierContext::LValue, insideFunction);
}
if (variableSize == size_t(-1))
{
2017-04-25 11:15:42 +00:00
// Only add message if the callback did not.
if (numErrorsBefore == m_errorReporter.errors().size())
m_errorReporter.declarationError(_variable.location, "Variable not found or variable not lvalue.");
success = false;
}
if (_valueSize == size_t(-1))
_valueSize = variableSize == size_t(-1) ? 1 : variableSize;
m_stackHeight -= _valueSize;
if (_valueSize != variableSize && variableSize != size_t(-1))
{
m_errorReporter.typeError(
_variable.location,
"Variable size (" +
to_string(variableSize) +
") and value size (" +
to_string(_valueSize) +
") do not match."
);
success = false;
}
return success;
}
2017-02-17 11:03:55 +00:00
Scope& AsmAnalyzer::scope(Block const* _block)
{
2017-05-23 21:58:37 +00:00
solAssert(m_info.scopes.count(_block) == 1, "Scope requested but not present.");
auto scopePtr = m_info.scopes.at(_block);
solAssert(scopePtr, "Scope requested but not present.");
return *scopePtr;
2017-02-17 11:03:55 +00:00
}
void AsmAnalyzer::expectValidType(string const& type, SourceLocation const& _location)
{
2018-12-06 23:56:16 +00:00
if (m_dialect->flavour != AsmFlavour::Yul)
2017-05-25 00:59:57 +00:00
return;
2017-05-26 19:43:28 +00:00
if (!builtinTypes.count(type))
m_errorReporter.typeError(
_location,
"\"" + type + "\" is not a valid type (user defined types are not yet supported)."
);
}
2017-06-13 18:10:26 +00:00
void AsmAnalyzer::warnOnInstructions(solidity::Instruction _instr, SourceLocation const& _location)
{
// We assume that returndatacopy, returndatasize and staticcall are either all available
// or all not available.
solAssert(m_evmVersion.supportsReturndata() == m_evmVersion.hasStaticCall(), "");
// Similarly we assume bitwise shifting and create2 go together.
solAssert(m_evmVersion.hasBitwiseShifting() == m_evmVersion.hasCreate2(), "");
solAssert(m_dialect->flavour != AsmFlavour::Yul, "");
2019-02-26 18:21:32 +00:00
auto errorForVM = [=](string const& vmKindMessage) {
m_errorReporter.typeError(
_location,
"The \"" +
boost::to_lower_copy(instructionInfo(_instr).name)
+ "\" instruction is " +
vmKindMessage +
2019-02-26 18:21:32 +00:00
" VMs " +
" (you are currently compiling for \"" +
m_evmVersion.name() +
2019-02-26 18:21:32 +00:00
"\")."
);
};
if ((
_instr == solidity::Instruction::RETURNDATACOPY ||
_instr == solidity::Instruction::RETURNDATASIZE
) && !m_evmVersion.supportsReturndata())
{
2019-02-26 18:21:32 +00:00
errorForVM("only available for Byzantium-compatible");
}
else if (_instr == solidity::Instruction::STATICCALL && !m_evmVersion.hasStaticCall())
{
2019-02-26 18:21:32 +00:00
errorForVM("only available for Byzantium-compatible");
}
else if ((
_instr == solidity::Instruction::SHL ||
_instr == solidity::Instruction::SHR ||
_instr == solidity::Instruction::SAR
) && !m_evmVersion.hasBitwiseShifting())
{
2019-02-26 18:21:32 +00:00
errorForVM("only available for Constantinople-compatible");
}
else if (_instr == solidity::Instruction::CREATE2 && !m_evmVersion.hasCreate2())
{
2019-02-26 18:21:32 +00:00
errorForVM("only available for Constantinople-compatible");
}
else if (_instr == solidity::Instruction::EXTCODEHASH && !m_evmVersion.hasExtCodeHash())
{
2019-02-26 18:21:32 +00:00
errorForVM("only available for Constantinople-compatible");
}
else if (_instr == solidity::Instruction::JUMP || _instr == solidity::Instruction::JUMPI || _instr == solidity::Instruction::JUMPDEST)
{
if (m_dialect->flavour == AsmFlavour::Loose)
m_errorReporter.error(
m_errorTypeForLoose ? *m_errorTypeForLoose : Error::Type::Warning,
_location,
"Jump instructions and labels are low-level EVM features that can lead to "
"incorrect stack access. Because of that they are discouraged. "
"Please consider using \"switch\", \"if\" or \"for\" statements instead."
);
else
m_errorReporter.error(
Error::Type::SyntaxError,
_location,
"Jump instructions and labels are low-level EVM features that can lead to "
"incorrect stack access. Because of that they are disallowed in strict assembly. "
"Use functions, \"switch\", \"if\" or \"for\" statements instead."
);
}
}
void AsmAnalyzer::checkLooseFeature(SourceLocation const& _location, string const& _description)
{
2018-12-06 23:56:16 +00:00
if (m_dialect->flavour != AsmFlavour::Loose)
solAssert(false, _description);
else if (m_errorTypeForLoose)
m_errorReporter.error(*m_errorTypeForLoose, _location, _description);
}