[popl] some Rust code

This commit is contained in:
Ben Greenman 2016-05-25 18:30:53 -04:00
parent 86634e83e2
commit b541eede94
7 changed files with 72 additions and 0 deletions

19
popl-2017/src/README.md Normal file
View File

@ -0,0 +1,19 @@
src
===
Code for "the paper".
Just enough for examples and proofs-of-concept.
Real code belongs in a public repo, like: http://github.com/bennn/trivial
rust
---
Only have syntax rules, so can only elaborate.
- No constant folding
- No throwing compile-time exceptions
- No reading regexp strings
But they have checked printf. How was that implemented?

View File

@ -0,0 +1,9 @@
TARGETS=const format map regexp vector
all: ${TARGETS}
%: %.rs
rustc $<
clean:
rm -f ${TARGETS}

View File

@ -0,0 +1,31 @@
macro_rules! plus {
// Nooo this doesn't actually compress things at compiletime
( $( $n:expr ),* ) => {
{
let mut sum = 0;
$(
sum += $n;
)*
sum
}
};
}
macro_rules! div {
( $num:expr , $den:expr ) => {
// NOPE error comes too late; will be same for vector ops
{ if ($den == 0) { println!("Incoming division error"); };
$num / $den;
}
};
}
fn main() {
let m = 0;
//let n = 1 / m; // unchecked
let n = div!(1, m);
//println!("result is {}", n);
return
}

View File

@ -0,0 +1,8 @@
// Rust's printf is typechecked
fn main() {
println!("Hello {:b}", "asdf");
return;
}

View File

View File

@ -0,0 +1,5 @@
macro_rules! regexp_match {
( $x:string $y:expr ) => {{
//if ... $x shit
}};
}

View File