aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-04-28 14:05:44 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-04-28 14:05:44 -0400
commitcbfec643e85c2ca6516195bec8df77c33525a87f (patch)
tree153e971f54527e495548a21cb2c43b9fcfe6d3a6 /main.cpp
parent22218cc26bfe6e1ad0b9edeaac79481685bcaef0 (diff)
mem fix; manager
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp69
1 files changed, 69 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index a934b40..429bc7f 100644
--- a/main.cpp
+++ b/main.cpp
@@ -193,3 +193,72 @@ int main(int argc, char *argv[])
return 0; // Calls everything passed to atexit
}
+
+constexpr int memEntries = 2048;
+
+static void* mems[memEntries];
+static std::size_t sizs[memEntries];
+
+int balance = 0;
+
+std::size_t getUsedMem(void)
+{
+ std::size_t total = 0;
+ for (int i = 0; i < memEntries; i++)
+ total += sizs[i];
+
+ return total;
+}
+
+void *operator new(std::size_t n) throw (std::bad_alloc)
+{
+ auto buf = std::malloc(n);
+ balance++;
+
+ if (buf == nullptr)
+ throw std::bad_alloc();
+
+ for (int i = 0; i < memEntries; i++) {
+ if (mems[i] == nullptr) {
+ mems[i] = buf;
+ sizs[i] = n;
+ break;
+ }
+ }
+
+ return buf;
+}
+
+void operator delete(void* p) throw ()
+{
+ if (p != nullptr) {
+ std::free(p);
+ balance--;
+
+ for (int i = 0; i < memEntries; i++) {
+ if (mems[i] == p) {
+ mems[i] = nullptr;
+ sizs[i] = 0;
+ break;
+ }
+ }
+ }
+}
+
+void operator delete(void* p, std::size_t n) throw ()
+{
+ (void)n;
+
+ if (p != nullptr) {
+ std::free(p);
+ balance--;
+
+ for (int i = 0; i < memEntries; i++) {
+ if (mems[i] == p) {
+ mems[i] = nullptr;
+ sizs[i] = 0;
+ break;
+ }
+ }
+ }
+}