summaryrefslogtreecommitdiff
path: root/render-test/allocation_index.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'render-test/allocation_index.hpp')
-rw-r--r--render-test/allocation_index.hpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/render-test/allocation_index.hpp b/render-test/allocation_index.hpp
new file mode 100644
index 0000000000..42c8f3d4e7
--- /dev/null
+++ b/render-test/allocation_index.hpp
@@ -0,0 +1,46 @@
+#pragma once
+
+#include <cstddef>
+
+class AllocationIndex {
+public:
+ AllocationIndex() = delete;
+ /**
+ * @brief Starts/stops allocated memory indexing.
+ */
+ static void setActive(bool);
+ /**
+ * @brief Returns memory indexing activity status.
+ */
+ static bool isActive();
+ /**
+ * @brief Resets the allocated memory index and all statistics data.
+ */
+ static void reset();
+ /**
+ * @brief Same as `malloc()` + indexes the allocated data,
+ * if indexing is active.
+ *
+ * @return void*
+ */
+ static void* allocate(size_t);
+ /**
+ * @brief Same as `free()` + removes the corresponding data from index,
+ * if these data are present in the index and indexing is active.
+ *
+ * @return void*
+ */
+ static void deallocate(void*) noexcept;
+ /**
+ * @brief Returns the size (in bytes) of allocated data, currently present in the index.
+ *
+ * @return size_t
+ */
+ static size_t getAllocatedSize();
+ /**
+ * @brief Returns the total amount of allocations since indexing start.
+ *
+ * @return size_t
+ */
+ static size_t getAllocationsCount();
+}; \ No newline at end of file