solidity/test/libsolidity/InlineAssembly.cpp

373 lines
10 KiB
C++
Raw Normal View History

2016-02-22 01:13:41 +00:00
/*
This file is part of solidity.
2016-02-22 01:13:41 +00:00
solidity is free software: you can redistribute it and/or modify
2016-02-22 01:13:41 +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.
solidity is distributed in the hope that it will be useful,
2016-02-22 01:13:41 +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
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2016-02-22 01:13:41 +00:00
*/
/**
* @author Christian <c@ethdev.com>
* @date 2016
* Unit tests for inline assembly.
*/
#include <test/Common.h>
2019-02-13 11:07:20 +00:00
#include <test/libsolidity/ErrorCheck.h>
#include <libsolidity/ast/AST.h>
#include <libyul/AssemblyStack.h>
#include <liblangutil/Scanner.h>
#include <liblangutil/Exceptions.h>
2019-05-22 22:25:39 +00:00
#include <liblangutil/SourceReferenceFormatter.h>
2019-02-13 11:07:20 +00:00
#include <libevmasm/Assembly.h>
2017-04-21 22:05:12 +00:00
#include <boost/algorithm/string/replace.hpp>
#include <boost/test/unit_test.hpp>
#include <memory>
#include <optional>
#include <string>
2016-02-22 01:13:41 +00:00
using namespace std;
using namespace solidity::langutil;
using namespace solidity::yul;
2016-02-22 01:13:41 +00:00
namespace solidity::frontend::test
2016-02-22 01:13:41 +00:00
{
namespace
{
std::optional<Error> parseAndReturnFirstError(
string const& _source,
bool _assemble = false,
bool _allowWarnings = true,
2018-01-06 00:24:45 +00:00
AssemblyStack::Language _language = AssemblyStack::Language::Assembly,
AssemblyStack::Machine _machine = AssemblyStack::Machine::EVM
)
2016-02-22 01:13:41 +00:00
{
AssemblyStack stack(solidity::test::CommonOptions::get().evmVersion(), _language, solidity::frontend::OptimiserSettings::none());
bool success = false;
2016-02-22 01:13:41 +00:00
try
{
success = stack.parseAndAnalyze("", _source);
if (success && _assemble)
stack.assemble(_machine);
2016-02-22 01:13:41 +00:00
}
2017-02-20 10:57:50 +00:00
catch (FatalError const&)
2016-02-22 01:13:41 +00:00
{
BOOST_FAIL("Fatal error leaked.");
success = false;
2016-02-22 01:13:41 +00:00
}
2017-06-28 17:30:13 +00:00
shared_ptr<Error const> error;
for (auto const& e: stack.errors())
{
2017-06-28 17:30:13 +00:00
if (_allowWarnings && e->type() == Error::Type::Warning)
continue;
if (error)
2019-05-22 22:25:39 +00:00
{
string errors;
for (auto const& err: stack.errors())
errors += SourceReferenceFormatter::formatErrorInformation(*err);
BOOST_FAIL("Found more than one error:\n" + errors);
}
2017-06-28 17:30:13 +00:00
error = e;
}
2017-06-28 17:30:13 +00:00
if (!success)
BOOST_REQUIRE(error);
if (error)
return *error;
return {};
}
2016-02-22 01:13:41 +00:00
bool successParse(
string const& _source,
bool _assemble = false,
bool _allowWarnings = true,
2018-01-06 00:24:45 +00:00
AssemblyStack::Language _language = AssemblyStack::Language::Assembly,
AssemblyStack::Machine _machine = AssemblyStack::Machine::EVM
)
{
2018-01-06 00:24:45 +00:00
return !parseAndReturnFirstError(_source, _assemble, _allowWarnings, _language, _machine);
2016-02-22 01:13:41 +00:00
}
2018-01-06 00:24:45 +00:00
bool successAssemble(string const& _source, bool _allowWarnings = true, AssemblyStack::Language _language = AssemblyStack::Language::Assembly)
{
2018-01-06 00:24:45 +00:00
return
successParse(_source, true, _allowWarnings, _language, AssemblyStack::Machine::EVM) &&
successParse(_source, true, _allowWarnings, _language, AssemblyStack::Machine::EVM15);
}
2018-01-06 00:24:45 +00:00
Error expectError(
std::string const& _source,
bool _assemble,
bool _allowWarnings = false,
AssemblyStack::Language _language = AssemblyStack::Language::Assembly
)
{
2018-01-06 00:24:45 +00:00
auto error = parseAndReturnFirstError(_source, _assemble, _allowWarnings, _language);
BOOST_REQUIRE(error);
return *error;
}
2017-06-28 17:30:13 +00:00
void parsePrintCompare(string const& _source, bool _canWarn = false)
2017-02-14 14:40:58 +00:00
{
AssemblyStack stack(solidity::test::CommonOptions::get().evmVersion(), AssemblyStack::Language::Assembly, OptimiserSettings::none());
BOOST_REQUIRE(stack.parseAndAnalyze("", _source));
2017-06-28 17:30:13 +00:00
if (_canWarn)
BOOST_REQUIRE(Error::containsOnlyWarnings(stack.errors()));
else
BOOST_REQUIRE(stack.errors().empty());
2018-11-07 11:01:43 +00:00
string expectation = "object \"object\" {\n code " + boost::replace_all_copy(_source, "\n", "\n ") + "\n}\n";
BOOST_CHECK_EQUAL(stack.print(), expectation);
2017-02-14 14:40:58 +00:00
}
2016-02-22 01:13:41 +00:00
}
2018-01-06 00:24:45 +00:00
#define CHECK_ERROR_LANG(text, assemble, typ, substring, warnings, language) \
do \
{ \
2018-01-06 00:24:45 +00:00
Error err = expectError((text), (assemble), warnings, (language)); \
BOOST_CHECK(err.type() == (Error::Type::typ)); \
BOOST_CHECK(searchErrorMessage(err, (substring))); \
} while(0)
2018-01-06 00:24:45 +00:00
#define CHECK_ERROR(text, assemble, typ, substring, warnings) \
CHECK_ERROR_LANG(text, assemble, typ, substring, warnings, AssemblyStack::Language::Assembly)
#define CHECK_PARSE_ERROR(text, type, substring) \
2017-06-28 17:30:13 +00:00
CHECK_ERROR(text, false, type, substring, false)
#define CHECK_PARSE_WARNING(text, type, substring) \
CHECK_ERROR(text, false, type, substring, false)
#define CHECK_ASSEMBLE_ERROR(text, type, substring) \
2017-06-28 17:30:13 +00:00
CHECK_ERROR(text, true, type, substring, false)
2018-01-06 00:24:45 +00:00
#define CHECK_STRICT_ERROR(text, type, substring) \
CHECK_ERROR_LANG(text, false, type, substring, false, AssemblyStack::Language::StrictAssembly)
#define CHECK_STRICT_WARNING(text, type, substring) \
CHECK_ERROR(text, false, type, substring, false, AssemblyStack::Language::StrictAssembly)
#define SUCCESS_STRICT(text) \
do { successParse((text), false, false, AssemblyStack::Language::StrictAssembly); } while (false)
2016-02-22 01:13:41 +00:00
BOOST_AUTO_TEST_SUITE(SolidityInlineAssembly)
BOOST_AUTO_TEST_SUITE(Printing) // {{{
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_CASE(print_smoke)
{
parsePrintCompare("{ }");
2017-02-14 14:40:58 +00:00
}
BOOST_AUTO_TEST_CASE(print_instructions)
{
parsePrintCompare("{ pop(7) }");
2017-02-14 14:40:58 +00:00
}
BOOST_AUTO_TEST_CASE(print_subblock)
{
parsePrintCompare("{ { pop(7) } }");
2017-02-14 14:40:58 +00:00
}
BOOST_AUTO_TEST_CASE(print_functional)
{
parsePrintCompare("{ let x := mul(sload(0x12), 7) }");
2017-02-14 14:40:58 +00:00
}
BOOST_AUTO_TEST_CASE(print_assignments)
{
parsePrintCompare("{\n let x := mul(2, 3)\n pop(7)\n x := add(1, 2)\n}");
2017-02-14 14:40:58 +00:00
}
2017-05-06 14:49:22 +00:00
BOOST_AUTO_TEST_CASE(print_multi_assignments)
{
parsePrintCompare("{\n function f() -> x, y\n { }\n let x, y := f()\n}");
2017-05-06 14:49:22 +00:00
}
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_CASE(print_string_literals)
{
parsePrintCompare("{ let x := \"\\n'\\xab\\x95\\\"\" }");
2017-02-14 14:40:58 +00:00
}
2017-02-15 14:21:11 +00:00
BOOST_AUTO_TEST_CASE(print_string_literal_unicode)
{
string source = "{ let x := \"\\u1bac\" }";
string parsed = "object \"object\" {\n code { let x := \"\\xe1\\xae\\xac\" }\n}\n";
AssemblyStack stack(solidity::test::CommonOptions::get().evmVersion(), AssemblyStack::Language::Assembly, OptimiserSettings::none());
BOOST_REQUIRE(stack.parseAndAnalyze("", source));
2017-02-15 14:21:11 +00:00
BOOST_REQUIRE(stack.errors().empty());
BOOST_CHECK_EQUAL(stack.print(), parsed);
2018-11-07 11:01:43 +00:00
string parsedInner = "{ let x := \"\\xe1\\xae\\xac\" }";
2018-11-07 11:01:43 +00:00
parsePrintCompare(parsedInner);
2017-02-15 14:21:11 +00:00
}
2017-11-22 15:24:59 +00:00
BOOST_AUTO_TEST_CASE(print_if)
{
parsePrintCompare("{ if 2 { pop(mload(0)) } }");
2017-11-22 15:24:59 +00:00
}
2017-05-23 11:26:01 +00:00
BOOST_AUTO_TEST_CASE(print_switch)
{
parsePrintCompare("{\n switch 42\n case 1 { }\n case 2 { }\n default { }\n}");
2017-05-23 11:26:01 +00:00
}
BOOST_AUTO_TEST_CASE(print_for)
{
parsePrintCompare("{\n let ret := 5\n for { let i := 1 } lt(i, 15) { i := add(i, 1) }\n { ret := mul(ret, i) }\n}");
}
2017-02-14 15:08:33 +00:00
BOOST_AUTO_TEST_CASE(function_definitions_multiple_args)
{
parsePrintCompare("{\n function f(a, d)\n { mstore(a, d) }\n function g(a, d) -> x, y\n { }\n}");
2017-02-14 15:08:33 +00:00
}
BOOST_AUTO_TEST_CASE(function_calls)
{
2017-03-22 15:53:15 +00:00
string source = R"({
function y()
{ }
function f(a) -> b
{ }
2017-03-22 15:53:15 +00:00
function g(a, b, c)
{ }
2017-12-13 11:28:02 +00:00
g(1, mul(2, address()), f(mul(2, caller())))
2017-03-22 15:53:15 +00:00
y()
})";
boost::replace_all(source, "\t", " ");
parsePrintCompare(source);
2017-02-14 15:08:33 +00:00
}
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_SUITE_END()
// }}}
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_SUITE(Analysis) // {{{
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_CASE(string_literals)
{
BOOST_CHECK(successAssemble("{ let x := \"12345678901234567890123456789012\" }"));
}
BOOST_AUTO_TEST_CASE(oversize_string_literals)
{
2017-02-20 10:42:23 +00:00
CHECK_ASSEMBLE_ERROR("{ let x := \"123456789012345678901234567890123\" }", TypeError, "String literal too long");
}
BOOST_AUTO_TEST_CASE(magic_variables)
{
CHECK_ASSEMBLE_ERROR("{ pop(this) }", DeclarationError, "Identifier not found");
CHECK_ASSEMBLE_ERROR("{ pop(ecrecover) }", DeclarationError, "Identifier not found");
BOOST_CHECK(successAssemble("{ let ecrecover := 1 pop(ecrecover) }"));
}
2017-04-11 17:24:38 +00:00
BOOST_AUTO_TEST_CASE(stack_variables)
{
BOOST_CHECK(successAssemble("{ let y := 3 { let z := 2 { let x := y } } }"));
2016-10-20 11:30:10 +00:00
}
2017-01-27 21:24:58 +00:00
BOOST_AUTO_TEST_CASE(designated_invalid_instruction)
{
BOOST_CHECK(successAssemble("{ invalid() }"));
2017-01-27 21:24:58 +00:00
}
2017-01-25 16:27:01 +00:00
BOOST_AUTO_TEST_CASE(inline_assembly_shadowed_instruction_declaration)
2017-01-25 16:24:43 +00:00
{
2019-05-22 22:25:39 +00:00
CHECK_ASSEMBLE_ERROR("{ let gas := 1 }", ParserError, "Cannot use builtin");
2017-01-25 16:24:43 +00:00
}
2017-02-09 16:34:48 +00:00
BOOST_AUTO_TEST_CASE(revert)
{
BOOST_CHECK(successAssemble("{ revert(0, 0) }"));
}
BOOST_AUTO_TEST_CASE(large_constant)
{
auto source = R"({
switch mul(1, 2)
case 0x0000000000000000000000000000000000000000000000000000000026121ff0 {
}
})";
BOOST_CHECK(successAssemble(source));
}
BOOST_AUTO_TEST_CASE(keccak256)
{
BOOST_CHECK(successAssemble("{ pop(keccak256(0, 0)) }"));
}
BOOST_AUTO_TEST_CASE(returndatasize)
{
if (!solidity::test::CommonOptions::get().evmVersion().supportsReturndata())
2019-02-26 18:21:32 +00:00
return;
BOOST_CHECK(successAssemble("{ let r := returndatasize() }"));
}
BOOST_AUTO_TEST_CASE(returndatacopy)
{
if (!solidity::test::CommonOptions::get().evmVersion().supportsReturndata())
2019-02-26 18:21:32 +00:00
return;
BOOST_CHECK(successAssemble("{ returndatacopy(0, 32, 64) }"));
}
BOOST_AUTO_TEST_CASE(staticcall)
{
if (!solidity::test::CommonOptions::get().evmVersion().hasStaticCall())
2019-02-26 18:21:32 +00:00
return;
BOOST_CHECK(successAssemble("{ pop(staticcall(10000, 0x123, 64, 0x10, 128, 0x10)) }"));
}
BOOST_AUTO_TEST_CASE(create2)
{
if (!solidity::test::CommonOptions::get().evmVersion().hasCreate2())
2019-02-26 18:21:32 +00:00
return;
BOOST_CHECK(successAssemble("{ pop(create2(10, 0x123, 32, 64)) }"));
}
2018-02-27 11:09:22 +00:00
BOOST_AUTO_TEST_CASE(shift)
{
if (!solidity::test::CommonOptions::get().evmVersion().hasBitwiseShifting())
2019-02-26 18:21:32 +00:00
return;
2018-02-27 11:09:22 +00:00
BOOST_CHECK(successAssemble("{ pop(shl(10, 32)) }"));
BOOST_CHECK(successAssemble("{ pop(shr(10, 32)) }"));
BOOST_CHECK(successAssemble("{ pop(sar(10, 32)) }"));
}
BOOST_AUTO_TEST_CASE(shift_constantinople_warning)
{
if (solidity::test::CommonOptions::get().evmVersion().hasBitwiseShifting())
return;
2020-02-17 11:56:44 +00:00
CHECK_PARSE_WARNING("{ shl(10, 32) }", TypeError, "The \"shl\" instruction is only available for Constantinople-compatible VMs");
CHECK_PARSE_WARNING("{ shr(10, 32) }", TypeError, "The \"shr\" instruction is only available for Constantinople-compatible VMs");
CHECK_PARSE_WARNING("{ sar(10, 32) }", TypeError, "The \"sar\" instruction is only available for Constantinople-compatible VMs");
2018-02-27 11:09:22 +00:00
}
BOOST_AUTO_TEST_CASE(jump_error)
2017-06-13 18:10:26 +00:00
{
CHECK_PARSE_WARNING("{ jump(44) }", DeclarationError, "Function not found.");
CHECK_PARSE_WARNING("{ jumpi(44, 2) }", DeclarationError, "Function not found.");
2017-06-13 18:10:26 +00:00
}
BOOST_AUTO_TEST_SUITE_END() // }}}
2016-02-22 01:13:41 +00:00
2017-02-14 14:40:58 +00:00
BOOST_AUTO_TEST_SUITE_END()
2016-02-22 01:13:41 +00:00
} // end namespaces