2018-10-29 14:12:02 +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-10-29 14:12:02 +00:00
|
|
|
/**
|
|
|
|
* String abstraction that avoids copies.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
#include <unordered_map>
|
2018-10-29 14:12:02 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2019-04-24 12:03:09 +00:00
|
|
|
#include <functional>
|
2018-10-29 14:12:02 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2018-10-29 14:12:02 +00:00
|
|
|
{
|
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
/// Repository for YulStrings.
|
|
|
|
/// Owns the string data for all YulStrings, which can be referenced by a Handle.
|
|
|
|
/// A Handle consists of an ID (that depends on the insertion order of YulStrings and is potentially
|
|
|
|
/// non-deterministic) and a deterministic string hash.
|
2019-04-24 12:03:09 +00:00
|
|
|
class YulStringRepository
|
2018-10-29 14:12:02 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-11-09 19:21:26 +00:00
|
|
|
struct Handle
|
2018-10-29 14:12:02 +00:00
|
|
|
{
|
2018-11-09 19:21:26 +00:00
|
|
|
size_t id;
|
|
|
|
std::uint64_t hash;
|
|
|
|
};
|
2018-12-12 13:51:22 +00:00
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
static YulStringRepository& instance()
|
|
|
|
{
|
|
|
|
static YulStringRepository inst;
|
|
|
|
return inst;
|
|
|
|
}
|
2019-04-24 12:03:09 +00:00
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
Handle stringToHandle(std::string const& _string)
|
2018-10-29 14:12:02 +00:00
|
|
|
{
|
|
|
|
if (_string.empty())
|
2018-11-09 19:21:26 +00:00
|
|
|
return { 0, emptyHash() };
|
|
|
|
std::uint64_t h = hash(_string);
|
|
|
|
auto range = m_hashToID.equal_range(h);
|
|
|
|
for (auto it = range.first; it != range.second; ++it)
|
|
|
|
if (*m_strings[it->second] == _string)
|
|
|
|
return Handle{it->second, h};
|
|
|
|
m_strings.emplace_back(std::make_shared<std::string>(_string));
|
|
|
|
size_t id = m_strings.size() - 1;
|
|
|
|
m_hashToID.emplace_hint(range.second, std::make_pair(h, id));
|
2019-04-24 12:03:09 +00:00
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
return Handle{id, h};
|
2018-10-29 14:12:02 +00:00
|
|
|
}
|
2018-11-09 19:21:26 +00:00
|
|
|
std::string const& idToString(size_t _id) const { return *m_strings.at(_id); }
|
2018-10-29 14:12:02 +00:00
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
static std::uint64_t hash(std::string const& v)
|
2018-11-08 23:21:37 +00:00
|
|
|
{
|
2018-11-09 19:21:26 +00:00
|
|
|
// FNV hash - can be replaced by a better one, e.g. xxhash64
|
|
|
|
std::uint64_t hash = emptyHash();
|
2020-06-02 13:34:28 +00:00
|
|
|
for (char c: v)
|
2018-11-09 19:21:26 +00:00
|
|
|
{
|
|
|
|
hash *= 1099511628211u;
|
2020-06-02 13:34:28 +00:00
|
|
|
hash ^= static_cast<uint64_t>(c);
|
2018-11-09 19:21:26 +00:00
|
|
|
}
|
2018-11-08 23:21:37 +00:00
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
static constexpr std::uint64_t emptyHash() { return 14695981039346656037u; }
|
2019-04-24 12:03:09 +00:00
|
|
|
/// Clear the repository.
|
|
|
|
/// Use with care - there cannot be any dangling YulString references.
|
|
|
|
/// If references need to be cleared manually, register the callback via
|
|
|
|
/// resetCallback.
|
|
|
|
static void reset()
|
|
|
|
{
|
|
|
|
for (auto const& cb: resetCallbacks())
|
|
|
|
cb();
|
|
|
|
instance() = YulStringRepository{};
|
|
|
|
}
|
|
|
|
/// Struct that registers a reset callback as a side-effect of its construction.
|
|
|
|
/// Useful as static local variable to register a reset callback once.
|
|
|
|
struct ResetCallback
|
|
|
|
{
|
|
|
|
ResetCallback(std::function<void()> _fun)
|
|
|
|
{
|
|
|
|
YulStringRepository::resetCallbacks().emplace_back(std::move(_fun));
|
|
|
|
}
|
|
|
|
};
|
2018-12-12 13:51:22 +00:00
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
private:
|
2019-04-24 12:03:09 +00:00
|
|
|
YulStringRepository() = default;
|
|
|
|
YulStringRepository(YulStringRepository const&) = delete;
|
|
|
|
YulStringRepository(YulStringRepository&&) = default;
|
|
|
|
YulStringRepository& operator=(YulStringRepository const& _rhs) = delete;
|
|
|
|
YulStringRepository& operator=(YulStringRepository&& _rhs) = default;
|
|
|
|
|
|
|
|
static std::vector<std::function<void()>>& resetCallbacks()
|
|
|
|
{
|
|
|
|
static std::vector<std::function<void()>> callbacks;
|
|
|
|
return callbacks;
|
|
|
|
}
|
|
|
|
|
2018-12-12 13:51:22 +00:00
|
|
|
std::vector<std::shared_ptr<std::string>> m_strings = {std::make_shared<std::string>()};
|
|
|
|
std::unordered_multimap<std::uint64_t, size_t> m_hashToID = {{emptyHash(), 0}};
|
2018-10-29 14:12:02 +00:00
|
|
|
};
|
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
/// Wrapper around handles into the YulString repository.
|
|
|
|
/// Equality of two YulStrings is determined by comparing their ID.
|
|
|
|
/// The <-operator depends on the string hash and is not consistent
|
|
|
|
/// with string comparisons (however, it is still deterministic).
|
2018-10-29 14:12:02 +00:00
|
|
|
class YulString
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
YulString() = default;
|
2018-11-09 19:21:26 +00:00
|
|
|
explicit YulString(std::string const& _s): m_handle(YulStringRepository::instance().stringToHandle(_s)) {}
|
2018-10-29 14:12:02 +00:00
|
|
|
YulString(YulString const&) = default;
|
|
|
|
YulString(YulString&&) = default;
|
|
|
|
YulString& operator=(YulString const&) = default;
|
|
|
|
YulString& operator=(YulString&&) = default;
|
|
|
|
|
|
|
|
/// This is not consistent with the string <-operator!
|
2018-11-09 19:21:26 +00:00
|
|
|
/// First compares the string hashes. If they are equal
|
|
|
|
/// it checks for identical IDs (only identical strings have
|
|
|
|
/// identical IDs and identical strings do not compare as "less").
|
|
|
|
/// If the hashes are identical and the strings are distinct, it
|
|
|
|
/// falls back to string comparison.
|
|
|
|
bool operator<(YulString const& _other) const
|
|
|
|
{
|
|
|
|
if (m_handle.hash < _other.m_handle.hash) return true;
|
|
|
|
if (_other.m_handle.hash < m_handle.hash) return false;
|
|
|
|
if (m_handle.id == _other.m_handle.id) return false;
|
|
|
|
return str() < _other.str();
|
|
|
|
}
|
|
|
|
/// Equality is determined based on the string ID.
|
|
|
|
bool operator==(YulString const& _other) const { return m_handle.id == _other.m_handle.id; }
|
|
|
|
bool operator!=(YulString const& _other) const { return m_handle.id != _other.m_handle.id; }
|
2018-10-29 14:12:02 +00:00
|
|
|
|
2018-11-09 19:21:26 +00:00
|
|
|
bool empty() const { return m_handle.id == 0; }
|
2018-10-29 14:12:02 +00:00
|
|
|
std::string const& str() const
|
|
|
|
{
|
2018-11-09 19:21:26 +00:00
|
|
|
return YulStringRepository::instance().idToString(m_handle.id);
|
2018-10-29 14:12:02 +00:00
|
|
|
}
|
|
|
|
|
2019-05-13 16:18:02 +00:00
|
|
|
uint64_t hash() const { return m_handle.hash; }
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
private:
|
2018-11-09 19:21:26 +00:00
|
|
|
/// Handle of the string. Assumes that the empty string has ID zero.
|
|
|
|
YulStringRepository::Handle m_handle{ 0, YulStringRepository::emptyHash() };
|
2018-10-29 14:12:02 +00:00
|
|
|
};
|
|
|
|
|
2019-02-13 15:22:42 +00:00
|
|
|
inline YulString operator "" _yulstring(char const* _string, std::size_t _size)
|
2018-12-10 03:25:51 +00:00
|
|
|
{
|
|
|
|
return YulString(std::string(_string, _size));
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:12:02 +00:00
|
|
|
}
|