mirror of
https://github.com/kmc-jp/n64-emu.git
synced 2025-04-02 10:21:43 -04:00
169 lines
3.6 KiB
C++
169 lines
3.6 KiB
C++
/* Copyright (c) 2017-2023 Hans-Kristian Arntzen
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "hash.hpp"
|
|
#include "object_pool.hpp"
|
|
#include "intrusive_list.hpp"
|
|
#include "intrusive_hash_map.hpp"
|
|
#include <vector>
|
|
|
|
namespace Util
|
|
{
|
|
template <typename T>
|
|
class TemporaryHashmapEnabled
|
|
{
|
|
public:
|
|
void set_hash(Hash hash_)
|
|
{
|
|
hash = hash_;
|
|
}
|
|
|
|
void set_index(unsigned index_)
|
|
{
|
|
index = index_;
|
|
}
|
|
|
|
Hash get_hash()
|
|
{
|
|
return hash;
|
|
}
|
|
|
|
unsigned get_index() const
|
|
{
|
|
return index;
|
|
}
|
|
|
|
private:
|
|
Hash hash = 0;
|
|
unsigned index = 0;
|
|
};
|
|
|
|
template <typename T, unsigned RingSize = 4, bool ReuseObjects = false>
|
|
class TemporaryHashmap
|
|
{
|
|
public:
|
|
~TemporaryHashmap()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
for (auto &ring : rings)
|
|
{
|
|
for (auto &node : ring)
|
|
object_pool.free(static_cast<T *>(&node));
|
|
ring.clear();
|
|
}
|
|
hashmap.clear();
|
|
|
|
for (auto &vacant : vacants)
|
|
object_pool.free(static_cast<T *>(&*vacant));
|
|
vacants.clear();
|
|
object_pool.clear();
|
|
}
|
|
|
|
void begin_frame()
|
|
{
|
|
index = (index + 1) & (RingSize - 1);
|
|
for (auto &node : rings[index])
|
|
{
|
|
hashmap.erase(node.get_hash());
|
|
free_object(&node, ReuseTag<ReuseObjects>());
|
|
}
|
|
rings[index].clear();
|
|
}
|
|
|
|
T *request(Hash hash)
|
|
{
|
|
auto *v = hashmap.find(hash);
|
|
if (v)
|
|
{
|
|
auto node = v->get();
|
|
if (node->get_index() != index)
|
|
{
|
|
rings[index].move_to_front(rings[node->get_index()], node);
|
|
node->set_index(index);
|
|
}
|
|
|
|
return &*node;
|
|
}
|
|
else
|
|
return nullptr;
|
|
}
|
|
|
|
template <typename... P>
|
|
void make_vacant(P &&... p)
|
|
{
|
|
vacants.push_back(object_pool.allocate(std::forward<P>(p)...));
|
|
}
|
|
|
|
T *request_vacant(Hash hash)
|
|
{
|
|
if (vacants.empty())
|
|
return nullptr;
|
|
|
|
auto top = vacants.back();
|
|
vacants.pop_back();
|
|
top->set_index(index);
|
|
top->set_hash(hash);
|
|
hashmap.emplace_replace(hash, top);
|
|
rings[index].insert_front(top);
|
|
return &*top;
|
|
}
|
|
|
|
template <typename... P>
|
|
T *emplace(Hash hash, P &&... p)
|
|
{
|
|
auto *node = object_pool.allocate(std::forward<P>(p)...);
|
|
node->set_index(index);
|
|
node->set_hash(hash);
|
|
hashmap.emplace_replace(hash, node);
|
|
rings[index].insert_front(node);
|
|
return node;
|
|
}
|
|
|
|
private:
|
|
IntrusiveList<T> rings[RingSize];
|
|
ObjectPool<T> object_pool;
|
|
unsigned index = 0;
|
|
IntrusiveHashMap<IntrusivePODWrapper<typename IntrusiveList<T>::Iterator>> hashmap;
|
|
std::vector<typename IntrusiveList<T>::Iterator> vacants;
|
|
|
|
template <bool reuse>
|
|
struct ReuseTag
|
|
{
|
|
};
|
|
|
|
void free_object(T *object, const ReuseTag<false> &)
|
|
{
|
|
object_pool.free(object);
|
|
}
|
|
|
|
void free_object(T *object, const ReuseTag<true> &)
|
|
{
|
|
vacants.push_back(object);
|
|
}
|
|
};
|
|
}
|