tasm_lib/arithmetic/u64/
safe_mul_u64.rs

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
use itertools::Itertools;
use rand::prelude::*;
use triton_vm::prelude::*;
use triton_vm::twenty_first::prelude::U32s;

use crate::data_type::DataType;
use crate::empty_stack;
use crate::library::Library;
use crate::push_encodable;
use crate::traits::deprecated_snippet::DeprecatedSnippet;
use crate::InitVmState;

#[derive(Clone, Debug)]
pub struct SafeMulU64;

impl DeprecatedSnippet for SafeMulU64 {
    fn entrypoint_name(&self) -> String {
        "tasmlib_arithmetic_u64_safe_mul".to_string()
    }

    fn input_field_names(&self) -> Vec<String> {
        vec![
            "lhs_hi".to_string(),
            "lhs_lo".to_string(),
            "rhs_hi".to_string(),
            "rhs_lo".to_string(),
        ]
    }

    fn input_types(&self) -> Vec<DataType> {
        vec![DataType::U64, DataType::U64]
    }

    fn output_field_names(&self) -> Vec<String> {
        vec!["prod_hi".to_string(), "prod_lo".to_string()]
    }

    fn output_types(&self) -> Vec<DataType> {
        vec![DataType::U64]
    }

    fn stack_diff(&self) -> isize {
        -2
    }

    fn function_code(&self, _library: &mut Library) -> String {
        let entrypoint = self.entrypoint_name();

        triton_asm!(
                // BEFORE: _ rhs_hi rhs_lo lhs_hi lhs_lo
                // AFTER:  _ prod_hi prod_lo
                {entrypoint}:
                    // `lhs_lo * rhs_lo`:
                    dup 0 dup 3 mul
                    // _ rhs_hi rhs_lo lhs_hi lhs_lo (lhs_lo * rhs_lo)

                    // `rhs_hi * lhs_lo` (consume and `lhs_lo`):
                    swap 4
                    swap 1
                    dup 1
                    mul
                    // _ (lhs_lo * rhs_lo) rhs_lo lhs_hi rhs_hi (lhs_lo * rhs_hi)

                    // `rhs_lo * lhs_hi` (consume `rhs_lo`):
                    swap 3
                    dup 2
                    mul
                    // _ (lhs_lo * rhs_lo) (lhs_lo * rhs_hi) lhs_hi rhs_hi (rhs_lo * lhs_hi)

                    // `lhs_hi * rhs_hi` (consume `lhs_hi` and `rhs_hi`):
                    swap 2
                    mul
                    // _ (lhs_lo * rhs_lo) (lhs_lo * rhs_hi) (rhs_lo * lhs_hi) (lhs_hi * rhs_hi)

                    // crash if `lhs_hi * rhs_hi != 0`
                    push 0
                    eq
                    assert error_id 100
                    // _ (lhs_lo * rhs_lo) (lhs_lo * rhs_hi) (rhs_lo * lhs_hi)

                    // rename to: a, b, c:
                    // _ a b c

                    // Calculate `prod_hi = a_hi + b_lo + c_lo`:
                    split
                    swap 1
                    push 0
                    eq
                    assert error_id 101
                    // _ a b c_lo

                    swap 1
                    split
                    swap 1
                    push 0
                    eq
                    assert error_id 102
                    // _ a c_lo b_lo

                    swap 2
                    split
                    // _ b_lo c_lo a_hi a_lo

                    swap 3
                    // _ a_lo c_lo a_hi b_lo

                    add
                    add
                    // _ a_lo (c_lo + a_hi + b_lo)

                    split
                    swap 1
                    push 0
                    eq
                    assert error_id 103
                    // _ a_lo (c_lo + a_hi + b_lo)_lo

                    swap 1
                    // _ (c_lo + a_hi + b_lo)_lo a_lo

                    // _ prod_hi prod_lo

                    return
        )
        .iter()
        .join("\n")
    }

    fn crash_conditions(&self) -> Vec<String> {
        vec!["Product is greater than u64::MAX".to_string()]
    }

    fn gen_input_states(&self) -> Vec<InitVmState> {
        let mut rng = rand::thread_rng();

        let mut ret = vec![];
        for _ in 0..10 {
            ret.push(prepare_state(rng.next_u32() as u64, rng.next_u32() as u64));
        }

        ret.push(prepare_state(u32::MAX as u64, u32::MAX as u64));
        ret.push(prepare_state(u32::MAX as u64 - 1, u32::MAX as u64));
        ret.push(prepare_state(u32::MAX as u64, u32::MAX as u64 - 1));
        ret.push(prepare_state(u32::MAX as u64 - 1, u32::MAX as u64 - 1));
        ret.push(prepare_state(u32::MAX as u64 - 2, u32::MAX as u64));
        ret.push(prepare_state(u32::MAX as u64, u32::MAX as u64 - 2));

        ret
    }

    fn common_case_input_state(&self) -> InitVmState {
        prepare_state(1 << 31, (1 << 25) - 1)
    }

    fn worst_case_input_state(&self) -> InitVmState {
        prepare_state(1 << 31, (1 << 31) - 1)
    }

    fn rust_shadowing(
        &self,
        stack: &mut Vec<BFieldElement>,
        _std_in: Vec<BFieldElement>,
        _secret_in: Vec<BFieldElement>,
        _memory: &mut std::collections::HashMap<BFieldElement, BFieldElement>,
    ) {
        // top element on stack
        let a_lo: u32 = stack.pop().unwrap().try_into().unwrap();
        let a_hi: u32 = stack.pop().unwrap().try_into().unwrap();
        let a = ((a_hi as u64) << 32) + a_lo as u64;

        let b_lo: u32 = stack.pop().unwrap().try_into().unwrap();
        let b_hi: u32 = stack.pop().unwrap().try_into().unwrap();
        let b = ((b_hi as u64) << 32) + b_lo as u64;

        // let prod = a.wrapping_mul(b);
        let (safe_mul_prod, overflow) = a.overflowing_mul(b);
        assert!(!overflow, "u64 mul result overflowed");

        stack.push(BFieldElement::new(safe_mul_prod >> 32));
        stack.push(BFieldElement::new(safe_mul_prod & u32::MAX as u64));
    }
}

fn prepare_state(a: u64, b: u64) -> InitVmState {
    let a = U32s::<2>::try_from(a).unwrap();
    let b = U32s::<2>::try_from(b).unwrap();
    let mut init_stack = empty_stack();
    push_encodable(&mut init_stack, &a);
    push_encodable(&mut init_stack, &b);
    InitVmState::with_stack(init_stack)
}

#[cfg(test)]
mod tests {
    use std::collections::HashMap;

    use num::Zero;

    use super::*;
    use crate::test_helpers::test_assertion_failure;
    use crate::test_helpers::test_rust_equivalence_given_input_values_deprecated;
    use crate::test_helpers::test_rust_equivalence_multiple_deprecated;
    use crate::traits::basic_snippet::BasicSnippet;
    use crate::traits::deprecated_snippet::tests::DeprecatedSnippetWrapper;

    impl SafeMulU64 {
        fn initial_test_state(lhs: u64, rhs: u64) -> InitVmState {
            let mut stack = Self.init_stack_for_isolated_run();
            push_encodable(&mut stack, &U32s::<2>::try_from(rhs).unwrap());
            push_encodable(&mut stack, &U32s::<2>::try_from(lhs).unwrap());

            InitVmState::with_stack(stack)
        }
    }

    #[test]
    fn safe_mul_u64_test() {
        test_rust_equivalence_multiple_deprecated(&SafeMulU64, true);
    }

    #[test]
    fn overflow_test_1() {
        // Crash because (rhs_hi * lhs_hi) != 0

        test_assertion_failure(
            &DeprecatedSnippetWrapper::new(SafeMulU64),
            SafeMulU64::initial_test_state(1 << 32, 1 << 32),
            &[100],
        );
    }

    #[test]
    fn overflow_test_2() {
        // Crash because (rhs_lo * lhs_hi)_hi != 0
        test_assertion_failure(
            &DeprecatedSnippetWrapper::new(SafeMulU64),
            SafeMulU64::initial_test_state(1 << 31, 1 << 33),
            &[102],
        );
    }

    #[test]
    fn overflow_test_3() {
        // Crash because (lhs_lo * rhs_hi)_hi != 0
        test_assertion_failure(
            &DeprecatedSnippetWrapper::new(SafeMulU64),
            SafeMulU64::initial_test_state(1 << 33, 1 << 31),
            &[101],
        );
    }

    #[test]
    fn overflow_test_4() {
        // Crash because (c_lo + a_hi + b_lo)_hi != 0
        test_assertion_failure(
            &DeprecatedSnippetWrapper::new(SafeMulU64),
            SafeMulU64::initial_test_state((1 << 33) + 5, (1 << 31) - 1),
            &[103],
        );
    }

    #[test]
    fn safe_mul_u64_simple() {
        let mut init_stack = empty_stack();
        init_stack.push(BFieldElement::zero());
        init_stack.push(BFieldElement::new(100));
        init_stack.push(BFieldElement::zero());
        init_stack.push(BFieldElement::new(200));

        let mut expected = empty_stack();
        expected.push(BFieldElement::zero());
        expected.push(BFieldElement::new(20_000));
        test_rust_equivalence_given_input_values_deprecated(
            &SafeMulU64,
            &init_stack,
            &[],
            HashMap::default(),
            Some(&expected),
        );
    }
}

#[cfg(test)]
mod benches {
    use super::*;
    use crate::snippet_bencher::bench_and_write;

    #[test]
    fn safe_u64_benchmark() {
        bench_and_write(SafeMulU64);
    }
}