This is a core library that models the borrow check. It implements the analysis described in this blogpost.
How to use
First off, you must use the nightly channel. To build, do something like this:
You can try it on one our input tests like so:
This will generate a bunch of output tuples:
# borrow_live_at
"Mid(bb3[2])" "bw0"
"Mid(bb3[2])" "bw2"
"Mid(bb10[2])" "bw0"
...
To generate a graphviz file with the CFG enriched with input and output tuples at each point, do:
Want to see something slow?
One of the goals with this repo is to experiment and compare different implementations of the same algorithm. The repo includes one particularly egregious case where we currently perform poorly, and you can test it against it like so:
> cargo |
)
(You can see it is pretty dang slow on my machine!)
How to generate your own inputs
To run the borrow checker on an input, you first need to generate the
input facts. For that, you will need to run rustc with the
-Znll-facts option:
> rustc -Znll-facts inputs/issue-47680/issue-47680.rs
This will generate a nll-facts directory with one subdirectory per function:
> ls
}}
You can then run on these directories.