* sprinkling this around does magic:
```
#[inline(never)]
fn localize_stack_usage<R, F: FnOnce() -> R>(x: F) -> R {
    x()
}
```