2019-03-05 16:20:28 +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
|
2019-03-05 16:20:28 +00:00
|
|
|
/**
|
|
|
|
* Container of (unparsed) Yul functions identified by name which are meant to be generated
|
|
|
|
* only once.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libsolidity/codegen/MultiUseYulFunctionCollector.h>
|
|
|
|
|
|
|
|
#include <liblangutil/Exceptions.h>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::frontend;
|
2019-03-05 16:20:28 +00:00
|
|
|
|
|
|
|
string MultiUseYulFunctionCollector::requestedFunctions()
|
|
|
|
{
|
|
|
|
string result;
|
|
|
|
for (auto const& f: m_requestedFunctions)
|
2020-09-18 11:46:02 +00:00
|
|
|
{
|
|
|
|
solAssert(f.second != "<<STUB<<", "");
|
2020-04-10 17:16:44 +00:00
|
|
|
// std::map guarantees ascending order when iterating through its keys.
|
2019-03-05 16:20:28 +00:00
|
|
|
result += f.second;
|
2020-09-18 11:46:02 +00:00
|
|
|
}
|
2019-03-05 16:20:28 +00:00
|
|
|
m_requestedFunctions.clear();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
string MultiUseYulFunctionCollector::createFunction(string const& _name, function<string ()> const& _creator)
|
|
|
|
{
|
|
|
|
if (!m_requestedFunctions.count(_name))
|
|
|
|
{
|
2020-09-18 11:46:02 +00:00
|
|
|
m_requestedFunctions[_name] = "<<STUB<<";
|
2019-03-05 16:20:28 +00:00
|
|
|
string fun = _creator();
|
|
|
|
solAssert(!fun.empty(), "");
|
2020-09-18 11:46:02 +00:00
|
|
|
solAssert(fun.find("function " + _name + "(") != string::npos, "Function not properly named.");
|
2019-03-05 16:20:28 +00:00
|
|
|
m_requestedFunctions[_name] = std::move(fun);
|
|
|
|
}
|
|
|
|
return _name;
|
|
|
|
}
|