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
extern crate fress;
use fress::Value;
use fress::eval;
use std::fs::File;
use std::io::Write;
fn n() {
let s = "(let [a 7]\
(fn ([x]\
(conj x a))\
([y & z]\
(conj a a))))";
let form = fress::read(s);
eval::init();
let structured = eval::structure::structure(&form).unwrap();
use fress::meta;
meta::do_print_meta();
println!("Structured: {}", structured);
meta::end_print_meta();
unimplemented!();
let ctx = eval::compile::compile_top_level(&structured);
eval::compile::show_context(&ctx);
let module_bytes = eval::assemble::wasm_module(&ctx);
let mut file = File::create("out.wasm").unwrap();
file.write_all(&module_bytes).expect("Failed to write out.wasm");
}
fn main() {
use fress::memory::segment;
let (new_a, free_a) = segment::new_free_counts();
use std::panic;
let _r = panic::catch_unwind(|| {
n();
});
{
let (new_b, free_b) = segment::new_free_counts();
let new_diff = new_b - new_a;
let free_diff = free_b - free_a;
println!("New diff: {}, free diff: {}, new - free: {}", new_diff, free_diff, new_diff - free_diff);
}
}