Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion ml-proto/src/arithmetic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ sig
type t
val of_value : int -> value -> t
val to_value : t -> value
val zero : t
val one : t
val size : int
val neg : t -> t
val abs : t -> t
Expand Down Expand Up @@ -50,7 +52,14 @@ struct
| Abs -> Int.abs
| Not -> Int.lognot
| Clz -> fun i -> i (* TODO *)
| Ctz -> fun i -> i (* TODO *)
| Ctz -> fun i ->
let open Int in
if i = zero then zero else
let rec loop j =
if logand i j = zero
then add one (loop (shift_left j 1))
else zero
in loop one
in fun v -> Int.to_value (f (Int.of_value 1 v))

let binop op =
Expand Down