2015-04-24 15:35:16 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2015-04-24 15:35:16 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2015-04-24 15:35:16 +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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2015-04-24 15:35:16 +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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2015-04-24 15:35:16 +00:00
|
|
|
*/
|
|
|
|
|
2017-07-13 09:33:06 +00:00
|
|
|
#include <libevmasm/AssemblyItem.h>
|
|
|
|
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libdevcore/FixedHash.h>
|
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::eth;
|
|
|
|
|
2018-04-26 22:56:29 +00:00
|
|
|
static_assert(sizeof(size_t) <= 8, "size_t must be at most 64-bits wide");
|
|
|
|
|
2016-11-10 17:16:21 +00:00
|
|
|
AssemblyItem AssemblyItem::toSubAssemblyTag(size_t _subId) const
|
|
|
|
{
|
2017-01-06 10:33:08 +00:00
|
|
|
assertThrow(data() < (u256(1) << 64), Exception, "Tag already has subassembly set.");
|
2016-11-10 17:16:21 +00:00
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, Exception, "");
|
2018-04-26 22:56:29 +00:00
|
|
|
size_t tag = size_t(u256(data()) & 0xffffffffffffffffULL);
|
2016-11-10 17:16:21 +00:00
|
|
|
AssemblyItem r = *this;
|
|
|
|
r.m_type = PushTag;
|
2018-04-26 22:56:29 +00:00
|
|
|
r.setPushTagSubIdAndTag(_subId, tag);
|
2016-11-10 17:16:21 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<size_t, size_t> AssemblyItem::splitForeignPushTag() const
|
|
|
|
{
|
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, Exception, "");
|
2018-04-26 22:56:29 +00:00
|
|
|
u256 combined = u256(data());
|
|
|
|
size_t subId = size_t((combined >> 64) - 1);
|
|
|
|
size_t tag = size_t(combined & 0xffffffffffffffffULL);
|
|
|
|
return make_pair(subId, tag);
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AssemblyItem::setPushTagSubIdAndTag(size_t _subId, size_t _tag)
|
|
|
|
{
|
|
|
|
assertThrow(m_type == PushTag || m_type == Tag, Exception, "");
|
2018-04-26 22:56:29 +00:00
|
|
|
u256 data = _tag;
|
|
|
|
if (_subId != size_t(-1))
|
|
|
|
data |= (u256(_subId) + 1) << 64;
|
|
|
|
setData(data);
|
2016-11-10 17:16:21 +00:00
|
|
|
}
|
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
unsigned AssemblyItem::bytesRequired(unsigned _addressLength) const
|
|
|
|
{
|
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
|
|
|
case Tag: // 1 byte for the JUMPDEST
|
|
|
|
return 1;
|
|
|
|
case PushString:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 32;
|
2015-04-24 15:35:16 +00:00
|
|
|
case Push:
|
2017-01-06 10:33:08 +00:00
|
|
|
return 1 + max<unsigned>(1, dev::bytesRequired(data()));
|
2015-04-24 15:35:16 +00:00
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 4; // worst case: a 16MB program
|
2015-04-24 15:35:16 +00:00
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
return 1 + _addressLength;
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2017-09-18 10:04:24 +00:00
|
|
|
return 1 + 20;
|
2015-04-24 15:35:16 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
BOOST_THROW_EXCEPTION(InvalidOpcode());
|
|
|
|
}
|
|
|
|
|
2017-01-24 00:09:10 +00:00
|
|
|
int AssemblyItem::arguments() const
|
|
|
|
{
|
|
|
|
if (type() == Operation)
|
|
|
|
return instructionInfo(instruction()).args;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AssemblyItem::returnValues() const
|
2015-04-24 15:35:16 +00:00
|
|
|
{
|
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
2017-01-24 00:09:10 +00:00
|
|
|
return instructionInfo(instruction()).ret;
|
2015-04-24 15:35:16 +00:00
|
|
|
case Push:
|
|
|
|
case PushString:
|
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2015-04-24 15:35:16 +00:00
|
|
|
return 1;
|
|
|
|
case Tag:
|
|
|
|
return 0;
|
2018-11-21 20:42:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
2015-04-24 15:35:16 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-15 13:01:11 +00:00
|
|
|
bool AssemblyItem::canBeFunctional() const
|
|
|
|
{
|
2018-11-13 09:57:15 +00:00
|
|
|
if (m_jumpType != JumpType::Ordinary)
|
|
|
|
return false;
|
2016-11-15 13:01:11 +00:00
|
|
|
switch (m_type)
|
|
|
|
{
|
|
|
|
case Operation:
|
2017-10-03 10:45:44 +00:00
|
|
|
return !isDupInstruction(instruction()) && !isSwapInstruction(instruction());
|
2016-11-15 13:01:11 +00:00
|
|
|
case Push:
|
|
|
|
case PushString:
|
|
|
|
case PushTag:
|
|
|
|
case PushData:
|
|
|
|
case PushSub:
|
|
|
|
case PushSubSize:
|
|
|
|
case PushProgramSize:
|
|
|
|
case PushLibraryAddress:
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
2016-11-15 13:01:11 +00:00
|
|
|
return true;
|
|
|
|
case Tag:
|
|
|
|
return false;
|
2018-11-21 20:42:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
2016-11-15 13:01:11 +00:00
|
|
|
}
|
2018-11-21 20:42:19 +00:00
|
|
|
return false;
|
2016-11-15 13:01:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
string AssemblyItem::getJumpTypeAsString() const
|
|
|
|
{
|
|
|
|
switch (m_jumpType)
|
|
|
|
{
|
|
|
|
case JumpType::IntoFunction:
|
|
|
|
return "[in]";
|
|
|
|
case JumpType::OutOfFunction:
|
|
|
|
return "[out]";
|
|
|
|
case JumpType::Ordinary:
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-15 13:01:11 +00:00
|
|
|
string AssemblyItem::toAssemblyText() const
|
|
|
|
{
|
|
|
|
string text;
|
|
|
|
switch (type())
|
|
|
|
{
|
|
|
|
case Operation:
|
|
|
|
{
|
|
|
|
assertThrow(isValidInstruction(instruction()), AssemblyException, "Invalid instruction.");
|
|
|
|
string name = instructionInfo(instruction()).name;
|
|
|
|
transform(name.begin(), name.end(), name.begin(), [](unsigned char _c) { return tolower(_c); });
|
|
|
|
text = name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Push:
|
2018-12-05 21:11:31 +00:00
|
|
|
text = toHex(toCompactBigEndian(data(), 1), HexPrefix::Add);
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushString:
|
2017-04-11 17:53:55 +00:00
|
|
|
text = string("data_") + toHex(data());
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushTag:
|
2017-04-11 17:53:55 +00:00
|
|
|
{
|
2017-04-12 14:30:27 +00:00
|
|
|
size_t sub{0};
|
|
|
|
size_t tag{0};
|
2017-04-11 17:53:55 +00:00
|
|
|
tie(sub, tag) = splitForeignPushTag();
|
|
|
|
if (sub == size_t(-1))
|
|
|
|
text = string("tag_") + to_string(tag);
|
|
|
|
else
|
|
|
|
text = string("tag_") + to_string(sub) + "_" + to_string(tag);
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
2017-04-11 17:53:55 +00:00
|
|
|
}
|
2016-11-15 13:01:11 +00:00
|
|
|
case Tag:
|
2017-04-11 17:53:55 +00:00
|
|
|
assertThrow(data() < 0x10000, AssemblyException, "Declaration of sub-assembly tag.");
|
2016-11-15 13:01:11 +00:00
|
|
|
text = string("tag_") + to_string(size_t(data())) + ":";
|
|
|
|
break;
|
|
|
|
case PushData:
|
2017-04-11 17:53:55 +00:00
|
|
|
text = string("data_") + toHex(data());
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushSub:
|
|
|
|
text = string("dataOffset(sub_") + to_string(size_t(data())) + ")";
|
|
|
|
break;
|
|
|
|
case PushSubSize:
|
|
|
|
text = string("dataSize(sub_") + to_string(size_t(data())) + ")";
|
|
|
|
break;
|
|
|
|
case PushProgramSize:
|
2016-12-09 10:03:29 +00:00
|
|
|
text = string("bytecodeSize");
|
2016-11-15 13:01:11 +00:00
|
|
|
break;
|
|
|
|
case PushLibraryAddress:
|
|
|
|
text = string("linkerSymbol(\"") + toHex(data()) + string("\")");
|
|
|
|
break;
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
|
|
|
text = string("deployTimeAddress()");
|
|
|
|
break;
|
2016-11-15 13:01:11 +00:00
|
|
|
case UndefinedItem:
|
|
|
|
assertThrow(false, AssemblyException, "Invalid assembly item.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(InvalidOpcode());
|
|
|
|
}
|
|
|
|
if (m_jumpType == JumpType::IntoFunction || m_jumpType == JumpType::OutOfFunction)
|
|
|
|
{
|
|
|
|
text += "\t//";
|
|
|
|
if (m_jumpType == JumpType::IntoFunction)
|
|
|
|
text += " in";
|
|
|
|
else
|
|
|
|
text += " out";
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2015-04-24 15:35:16 +00:00
|
|
|
ostream& dev::eth::operator<<(ostream& _out, AssemblyItem const& _item)
|
|
|
|
{
|
|
|
|
switch (_item.type())
|
|
|
|
{
|
|
|
|
case Operation:
|
2016-04-04 11:27:09 +00:00
|
|
|
_out << " " << instructionInfo(_item.instruction()).name;
|
2016-04-02 12:56:43 +00:00
|
|
|
if (_item.instruction() == solidity::Instruction::JUMP || _item.instruction() == solidity::Instruction::JUMPI)
|
2015-04-24 15:35:16 +00:00
|
|
|
_out << "\t" << _item.getJumpTypeAsString();
|
|
|
|
break;
|
|
|
|
case Push:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PUSH " << hex << _item.data() << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushString:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PushString" << hex << (unsigned)_item.data() << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushTag:
|
2016-11-11 10:41:50 +00:00
|
|
|
{
|
|
|
|
size_t subId = _item.splitForeignPushTag().first;
|
|
|
|
if (subId == size_t(-1))
|
|
|
|
_out << " PushTag " << _item.splitForeignPushTag().second;
|
|
|
|
else
|
|
|
|
_out << " PushTag " << subId << ":" << _item.splitForeignPushTag().second;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
2016-11-11 10:41:50 +00:00
|
|
|
}
|
2015-04-24 15:35:16 +00:00
|
|
|
case Tag:
|
|
|
|
_out << " Tag " << _item.data();
|
|
|
|
break;
|
|
|
|
case PushData:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PushData " << hex << (unsigned)_item.data() << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushSub:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PushSub " << hex << size_t(_item.data()) << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushSubSize:
|
2017-08-22 12:55:01 +00:00
|
|
|
_out << " PushSubSize " << hex << size_t(_item.data()) << dec;
|
2015-04-24 15:35:16 +00:00
|
|
|
break;
|
|
|
|
case PushProgramSize:
|
|
|
|
_out << " PushProgramSize";
|
|
|
|
break;
|
2015-09-10 10:02:18 +00:00
|
|
|
case PushLibraryAddress:
|
2017-08-25 10:10:28 +00:00
|
|
|
{
|
|
|
|
string hash(h256((_item.data())).hex());
|
|
|
|
_out << " PushLibraryAddress " << hash.substr(0, 8) + "..." + hash.substr(hash.length() - 8);
|
2015-09-10 10:02:18 +00:00
|
|
|
break;
|
2017-08-25 10:10:28 +00:00
|
|
|
}
|
2017-11-14 11:58:04 +00:00
|
|
|
case PushDeployTimeAddress:
|
|
|
|
_out << " PushDeployTimeAddress";
|
|
|
|
break;
|
2015-04-24 15:35:16 +00:00
|
|
|
case UndefinedItem:
|
|
|
|
_out << " ???";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(InvalidOpcode());
|
|
|
|
}
|
|
|
|
return _out;
|
|
|
|
}
|