aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/buffer_cache/map_interval.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-24 00:32:44 -0400
committerGitHub <noreply@github.com>2020-05-24 00:32:44 -0400
commit6a5cf1473ee7fab4709008ee7b29fa6316a28896 (patch)
treede5ce0182bea7f3e16a8626df5b0ba4b2541ad02 /src/video_core/buffer_cache/map_interval.cpp
parentd0a9caa08f04489ea241d77a89b91d9797698b48 (diff)
parentebaace294fc6a867a12bcb30031c5c5cbfdcb238 (diff)
Merge pull request #3975 from ReinUsesLisp/fast-bufcache
buffer_cache: Replace boost::icl::interval_map with boost::intrusive::set
Diffstat (limited to 'src/video_core/buffer_cache/map_interval.cpp')
-rw-r--r--src/video_core/buffer_cache/map_interval.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/video_core/buffer_cache/map_interval.cpp b/src/video_core/buffer_cache/map_interval.cpp
new file mode 100644
index 000000000..62587e18a
--- /dev/null
+++ b/src/video_core/buffer_cache/map_interval.cpp
@@ -0,0 +1,33 @@
+// Copyright 2020 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include <algorithm>
+#include <array>
+#include <cstddef>
+#include <memory>
+
+#include "video_core/buffer_cache/map_interval.h"
+
+namespace VideoCommon {
+
+MapIntervalAllocator::MapIntervalAllocator() {
+ FillFreeList(first_chunk);
+}
+
+MapIntervalAllocator::~MapIntervalAllocator() = default;
+
+void MapIntervalAllocator::AllocateNewChunk() {
+ *new_chunk = std::make_unique<Chunk>();
+ FillFreeList(**new_chunk);
+ new_chunk = &(*new_chunk)->next;
+}
+
+void MapIntervalAllocator::FillFreeList(Chunk& chunk) {
+ const std::size_t old_size = free_list.size();
+ free_list.resize(old_size + chunk.data.size());
+ std::transform(chunk.data.rbegin(), chunk.data.rend(), free_list.begin() + old_size,
+ [](MapInterval& interval) { return &interval; });
+}
+
+} // namespace VideoCommon