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
#[cfg(target_os = "zkvm")]
use core::{arch::asm, cell::UnsafeCell};
#[cfg(target_os = "zkvm")]
use crate::memory;
use crate::{io::SliceDescriptor, WORD_SIZE};
pub mod ecall {
pub const HALT: u32 = 0;
pub const OUTPUT: u32 = 1;
pub const SOFTWARE: u32 = 2;
pub const SHA: u32 = 3;
pub const FFPU: u32 = 4;
}
pub mod nr {
pub const SYS_PANIC: u32 = 0;
pub const SYS_LOG: u32 = 1;
pub const SYS_IO: u32 = 2;
pub const SYS_COMMIT: u32 = 3;
pub const SYS_CYCLE_COUNT: u32 = 4;
pub const SYS_COMPUTE_POLY: u32 = 5;
}
pub mod reg_abi {
pub const REG_ZERO: usize = 0; pub const REG_RA: usize = 1; pub const REG_SP: usize = 2; pub const REG_GP: usize = 3; pub const REG_TP: usize = 4; pub const REG_T0: usize = 5; pub const REG_T1: usize = 6; pub const REG_T2: usize = 7; pub const REG_S0: usize = 8; pub const REG_FP: usize = 8; pub const REG_S1: usize = 9; pub const REG_A0: usize = 10; pub const REG_A1: usize = 11; pub const REG_A2: usize = 12; pub const REG_A3: usize = 13; pub const REG_A4: usize = 14; pub const REG_A5: usize = 15; pub const REG_A6: usize = 16; pub const REG_A7: usize = 17; pub const REG_S2: usize = 18; pub const REG_S3: usize = 19; pub const REG_S4: usize = 20; pub const REG_S5: usize = 21; pub const REG_S6: usize = 22; pub const REG_S7: usize = 23; pub const REG_S8: usize = 24; pub const REG_S9: usize = 25; pub const REG_S10: usize = 26; pub const REG_S11: usize = 27; pub const REG_T3: usize = 28; pub const REG_T4: usize = 29; pub const REG_T5: usize = 30; pub const REG_T6: usize = 31; pub const REG_PC: usize = 32; pub const REG_MAX: usize = 33; }
pub const DIGEST_WORDS: usize = 8;
pub const DIGEST_BYTES: usize = WORD_SIZE * DIGEST_WORDS;
#[cfg(target_os = "zkvm")]
static mut READ_PTR: UnsafeCell<usize> = UnsafeCell::new(memory::INPUT.start());
#[allow(dead_code)]
const fn div_ceil(a: u32, b: u32) -> u32 {
(a + b - 1) / b
}
#[allow(dead_code)]
const fn round_up(a: u32, b: u32) -> u32 {
div_ceil(a, b) * b
}
#[inline(always)]
pub unsafe fn sys_panic(msg_ptr: *const u8, msg_len: usize) -> ! {
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_PANIC,
inout("a0") msg_ptr => _,
inout("a1") msg_len => _,
);
unreachable!();
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_log(msg_ptr: *const u8, msg_len: usize) {
#[cfg(target_os = "zkvm")]
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_LOG,
inout("a0") msg_ptr => _,
inout("a1") msg_len => _,
);
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_io(channel: u32, buf_ptr: *const u8, buf_len: usize) -> &'static [u8] {
#[cfg(target_os = "zkvm")]
{
let read_ptr: &mut usize = &mut *READ_PTR.get();
*read_ptr = round_up(*read_ptr as u32, crate::PAGE_SIZE as u32) as usize;
let out_ptr = *read_ptr as *const u8;
let out_nbytes: usize;
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_IO,
inout("a0") channel => out_nbytes,
inout("a1") buf_ptr => _,
in("a2") buf_len,
in("a3") out_ptr,
);
let out_nwords = (out_nbytes + WORD_SIZE - 1) / WORD_SIZE;
let read_end = read_ptr.checked_add(out_nwords * WORD_SIZE).unwrap();
*read_ptr = read_end;
core::slice::from_raw_parts(out_ptr, out_nbytes)
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_commit(buf_ptr: *const u32, buf_len: usize) {
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_COMMIT,
inout("a0") buf_ptr => _,
inout("a1") buf_len => _,
);
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_cycle_count() -> usize {
#[cfg(target_os = "zkvm")]
{
let cycle: usize;
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_CYCLE_COUNT,
out("a0") cycle,
out("a1") _,
);
cycle
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_ffpu(code: &[u32], args: &[*mut u32]) {
#[cfg(target_os = "zkvm")]
{
let code_start: *const u32 = code.as_ptr();
let code_end: *const u32 = code_start.add(code.len());
let args_ptr: *const *mut u32 = args.as_ptr();
asm!(
"ecall",
in("t0") ecall::FFPU,
in("a0") code_start,
in("a1") args_ptr,
in("a2") code_end,
);
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_compute_poly(
arg0_ptr: *const SliceDescriptor, arg1_ptr: *const u32, arg2_ptr: *const SliceDescriptor, arg3_ptr: *const SliceDescriptor, ) -> &'static [u32] {
#[cfg(target_os = "zkvm")]
{
let read_ptr: &mut usize = &mut *READ_PTR.get();
*read_ptr = round_up(*read_ptr as u32, crate::PAGE_SIZE as u32) as usize;
let out_ptr = *read_ptr as *const u32;
let out_nwords: usize;
asm!(
"ecall",
in("t0") ecall::SOFTWARE,
in("a7") nr::SYS_COMPUTE_POLY,
inout("a0") arg0_ptr => out_nwords,
inout("a1") arg1_ptr => _,
in("a2") arg2_ptr,
in("a3") arg3_ptr,
in("a4") out_ptr,
);
let read_end = read_ptr.checked_add(out_nwords * WORD_SIZE).unwrap();
*read_ptr = read_end;
core::slice::from_raw_parts(out_ptr, out_nwords)
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_halt() {
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::HALT,
);
unreachable!();
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_output(output_id: u32, output_value: u32) {
assert!(
output_id < 9,
"Invalid output ID. Expected: 0 - 8. Actual {output_id}"
);
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::OUTPUT,
in("a0") output_id,
in("a1") output_value,
);
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_sha_compress(
out_state: *mut [u32; DIGEST_WORDS],
in_state: *const [u32; DIGEST_WORDS],
block1_ptr: *const [u32; DIGEST_WORDS],
block2_ptr: *const [u32; DIGEST_WORDS],
) {
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::SHA,
in("a0") out_state,
in("a1") in_state,
in("a2") block1_ptr,
in("a3") block2_ptr,
in("a4") 1,
);
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}
#[inline(always)]
pub unsafe fn sys_sha_buffer(
out_state: *mut [u32; DIGEST_WORDS],
in_state: *const [u32; DIGEST_WORDS],
buf: *const u8,
count: u32,
) {
#[cfg(target_os = "zkvm")]
{
asm!(
"ecall",
in("t0") ecall::SHA,
in("a0") out_state,
in("a1") in_state,
in("a2") buf,
in("a3") buf.add(DIGEST_BYTES),
in("a4") count,
);
}
#[cfg(not(target_os = "zkvm"))]
unimplemented!()
}