solidity/libyul/AsmJsonConverter.cpp

207 lines
6.4 KiB
C++
Raw Normal View History

2019-10-15 10:38:12 +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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2019-10-15 10:38:12 +00:00
/**
* @date 2019
* Converts inline assembly AST to JSON format
*/
#include <libyul/AsmJsonConverter.h>
#include <libyul/AST.h>
#include <libyul/Exceptions.h>
#include <libsolutil/CommonData.h>
#include <libsolutil/UTF8.h>
2019-10-15 10:38:12 +00:00
using namespace std;
2019-12-11 16:31:36 +00:00
namespace solidity::yul
2019-10-15 10:38:12 +00:00
{
Json::Value AsmJsonConverter::operator()(Block const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulBlock");
2019-10-15 10:38:12 +00:00
ret["statements"] = vectorOfVariantsToJson(_node.statements);
return ret;
}
Json::Value AsmJsonConverter::operator()(TypedName const& _node) const
{
yulAssert(!_node.name.empty(), "Invalid variable name.");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulTypedName");
2019-10-15 10:38:12 +00:00
ret["name"] = _node.name.str();
ret["type"] = _node.type.str();
return ret;
}
Json::Value AsmJsonConverter::operator()(Literal const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulLiteral");
2019-10-15 10:38:12 +00:00
switch (_node.kind)
{
case LiteralKind::Number:
yulAssert(
2019-12-11 16:31:36 +00:00
util::isValidDecimal(_node.value.str()) || util::isValidHex(_node.value.str()),
2019-10-15 10:38:12 +00:00
"Invalid number literal"
);
ret["kind"] = "number";
break;
case LiteralKind::Boolean:
ret["kind"] = "bool";
break;
case LiteralKind::String:
ret["kind"] = "string";
ret["hexValue"] = util::toHex(util::asBytes(_node.value.str()));
2019-10-15 10:38:12 +00:00
break;
}
ret["type"] = _node.type.str();
if (util::validateUTF8(_node.value.str()))
ret["value"] = _node.value.str();
2019-10-15 10:38:12 +00:00
return ret;
}
Json::Value AsmJsonConverter::operator()(Identifier const& _node) const
{
yulAssert(!_node.name.empty(), "Invalid identifier");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulIdentifier");
2019-10-15 10:38:12 +00:00
ret["name"] = _node.name.str();
return ret;
}
Json::Value AsmJsonConverter::operator()(Assignment const& _node) const
{
yulAssert(_node.variableNames.size() >= 1, "Invalid assignment syntax");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulAssignment");
2019-10-15 10:38:12 +00:00
for (auto const& var: _node.variableNames)
ret["variableNames"].append((*this)(var));
2019-11-20 12:09:29 +00:00
ret["value"] = _node.value ? std::visit(*this, *_node.value) : Json::nullValue;
2019-10-15 10:38:12 +00:00
return ret;
}
Json::Value AsmJsonConverter::operator()(FunctionCall const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulFunctionCall");
2019-10-15 10:38:12 +00:00
ret["functionName"] = (*this)(_node.functionName);
ret["arguments"] = vectorOfVariantsToJson(_node.arguments);
return ret;
}
Json::Value AsmJsonConverter::operator()(ExpressionStatement const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulExpressionStatement");
2019-11-20 12:09:29 +00:00
ret["expression"] = std::visit(*this, _node.expression);
2019-10-15 10:38:12 +00:00
return ret;
}
Json::Value AsmJsonConverter::operator()(VariableDeclaration const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulVariableDeclaration");
2019-10-15 10:38:12 +00:00
for (auto const& var: _node.variables)
ret["variables"].append((*this)(var));
2019-11-20 12:09:29 +00:00
ret["value"] = _node.value ? std::visit(*this, *_node.value) : Json::nullValue;
2019-10-15 10:38:12 +00:00
return ret;
}
Json::Value AsmJsonConverter::operator()(FunctionDefinition const& _node) const
{
yulAssert(!_node.name.empty(), "Invalid function name.");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulFunctionDefinition");
2019-10-15 10:38:12 +00:00
ret["name"] = _node.name.str();
for (auto const& var: _node.parameters)
ret["parameters"].append((*this)(var));
for (auto const& var: _node.returnVariables)
ret["returnVariables"].append((*this)(var));
ret["body"] = (*this)(_node.body);
return ret;
}
Json::Value AsmJsonConverter::operator()(If const& _node) const
{
yulAssert(_node.condition, "Invalid if condition.");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulIf");
2019-11-20 12:09:29 +00:00
ret["condition"] = std::visit(*this, *_node.condition);
2019-10-15 10:38:12 +00:00
ret["body"] = (*this)(_node.body);
return ret;
}
Json::Value AsmJsonConverter::operator()(Switch const& _node) const
{
yulAssert(_node.expression, "Invalid expression pointer.");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulSwitch");
2019-11-20 12:09:29 +00:00
ret["expression"] = std::visit(*this, *_node.expression);
2019-10-15 10:38:12 +00:00
for (auto const& var: _node.cases)
ret["cases"].append((*this)(var));
return ret;
}
Json::Value AsmJsonConverter::operator()(Case const& _node) const
{
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulCase");
2019-10-15 10:38:12 +00:00
ret["value"] = _node.value ? (*this)(*_node.value) : "default";
ret["body"] = (*this)(_node.body);
return ret;
}
Json::Value AsmJsonConverter::operator()(ForLoop const& _node) const
{
yulAssert(_node.condition, "Invalid for loop condition.");
Json::Value ret = createAstNode(nativeLocationOf(_node), "YulForLoop");
2019-10-15 10:38:12 +00:00
ret["pre"] = (*this)(_node.pre);
2019-11-20 12:09:29 +00:00
ret["condition"] = std::visit(*this, *_node.condition);
2019-10-15 10:38:12 +00:00
ret["post"] = (*this)(_node.post);
ret["body"] = (*this)(_node.body);
return ret;
}
2019-10-15 10:38:12 +00:00
Json::Value AsmJsonConverter::operator()(Break const& _node) const
{
return createAstNode(nativeLocationOf(_node), "YulBreak");
2019-10-15 10:38:12 +00:00
}
Json::Value AsmJsonConverter::operator()(Continue const& _node) const
{
return createAstNode(nativeLocationOf(_node), "YulContinue");
2019-10-15 10:38:12 +00:00
}
Json::Value AsmJsonConverter::operator()(Leave const& _node) const
{
return createAstNode(nativeLocationOf(_node), "YulLeave");
2019-10-15 10:38:12 +00:00
}
Json::Value AsmJsonConverter::createAstNode(langutil::SourceLocation const& _location, string _nodeType) const
{
Json::Value ret{Json::objectValue};
ret["nodeType"] = std::move(_nodeType);
int length = -1;
if (_location.start >= 0 && _location.end >= 0)
length = _location.end - _location.start;
ret["src"] = to_string(_location.start) + ":" + to_string(length) + ":" + (m_sourceIndex.has_value() ? to_string(m_sourceIndex.value()) : "-1");
2019-10-15 10:38:12 +00:00
return ret;
}
template <class T>
Json::Value AsmJsonConverter::vectorOfVariantsToJson(vector<T> const& _vec) const
{
Json::Value ret{Json::arrayValue};
for (auto const& var: _vec)
2019-11-20 12:09:29 +00:00
ret.append(std::visit(*this, var));
2019-10-15 10:38:12 +00:00
return ret;
}
}