summaryrefslogtreecommitdiff
path: root/src/value.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.ml')
-rw-r--r--src/value.ml53
1 files changed, 50 insertions, 3 deletions
diff --git a/src/value.ml b/src/value.ml
index 8e920377..261b0f4e 100644
--- a/src/value.ml
+++ b/src/value.ml
@@ -86,6 +86,12 @@ type value =
| V_ref of string
| V_ctor of string * value list
| V_record of value StringMap.t
+ (* When constant folding we disable reading registers, so a register
+ read will return a V_attempted_read value. If we try to do
+ anything with this value, we'll get an exception - but if all we
+ do is return it then we can replace the expression we are folding
+ with a direct register read. *)
+ | V_attempted_read of string
let rec eq_value v1 v2 =
match v1, v2 with
@@ -394,10 +400,11 @@ 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) ^ "}"
+ | V_attempted_read _ -> assert false
let value_sign_extend = function
| [v1; v2] -> mk_vector (Sail_lib.sign_extend (coerce_bv v1, coerce_int v2))
@@ -506,6 +513,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_real (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"
@@ -526,6 +545,26 @@ let value_rem_round_zero = function
| [v1; v2] -> V_int (Sail_lib.rem_round_zero (coerce_int v1, coerce_int v2))
| _ -> failwith "value rem_round_zero"
+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"
@@ -644,13 +683,21 @@ let primops =
("eq_real", value_eq_real);
("lt_real", value_lt_real);
("gt_real", value_gt_real);
- ("lteq_real", value_lt_real);
- ("gteq_real", value_gt_real);
+ ("lteq_real", value_lteq_real);
+ ("gteq_real", value_gteq_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);
("quot_round_zero", value_quot_round_zero);
("rem_round_zero", value_rem_round_zero);
("quotient_real", value_quotient_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);