2020-04-08 21:35:07 +00:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_funcs.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
void* AllocateMemoryPages(std::size_t size);
|
|
|
|
void FreeMemoryPages(void* base, std::size_t size);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
class VirtualBuffer final : NonCopyable {
|
|
|
|
public:
|
|
|
|
constexpr VirtualBuffer() = default;
|
|
|
|
explicit VirtualBuffer(std::size_t count) : alloc_size{count * sizeof(T)} {
|
|
|
|
base_ptr = reinterpret_cast<T*>(AllocateMemoryPages(alloc_size));
|
|
|
|
}
|
|
|
|
|
|
|
|
~VirtualBuffer() {
|
|
|
|
FreeMemoryPages(base_ptr, alloc_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void resize(std::size_t count) {
|
|
|
|
FreeMemoryPages(base_ptr, alloc_size);
|
|
|
|
|
|
|
|
alloc_size = count * sizeof(T);
|
|
|
|
base_ptr = reinterpret_cast<T*>(AllocateMemoryPages(alloc_size));
|
|
|
|
}
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr const T& operator[](std::size_t index) const {
|
2020-04-08 21:35:07 +00:00
|
|
|
return base_ptr[index];
|
|
|
|
}
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr T& operator[](std::size_t index) {
|
2020-04-08 21:35:07 +00:00
|
|
|
return base_ptr[index];
|
|
|
|
}
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr T* data() {
|
2020-04-08 21:35:07 +00:00
|
|
|
return base_ptr;
|
|
|
|
}
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr const T* data() const {
|
2020-04-08 21:35:07 +00:00
|
|
|
return base_ptr;
|
|
|
|
}
|
|
|
|
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] constexpr std::size_t size() const {
|
2020-04-08 21:35:07 +00:00
|
|
|
return alloc_size / sizeof(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::size_t alloc_size{};
|
|
|
|
T* base_ptr{};
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Common
|