Skip to content

arithmetic: Add Ctz function #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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