summaryrefslogtreecommitdiff
path: root/compiler/ValuesUtils.ml
diff options
context:
space:
mode:
authorSon Ho2022-11-25 08:13:37 +0100
committerSon HO2023-02-03 11:21:46 +0100
commit59596561873162d632f3d3091485b32a76427ee9 (patch)
tree2bdeb89950981306bacff00a1e8e68b92ec0f9db /compiler/ValuesUtils.ml
parentbbdd0da25b974b03d58489d3bbc2654f4f774644 (diff)
Start implementing support for loops
Diffstat (limited to '')
-rw-r--r--compiler/ValuesUtils.ml82
1 files changed, 78 insertions, 4 deletions
diff --git a/compiler/ValuesUtils.ml b/compiler/ValuesUtils.ml
index 524f86a4..df00bfb2 100644
--- a/compiler/ValuesUtils.ml
+++ b/compiler/ValuesUtils.ml
@@ -12,6 +12,8 @@ let mk_unit_value : typed_value =
let mk_typed_value (ty : ety) (value : value) : typed_value = { value; ty }
let mk_bottom (ty : ety) : typed_value = { value = Bottom; ty }
+let mk_abottom (ty : rty) : typed_avalue = { value = ABottom; ty }
+let mk_aignored (ty : rty) : typed_avalue = { value = AIgnored; ty }
(** Box a value *)
let mk_box_value (v : typed_value) : typed_value =
@@ -21,6 +23,9 @@ let mk_box_value (v : typed_value) : typed_value =
let is_bottom (v : value) : bool = match v with Bottom -> true | _ -> false
+let is_aignored (v : avalue) : bool =
+ match v with AIgnored -> true | _ -> false
+
let is_symbolic (v : value) : bool =
match v with Symbolic _ -> true | _ -> false
@@ -32,7 +37,9 @@ let as_mut_borrow (v : typed_value) : BorrowId.id * typed_value =
| Borrow (MutBorrow (bid, bv)) -> (bid, bv)
| _ -> raise (Failure "Unexpected")
-(** Check if a value contains a borrow *)
+(** Check if a value contains a *concrete* borrow (i.e., a [Borrow] value -
+ we don't check if there are borrows hidden in symbolic values).
+ *)
let borrows_in_value (v : typed_value) : bool =
let obj =
object
@@ -46,7 +53,9 @@ let borrows_in_value (v : typed_value) : bool =
false
with Found -> true
-(** Check if a value contains reserved mutable borrows *)
+(** Check if a value contains reserved mutable borrows (which are necessarily
+ *concrete*: a symbolic value can't "hide" reserved borrows).
+ *)
let reserved_in_value (v : typed_value) : bool =
let obj =
object
@@ -60,7 +69,9 @@ let reserved_in_value (v : typed_value) : bool =
false
with Found -> true
-(** Check if a value contains a loan *)
+(** Check if a value contains a loan (which is necessarily *concrete*: symbolic
+ values can't "hide" loans).
+ *)
let loans_in_value (v : typed_value) : bool =
let obj =
object
@@ -74,6 +85,21 @@ let loans_in_value (v : typed_value) : bool =
false
with Found -> true
+(** Check if a value contains concrete borrows or loans *)
+let concrete_borrows_loans_in_value (v : typed_value) : bool =
+ let obj =
+ object
+ inherit [_] iter_typed_value
+ method! visit_borrow_content _env _ = raise Found
+ method! visit_loan_content _env _ = raise Found
+ end
+ in
+ (* We use exceptions *)
+ try
+ obj#visit_typed_value () v;
+ false
+ with Found -> true
+
(** Check if a value contains outer loans (i.e., loans which are not in borrwed
values. *)
let outer_loans_in_value (v : typed_value) : bool =
@@ -81,7 +107,9 @@ let outer_loans_in_value (v : typed_value) : bool =
object
inherit [_] iter_typed_value
method! visit_loan_content _env _ = raise Found
- method! visit_borrow_content _ _ = ()
+
+ method! visit_borrow_content _ _ =
+ (* Do nothing so as *not to dive* in borrowed values *) ()
end
in
(* We use exceptions *)
@@ -119,3 +147,49 @@ let rec value_strip_shared_loans (v : typed_value) : typed_value =
match v.value with
| Loan (SharedLoan (_, v')) -> value_strip_shared_loans v'
| _ -> v
+
+(** Check if a value has borrows in **a general sense**.
+
+ It checks if:
+ - there are concrete borrows
+ - there are symbolic values which may contain borrows
+ *)
+let value_has_borrows (infos : TA.type_infos) (v : value) : bool =
+ let obj =
+ object
+ inherit [_] iter_typed_value
+ method! visit_borrow_content _env _ = raise Found
+
+ method! visit_symbolic_value _ sv =
+ if ty_has_borrow_under_mut infos sv.sv_ty then raise Found else ()
+ end
+ in
+ (* We use exceptions *)
+ try
+ obj#visit_value () v;
+ false
+ with Found -> true
+
+(** Check if a value has loans or borrows in **a general sense**.
+
+ It checks if:
+ - there are concrete loans or concrete borrows
+ - there are symbolic values which may contain borrows (symbolic values
+ can't contain loans).
+ *)
+let value_has_loans_or_borrows (infos : TA.type_infos) (v : value) : bool =
+ let obj =
+ object
+ inherit [_] iter_typed_value
+ method! visit_borrow_content _env _ = raise Found
+ method! visit_loan_content _env _ = raise Found
+
+ method! visit_symbolic_value _ sv =
+ if ty_has_borrow_under_mut infos sv.sv_ty then raise Found else ()
+ end
+ in
+ (* We use exceptions *)
+ try
+ obj#visit_value () v;
+ false
+ with Found -> true