2018-08-08 19:25:04 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2018-08-08 19:25:04 +00:00
|
|
|
/**
|
|
|
|
* @author Alex Beregszaszi
|
|
|
|
* @date 2018
|
|
|
|
* Tests for the assembler.
|
|
|
|
*/
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2018-08-08 19:25:04 +00:00
|
|
|
#include <libevmasm/Assembly.h>
|
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <tuple>
|
|
|
|
#include <memory>
|
2020-06-17 09:17:35 +00:00
|
|
|
#include <libyul/Exceptions.h>
|
2018-08-08 19:25:04 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::evmasm;
|
2018-08-08 19:25:04 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::frontend::test
|
2018-08-08 19:25:04 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2019-12-23 15:50:30 +00:00
|
|
|
void checkCompilation(evmasm::Assembly const& _assembly)
|
2018-08-08 19:25:04 +00:00
|
|
|
{
|
2018-08-09 08:14:47 +00:00
|
|
|
LinkerObject output = _assembly.assemble();
|
2018-08-08 19:25:04 +00:00
|
|
|
BOOST_CHECK(output.bytecode.size() > 0);
|
|
|
|
BOOST_CHECK(output.toHex().length() > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(Assembler)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(all_assembly_items)
|
|
|
|
{
|
2020-02-18 09:22:34 +00:00
|
|
|
map<string, unsigned> indices = {
|
|
|
|
{ "root.asm", 0 },
|
|
|
|
{ "sub.asm", 1 }
|
|
|
|
};
|
2018-08-09 08:14:47 +00:00
|
|
|
Assembly _assembly;
|
2021-06-29 12:38:59 +00:00
|
|
|
auto root_asm = make_shared<string>("root.asm");
|
2018-12-12 13:43:34 +00:00
|
|
|
_assembly.setSourceLocation({1, 3, root_asm});
|
2018-08-08 19:25:04 +00:00
|
|
|
|
|
|
|
Assembly _subAsm;
|
2021-06-29 12:38:59 +00:00
|
|
|
auto sub_asm = make_shared<string>("sub.asm");
|
2018-12-12 13:43:34 +00:00
|
|
|
_subAsm.setSourceLocation({6, 8, sub_asm});
|
2020-03-12 16:32:10 +00:00
|
|
|
// PushImmutable
|
|
|
|
_subAsm.appendImmutable("someImmutable");
|
2018-08-08 19:25:04 +00:00
|
|
|
_subAsm.append(Instruction::INVALID);
|
|
|
|
shared_ptr<Assembly> _subAsmPtr = make_shared<Assembly>(_subAsm);
|
|
|
|
|
|
|
|
// Tag
|
2018-08-09 08:14:47 +00:00
|
|
|
auto tag = _assembly.newTag();
|
|
|
|
_assembly.append(tag);
|
2018-08-08 19:25:04 +00:00
|
|
|
// Operation
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.append(u256(1));
|
|
|
|
_assembly.append(u256(2));
|
2018-08-08 19:25:04 +00:00
|
|
|
// Push
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.append(Instruction::KECCAK256);
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushProgramSize
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.appendProgramSize();
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushLibraryAddress
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.appendLibraryAddress("someLibrary");
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushTag + Operation
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.appendJump(tag);
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushData
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.append(bytes{0x1, 0x2, 0x3, 0x4});
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushSubSize
|
2018-08-09 08:14:47 +00:00
|
|
|
auto sub = _assembly.appendSubroutine(_subAsmPtr);
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushSub
|
2020-06-02 13:10:14 +00:00
|
|
|
_assembly.pushSubroutineOffset(static_cast<size_t>(sub.data()));
|
2018-08-08 19:25:04 +00:00
|
|
|
// PushDeployTimeAddress
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.append(PushDeployTimeAddress);
|
2020-03-12 16:32:10 +00:00
|
|
|
// AssignImmutable.
|
2020-10-14 11:20:20 +00:00
|
|
|
// Note that since there is no reference to "someOtherImmutable", this will just compile to two POPs in the hex output.
|
2020-03-12 16:32:10 +00:00
|
|
|
_assembly.appendImmutableAssignment("someOtherImmutable");
|
|
|
|
_assembly.append(u256(2));
|
|
|
|
_assembly.appendImmutableAssignment("someImmutable");
|
2018-08-08 19:25:04 +00:00
|
|
|
// Operation
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.append(Instruction::STOP);
|
2021-06-08 14:35:37 +00:00
|
|
|
_assembly.appendToAuxiliaryData(bytes{0x42, 0x66});
|
|
|
|
_assembly.appendToAuxiliaryData(bytes{0xee, 0xaa});
|
2018-08-09 08:14:47 +00:00
|
|
|
|
|
|
|
checkCompilation(_assembly);
|
2018-08-08 19:25:04 +00:00
|
|
|
|
|
|
|
BOOST_CHECK_EQUAL(
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.assemble().toHex(),
|
2020-10-14 15:31:01 +00:00
|
|
|
"5b6001600220606f73__$bf005014d9d0f534b8fcb268bd84c491a2$__"
|
|
|
|
"6000566067602260457300000000000000000000000000000000000000005050"
|
|
|
|
"600260010152"
|
2020-03-12 16:32:10 +00:00
|
|
|
"00fe"
|
|
|
|
"7f0000000000000000000000000000000000000000000000000000000000000000"
|
2018-08-08 19:25:04 +00:00
|
|
|
"fe010203044266eeaa"
|
|
|
|
);
|
|
|
|
BOOST_CHECK_EQUAL(
|
2018-08-09 08:14:47 +00:00
|
|
|
_assembly.assemblyString(),
|
2018-08-08 19:25:04 +00:00
|
|
|
" /* \"root.asm\":1:3 */\n"
|
|
|
|
"tag_1:\n"
|
2018-12-05 21:11:31 +00:00
|
|
|
" keccak256(0x02, 0x01)\n"
|
2018-08-08 19:25:04 +00:00
|
|
|
" bytecodeSize\n"
|
|
|
|
" linkerSymbol(\"bf005014d9d0f534b8fcb268bd84c491a2380f4acd260d1ccfe9cd8201f7e994\")\n"
|
|
|
|
" jump(tag_1)\n"
|
|
|
|
" data_a6885b3731702da62e8e4a8f584ac46a7f6822f4e2ba50fba902f67b1588d23b\n"
|
|
|
|
" dataSize(sub_0)\n"
|
|
|
|
" dataOffset(sub_0)\n"
|
|
|
|
" deployTimeAddress()\n"
|
2020-03-12 16:32:10 +00:00
|
|
|
" assignImmutable(\"0xc3978657661c4d8e32e3d5f42597c009f0d3859e9f9d0d94325268f9799e2bfb\")\n"
|
|
|
|
" 0x02\n"
|
|
|
|
" assignImmutable(\"0x26f2c0195e9d408feff3abd77d83f2971f3c9a18d1e8a9437c7835ae4211fc9f\")\n"
|
2018-08-08 19:25:04 +00:00
|
|
|
" stop\n"
|
|
|
|
"stop\n"
|
|
|
|
"data_a6885b3731702da62e8e4a8f584ac46a7f6822f4e2ba50fba902f67b1588d23b 01020304\n"
|
|
|
|
"\n"
|
|
|
|
"sub_0: assembly {\n"
|
|
|
|
" /* \"sub.asm\":6:8 */\n"
|
2020-03-12 16:32:10 +00:00
|
|
|
" immutable(\"0x26f2c0195e9d408feff3abd77d83f2971f3c9a18d1e8a9437c7835ae4211fc9f\")\n"
|
2018-08-08 19:25:04 +00:00
|
|
|
" invalid\n"
|
|
|
|
"}\n"
|
|
|
|
"\n"
|
|
|
|
"auxdata: 0x4266eeaa\n"
|
|
|
|
);
|
|
|
|
BOOST_CHECK_EQUAL(
|
2020-02-18 09:22:34 +00:00
|
|
|
util::jsonCompactPrint(_assembly.assemblyJSON(indices)),
|
|
|
|
"{\".auxdata\":\"4266eeaa\",\".code\":["
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"tag\",\"source\":0,\"value\":\"1\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"JUMPDEST\",\"source\":0},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"1\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"2\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"KECCAK256\",\"source\":0},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSHSIZE\",\"source\":0},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSHLIB\",\"source\":0,\"value\":\"someLibrary\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH [tag]\",\"source\":0,\"value\":\"1\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"JUMP\",\"source\":0},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH data\",\"source\":0,\"value\":\"A6885B3731702DA62E8E4A8F584AC46A7F6822F4E2BA50FBA902F67B1588D23B\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH #[$]\",\"source\":0,\"value\":\"0000000000000000000000000000000000000000000000000000000000000000\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH [$]\",\"source\":0,\"value\":\"0000000000000000000000000000000000000000000000000000000000000000\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSHDEPLOYADDRESS\",\"source\":0},"
|
2020-03-12 16:32:10 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"ASSIGNIMMUTABLE\",\"source\":0,\"value\":\"someOtherImmutable\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"2\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"ASSIGNIMMUTABLE\",\"source\":0,\"value\":\"someImmutable\"},"
|
2020-02-18 09:22:34 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"STOP\",\"source\":0}"
|
2020-03-12 16:32:10 +00:00
|
|
|
"],\".data\":{\"0\":{\".code\":["
|
|
|
|
"{\"begin\":6,\"end\":8,\"name\":\"PUSHIMMUTABLE\",\"source\":1,\"value\":\"someImmutable\"},"
|
|
|
|
"{\"begin\":6,\"end\":8,\"name\":\"INVALID\",\"source\":1}"
|
|
|
|
"]},\"A6885B3731702DA62E8E4A8F584AC46A7F6822F4E2BA50FBA902F67B1588D23B\":\"01020304\"}}"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(immutable)
|
|
|
|
{
|
|
|
|
map<string, unsigned> indices = {
|
|
|
|
{ "root.asm", 0 },
|
|
|
|
{ "sub.asm", 1 }
|
|
|
|
};
|
|
|
|
Assembly _assembly;
|
2021-06-29 12:38:59 +00:00
|
|
|
auto root_asm = make_shared<string>("root.asm");
|
2020-03-12 16:32:10 +00:00
|
|
|
_assembly.setSourceLocation({1, 3, root_asm});
|
|
|
|
|
|
|
|
Assembly _subAsm;
|
2021-06-29 12:38:59 +00:00
|
|
|
auto sub_asm = make_shared<string>("sub.asm");
|
2020-03-12 16:32:10 +00:00
|
|
|
_subAsm.setSourceLocation({6, 8, sub_asm});
|
|
|
|
_subAsm.appendImmutable("someImmutable");
|
|
|
|
_subAsm.appendImmutable("someOtherImmutable");
|
|
|
|
_subAsm.appendImmutable("someImmutable");
|
|
|
|
shared_ptr<Assembly> _subAsmPtr = make_shared<Assembly>(_subAsm);
|
|
|
|
|
|
|
|
_assembly.append(u256(42));
|
2020-10-14 11:20:20 +00:00
|
|
|
_assembly.append(u256(0));
|
2020-03-12 16:32:10 +00:00
|
|
|
_assembly.appendImmutableAssignment("someImmutable");
|
|
|
|
_assembly.append(u256(23));
|
2020-10-14 11:20:20 +00:00
|
|
|
_assembly.append(u256(0));
|
2020-03-12 16:32:10 +00:00
|
|
|
_assembly.appendImmutableAssignment("someOtherImmutable");
|
|
|
|
|
|
|
|
auto sub = _assembly.appendSubroutine(_subAsmPtr);
|
2020-06-02 13:10:14 +00:00
|
|
|
_assembly.pushSubroutineOffset(static_cast<size_t>(sub.data()));
|
2020-03-12 16:32:10 +00:00
|
|
|
|
|
|
|
checkCompilation(_assembly);
|
|
|
|
|
|
|
|
BOOST_CHECK_EQUAL(
|
|
|
|
_assembly.assemble().toHex(),
|
|
|
|
// root.asm
|
|
|
|
// assign "someImmutable"
|
|
|
|
"602a" // PUSH1 42 - value for someImmutable
|
2020-10-14 11:20:20 +00:00
|
|
|
"6000" // PUSH1 0 - offset of code into which to insert the immutable
|
|
|
|
"8181" // DUP2 DUP2
|
2020-03-12 16:32:10 +00:00
|
|
|
"6001" // PUSH1 1 - offset of first someImmutable in sub_0
|
2020-10-14 11:20:20 +00:00
|
|
|
"01" // ADD - add offset of immutable to offset of code
|
2020-03-12 16:32:10 +00:00
|
|
|
"52" // MSTORE
|
|
|
|
"6043" // PUSH1 67 - offset of second someImmutable in sub_0
|
2020-10-14 11:20:20 +00:00
|
|
|
"01" // ADD - add offset of immutable to offset of code
|
2020-03-12 16:32:10 +00:00
|
|
|
"52" // MSTORE
|
|
|
|
// assign "someOtherImmutable"
|
|
|
|
"6017" // PUSH1 23 - value for someOtherImmutable
|
2020-10-14 11:20:20 +00:00
|
|
|
"6000" // PUSH1 0 - offset of code into which to insert the immutable
|
2020-03-12 16:32:10 +00:00
|
|
|
"6022" // PUSH1 34 - offset of someOtherImmutable in sub_0
|
2020-10-14 11:20:20 +00:00
|
|
|
"01" // ADD - add offset of immutable to offset of code
|
2020-03-12 16:32:10 +00:00
|
|
|
"52" // MSTORE
|
|
|
|
"6063" // PUSH1 0x63 - dataSize(sub_0)
|
2020-10-14 15:31:01 +00:00
|
|
|
"601b" // PUSH1 0x23 - dataOffset(sub_0)
|
2020-03-12 16:32:10 +00:00
|
|
|
"fe" // INVALID
|
|
|
|
// end of root.asm
|
|
|
|
// sub.asm
|
|
|
|
"7f0000000000000000000000000000000000000000000000000000000000000000" // PUSHIMMUTABLE someImmutable - data at offset 1
|
|
|
|
"7f0000000000000000000000000000000000000000000000000000000000000000" // PUSHIMMUTABLE someOtherImmutable - data at offset 34
|
|
|
|
"7f0000000000000000000000000000000000000000000000000000000000000000" // PUSHIMMUTABLE someImmutable - data at offset 67
|
|
|
|
);
|
|
|
|
BOOST_CHECK_EQUAL(
|
|
|
|
_assembly.assemblyString(),
|
|
|
|
" /* \"root.asm\":1:3 */\n"
|
|
|
|
" 0x2a\n"
|
2020-10-14 11:20:20 +00:00
|
|
|
" 0x00\n"
|
2020-03-12 16:32:10 +00:00
|
|
|
" assignImmutable(\"0x26f2c0195e9d408feff3abd77d83f2971f3c9a18d1e8a9437c7835ae4211fc9f\")\n"
|
|
|
|
" 0x17\n"
|
2020-10-14 11:20:20 +00:00
|
|
|
" 0x00\n"
|
2020-03-12 16:32:10 +00:00
|
|
|
" assignImmutable(\"0xc3978657661c4d8e32e3d5f42597c009f0d3859e9f9d0d94325268f9799e2bfb\")\n"
|
|
|
|
" dataSize(sub_0)\n"
|
|
|
|
" dataOffset(sub_0)\n"
|
|
|
|
"stop\n"
|
|
|
|
"\n"
|
|
|
|
"sub_0: assembly {\n"
|
|
|
|
" /* \"sub.asm\":6:8 */\n"
|
|
|
|
" immutable(\"0x26f2c0195e9d408feff3abd77d83f2971f3c9a18d1e8a9437c7835ae4211fc9f\")\n"
|
|
|
|
" immutable(\"0xc3978657661c4d8e32e3d5f42597c009f0d3859e9f9d0d94325268f9799e2bfb\")\n"
|
|
|
|
" immutable(\"0x26f2c0195e9d408feff3abd77d83f2971f3c9a18d1e8a9437c7835ae4211fc9f\")\n"
|
|
|
|
"}\n"
|
|
|
|
);
|
|
|
|
BOOST_CHECK_EQUAL(
|
|
|
|
util::jsonCompactPrint(_assembly.assemblyJSON(indices)),
|
|
|
|
"{\".code\":["
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"2A\"},"
|
2020-10-14 11:20:20 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"0\"},"
|
2020-03-12 16:32:10 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"ASSIGNIMMUTABLE\",\"source\":0,\"value\":\"someImmutable\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"17\"},"
|
2020-10-14 11:20:20 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH\",\"source\":0,\"value\":\"0\"},"
|
2020-03-12 16:32:10 +00:00
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"ASSIGNIMMUTABLE\",\"source\":0,\"value\":\"someOtherImmutable\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH #[$]\",\"source\":0,\"value\":\"0000000000000000000000000000000000000000000000000000000000000000\"},"
|
|
|
|
"{\"begin\":1,\"end\":3,\"name\":\"PUSH [$]\",\"source\":0,\"value\":\"0000000000000000000000000000000000000000000000000000000000000000\"}"
|
|
|
|
"],\".data\":{\"0\":{\".code\":["
|
|
|
|
"{\"begin\":6,\"end\":8,\"name\":\"PUSHIMMUTABLE\",\"source\":1,\"value\":\"someImmutable\"},"
|
|
|
|
"{\"begin\":6,\"end\":8,\"name\":\"PUSHIMMUTABLE\",\"source\":1,\"value\":\"someOtherImmutable\"},"
|
|
|
|
"{\"begin\":6,\"end\":8,\"name\":\"PUSHIMMUTABLE\",\"source\":1,\"value\":\"someImmutable\"}"
|
|
|
|
"]}}}"
|
2018-08-08 19:25:04 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:17:35 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(subobject_encode_decode)
|
|
|
|
{
|
|
|
|
Assembly assembly;
|
|
|
|
|
|
|
|
shared_ptr<Assembly> subAsmPtr = make_shared<Assembly>();
|
|
|
|
shared_ptr<Assembly> subSubAsmPtr = make_shared<Assembly>();
|
|
|
|
|
|
|
|
assembly.appendSubroutine(subAsmPtr);
|
|
|
|
subAsmPtr->appendSubroutine(subSubAsmPtr);
|
|
|
|
|
|
|
|
BOOST_CHECK(assembly.encodeSubPath({0}) == 0);
|
|
|
|
BOOST_REQUIRE_THROW(assembly.encodeSubPath({1}), solidity::evmasm::AssemblyException);
|
|
|
|
BOOST_REQUIRE_THROW(assembly.decodeSubPath(1), solidity::evmasm::AssemblyException);
|
|
|
|
|
|
|
|
vector<size_t> subPath{0, 0};
|
|
|
|
BOOST_CHECK(assembly.decodeSubPath(assembly.encodeSubPath(subPath)) == subPath);
|
|
|
|
}
|
|
|
|
|
2018-08-08 19:25:04 +00:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
|
|
|
|
|
|
} // end namespaces
|