mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #6071 from ethereum/moveEVMVersionToEVMDialect
Make EVM version part of EVM dialect.
This commit is contained in:
commit
8aeebf7fcd
@ -324,9 +324,8 @@ bool ReferencesResolver::visit(InlineAssembly const& _inlineAssembly)
|
||||
yul::AsmAnalyzer(
|
||||
analysisInfo,
|
||||
errorsIgnored,
|
||||
EVMVersion(),
|
||||
errorTypeForLoose,
|
||||
yul::EVMDialect::looseAssemblyForEVM(),
|
||||
yul::EVMDialect::looseAssemblyForEVM(EVMVersion::constantinople()),
|
||||
resolver
|
||||
).analyze(_inlineAssembly.operations());
|
||||
return false;
|
||||
|
@ -713,9 +713,8 @@ bool TypeChecker::visit(InlineAssembly const& _inlineAssembly)
|
||||
yul::AsmAnalyzer analyzer(
|
||||
*_inlineAssembly.annotation().analysisInfo,
|
||||
m_errorReporter,
|
||||
m_evmVersion,
|
||||
Error::Type::SyntaxError,
|
||||
yul::EVMDialect::looseAssemblyForEVM(),
|
||||
yul::EVMDialect::looseAssemblyForEVM(m_evmVersion),
|
||||
identifierAccess
|
||||
);
|
||||
if (!analyzer.analyze(_inlineAssembly.operations()))
|
||||
|
@ -376,7 +376,7 @@ void CompilerContext::appendInlineAssembly(
|
||||
ErrorList errors;
|
||||
ErrorReporter errorReporter(errors);
|
||||
auto scanner = make_shared<langutil::Scanner>(langutil::CharStream(_assembly, "--CODEGEN--"));
|
||||
auto parserResult = yul::Parser(errorReporter, yul::EVMDialect::strictAssemblyForEVM()).parse(scanner, false);
|
||||
auto parserResult = yul::Parser(errorReporter, yul::EVMDialect::strictAssemblyForEVM(m_evmVersion)).parse(scanner, false);
|
||||
#ifdef SOL_OUTPUT_ASM
|
||||
cout << yul::AsmPrinter()(*parserResult) << endl;
|
||||
#endif
|
||||
@ -386,9 +386,8 @@ void CompilerContext::appendInlineAssembly(
|
||||
analyzerResult = yul::AsmAnalyzer(
|
||||
analysisInfo,
|
||||
errorReporter,
|
||||
m_evmVersion,
|
||||
boost::none,
|
||||
yul::EVMDialect::strictAssemblyForEVM(),
|
||||
yul::EVMDialect::strictAssemblyForEVM(m_evmVersion),
|
||||
identifierAccess.resolve
|
||||
).analyze(*parserResult);
|
||||
if (!parserResult || !errorReporter.errors().empty() || !analyzerResult)
|
||||
@ -409,7 +408,7 @@ void CompilerContext::appendInlineAssembly(
|
||||
}
|
||||
|
||||
solAssert(errorReporter.errors().empty(), "Failed to analyze inline assembly block.");
|
||||
yul::CodeGenerator::assemble(*parserResult, analysisInfo, *m_asm, identifierAccess, _system);
|
||||
yul::CodeGenerator::assemble(*parserResult, analysisInfo, *m_asm, m_evmVersion, identifierAccess, _system);
|
||||
|
||||
// Reset the source location to the one of the node (instead of the CODEGEN source location)
|
||||
updateSourceLocation();
|
||||
|
@ -719,6 +719,7 @@ bool ContractCompiler::visit(InlineAssembly const& _inlineAssembly)
|
||||
_inlineAssembly.operations(),
|
||||
*_inlineAssembly.annotation().analysisInfo,
|
||||
*m_context.assemblyPtr(),
|
||||
m_context.evmVersion(),
|
||||
identifierAccess
|
||||
);
|
||||
m_context.setStackOffset(startStackHeight);
|
||||
|
@ -1041,7 +1041,8 @@ ASTPointer<InlineAssembly> Parser::parseInlineAssembly(ASTPointer<ASTString> con
|
||||
m_scanner->next();
|
||||
}
|
||||
|
||||
yul::Parser asmParser(m_errorReporter, yul::EVMDialect::looseAssemblyForEVM());
|
||||
// Using latest EVM Version for now, it will be run again later.
|
||||
yul::Parser asmParser(m_errorReporter, yul::EVMDialect::looseAssemblyForEVM(EVMVersion::constantinople()));
|
||||
shared_ptr<yul::Block> block = asmParser.parse(m_scanner, true);
|
||||
if (block == nullptr)
|
||||
BOOST_THROW_EXCEPTION(FatalError());
|
||||
|
@ -60,7 +60,6 @@ bool AsmAnalyzer::analyze(Block const& _block)
|
||||
|
||||
AsmAnalysisInfo AsmAnalyzer::analyzeStrictAssertCorrect(
|
||||
shared_ptr<Dialect> _dialect,
|
||||
EVMVersion _evmVersion,
|
||||
Block const& _ast
|
||||
)
|
||||
{
|
||||
@ -70,7 +69,6 @@ AsmAnalysisInfo AsmAnalyzer::analyzeStrictAssertCorrect(
|
||||
bool success = yul::AsmAnalyzer(
|
||||
analysisInfo,
|
||||
errors,
|
||||
_evmVersion,
|
||||
Error::Type::SyntaxError,
|
||||
_dialect
|
||||
).analyze(_ast);
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <libyul/AsmDataForward.h>
|
||||
|
||||
#include <libyul/backends/evm/AbstractAssembly.h>
|
||||
#include <libyul/backends/evm/EVMDialect.h>
|
||||
|
||||
#include <boost/variant.hpp>
|
||||
#include <boost/optional.hpp>
|
||||
@ -57,7 +58,6 @@ public:
|
||||
explicit AsmAnalyzer(
|
||||
AsmAnalysisInfo& _analysisInfo,
|
||||
langutil::ErrorReporter& _errorReporter,
|
||||
dev::solidity::EVMVersion _evmVersion,
|
||||
boost::optional<langutil::Error::Type> _errorTypeForLoose,
|
||||
std::shared_ptr<Dialect> _dialect,
|
||||
ExternalIdentifierAccess::Resolver const& _resolver = ExternalIdentifierAccess::Resolver()
|
||||
@ -65,16 +65,17 @@ public:
|
||||
m_resolver(_resolver),
|
||||
m_info(_analysisInfo),
|
||||
m_errorReporter(_errorReporter),
|
||||
m_evmVersion(_evmVersion),
|
||||
m_dialect(std::move(_dialect)),
|
||||
m_errorTypeForLoose(_errorTypeForLoose)
|
||||
{}
|
||||
{
|
||||
if (EVMDialect const* evmDialect = dynamic_cast<EVMDialect const*>(m_dialect.get()))
|
||||
m_evmVersion = evmDialect->evmVersion();
|
||||
}
|
||||
|
||||
bool analyze(Block const& _block);
|
||||
|
||||
static AsmAnalysisInfo analyzeStrictAssertCorrect(
|
||||
std::shared_ptr<Dialect> _dialect,
|
||||
dev::solidity::EVMVersion _evmVersion,
|
||||
Block const& _ast
|
||||
);
|
||||
|
||||
|
@ -43,14 +43,14 @@ using namespace yul;
|
||||
|
||||
namespace
|
||||
{
|
||||
shared_ptr<Dialect> languageToDialect(AssemblyStack::Language _language)
|
||||
shared_ptr<Dialect> languageToDialect(AssemblyStack::Language _language, EVMVersion _version)
|
||||
{
|
||||
switch (_language)
|
||||
{
|
||||
case AssemblyStack::Language::Assembly:
|
||||
return EVMDialect::looseAssemblyForEVM();
|
||||
return EVMDialect::looseAssemblyForEVM(_version);
|
||||
case AssemblyStack::Language::StrictAssembly:
|
||||
return EVMDialect::strictAssemblyForEVMObjects();
|
||||
return EVMDialect::strictAssemblyForEVMObjects(_version);
|
||||
case AssemblyStack::Language::Yul:
|
||||
return Dialect::yul();
|
||||
}
|
||||
@ -72,7 +72,7 @@ bool AssemblyStack::parseAndAnalyze(std::string const& _sourceName, std::string
|
||||
m_errors.clear();
|
||||
m_analysisSuccessful = false;
|
||||
m_scanner = make_shared<Scanner>(CharStream(_source, _sourceName));
|
||||
m_parserResult = ObjectParser(m_errorReporter, languageToDialect(m_language)).parse(m_scanner, false);
|
||||
m_parserResult = ObjectParser(m_errorReporter, languageToDialect(m_language, m_evmVersion)).parse(m_scanner, false);
|
||||
if (!m_errorReporter.errors().empty())
|
||||
return false;
|
||||
solAssert(m_parserResult, "");
|
||||
@ -103,7 +103,7 @@ bool AssemblyStack::analyzeParsed(Object& _object)
|
||||
{
|
||||
solAssert(_object.code, "");
|
||||
_object.analysisInfo = make_shared<AsmAnalysisInfo>();
|
||||
AsmAnalyzer analyzer(*_object.analysisInfo, m_errorReporter, m_evmVersion, boost::none, languageToDialect(m_language));
|
||||
AsmAnalyzer analyzer(*_object.analysisInfo, m_errorReporter, boost::none, languageToDialect(m_language, m_evmVersion));
|
||||
bool success = analyzer.analyze(*_object.code);
|
||||
for (auto& subNode: _object.subObjects)
|
||||
if (auto subObject = dynamic_cast<Object*>(subNode.get()))
|
||||
@ -117,11 +117,11 @@ void AssemblyStack::compileEVM(AbstractAssembly& _assembly, bool _evm15, bool _o
|
||||
shared_ptr<EVMDialect> dialect;
|
||||
|
||||
if (m_language == Language::Assembly)
|
||||
dialect = EVMDialect::looseAssemblyForEVM();
|
||||
dialect = EVMDialect::looseAssemblyForEVM(m_evmVersion);
|
||||
else if (m_language == AssemblyStack::Language::StrictAssembly)
|
||||
dialect = EVMDialect::strictAssemblyForEVMObjects();
|
||||
dialect = EVMDialect::strictAssemblyForEVMObjects(m_evmVersion);
|
||||
else if (m_language == AssemblyStack::Language::Yul)
|
||||
dialect = EVMDialect::yulForEVM();
|
||||
dialect = EVMDialect::yulForEVM(m_evmVersion);
|
||||
else
|
||||
solAssert(false, "Invalid language.");
|
||||
|
||||
@ -135,7 +135,7 @@ void AssemblyStack::optimize(Object& _object)
|
||||
for (auto& subNode: _object.subObjects)
|
||||
if (auto subObject = dynamic_cast<Object*>(subNode.get()))
|
||||
optimize(*subObject);
|
||||
OptimiserSuite::run(languageToDialect(m_language), *_object.code, *_object.analysisInfo);
|
||||
OptimiserSuite::run(languageToDialect(m_language, m_evmVersion), *_object.code, *_object.analysisInfo);
|
||||
}
|
||||
|
||||
MachineAssemblyObject AssemblyStack::assemble(Machine _machine, bool _optimize) const
|
||||
|
@ -45,7 +45,7 @@ std::map<YulString, int> CompilabilityChecker::run(std::shared_ptr<Dialect> _dia
|
||||
|
||||
bool optimize = true;
|
||||
yul::AsmAnalysisInfo analysisInfo =
|
||||
yul::AsmAnalyzer::analyzeStrictAssertCorrect(noOutputDialect, EVMVersion(), _ast);
|
||||
yul::AsmAnalyzer::analyzeStrictAssertCorrect(noOutputDialect, _ast);
|
||||
|
||||
NoOutputAssembly assembly;
|
||||
CodeTransform transform(assembly, analysisInfo, _ast, *noOutputDialect, optimize);
|
||||
|
@ -177,13 +177,14 @@ void CodeGenerator::assemble(
|
||||
Block const& _parsedData,
|
||||
AsmAnalysisInfo& _analysisInfo,
|
||||
eth::Assembly& _assembly,
|
||||
dev::solidity::EVMVersion _evmVersion,
|
||||
ExternalIdentifierAccess const& _identifierAccess,
|
||||
bool _useNamedLabelsForFunctions,
|
||||
bool _optimize
|
||||
)
|
||||
{
|
||||
EthAssemblyAdapter assemblyAdapter(_assembly);
|
||||
shared_ptr<EVMDialect> dialect = EVMDialect::strictAssemblyForEVM();
|
||||
shared_ptr<EVMDialect> dialect = EVMDialect::strictAssemblyForEVM(_evmVersion);
|
||||
CodeTransform transform(
|
||||
assemblyAdapter,
|
||||
_analysisInfo,
|
||||
|
@ -79,6 +79,7 @@ public:
|
||||
Block const& _parsedData,
|
||||
AsmAnalysisInfo& _analysisInfo,
|
||||
dev::eth::Assembly& _assembly,
|
||||
dev::solidity::EVMVersion _evmVersion,
|
||||
ExternalIdentifierAccess const& _identifierAccess = ExternalIdentifierAccess(),
|
||||
bool _useNamedLabelsForFunctions = false,
|
||||
bool _optimize = false
|
||||
|
@ -37,8 +37,8 @@ using namespace yul;
|
||||
using namespace dev::solidity;
|
||||
|
||||
|
||||
EVMDialect::EVMDialect(AsmFlavour _flavour, bool _objectAccess):
|
||||
Dialect{_flavour}, m_objectAccess(_objectAccess)
|
||||
EVMDialect::EVMDialect(AsmFlavour _flavour, bool _objectAccess, EVMVersion _evmVersion):
|
||||
Dialect{_flavour}, m_objectAccess(_objectAccess), m_evmVersion(_evmVersion)
|
||||
{
|
||||
// The EVM instructions will be moved to builtins at some point.
|
||||
if (!m_objectAccess)
|
||||
@ -91,24 +91,24 @@ BuiltinFunctionForEVM const* EVMDialect::builtin(YulString _name) const
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
shared_ptr<EVMDialect> EVMDialect::looseAssemblyForEVM()
|
||||
shared_ptr<EVMDialect> EVMDialect::looseAssemblyForEVM(EVMVersion _version)
|
||||
{
|
||||
return make_shared<EVMDialect>(AsmFlavour::Loose, false);
|
||||
return make_shared<EVMDialect>(AsmFlavour::Loose, false, _version);
|
||||
}
|
||||
|
||||
shared_ptr<EVMDialect> EVMDialect::strictAssemblyForEVM()
|
||||
shared_ptr<EVMDialect> EVMDialect::strictAssemblyForEVM(EVMVersion _version)
|
||||
{
|
||||
return make_shared<EVMDialect>(AsmFlavour::Strict, false);
|
||||
return make_shared<EVMDialect>(AsmFlavour::Strict, false, _version);
|
||||
}
|
||||
|
||||
shared_ptr<EVMDialect> EVMDialect::strictAssemblyForEVMObjects()
|
||||
shared_ptr<EVMDialect> EVMDialect::strictAssemblyForEVMObjects(EVMVersion _version)
|
||||
{
|
||||
return make_shared<EVMDialect>(AsmFlavour::Strict, true);
|
||||
return make_shared<EVMDialect>(AsmFlavour::Strict, true, _version);
|
||||
}
|
||||
|
||||
shared_ptr<yul::EVMDialect> EVMDialect::yulForEVM()
|
||||
shared_ptr<yul::EVMDialect> EVMDialect::yulForEVM(EVMVersion _version)
|
||||
{
|
||||
return make_shared<EVMDialect>(AsmFlavour::Yul, false);
|
||||
return make_shared<EVMDialect>(AsmFlavour::Yul, false, _version);
|
||||
}
|
||||
|
||||
void EVMDialect::setSubIDs(map<YulString, AbstractAssembly::SubID> _subIDs)
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include <libyul/Dialect.h>
|
||||
|
||||
#include <libyul/backends/evm/AbstractAssembly.h>
|
||||
#include <liblangutil/EVMVersion.h>
|
||||
|
||||
#include <map>
|
||||
|
||||
@ -49,15 +50,17 @@ struct BuiltinFunctionForEVM: BuiltinFunction
|
||||
*/
|
||||
struct EVMDialect: public Dialect
|
||||
{
|
||||
EVMDialect(AsmFlavour _flavour, bool _objectAccess);
|
||||
EVMDialect(AsmFlavour _flavour, bool _objectAccess, dev::solidity::EVMVersion _evmVersion);
|
||||
|
||||
/// @returns the builtin function of the given name or a nullptr if it is not a builtin function.
|
||||
BuiltinFunctionForEVM const* builtin(YulString _name) const override;
|
||||
|
||||
static std::shared_ptr<EVMDialect> looseAssemblyForEVM();
|
||||
static std::shared_ptr<EVMDialect> strictAssemblyForEVM();
|
||||
static std::shared_ptr<EVMDialect> strictAssemblyForEVMObjects();
|
||||
static std::shared_ptr<EVMDialect> yulForEVM();
|
||||
static std::shared_ptr<EVMDialect> looseAssemblyForEVM(dev::solidity::EVMVersion _version);
|
||||
static std::shared_ptr<EVMDialect> strictAssemblyForEVM(dev::solidity::EVMVersion _version);
|
||||
static std::shared_ptr<EVMDialect> strictAssemblyForEVMObjects(dev::solidity::EVMVersion _version);
|
||||
static std::shared_ptr<EVMDialect> yulForEVM(dev::solidity::EVMVersion _version);
|
||||
|
||||
dev::solidity::EVMVersion evmVersion() const { return m_evmVersion; }
|
||||
|
||||
bool providesObjectAccess() const { return m_objectAccess; }
|
||||
|
||||
@ -77,6 +80,7 @@ protected:
|
||||
);
|
||||
|
||||
bool m_objectAccess;
|
||||
dev::solidity::EVMVersion m_evmVersion;
|
||||
Object const* m_currentObject = nullptr;
|
||||
/// Mapping from named objects to abstract assembly sub IDs.
|
||||
std::map<YulString, AbstractAssembly::SubID> m_subIDs;
|
||||
|
@ -143,7 +143,7 @@ AbstractAssembly::SubID NoOutputAssembly::appendData(bytes const&)
|
||||
}
|
||||
|
||||
NoOutputEVMDialect::NoOutputEVMDialect(shared_ptr<EVMDialect> const& _copyFrom):
|
||||
EVMDialect(_copyFrom->flavour, _copyFrom->providesObjectAccess())
|
||||
EVMDialect(_copyFrom->flavour, _copyFrom->providesObjectAccess(), _copyFrom->evmVersion())
|
||||
{
|
||||
for (auto& fun: m_functions)
|
||||
{
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include <libyul/AsmDataForward.h>
|
||||
#include <libyul/YulString.h>
|
||||
#include <liblangutil/EVMVersion.h>
|
||||
|
||||
#include <set>
|
||||
|
||||
|
@ -46,7 +46,7 @@ namespace
|
||||
{
|
||||
shared_ptr<Dialect> defaultDialect(bool _yul)
|
||||
{
|
||||
return _yul ? yul::Dialect::yul() : yul::EVMDialect::strictAssemblyForEVM();
|
||||
return _yul ? yul::Dialect::yul() : yul::EVMDialect::strictAssemblyForEVM(dev::test::Options::get().evmVersion());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ string check(string const& _input)
|
||||
{
|
||||
shared_ptr<Block> ast = yul::test::parse(_input, false).first;
|
||||
BOOST_REQUIRE(ast);
|
||||
map<YulString, int> functions = CompilabilityChecker::run(EVMDialect::strictAssemblyForEVM(), *ast);
|
||||
map<YulString, int> functions = CompilabilityChecker::run(EVMDialect::strictAssemblyForEVM(dev::test::Options::get().evmVersion()), *ast);
|
||||
string out;
|
||||
for (auto const& function: functions)
|
||||
out += function.first.str() + ": " + to_string(function.second) + " ";
|
||||
|
@ -61,7 +61,6 @@ bool parse(string const& _source, std::shared_ptr<Dialect> _dialect, ErrorReport
|
||||
return (yul::AsmAnalyzer(
|
||||
analysisInfo,
|
||||
errorReporter,
|
||||
dev::test::Options::get().evmVersion(),
|
||||
boost::none,
|
||||
_dialect
|
||||
)).analyze(*parserResult);
|
||||
|
@ -300,7 +300,7 @@ bool YulOptimizerTest::parse(ostream& _stream, string const& _linePrefix, bool c
|
||||
printErrors(_stream, stack.errors());
|
||||
return false;
|
||||
}
|
||||
m_dialect = m_yul ? Dialect::yul() : EVMDialect::strictAssemblyForEVMObjects();
|
||||
m_dialect = m_yul ? Dialect::yul() : EVMDialect::strictAssemblyForEVMObjects(dev::test::Options::get().evmVersion());
|
||||
m_ast = stack.parserResult()->code;
|
||||
m_analysisInfo = stack.parserResult()->analysisInfo;
|
||||
return true;
|
||||
|
@ -99,7 +99,6 @@ public:
|
||||
AsmAnalyzer analyzer(
|
||||
*m_analysisInfo,
|
||||
errorReporter,
|
||||
EVMVersion::byzantium(),
|
||||
langutil::Error::Type::SyntaxError,
|
||||
m_dialect
|
||||
);
|
||||
@ -207,7 +206,7 @@ public:
|
||||
private:
|
||||
ErrorList m_errors;
|
||||
shared_ptr<yul::Block> m_ast;
|
||||
shared_ptr<Dialect> m_dialect{EVMDialect::strictAssemblyForEVMObjects()};
|
||||
shared_ptr<Dialect> m_dialect{EVMDialect::strictAssemblyForEVMObjects(EVMVersion::constantinople())};
|
||||
shared_ptr<AsmAnalysisInfo> m_analysisInfo;
|
||||
shared_ptr<NameDispenser> m_nameDispenser;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user