aboutsummaryrefslogtreecommitdiff
path: root/unused.jai
diff options
context:
space:
mode:
authordam <dam@gudinoff>2023-02-10 19:35:41 +0000
committerdam <dam@gudinoff>2023-02-10 19:35:41 +0000
commit027f9648e00ba40c1e64da0827c93299106503dc (patch)
tree0eb95d71aa00384f3127c5c87d22badd6915cfc1 /unused.jai
parent99455454aea87534efe1a47694f2ff4274e9f7cd (diff)
downloadtask-time-tracker-027f9648e00ba40c1e64da0827c93299106503dc.tar.zst
task-time-tracker-027f9648e00ba40c1e64da0827c93299106503dc.zip
Temporary code to check for memory owners.
Diffstat (limited to 'unused.jai')
-rw-r--r--unused.jai69
1 files changed, 68 insertions, 1 deletions
diff --git a/unused.jai b/unused.jai
index 3529a46..04997c5 100644
--- a/unused.jai
+++ b/unused.jai
@@ -1,3 +1,71 @@
+
+
+
+// --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- //
+
+
+// Check what's going on with the temp allocator:
+// Is it really the responsible for these paths?
+// It seems that the next beta (after 0.1.055b) compiler allows us to check this pretty easily.
+//
+//
+// An example that uses several different allocators, then asks them all
+// who owns which memory.
+//
+// Note that this is probably not the kind of thing you want to do at runtime
+// in the steady state, as it may not be very fast, but it could be a very helpful
+// debugging facility.
+//
+
+#import "Basic";
+#import "Pool";
+#import "Flat_Pool";
+#import "rpmalloc";
+
+main :: () {
+ pool: Pool;
+ flat: Flat_Pool;
+
+ a := context.default_allocator;
+ b := Allocator.{pool_allocator_proc, *pool};
+ c := Allocator.{flat_pool_allocator_proc, *flat};
+ d := Allocator.{rpmalloc_allocator_proc, null};
+
+ d.proc(.STARTUP, 0, 0, null, null); // rpmalloc needs explicit init right now, but others don't.
+
+ ma := alloc(1000, allocator=a);
+ mb := alloc(1000, allocator=b);
+ mc := alloc(1000, allocator=c);
+ md := alloc(1000, allocator=d);
+
+ report_who_owns(ma, a, b, c, d);
+ report_who_owns(mb, a, b, c, d);
+ report_who_owns(mc, a, b, c, d);
+ report_who_owns(md, a, b, c, d);
+}
+
+report_who_owns :: (memory: *void, allocators: .. Allocator) {
+ someone_owns_this := false;
+
+ print("Querying all allocators for address: %\n", memory);
+
+ for allocators {
+ caps, name := get_capabilities(it);
+ assert((caps & .IS_THIS_YOURS) != 0); // It had better be claiming to support this!
+
+ yours := cast(bool) it.proc(.IS_THIS_YOURS, 0, 0, memory, it.data);
+ print("[%] says \"%\"\n", yours, name);
+
+ someone_owns_this ||= yours;
+ }
+
+ assert(someone_owns_this);
+}
+
+
+// --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- //
+
+
checked_add :: (a: $T, b: T) -> result: T, overflow: bool
#modify {
if T.type == .INTEGER return;
@@ -47,4 +115,3 @@ checked_sub :: (a: $T, b: T) -> result: T, overflow: bool
return result, overflow;
}
-