From 0464b7765aa4d1fc2178e443a3b37d19cfe541a0 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 2 Mar 2025 21:45:51 +0200 Subject: add ideal allocation tracker + Kind of like CHERI, but uses out-of-line pointer information. The idea is that a core that is compatible with ALLOC_IF queries the allocation tracker if an address is legal and gets a response. This ideal tracker effectively has infinite memory and doesn't talk to any other components, but a real implementation might want to limit the allocations per process or chat with some reserved memory region somewhere else in the system to maintain a binary tree or something. --- tests/simple_ideal_alloc/source.mk | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/simple_ideal_alloc/source.mk (limited to 'tests/simple_ideal_alloc/source.mk') diff --git a/tests/simple_ideal_alloc/source.mk b/tests/simple_ideal_alloc/source.mk new file mode 100644 index 0000000..f797cdd --- /dev/null +++ b/tests/simple_ideal_alloc/source.mk @@ -0,0 +1,7 @@ +ALLOC_TB_OBJ != ./scripts/gen-deps --sources "tests/simple_ideal_alloc/testbench.c" +IDEAL_ALLOC_TEST_OBJ != ./scripts/gen-deps --sources "tests/simple_ideal_alloc/sim.c" + +TEST_PROGS += build/tests/simple_ideal_alloc/sim + +build/tests/simple_ideal_alloc/sim: $(ALLOC_TB_OBJ) $(IDEAL_ALLOC_TEST_OBJ) $(OBJS) + $(COMPILE) $(ALLOC_TB_OBJ) $(IDEAL_ALLOC_TEST_OBJ) $(TEST_OBJS) $(OBJS) -o $@ -- cgit v1.3