summaryrefslogtreecommitdiff
path: root/src/value.ml
diff options
context:
space:
mode:
authorAlasdair Armstrong2018-12-13 17:26:36 +0000
committerAlasdair Armstrong2018-12-13 17:26:36 +0000
commit976ce06c640a61838276f8b31a9f13dbe8d6e4ec (patch)
tree31436e221e2576b07388ec98bd3253176f50b162 /src/value.ml
parentb167a59affdb6428fa0656a092b335a3a6899d56 (diff)
Fixing rationals in Sail interpreter and OCaml
Diffstat (limited to 'src/value.ml')
-rw-r--r--src/value.ml44
1 files changed, 42 insertions, 2 deletions
diff --git a/src/value.ml b/src/value.ml
index 589e956a..a4ce225e 100644
--- a/src/value.ml
+++ b/src/value.ml
@@ -388,7 +388,7 @@ let rec string_of_value = function
| V_unit -> "()"
| V_string str -> "\"" ^ str ^ "\""
| V_ref str -> "ref " ^ str
- | V_real r -> "REAL" (* No Rational.to_string *)
+ | V_real r -> Sail_lib.string_of_real r
| V_ctor (str, vals) -> str ^ "(" ^ Util.string_of_list ", " string_of_value vals ^ ")"
| V_record record ->
"{" ^ Util.string_of_list ", " (fun (field, v) -> field ^ "=" ^ string_of_value v) (StringMap.bindings record) ^ "}"
@@ -493,6 +493,18 @@ let value_to_real = function
| [v] -> V_real (Sail_lib.to_real (coerce_int v))
| _ -> failwith "value to_real"
+let value_print_real = function
+ | [v1; v2] -> output_endline (coerce_string v1 ^ string_of_value v2); V_unit
+ | _ -> failwith "value print_real"
+
+let value_random_real = function
+ | [_] -> V_real (Sail_lib.random_real ())
+ | _ -> failwith "value random_real"
+
+let value_sqrt_real = function
+ | [v] -> V_real (Sail_lib.sqrt (coerce_real v))
+ | _ -> failwith "value sqrt_real"
+
let value_quotient_real = function
| [v1; v2] -> V_real (Sail_lib.quotient_real (coerce_real v1, coerce_real v2))
| _ -> failwith "value quotient_real"
@@ -505,6 +517,26 @@ let value_round_down = function
| [v] -> V_int (Sail_lib.round_down (coerce_real v))
| _ -> failwith "value round_down"
+let value_add_real = function
+ | [v1; v2] -> V_real (Sail_lib.add_real (coerce_real v1, coerce_real v2))
+ | _ -> failwith "value add_real"
+
+let value_sub_real = function
+ | [v1; v2] -> V_real (Sail_lib.sub_real (coerce_real v1, coerce_real v2))
+ | _ -> failwith "value sub_real"
+
+let value_mult_real = function
+ | [v1; v2] -> V_real (Sail_lib.mult_real (coerce_real v1, coerce_real v2))
+ | _ -> failwith "value mult_real"
+
+let value_div_real = function
+ | [v1; v2] -> V_real (Sail_lib.div_real (coerce_real v1, coerce_real v2))
+ | _ -> failwith "value div_real"
+
+let value_abs_real = function
+ | [v] -> V_real (Sail_lib.abs_real (coerce_real v))
+ | _ -> failwith "value abs_real"
+
let value_eq_real = function
| [v1; v2] -> V_bool (Sail_lib.eq_real (coerce_real v1, coerce_real v2))
| _ -> failwith "value eq_real"
@@ -615,9 +647,17 @@ let primops =
("gt_real", value_gt_real);
("lteq_real", value_lt_real);
("gteq_real", value_gt_real);
+ ("add_real", value_add_real);
+ ("sub_real", value_sub_real);
+ ("mult_real", value_mult_real);
("round_up", value_round_up);
("round_down", value_round_down);
- ("quotient_real", value_quotient_real);
+ ("quotient_real", value_div_real);
+ ("abs_real", value_abs_real);
+ ("div_real", value_div_real);
+ ("sqrt_real", value_sqrt_real);
+ ("print_real", value_print_real);
+ ("random_real", value_random_real);
("undefined_unit", fun _ -> V_unit);
("undefined_bit", fun _ -> V_bit Sail_lib.B0);
("undefined_int", fun _ -> V_int Big_int.zero);