File: baseUint128.ml

package info (click to toggle)
herdtools7 7.58-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,732 kB
  • sloc: ml: 128,583; ansic: 3,827; makefile: 670; python: 407; sh: 212; awk: 14
file content (266 lines) | stat: -rw-r--r-- 8,070 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
(****************************************************************************)
(*                           the diy toolsuite                              *)
(*                                                                          *)
(* Jade Alglave, University College London, UK.                             *)
(* Luc Maranget, INRIA Paris-Rocquencourt, France.                          *)
(*                                                                          *)
(* Copyright 2015-present Institut National de Recherche en Informatique et *)
(* en Automatique and the authors. All rights reserved.                     *)
(*                                                                          *)
(* This software is governed by the CeCILL-B license under French law and   *)
(* abiding by the rules of distribution of free software. You can use,      *)
(* modify and/ or redistribute the software under the terms of the CeCILL-B *)
(* license as circulated by CEA, CNRS and INRIA at the following URL        *)
(* "http://www.cecill.info". We also give a copy in LICENSE.txt.            *)
(****************************************************************************)

module Uint64 = BaseUint64

type t = Uint64.t * Uint64.t

let num_bits = 128

let of_uint64 u = Uint64.zero, u
let of_uint32 u = of_uint64 (Uint64.of_uint32 u)
let of_uint16 u = of_uint64 (Uint64.of_uint16 u)
let of_uint8 u = of_uint64 (Uint64.of_uint8 u)

let zero = Uint64.zero, Uint64.zero
let one = Uint64.zero, Uint64.one
let max_int = Uint64.max_int, Uint64.max_int

let logand a b = Uint64.logand (fst a) (fst b), Uint64.logand (snd a) (snd b)
let logor a b = Uint64.logor (fst a) (fst b), Uint64.logor (snd a) (snd b)
let logxor a b = Uint64.logxor (fst a) (fst b), Uint64.logxor (snd a) (snd b)
let lognot a = Uint64.lognot (fst a), Uint64.lognot (snd a)

let shift_left a by =
  if by < 0 then
    invalid_arg (Printf.sprintf "shift_left by negative: %i" by)
  else if by > num_bits then
    invalid_arg (Printf.sprintf "shift_left by %i" by)
  else if by = 0 then
    a
  else if by < 64 then
    let upper =
      Uint64.logor
        (Uint64.shift_left (fst a) by)
        (Uint64.shift_right_logical (snd a) (64-by))
    in
    upper, Uint64.shift_left (snd a) by
  else
    Uint64.shift_left (snd a) (by-64), Uint64.zero

let shift_right_logical a by =
  if by < 0 then
    invalid_arg (Printf.sprintf "shift_right by negative: %i" by)
  else if by > num_bits then
    invalid_arg (Printf.sprintf "shift_right_logical %i" by)
  else if by = 0 then
    a
  else if by < 64 then
    let lower =
      Uint64.logor
        (Uint64.shift_left (fst a) (64-by))
        (Uint64.shift_right_logical (snd a) by)
    in
    Uint64.shift_right_logical (fst a) by, lower
  else
    Uint64.zero, Uint64.shift_right_logical (fst a) (by-64)

let shift_right a by =
  let upper_bit = shift_left one (num_bits - 1) in
  let has_msb = logand a upper_bit = upper_bit in
  let rest = shift_right_logical a by in
  if has_msb then
    let rec upper_bits acc n =
      match n with
      | 0 -> acc
      | n -> upper_bits (logor upper_bit (shift_right_logical acc 1)) (n-1)
    in
    logor rest (upper_bits upper_bit by)
  else
    rest

let leading_zeros a =
  match a with
  | (0L, a2) -> Uint64.num_bits + (Uint64.leading_zeros a2)
  | (a1, _) -> Uint64.leading_zeros a1

let compare a b =
  match Uint64.compare (fst a) (fst b) with
  | 0 -> Uint64.compare (snd a) (snd b)
  | n -> n

let equal a b =
  Uint64.equal (snd a) (snd b) && Uint64.equal (fst a) (fst b)

let add a b =
  let carry =
    if Uint64.compare (Uint64.add (snd a) (snd b)) (snd a) < 0 then
      1L
    else
      0L
  in
  Uint64.add (Uint64.add (fst a) (fst b)) carry, Uint64.add (snd a) (snd b)

let sub a b =
  let carry =
    if Uint64.compare (Uint64.sub (snd a) (snd b)) (snd a) > 0 then
      1L
    else
      0L
  in
  Uint64.sub (fst a) (Uint64.add (fst b) carry), Uint64.sub (snd a) (snd b)

let mul (a1, a2) (b1, b2) =
    (* Multiplication by parts.
     * For example,
     *   25 * 31 =
     *     20*30 + 5*30 + 20*1 + 5*1 =
     *       2*3*100 + 5*3*10 + * 2*1*10 + 5*1. *)
  let upper_bits u =
    Uint64.shift_right_logical u 32
  in
  let lower_bits u =
    let bottom_32_bits = 0xFFFFFFFFL in
    Uint64.logand u bottom_32_bits
  in
  let a2_1 = upper_bits a2 in
  let a2_2 = lower_bits a2 in

  let b2_1 = upper_bits b2 in
  let b2_2 = lower_bits b2 in

  let t1 = Uint64.mul a2_2 b2_2 in
  let t2 = Uint64.add (upper_bits t1) (Uint64.mul a2_1 b2_2) in
  let t3 = Uint64.add (lower_bits t2) (Uint64.mul a2_2 b2_1) in

  let lower = Uint64.add (lower_bits t1) (Uint64.shift_left t3 32) in
  let upper = Uint64.add (upper_bits t2) (upper_bits t3) in

  let upper = Uint64.add upper (Uint64.mul a2_1 b2_1) in
  let upper = Uint64.add upper (Uint64.mul a1 b2) in
  let upper = Uint64.add upper (Uint64.mul a2 b1) in
  upper, lower

let int_sub (a : int) (b : int) = a - b

let div_and_rem a b =
  if compare b zero = 0 then
    raise Division_by_zero
  else if compare a b = 0 then
    one, zero
  else if compare a b < 0 then
    zero, a
  else
      (* Binary long division by shift and subtract. *)
    let rec div_and_rem' (i : int) (q : t) (r : t) (b : t) =
      let q, r =
        if compare r b >= 0 then
          logor q one, sub r b
        else
          q, r
      in
      if i = 0 then
        q, r
      else
        div_and_rem' (int_sub i 1) (shift_left q 1) r (shift_right_logical b 1)
    in
    let shift = (leading_zeros b) - (leading_zeros a) in
    div_and_rem' shift zero a (shift_left b shift)

let div a b =
  let d, _ = div_and_rem a b in d

let rem a b =
  let _, r = div_and_rem a b in r

let pred = sub one
let succ = add one

let to_int a = Uint64.to_int (snd a)

let of_int i =
  if i < 0 then
    Uint64.max_int, Uint64.of_int i
  else
    Uint64.zero, Uint64.of_int i

let to_int64 (_,lo) = lo

let of_int64 i =
  let hi =
    if Int64.compare i 0L < 0 then Uint64.max_int else Uint64.zero in
  hi,i


let to_string a =
  let ten = of_int 10 in
  let string_of_digit q =
    assert (compare q ten < 0) ;
    Uint64.to_string (snd q)
  in
  let rec to_string' total a =
    if compare a ten < 0 then
      (string_of_digit a) :: total
    else
      let q, r = div_and_rem a ten in
      to_string' ((string_of_digit r) :: total) q
  in
  to_string' [] a |> String.concat ""

let to_string_hex a =
  match a with
  | 0L, a2 -> Uint64.to_string_hex a2
  | a1, a2 -> Printf.sprintf "0x%Lx%016Lx" a1 a2

let of_string raw =
  let of_string_hex raw =
    let len = String.length raw in
    if len <= 16 then
      Uint64.zero, Uint64.of_string ("0x" ^ raw)
    else if len <= 32 then
      Uint64.of_string ("0x" ^ (String.sub raw 0 (len-16))), Uint64.of_string ("0x" ^ (String.sub raw (len-16) 16))
    else
      failwith "too many hex digits"
  in
  let of_string_oct _a = failwith "not implemented: of_string_oct" in
  let of_string_bin raw =
    let len = String.length raw in
    if len <= 64 then
      Uint64.zero, Uint64.of_string ("0b" ^ raw)
    else if len <= 128 then
      Uint64.of_string ("0b" ^ (String.sub raw 0 (len-64))), Uint64.of_string ("0b" ^ (String.sub raw (len-64) 64))
    else
      failwith "too many bits"
  in
  let of_string_dec a =
    let of_char c =
      match c with
      | '0' -> zero
      | '1' -> one
      | '2' -> of_int 2
      | '3' -> of_int 3
      | '4' -> of_int 4
      | '5' -> of_int 5
      | '6' -> of_int 6
      | '7' -> of_int 7
      | '8' -> of_int 8
      | '9' -> of_int 9
      | _ -> failwith (Printf.sprintf "invalid character: %c" c)
    in
    let ten = of_int 10 in
    let acc = ref zero in
    String.iter (fun c -> acc := add (mul !acc ten) (of_char c)) a ;
    !acc
  in
  let len = String.length raw in
  if len >= 2 then
    match raw.[0], raw.[1] with
    | '0', 'x' -> of_string_hex (String.sub raw 2 (len-2))
    | '0', 'o' -> of_string_oct (String.sub raw 2 (len-2))
    | '0', 'b' -> of_string_bin (String.sub raw 2 (len-2))
    | _ -> of_string_dec raw
  else
    of_string_dec raw