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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// AluRE: AluVM runtime environment.
// This is rust implementation of AluVM (arithmetic logic unit virtual machine).
//
// Designed & written in 2021 by
//     Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
//
// This software is licensed under the terms of MIT License.
// You should have received a copy of the MIT License along with this software.
// If not, see <https://opensource.org/licenses/MIT>.

use amplify_num::u512;
use core::cmp::Ordering;

use super::{RegVal, Value};
use crate::instr::{Arithmetics, NumType};

impl RegVal {
    pub fn partial_cmp_op(num_type: NumType) -> fn(RegVal, RegVal) -> Option<Ordering> {
        match num_type {
            NumType::Unsigned => RegVal::partial_cmp_uint,
            NumType::Signed => RegVal::partial_cmp_int,
            NumType::Float23 => RegVal::partial_cmp_f23,
            NumType::Float52 => RegVal::partial_cmp_f52,
        }
    }
}

impl Value {
    pub fn step_op(arithm: Arithmetics, step: i8) -> impl Fn(Value) -> Option<Value> {
        move |src| match arithm {
            Arithmetics::IntChecked { signed: false } => Value::step_uint_checked(src, step),
            Arithmetics::IntUnchecked { signed: false } => Value::step_uint_unchecked(src, step),
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::step_uint_ap(src, step),
            Arithmetics::IntChecked { signed: true } => Value::step_int_checked(src, step),
            Arithmetics::IntUnchecked { signed: true } => Value::step_int_unchecked(src, step),
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::step_int_ap(src, step),
            Arithmetics::Float => Value::step_float(src, step),
            Arithmetics::FloatArbitraryPrecision => Value::step_float_ap(src, step),
        }
    }

    pub fn add_op(arithm: Arithmetics) -> fn(Value, Value) -> Option<Value> {
        match arithm {
            Arithmetics::IntChecked { signed: false } => Value::add_uint_checked,
            Arithmetics::IntUnchecked { signed: false } => Value::add_uint_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::add_uint_ap,
            Arithmetics::IntChecked { signed: true } => Value::add_int_checked,
            Arithmetics::IntUnchecked { signed: true } => Value::add_int_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::add_int_ap,
            Arithmetics::Float => Value::add_float,
            Arithmetics::FloatArbitraryPrecision => Value::add_float_ap,
        }
    }

    pub fn sub_op(arithm: Arithmetics) -> fn(Value, Value) -> Option<Value> {
        match arithm {
            Arithmetics::IntChecked { signed: false } => Value::sub_uint_checked,
            Arithmetics::IntUnchecked { signed: false } => Value::sub_uint_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::sub_uint_ap,
            Arithmetics::IntChecked { signed: true } => Value::sub_int_checked,
            Arithmetics::IntUnchecked { signed: true } => Value::mul_int_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::sub_int_ap,
            Arithmetics::Float => Value::sub_float,
            Arithmetics::FloatArbitraryPrecision => Value::sub_float_ap,
        }
    }

    pub fn mul_op(arithm: Arithmetics) -> fn(Value, Value) -> Option<Value> {
        match arithm {
            Arithmetics::IntChecked { signed: false } => Value::mul_uint_checked,
            Arithmetics::IntUnchecked { signed: false } => Value::mul_uint_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::mul_uint_ap,
            Arithmetics::IntChecked { signed: true } => Value::mul_int_checked,
            Arithmetics::IntUnchecked { signed: true } => Value::mul_int_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::mul_int_ap,
            Arithmetics::Float => Value::mul_float,
            Arithmetics::FloatArbitraryPrecision => Value::mul_float_ap,
        }
    }

    pub fn div_op(arithm: Arithmetics) -> fn(Value, Value) -> Option<Value> {
        match arithm {
            Arithmetics::IntChecked { signed: false } => Value::div_uint_checked,
            Arithmetics::IntUnchecked { signed: false } => Value::div_uint_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::div_uint_ap,
            Arithmetics::IntChecked { signed: true } => Value::div_int_checked,
            Arithmetics::IntUnchecked { signed: true } => Value::div_int_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::div_int_ap,
            Arithmetics::Float => Value::div_float,
            Arithmetics::FloatArbitraryPrecision => Value::div_float_ap,
        }
    }

    pub fn rem_op(arithm: Arithmetics) -> fn(Value, Value) -> Option<Value> {
        match arithm {
            Arithmetics::IntChecked { signed: false } => Value::rem_uint_checked,
            Arithmetics::IntUnchecked { signed: false } => Value::rem_uint_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: false } => Value::rem_uint_ap,
            Arithmetics::IntChecked { signed: true } => Value::rem_int_checked,
            Arithmetics::IntUnchecked { signed: true } => Value::rem_int_unchecked,
            Arithmetics::IntArbitraryPrecision { signed: true } => Value::rem_int_ap,
            Arithmetics::Float => Value::rem_float,
            Arithmetics::FloatArbitraryPrecision => Value::rem_float_ap,
        }
    }
}

impl RegVal {
    /// Compares two values according to given arithmetics
    pub fn partial_cmp(self, num_type: NumType, other: Self) -> Option<Ordering> {
        match num_type {
            NumType::Unsigned => self.partial_cmp_uint(other),
            NumType::Signed => self.partial_cmp_int(other),
            NumType::Float23 => self.partial_cmp_f23(other),
            NumType::Float52 => self.partial_cmp_f52(other),
        }
    }

    /// Compares two values according to unsigned arithmetics
    pub fn partial_cmp_uint(self, other: Self) -> Option<Ordering> {
        match (*self, *other) {
            (None, None) => Some(Ordering::Equal),
            (None, Some(_)) | (Some(_), None) => None,
            (Some(a), Some(b)) => Some(a.cmp_uint(b)),
        }
    }

    /// Compares two values according to unsigned arithmetics
    pub fn partial_cmp_int(self, other: Self) -> Option<Ordering> {
        match (*self, *other) {
            (None, None) => Some(Ordering::Equal),
            (None, Some(_)) | (Some(_), None) => None,
            (Some(a), Some(b)) => Some(a.cmp_int(b)),
        }
    }

    /// Compares two values according to short float arithmetics
    pub fn partial_cmp_f23(self, other: Self) -> Option<Ordering> {
        match (*self, *other) {
            (None, None) => Some(Ordering::Equal),
            (None, Some(_)) | (Some(_), None) => None,
            (Some(a), Some(b)) => Some(a.cmp_f23(b)),
        }
    }

    /// Compares two values according to long float arithmetics
    pub fn partial_cmp_f52(self, other: Self) -> Option<Ordering> {
        match (*self, *other) {
            (None, None) => Some(Ordering::Equal),
            (None, Some(_)) | (Some(_), None) => None,
            (Some(a), Some(b)) => Some(a.cmp_f52(b)),
        }
    }
}

impl Value {
    /// Compares two values according to given arithmetics
    pub fn cmp(self, num_type: NumType, other: Self) -> Ordering {
        match num_type {
            NumType::Unsigned => self.cmp_uint(other),
            NumType::Signed => self.cmp_int(other),
            NumType::Float23 => self.cmp_f23(other),
            NumType::Float52 => self.cmp_f52(other),
        }
    }

    /// Compares two values according to unsigned arithmetics
    pub fn cmp_uint(self, other: Self) -> Ordering {
        self.to_clean().bytes.cmp(&other.to_clean().bytes)
    }

    /// Compares two values according to unsigned arithmetics
    pub fn cmp_int(self, other: Self) -> Ordering {
        let mut a = self.to_clean();
        let mut b = other.to_clean();
        let rev_a = if a.len > 0 {
            let sign = &mut a.bytes[a.len as usize - 1];
            let rev_a = *sign & 0x80 == 0x80;
            *sign &= 0x7F;
            rev_a
        } else {
            false
        };
        let rev_b = if b.len > 0 {
            let sign = &mut b.bytes[b.len as usize - 1];
            let rev_b = *sign & 0x80 == 0x80;
            *sign &= 0x7F;
            rev_b
        } else {
            false
        };
        match (rev_a, rev_b) {
            (true, false) => Ordering::Less,
            (false, true) => Ordering::Greater,
            (false, false) => a.bytes.cmp(&b.bytes),
            (true, true) => a.bytes.cmp(&b.bytes).reverse(),
        }
    }

    /// Compares two values according to short float arithmetics
    pub fn cmp_f23(self, other: Self) -> Ordering {
        todo!("short float comparison")
    }

    /// Compares two values according to long float arithmetics
    pub fn cmp_f52(self, other: Self) -> Ordering {
        todo!("short long comparison")
    }
}

impl Value {
    pub fn step_uint_checked(value: Value, step: i8) -> Option<Value> {
        let u512_max = u512::from_le_bytes([0xFF; 64]);
        let step = u512::from(step as u64);
        let mut val: u512 = value.into();
        if step >= u512_max - val {
            None
        } else {
            val += step;
            Some(Value::from(val))
        }
    }

    pub fn step_uint_unchecked(value: Value, step: i8) -> Option<Value> {
        let u512_max = u512::from_le_bytes([0xFF; 64]);
        let step = u512::from(step as u64);
        let mut val: u512 = value.into();
        if step >= u512_max - val {
            Some(Value::from(step - (u512_max - val)))
        } else {
            val += step;
            Some(Value::from(val))
        }
    }

    pub fn step_uint_ap(src: Value, step: i8) -> Option<Value> {
        todo!()
    }

    pub fn step_int_checked(src: Value, step: i8) -> Option<Value> {
        todo!()
    }

    pub fn step_int_unchecked(src: Value, step: i8) -> Option<Value> {
        todo!()
    }

    pub fn step_int_ap(src: Value, step: i8) -> Option<Value> {
        todo!()
    }

    pub fn step_float(src: Value, step: i8) -> Option<Value> {
        todo!()
    }

    pub fn step_float_ap(src: Value, step: i8) -> Option<Value> {
        todo!()
    }
}

impl Value {
    pub fn add_uint_checked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        src1.checked_add(src2).map(Value::from)
    }

    pub fn add_uint_unchecked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        Some(src1.wrapping_add(src2).into())
    }

    pub fn add_uint_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn add_int_checked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn add_int_unchecked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn add_int_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn add_float(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn add_float_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }
}

impl Value {
    pub fn sub_uint_checked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        src1.checked_sub(src2).map(Value::from)
    }

    pub fn sub_uint_unchecked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        Some(src1.wrapping_sub(src2).into())
    }

    pub fn sub_uint_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn sub_int_checked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn sub_int_unchecked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn sub_int_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn sub_float(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn sub_float_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }
}

impl Value {
    pub fn mul_uint_checked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        src1.checked_mul(src2).map(Value::from)
    }

    pub fn mul_uint_unchecked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        Some(src1.wrapping_mul(src2).into())
    }

    pub fn mul_uint_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn mul_int_checked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn mul_int_unchecked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn mul_int_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn mul_float(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn mul_float_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }
}

impl Value {
    pub fn div_uint_checked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        if src2 == u512::ZERO {
            None
        } else {
            Some((src1 / src2).into())
        }
    }

    pub fn div_uint_unchecked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        if src2 == u512::ZERO {
            Some(0.into())
        } else {
            Some((src1 / src2).into())
        }
    }

    pub fn div_uint_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn div_int_checked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn div_int_unchecked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn div_int_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn div_float(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn div_float_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }
}

impl Value {
    pub fn rem_uint_checked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        if src2 == u512::ZERO {
            None
        } else {
            Some((src1 % src2).into())
        }
    }

    pub fn rem_uint_unchecked(src1: Value, src2: Value) -> Option<Value> {
        let src1: u512 = src1.into();
        let src2: u512 = src2.into();
        if src2 == u512::ZERO {
            Some(0.into())
        } else {
            Some((src1 % src2).into())
        }
    }

    pub fn rem_uint_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn rem_int_checked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn rem_int_unchecked(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn rem_int_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn rem_float(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }

    pub fn rem_float_ap(src1: Value, src2: Value) -> Option<Value> {
        todo!()
    }
}