/* 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 . */ // SPDX-License-Identifier: GPL-3.0 /** * Translates Yul code from EVM dialect to Ewasm dialect. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // The following headers are generated from the // yul files placed in libyul/backends/wasm/polyfill. #include #include #include #include #include #include #include #include using namespace std; using namespace solidity; using namespace solidity::yul; using namespace solidity::util; using namespace solidity::langutil; Object EVMToEwasmTranslator::run(Object const& _object) { if (!m_polyfill) parsePolyfill(); Block ast = std::get(Disambiguator(m_dialect, *_object.analysisInfo)(*_object.code)); set reservedIdentifiers; NameDispenser nameDispenser{m_dialect, ast, reservedIdentifiers}; // expectedExecutionsPerDeployment is currently unused. OptimiserStepContext context{ m_dialect, nameDispenser, reservedIdentifiers, frontend::OptimiserSettings::standard().expectedExecutionsPerDeployment }; FunctionHoister::run(context, ast); FunctionGrouper::run(context, ast); MainFunction::run(context, ast); ForLoopConditionIntoBody::run(context, ast); ExpressionSplitter::run(context, ast); WordSizeTransform::run(m_dialect, WasmDialect::instance(), ast, nameDispenser); NameDisplacer{nameDispenser, m_polyfillFunctions}(ast); for (auto const& st: m_polyfill->statements) ast.statements.emplace_back(ASTCopier{}.translate(st)); Object ret; ret.name = _object.name; ret.code = make_shared(move(ast)); ret.analysisInfo = make_shared(); ErrorList errors; ErrorReporter errorReporter(errors); AsmAnalyzer analyzer(*ret.analysisInfo, errorReporter, WasmDialect::instance(), {}, _object.qualifiedDataNames()); if (!analyzer.analyze(*ret.code)) { string message = "Invalid code generated after EVM to wasm translation.\n"; message += "Note that the source locations in the errors below will reference the original, not the translated code.\n"; message += "Translated code:\n"; message += "----------------------------------\n"; message += ret.toString(&WasmDialect::instance()); message += "----------------------------------\n"; for (auto const& err: errors) message += langutil::SourceReferenceFormatter::formatErrorInformation(*err, m_charStreamProvider); yulAssert(false, message); } for (auto const& subObjectNode: _object.subObjects) if (Object const* subObject = dynamic_cast(subObjectNode.get())) ret.subObjects.push_back(make_shared(run(*subObject))); else ret.subObjects.push_back(make_shared(dynamic_cast(*subObjectNode))); ret.subIndexByName = _object.subIndexByName; return ret; } void EVMToEwasmTranslator::parsePolyfill() { ErrorList errors; ErrorReporter errorReporter(errors); shared_ptr scanner{make_shared(CharStream( "{" + string(solidity::yul::wasm::polyfill::Arithmetic) + string(solidity::yul::wasm::polyfill::Bitwise) + string(solidity::yul::wasm::polyfill::Comparison) + string(solidity::yul::wasm::polyfill::Conversion) + string(solidity::yul::wasm::polyfill::Interface) + string(solidity::yul::wasm::polyfill::Keccak) + string(solidity::yul::wasm::polyfill::Logical) + string(solidity::yul::wasm::polyfill::Memory) + "}", ""))}; m_polyfill = Parser(errorReporter, WasmDialect::instance()).parse(scanner, false); if (!errors.empty()) { string message; for (auto const& err: errors) message += langutil::SourceReferenceFormatter::formatErrorInformation( *err, SingletonCharStreamProvider(*scanner->charStream()) ); yulAssert(false, message); } m_polyfillFunctions.clear(); for (auto const& statement: m_polyfill->statements) m_polyfillFunctions.insert(std::get(statement).name); }