From f69a12c4c41327b2f714dc0eb72218c06f744779 Mon Sep 17 00:00:00 2001 From: Thomas Sewell Date: Wed, 6 Sep 2023 12:02:39 +0100 Subject: [PATCH] CN: add a test for required buddy-alloc behaviour Make sure the test set contains a (fairly) minimal example which fails for the same reason the buddy-allocator proof is currently failing, to do with requiring alloc-ids to be the same between argument pointers. --- tests/cn/get_from_array.c | 42 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 tests/cn/get_from_array.c diff --git a/tests/cn/get_from_array.c b/tests/cn/get_from_array.c new file mode 100644 index 000000000..fc9ad7859 --- /dev/null +++ b/tests/cn/get_from_array.c @@ -0,0 +1,42 @@ + + +/* Simple demo of a kind of situation where ownership is obtained via an array + that encloses an object passed by pointer. This kind of step is required by + the buddy-allocator proof. */ + +int *global_array; + +enum { + global_array_width = 42, +}; + +/*@ function (integer) global_array_width () @*/ + +static inline int get_global_array_width_for_cn (void) +/*@ cn_function global_array_width @*/ +{ + return global_array_width; +} + +/*@ +predicate (map) Global_Array (pointer p) +{ + take Arr = each (integer i; 0 <= i && i < global_array_width ()) + { Owned(p + (i * sizeof)) }; + return Arr; +} +@*/ + +void set_a_pointer(int *p, int x) +/*@ accesses global_array @*/ +/*@ requires take Arr = Global_Array(global_array) @*/ +/*@ requires let offs = ((integer)p - (integer)global_array) @*/ +/*@ requires mod(offs, sizeof) == 0 @*/ +/*@ requires let idx = (offs / sizeof) @*/ +/*@ requires 0 <= idx && idx < global_array_width () @*/ +/*@ ensures take Arr2 = Global_Array(global_array) @*/ +{ + /*@ extract Owned, idx; @*/ + *p = x; +} +