mirror of
https://github.com/ProgramSnail/pass_strategy_synthesis.git
synced 2026-04-29 09:14:35 +00:00
structures: model fixes, analyzer part
This commit is contained in:
parent
2e040599f3
commit
84d1ce7eb5
3 changed files with 311 additions and 275 deletions
|
|
@ -14,13 +14,14 @@ struct
|
||||||
|
|
||||||
type tag = read_cap * write_cap * copy_cap * in_cap * out_cap
|
type tag = read_cap * write_cap * copy_cap * in_cap * out_cap
|
||||||
|
|
||||||
type stmt = Call of data * data list | Read of data | Write of data | Choice of stmt list * stmt list
|
type path = VarP of data | DerefP of path | AccessP of path * data
|
||||||
|
type argtype = UnitT | RefT of tag * argtype | TupleT of argtype list | FunT of data
|
||||||
|
type argmem = VarM of data | RefM of argmem | TupleM of argmem list | FunM
|
||||||
|
|
||||||
|
type stmt = Call of data * path list | CallLam of path * path list | Read of path | Write of path | Choice of stmt list * stmt list
|
||||||
type body = stmt list
|
type body = stmt list
|
||||||
|
|
||||||
|
type fun_decl = argtype list * body
|
||||||
type fun_decl = tag list * body
|
|
||||||
|
|
||||||
type prog = fun_decl list * fun_decl
|
type prog = fun_decl list * fun_decl
|
||||||
|
|
||||||
(* --- exceptions --- *)
|
(* --- exceptions --- *)
|
||||||
|
|
@ -30,14 +31,17 @@ struct
|
||||||
exception Incorrect_const_cast of int
|
exception Incorrect_const_cast of int
|
||||||
exception Invalid_argument_tag of int
|
exception Invalid_argument_tag of int
|
||||||
exception Incompatible_states
|
exception Incompatible_states
|
||||||
|
exception Incompatible_path_and_type
|
||||||
|
exception Incompatible_path_and_mem
|
||||||
|
exception Incompatible_path_and_type_for_tag
|
||||||
|
|
||||||
(* --- static interpreter (no rec) --- *)
|
(* --- static interpreter (no rec) --- *)
|
||||||
|
|
||||||
(* TODO: allow data (rvalue) in calls ?? *)
|
(* TODO: allow data (rvalue) in calls ?? *)
|
||||||
type arg = RValue | LValue of data
|
type arg = RValue | LValue of path
|
||||||
type value = UnitV | UndefV | BotV (* NOTE: RefV of data - not needed for now *)
|
type value = UnitV | UndefV | BotV
|
||||||
|
|
||||||
type env = (int * (tag * data)) list
|
type env = (int * (argmem * argtype)) list
|
||||||
|
|
||||||
(* env * memory * last unused memory * visited functions *)
|
(* env * memory * last unused memory * visited functions *)
|
||||||
type state = env * value list * int * int list
|
type state = env * value list * int * int list
|
||||||
|
|
@ -48,7 +52,7 @@ struct
|
||||||
| x :: xs, y :: ys -> f x y :: list_zip_with f xs ys
|
| x :: xs, y :: ys -> f x y :: list_zip_with f xs ys
|
||||||
| _, _ -> []
|
| _, _ -> []
|
||||||
|
|
||||||
(* --- *)
|
(* --- combination --- *)
|
||||||
|
|
||||||
let value_combine (left : value) (right : value) : value = match left, right with
|
let value_combine (left : value) (right : value) : value = match left, right with
|
||||||
| UnitV, UnitV -> UnitV
|
| UnitV, UnitV -> UnitV
|
||||||
|
|
@ -64,7 +68,7 @@ struct
|
||||||
else (lenv, memory_combine lmem rmem, lmem_len, List.append lvisited rvisited)
|
else (lenv, memory_combine lmem rmem, lmem_len, List.append lvisited rvisited)
|
||||||
(* TODO: union visited lists instead ? *)
|
(* TODO: union visited lists instead ? *)
|
||||||
|
|
||||||
(* --- *)
|
(* --- tag accessors --- *)
|
||||||
|
|
||||||
let is_read (tag : tag) : bool = match tag with
|
let is_read (tag : tag) : bool = match tag with
|
||||||
| (Rd, _, _, _, _) -> true
|
| (Rd, _, _, _, _) -> true
|
||||||
|
|
@ -102,38 +106,77 @@ struct
|
||||||
| (x :: xs, _n) -> x :: list_replace xs (id - 1) value
|
| (x :: xs, _n) -> x :: list_replace xs (id - 1) value
|
||||||
| ([], _) -> raise Not_found
|
| ([], _) -> raise Not_found
|
||||||
|
|
||||||
|
let inv_id (mem_len : int) (id : data) : data = mem_len - id - 1
|
||||||
|
|
||||||
|
(* --- path accessors --- *)
|
||||||
|
|
||||||
|
let rec pathtype (t : argtype) (p : path) : argtype = match t, p with
|
||||||
|
| t, VarP x -> t
|
||||||
|
| RefT (tag, t), DerefP p -> pathtype t p
|
||||||
|
| TupleT ts, AccessP (p, n) -> pathtype (List.nth ts n) p
|
||||||
|
| _, _ -> raise Incompatible_path_and_type
|
||||||
|
|
||||||
|
let rec pathmem (m : argmem) (p : path) : data = match m, p with
|
||||||
|
| VarM m, VarP x -> m
|
||||||
|
| RefM m, DerefP p -> pathmem m p
|
||||||
|
| TupleM ms, AccessP (p, n) -> pathmem (List.nth ms n) p
|
||||||
|
| _, _ -> raise Incompatible_path_and_mem
|
||||||
|
|
||||||
|
let rec pathtag (t : argtype) (p : path) : tag = match t, p with
|
||||||
|
| RefT (tag, t), VarP x -> tag
|
||||||
|
| RefT (tag, t), DerefP p -> pathtag t p
|
||||||
|
| TupleT ts, AccessP (p, n) -> pathtag (List.nth ts n) p
|
||||||
|
| _, _ -> raise Incompatible_path_and_type_for_tag
|
||||||
|
|
||||||
|
let rec pathvar (p : path) : data = match p with
|
||||||
|
| VarP x -> x
|
||||||
|
| DerefP p -> pathvar p
|
||||||
|
| AccessP (p, n) -> pathvar p
|
||||||
|
|
||||||
|
let typeof (env : env) (p : path) : argtype = pathtype (snd (List.assoc (pathvar p) env)) p
|
||||||
|
let accessmem (env : env) (p : path) : data = pathmem (fst (List.assoc (pathvar p) env)) p
|
||||||
|
let argtag (env : env) (p : path) : tag = pathtag (snd (List.assoc (pathvar p) env)) p
|
||||||
|
(* TODO: check indices *)
|
||||||
|
let access_get (env : env) (mem : value list) (mem_len : data) (p : path) : value = List.nth mem @@ inv_id mem_len @@ accessmem env p
|
||||||
|
let access_set (env : env) (mem : value list) (mem_len : data) (p : path) (value : value) : value list = list_replace mem (inv_id mem_len @@ accessmem env p) value
|
||||||
|
|
||||||
|
(* --- *)
|
||||||
|
|
||||||
let visited_add (state : state) (id : data) : state =
|
let visited_add (state : state) (id : data) : state =
|
||||||
match state with (env, mem, mem_len, visited) -> (env, mem, mem_len, id :: visited)
|
match state with (env, mem, mem_len, visited) -> (env, mem, mem_len, id :: visited)
|
||||||
|
|
||||||
let visited_check (state : state) (id : data) : bool =
|
let visited_check (state : state) (id : data) : bool =
|
||||||
match state with (_, _, _, visited) -> List.exists (fun i -> i == id) visited
|
match state with (_, _, _, visited) -> List.exists (fun i -> i == id) visited
|
||||||
|
|
||||||
let env_get (state : state) (id : data) : (tag * data) =
|
(* --- *)
|
||||||
|
|
||||||
|
(* TODO: replacewith more useful path versions *)
|
||||||
|
let env_get (state : state) (id : data) : (argmem * argtype) =
|
||||||
match state with (env, _mem, _mem_len, _visited) -> List.assoc id env
|
match state with (env, _mem, _mem_len, _visited) -> List.assoc id env
|
||||||
|
|
||||||
let env_add (state : state) (id : data) (mode : tag) (mem_id : data) : state = match state with
|
let env_add (state : state) (id : data) (argmem : argmem) (argtype : argtype) : state = match state with
|
||||||
(env, mem, mem_len, visited) -> let env = (id, (mode, mem_id)) :: env in
|
(env, mem, mem_len, visited) -> let env = (id, (argmem, argtype)) :: env in
|
||||||
(env, mem, mem_len, visited)
|
(env, mem, mem_len, visited)
|
||||||
|
|
||||||
let inv_id (mem_len : int) (id : data) : data = mem_len - id - 1
|
let mem_get (state : state) (p : path) : value = match state with
|
||||||
|
(env, mem, mem_len, _visited) -> access_get env mem mem_len p
|
||||||
|
|
||||||
let mem_get (state : state) (id : data) : value = match state with
|
let mem_set (state : state) (p : path) (value : value) : state = match state with
|
||||||
(_env, mem, mem_len, _visited) -> List.nth mem @@ inv_id mem_len @@ snd @@ env_get state id
|
(env, mem, mem_len, visited) -> (env, access_set env mem mem_len p value, mem_len, visited)
|
||||||
|
|
||||||
let mem_set (state : state) (id : data) (value : value) : state = match state with
|
|
||||||
(env, mem, mem_len, visited) -> let mem_id = inv_id mem_len @@ snd @@ env_get state id in
|
|
||||||
let mem = list_replace mem mem_id value in (env, mem, mem_len, visited)
|
|
||||||
|
|
||||||
let mem_add (state : state) (value : value) : state = match state with
|
let mem_add (state : state) (value : value) : state = match state with
|
||||||
(env, mem, mem_len, visited) -> let mem = value :: mem in (env, mem, mem_len + 1, visited)
|
(env, mem, mem_len, visited) -> let mem = value :: mem in (env, mem, mem_len + 1, visited)
|
||||||
|
|
||||||
let mem_check (state : state) (id : data) : unit =
|
let mem_check (state : state) (p : path) : unit =
|
||||||
if mem_get state id == BotV then raise @@ Incorrect_memory_access id else ()
|
(* TODO: use path in error instead *)
|
||||||
|
if mem_get state p == BotV then raise @@ Incorrect_memory_access (pathvar p) else ()
|
||||||
|
|
||||||
|
(* --- *)
|
||||||
|
|
||||||
let arg_to_value (state : state) (arg : arg) : value = match arg with
|
let arg_to_value (state : state) (arg : arg) : value = match arg with
|
||||||
| RValue -> UnitV
|
| RValue -> UnitV
|
||||||
| LValue id -> mem_get state id
|
| LValue p -> mem_get state p
|
||||||
|
(* TODO: FIXME: args as argmem ?? *)
|
||||||
|
|
||||||
let st_mem_len (state : state) : int =
|
let st_mem_len (state : state) : int =
|
||||||
match state with (_, _, mem_len, _) -> mem_len
|
match state with (_, _, mem_len, _) -> mem_len
|
||||||
|
|
@ -248,269 +291,261 @@ struct
|
||||||
Printf.printf "done!";
|
Printf.printf "done!";
|
||||||
[%expect {| done! |}]
|
[%expect {| done! |}]
|
||||||
|
|
||||||
let%expect_test "ref param in main failure" =
|
(* let%expect_test "ref param in main failure" = *)
|
||||||
try (eval_prog ([], ([i_ref], []));
|
(* try (eval_prog ([], ([i_ref], [])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Ref_rvalue_argument id -> Printf.printf "%i" id;
|
(* with Ref_rvalue_argument id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
let%expect_test "read empty args" =
|
(* let%expect_test "read empty args" = *)
|
||||||
try (eval_prog ([], ([], [Read 0]));
|
(* try (eval_prog ([], ([], [Read 0])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Not_found -> Printf.printf "done!";
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "write empty args" =
|
(* let%expect_test "write empty args" = *)
|
||||||
try (eval_prog ([], ([], [Write 0]));
|
(* try (eval_prog ([], ([], [Write 0])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Not_found -> Printf.printf "done!";
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "simple write" =
|
(* let%expect_test "simple write" = *)
|
||||||
eval_prog ([], ([wi_value], [Write 0]));
|
(* eval_prog ([], ([wi_value], [Write 0])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "simple read" = (* NOTE: should not work with read-before-write check*)
|
(* let%expect_test "simple read" = (* NOTE: should not work with read-before-write check*) *)
|
||||||
eval_prog ([], ([ri_value], [Read 0]));
|
(* eval_prog ([], ([ri_value], [Read 0])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "multiple read & write" =
|
(* let%expect_test "multiple read & write" = *)
|
||||||
eval_prog ([], ([rwi_value], [Write 0; Read 0; Write 0; Write 0; Read 0; Read 0]));
|
(* eval_prog ([], ([rwi_value], [Write 0; Read 0; Write 0; Write 0; Read 0; Read 0])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "multiple read & write, multiple args" =
|
(* let%expect_test "multiple read & write, multiple args" = *)
|
||||||
eval_prog ([], ([wi_value; wi_value; wi_value], [Write 0; Read 0; Write 1; Write 0; Write 2; Read 1; Write 2; Read 0; Read 2]));
|
(* eval_prog ([], ([wi_value; wi_value; wi_value], [Write 0; Read 0; Write 1; Write 0; Write 2; Read 1; Write 2; Read 0; Read 2])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "main, access out of range" =
|
(* let%expect_test "main, access out of range" = *)
|
||||||
try(eval_prog ([], ([wi_value], [Write 0; Read 5 ]));
|
(* try(eval_prog ([], ([wi_value], [Write 0; Read 5 ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Not_found -> Printf.printf "done!";
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "main, access out of range" =
|
(* let%expect_test "main, access out of range" = *)
|
||||||
try(eval_prog ([], ([wi_value], [Write 0; Write 5 ]));
|
(* try(eval_prog ([], ([wi_value], [Write 0; Write 5 ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Not_found -> Printf.printf "done!";
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
(* >> tests with one function *)
|
(* >> tests with one function *)
|
||||||
|
|
||||||
let%expect_test "simple function call with value arg" =
|
(* let%expect_test "simple function call with value arg" = *)
|
||||||
eval_prog ([([wi_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([wi_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with ref arg" =
|
(* let%expect_test "simple function call with ref arg" = *)
|
||||||
eval_prog ([([wi_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([wi_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "function with value arg & read" =
|
(* let%expect_test "function with value arg & read" = *)
|
||||||
eval_prog ([([wi_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ]));
|
(* eval_prog ([([wi_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
(* --- *)
|
(* --- *)
|
||||||
|
|
||||||
let%expect_test "function with ref arg & read" =
|
(* let%expect_test "function with ref arg & read" = *)
|
||||||
try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ]));
|
(* try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
[%expect.unreachable])
|
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
|
||||||
[%expect {| 0 |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref arg & call twice" =
|
|
||||||
try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Call (0, [0]) ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
|
||||||
[%expect {| 0 |}]
|
|
||||||
|
|
||||||
(* NOTE: behaviour is fixed with new capabilities *)
|
|
||||||
let%expect_test "function with ref arg, write first & call twice" =
|
|
||||||
eval_prog ([([wi_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Call (0, [0]) ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
|
|
||||||
let%expect_test "function with ref arg & read, write" =
|
|
||||||
try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0; Write 0 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
|
||||||
[%expect {| 0 |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref arg & write, read" =
|
|
||||||
eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Write 0; Read 0 ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref arg, no write inside & read" =
|
|
||||||
eval_prog ([([ri_ref], [Read 0; Read 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* --- *)
|
|
||||||
|
|
||||||
let%expect_test "function with value arg, read out of range" =
|
|
||||||
try(eval_prog ([([ri_ref], [Read 0; Read 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Not_found -> Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref arg, read out of range" =
|
|
||||||
try(eval_prog ([([ri_ref], [Read 0; Read 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Not_found -> Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with value arg, write out of range" =
|
|
||||||
try(eval_prog ([([rwi_value], [Read 0; Write 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Not_found -> Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with value arg, call out of range" =
|
|
||||||
try(eval_prog ([([ri_value], [Read 0])], ([wi_value; i_value], [Write 0; Call (0, [2]); Read 0 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Not_found -> Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* --- *)
|
|
||||||
|
|
||||||
let%expect_test "function with ref & value args, no write inside & read" =
|
|
||||||
eval_prog (
|
|
||||||
[([ri_ref; ri_value], [Read 0; Read 1])],
|
|
||||||
([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref & value args, write value inside & read" =
|
|
||||||
eval_prog (
|
|
||||||
[([ri_ref; rwi_value], [Read 0; Read 1; Write 1; Read 1])],
|
|
||||||
([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
let%expect_test "function with ref & value args, write both inside & read" =
|
|
||||||
try (eval_prog (
|
|
||||||
[([rwi_ref; rwi_value],[Read 0; Read 1; Write 0; Write 1; Read 1])],
|
|
||||||
([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ]));
|
|
||||||
[%expect.unreachable])
|
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
|
||||||
[%expect {| 0 |}]
|
|
||||||
|
|
||||||
(* --- *)
|
|
||||||
|
|
||||||
(* NOTE: maybe important case in the future *)
|
|
||||||
let%expect_test "function with ref two same ref args, read both & read" =
|
|
||||||
eval_prog (
|
|
||||||
[([ri_ref; ri_ref],[Read 0; Read 1; Read 1])],
|
|
||||||
([wi_value], [Write 0; Call (0, [0; 0]); Read 0 ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* NOTE: changed semantics by comporasion with prev analyzer, new test *)
|
|
||||||
let%expect_test "function with ref two same ref args, read both & nothing" =
|
|
||||||
eval_prog (
|
|
||||||
[([ri_ref; ri_ref],[Read 0; Read 1; Read 1])],
|
|
||||||
([wi_value], [Write 0; Call (0, [0; 0]); ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* NOTE: changed semantics by comporasion with prev analyzer, new test *)
|
|
||||||
let%expect_test "function with ref & copy of the same arg, read & write both & nothing" =
|
|
||||||
eval_prog (
|
|
||||||
[([rwi_ref; rwi_value],[Read 0; Read 1; Write 0; Write 1; Read 1])],
|
|
||||||
([wi_value], [Write 0; Call (0, [0; 0]); ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* NOTE: changed semantics by comporasion with prev analyzer, new test *)
|
|
||||||
let%expect_test "function with copy & ref of the same arg, read & write both & nothing" =
|
|
||||||
eval_prog (
|
|
||||||
[([rwi_value; rwi_ref],[Read 0; Read 1; Write 0; Write 1; Read 1])],
|
|
||||||
([wi_value], [Write 0; Call (0, [0; 0]); ]));
|
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
|
||||||
|
|
||||||
(* TODO: FIXME: now correct (use state before for mem check), is this good ?, proper way to fix ? *)
|
|
||||||
(* NOTE: maybe important case in the future *)
|
|
||||||
let%expect_test "function with ref two same ref args, read & write both, error" =
|
|
||||||
(* try ( *)
|
|
||||||
eval_prog (
|
|
||||||
[([rwi_ref; rwi_ref],[Read 0; Read 1; Write 0; Write 1; Read 1])],
|
|
||||||
([wi_value], [Write 0; Call (0, [0; 0]); ]));
|
|
||||||
(* [%expect.unreachable]) *)
|
(* [%expect.unreachable]) *)
|
||||||
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
(* [%expect {| 0 |}] *)
|
(* [%expect {| 0 |}] *)
|
||||||
Printf.printf "done!";
|
|
||||||
[%expect {| done! |}]
|
(* let%expect_test "function with ref arg & call twice" = *)
|
||||||
|
(* try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Call (0, [0]) ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
|
(* NOTE: behaviour is fixed with new capabilities *)
|
||||||
|
(* let%expect_test "function with ref arg, write first & call twice" = *)
|
||||||
|
(* eval_prog ([([wi_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Call (0, [0]) ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref arg & read, write" = *)
|
||||||
|
(* try (eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0; Write 0 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref arg & write, read" = *)
|
||||||
|
(* eval_prog ([([rwi_ref], [Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]); Write 0; Read 0 ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref arg, no write inside & read" = *)
|
||||||
|
(* eval_prog ([([ri_ref], [Read 0; Read 0])], ([wi_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* --- *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with value arg, read out of range" = *)
|
||||||
|
(* try(eval_prog ([([ri_ref], [Read 0; Read 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref arg, read out of range" = *)
|
||||||
|
(* try(eval_prog ([([ri_ref], [Read 0; Read 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with value arg, write out of range" = *)
|
||||||
|
(* try(eval_prog ([([rwi_value], [Read 0; Write 1])], ([wi_value; i_value], [Write 0; Call (0, [0]); Read 0 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with value arg, call out of range" = *)
|
||||||
|
(* try(eval_prog ([([ri_value], [Read 0])], ([wi_value; i_value], [Write 0; Call (0, [2]); Read 0 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Not_found -> Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* --- *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref & value args, no write inside & read" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([ri_ref; ri_value], [Read 0; Read 1])], *)
|
||||||
|
(* ([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref & value args, write value inside & read" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([ri_ref; rwi_value], [Read 0; Read 1; Write 1; Read 1])], *)
|
||||||
|
(* ([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref & value args, write both inside & read" = *)
|
||||||
|
(* try (eval_prog ( *)
|
||||||
|
(* [([rwi_ref; rwi_value],[Read 0; Read 1; Write 0; Write 1; Read 1])], *)
|
||||||
|
(* ([wi_value; wi_value], [Write 0; Write 1; Call (0, [0; 1]); Read 0; Read 1 ])); *)
|
||||||
|
(* [%expect.unreachable]) *)
|
||||||
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
|
(* --- *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref two same ref args, read both & read" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([ri_ref; ri_ref],[Read 0; Read 1; Read 1])], *)
|
||||||
|
(* ([wi_value], [Write 0; Call (0, [0; 0]); Read 0 ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref two same ref args, read both & nothing" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([ri_ref; ri_ref],[Read 0; Read 1; Read 1])], *)
|
||||||
|
(* ([wi_value], [Write 0; Call (0, [0; 0]); ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with ref & copy of the same arg, read & write both & nothing" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([rwi_ref; rwi_value],[Read 0; Read 1; Write 0; Write 1; Read 1])], *)
|
||||||
|
(* ([wi_value], [Write 0; Call (0, [0; 0]); ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* let%expect_test "function with copy & ref of the same arg, read & write both & nothing" = *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([rwi_value; rwi_ref],[Read 0; Read 1; Write 0; Write 1; Read 1])], *)
|
||||||
|
(* ([wi_value], [Write 0; Call (0, [0; 0]); ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
|
(* TODO: FIXME: now correct (use state before for mem check), is this good ?, proper way to fix ? *)
|
||||||
|
(* let%expect_test "function with ref two same ref args, read & write both, error" = *)
|
||||||
|
(* try ( *)
|
||||||
|
(* eval_prog ( *)
|
||||||
|
(* [([rwi_ref; rwi_ref],[Read 0; Read 1; Write 0; Write 1; Read 1])], *)
|
||||||
|
(* ([wi_value], [Write 0; Call (0, [0; 0]); ])); *)
|
||||||
|
(* Printf.printf "done!"; *)
|
||||||
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
(* >> tests with several functions *)
|
(* >> tests with several functions *)
|
||||||
|
|
||||||
let%expect_test "two functions with ref arg, read func -> write func" =
|
(* let%expect_test "two functions with ref arg, read func -> write func" = *)
|
||||||
eval_prog (
|
(* eval_prog ( *)
|
||||||
[([ri_ref], [Read 0]); ([wi_ref], [Write 0])],
|
(* [([ri_ref], [Read 0]); ([wi_ref], [Write 0])], *)
|
||||||
([wi_value], [Write 0; Call (0, [0]); Read 0; Call (1, [0]) ]));
|
(* ([wi_value], [Write 0; Call (0, [0]); Read 0; Call (1, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "two functions with ref arg, write func -> read func" =
|
(* let%expect_test "two functions with ref arg, write func -> read func" = *)
|
||||||
try (eval_prog (
|
(* try (eval_prog ( *)
|
||||||
[([ri_ref], [Read 0]); ([wi_ref], [Write 0])],
|
(* [([ri_ref], [Read 0]); ([wi_ref], [Write 0])], *)
|
||||||
([wi_value], [Write 0; Call (1, [0]); Call (0, [0]) ]));
|
(* ([wi_value], [Write 0; Call (1, [0]); Call (0, [0]) ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
let%expect_test "two functions: ref arg after value arg" =
|
(* let%expect_test "two functions: ref arg after value arg" = *)
|
||||||
eval_prog (
|
(* eval_prog ( *)
|
||||||
[([rwi_ref], [Read 0; Write 0]); ([rwi_value], [Read 0; Write 0])],
|
(* [([rwi_ref], [Read 0; Write 0]); ([rwi_value], [Read 0; Write 0])], *)
|
||||||
([wi_value], [Write 0; Call (1, [0]); Read 0; Call (0, [0]) ]));
|
(* ([wi_value], [Write 0; Call (1, [0]); Read 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "two functions: value arg after spoiled ref arg" =
|
(* let%expect_test "two functions: value arg after spoiled ref arg" = *)
|
||||||
try (eval_prog (
|
(* try (eval_prog ( *)
|
||||||
[([rwi_ref], [Read 0; Write 0]); ([rwi_value], [Read 0; Write 0])],
|
(* [([rwi_ref], [Read 0; Write 0]); ([rwi_value], [Read 0; Write 0])], *)
|
||||||
([wi_value], [Write 0; Call (0, [0]); Call (1, [0]) ]));
|
(* ([wi_value], [Write 0; Call (0, [0]); Call (1, [0]) ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Incorrect_memory_access id -> Printf.printf "%i" id;
|
(* with Incorrect_memory_access id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
(* --- *)
|
(* --- *)
|
||||||
|
|
||||||
let%expect_test "simple function call with value arg, const cast error" =
|
(* let%expect_test "simple function call with value arg, const cast error" = *)
|
||||||
try (eval_prog ([([ri_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* try (eval_prog ([([ri_value], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Incorrect_const_cast id -> Printf.printf "%i" id;
|
(* with Incorrect_const_cast id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with ref arg, const cast error" =
|
(* let%expect_test "simple function call with ref arg, const cast error" = *)
|
||||||
try (eval_prog ([([ri_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* try (eval_prog ([([ri_ref], [Write 0; Read 0; Write 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Incorrect_const_cast id -> Printf.printf "%i" id;
|
(* with Incorrect_const_cast id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with value arg, const cast ok" =
|
(* let%expect_test "simple function call with value arg, const cast ok" = *)
|
||||||
eval_prog ([([ri_value], [Read 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([ri_value], [Read 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with ref arg, const cast ok" =
|
(* let%expect_test "simple function call with ref arg, const cast ok" = *)
|
||||||
eval_prog ([([ri_ref], [Read 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([ri_ref], [Read 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
(* --- *)
|
(* --- *)
|
||||||
|
|
||||||
let%expect_test "simple function call with arg, recursive calls" =
|
(* let%expect_test "simple function call with arg, recursive calls" = *)
|
||||||
eval_prog ([([rwi_value], [Write 0; Read 0; Write 0; Call (0, [0])])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([rwi_value], [Write 0; Read 0; Write 0; Call (0, [0])])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
(* --- *)
|
(* --- *)
|
||||||
|
|
||||||
|
|
@ -520,20 +555,20 @@ struct
|
||||||
|
|
||||||
(* TODO: more Combine statement tests *)
|
(* TODO: more Combine statement tests *)
|
||||||
|
|
||||||
let%expect_test "simple function call with value arg and choice, rw" =
|
(* let%expect_test "simple function call with value arg and choice, rw" = *)
|
||||||
eval_prog ([([wi_value], [Choice ([Write 0; Read 0], [Write 0]); Read 0])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([wi_value], [Choice ([Write 0; Read 0], [Write 0]); Read 0])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with ref arg and choice, rw" =
|
(* let%expect_test "simple function call with ref arg and choice, rw" = *)
|
||||||
try (eval_prog ([([ri_ref], [Choice ([Read 0], [Write 0])])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* try (eval_prog ([([ri_ref], [Choice ([Read 0], [Write 0])])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
[%expect.unreachable])
|
(* [%expect.unreachable]) *)
|
||||||
with Incorrect_const_cast id -> Printf.printf "%i" id;
|
(* with Incorrect_const_cast id -> Printf.printf "%i" id; *)
|
||||||
[%expect {| 0 |}]
|
(* [%expect {| 0 |}] *)
|
||||||
|
|
||||||
let%expect_test "simple function call with ref arg and choice, rr" =
|
(* let%expect_test "simple function call with ref arg and choice, rr" = *)
|
||||||
eval_prog ([([ri_ref], [Choice ([Read 0], [Read 0; Read 0])])], ([wi_value], [Write 0; Call (0, [0]) ]));
|
(* eval_prog ([([ri_ref], [Choice ([Read 0], [Read 0; Read 0])])], ([wi_value], [Write 0; Call (0, [0]) ])); *)
|
||||||
Printf.printf "done!";
|
(* Printf.printf "done!"; *)
|
||||||
[%expect {| done! |}]
|
(* [%expect {| done! |}] *)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
; (:standard -warn-error +5))))
|
; (:standard -warn-error +5))))
|
||||||
|
|
||||||
(library
|
(library
|
||||||
(name analyzer_cf)
|
(name analyzer_st)
|
||||||
(modules analyzer)
|
(modules analyzer)
|
||||||
(flags (-rectypes))
|
(flags (-rectypes))
|
||||||
(libraries OCanren OCanren.tester)
|
(libraries OCanren OCanren.tester)
|
||||||
|
|
@ -14,20 +14,20 @@
|
||||||
(pps GT.ppx GT.ppx_all ppx_expect ppx_inline_test)))
|
(pps GT.ppx GT.ppx_all ppx_expect ppx_inline_test)))
|
||||||
|
|
||||||
(library
|
(library
|
||||||
(name tests_cf)
|
(name tests_st)
|
||||||
(modules tests)
|
(modules tests)
|
||||||
(flags (-rectypes))
|
(flags (-rectypes))
|
||||||
(libraries synthesizer_cf tests_f_cf)
|
(libraries synthesizer_st tests_f_st)
|
||||||
(inline_tests)
|
(inline_tests)
|
||||||
(wrapped false)
|
(wrapped false)
|
||||||
(preprocess
|
(preprocess
|
||||||
(pps ppx_expect ppx_inline_test)))
|
(pps ppx_expect ppx_inline_test)))
|
||||||
|
|
||||||
(library
|
(library
|
||||||
(name tests_f_cf)
|
(name tests_f_st)
|
||||||
(modules tests_f)
|
(modules tests_f)
|
||||||
(flags (-rectypes))
|
(flags (-rectypes))
|
||||||
(libraries OCanren OCanren.tester synthesizer_cf)
|
(libraries OCanren OCanren.tester synthesizer_st)
|
||||||
(preprocessor_deps ../camlp5/pp5+gt+plugins+ocanren+dump.exe)
|
(preprocessor_deps ../camlp5/pp5+gt+plugins+ocanren+dump.exe)
|
||||||
(wrapped false)
|
(wrapped false)
|
||||||
(preprocess
|
(preprocess
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
camlp5/pp5+gt+plugins+ocanren+dump.exe)))
|
camlp5/pp5+gt+plugins+ocanren+dump.exe)))
|
||||||
|
|
||||||
(library
|
(library
|
||||||
(name synthesizer_cf)
|
(name synthesizer_st)
|
||||||
(modules synthesizer)
|
(modules synthesizer)
|
||||||
(flags
|
(flags
|
||||||
; (-dsource)
|
; (-dsource)
|
||||||
|
|
|
||||||
|
|
@ -220,10 +220,11 @@ $ pathmem([m_1, m_2, ..., m_n], p.i) = pathmem(m_i, p) $
|
||||||
#let pathtag = `pathtag`
|
#let pathtag = `pathtag`
|
||||||
$ pathtag(\& #h(3pt) tag #h(3pt) t, @x) = tag $
|
$ pathtag(\& #h(3pt) tag #h(3pt) t, @x) = tag $
|
||||||
$ pathtag(\& #h(3pt) tag #h(3pt) t, *p) = pathtag(t, p) $
|
$ pathtag(\& #h(3pt) tag #h(3pt) t, *p) = pathtag(t, p) $
|
||||||
$ pathtag([t_1, t_2, ..., t_n], p.i) = pathmem(t_i, p) $
|
$ pathtag([t_1, t_2, ..., t_n], p.i) = pathtag(t_i, p) $
|
||||||
|
|
||||||
#let pathvar = `pathvar`
|
#let pathvar = `pathvar`
|
||||||
$ pathvar(x) = x $
|
$ pathvar(@x) = x $
|
||||||
|
$ pathvar(* p) = pathvar(p) $
|
||||||
$ pathvar(p.i) = pathvar(p) $
|
$ pathvar(p.i) = pathvar(p) $
|
||||||
|
|
||||||
#h(10pt)
|
#h(10pt)
|
||||||
|
|
@ -237,12 +238,12 @@ $ typeof(sigma, p) = pathtype(sigma[pathvar(p)].2, p) $
|
||||||
#let accessmem = `accessmem`
|
#let accessmem = `accessmem`
|
||||||
$ accessmem(sigma, p) = pathmem(sigma[pathvar(p)].1, p) $
|
$ accessmem(sigma, p) = pathmem(sigma[pathvar(p)].1, p) $
|
||||||
|
|
||||||
#let access = `access`
|
|
||||||
$ access(sigma, mu, p) = mu[accessmem(sigma, p)] $
|
|
||||||
|
|
||||||
#let argtag = `argtag`
|
#let argtag = `argtag`
|
||||||
$ argtag(sigma, p) = pathtag(sigma[pathvar(p)].2, p) $
|
$ argtag(sigma, p) = pathtag(sigma[pathvar(p)].2, p) $
|
||||||
|
|
||||||
|
#let access = `access`
|
||||||
|
$ access(sigma, mu, p) = mu[accessmem(sigma, p)] $
|
||||||
|
|
||||||
#h(10pt)
|
#h(10pt)
|
||||||
|
|
||||||
=== Correctness
|
=== Correctness
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue