2019-09-14 06:40:37 -05:00
|
|
|
# Contribution Guide
|
|
|
|
|
|
|
|
If you want to hack on miri yourself, great! Here are some resources you might
|
|
|
|
find useful.
|
|
|
|
|
|
|
|
## Getting started
|
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
Check out the issues on this GitHub repository for some ideas. In particular,
|
|
|
|
look for the green `E-*` labels which mark issues that should be rather
|
|
|
|
well-suited for onboarding. For more ideas or help with hacking on Miri, you can
|
|
|
|
contact us (`oli-obk` and `RalfJ`) on the [Rust Zulip].
|
2019-09-14 06:40:37 -05:00
|
|
|
|
|
|
|
[Rust Zulip]: https://rust-lang.zulipchat.com
|
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
## Preparing the build environment
|
2019-11-30 03:06:12 -06:00
|
|
|
|
2020-04-08 05:30:45 -05:00
|
|
|
Miri heavily relies on internal and unstable rustc interfaces to execute MIR,
|
|
|
|
which means it is important that you install a version of rustc that Miri
|
|
|
|
actually works with.
|
2019-11-30 03:06:12 -06:00
|
|
|
|
|
|
|
The `rust-version` file contains the commit hash of rustc that Miri is currently
|
|
|
|
tested against. Other versions will likely not work. After installing
|
|
|
|
[`rustup-toolchain-install-master`], you can run the following command to
|
|
|
|
install that exact version of rustc as a toolchain:
|
|
|
|
```
|
2019-12-01 03:20:16 -06:00
|
|
|
./rustup-toolchain
|
2019-11-30 03:06:12 -06:00
|
|
|
```
|
2020-04-08 05:30:45 -05:00
|
|
|
This will set up a rustup toolchain called `miri` and set it as an override for
|
|
|
|
the current directory.
|
2019-11-30 03:06:12 -06:00
|
|
|
|
|
|
|
[`rustup-toolchain-install-master`]: https://github.com/kennytm/rustup-toolchain-install-master
|
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
## Building and testing Miri
|
|
|
|
|
|
|
|
Invoking Miri requires getting a bunch of flags right and setting up a custom
|
2020-04-08 05:30:45 -05:00
|
|
|
sysroot with xargo. The `miri` script takes care of that for you. With the
|
2020-04-08 04:39:35 -05:00
|
|
|
build environment prepared, compiling Miri is just one command away:
|
2020-04-06 02:33:36 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
./miri build
|
|
|
|
```
|
|
|
|
|
|
|
|
Run `./miri` without arguments to see the other commands our build tool
|
|
|
|
supports.
|
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
### Testing the Miri driver
|
2019-09-14 06:40:37 -05:00
|
|
|
|
2020-04-08 08:56:59 -05:00
|
|
|
The Miri driver compiled from `src/bin/miri.rs` is the "heart" of Miri: it is
|
2020-04-08 04:39:35 -05:00
|
|
|
basically a version of `rustc` that, instead of compiling your code, runs it.
|
|
|
|
It accepts all the same flags as `rustc` (though the ones only affecting code
|
|
|
|
generation and linking obviously will have no effect) [and more][miri-flags].
|
2019-09-14 06:40:37 -05:00
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
[miri-flags]: README.md#miri--z-flags-and-environment-variables
|
2019-09-14 06:40:37 -05:00
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
For example, you can (cross-)run the driver on a particular file by doing
|
2019-09-14 06:40:37 -05:00
|
|
|
|
|
|
|
```sh
|
|
|
|
./miri run tests/run-pass/format.rs
|
|
|
|
./miri run tests/run-pass/hello.rs --target i686-unknown-linux-gnu
|
|
|
|
```
|
|
|
|
|
2020-04-06 02:37:15 -05:00
|
|
|
and you can (cross-)run the entire test suite using:
|
2019-09-14 06:40:37 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
./miri test
|
2020-03-22 02:55:53 -05:00
|
|
|
MIRI_TEST_TARGET=i686-unknown-linux-gnu ./miri test
|
2019-09-14 06:40:37 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
`./miri test FILTER` only runs those tests that contain `FILTER` in their
|
|
|
|
filename (including the base directory, e.g. `./miri test fail` will run all
|
|
|
|
compile-fail tests).
|
|
|
|
|
|
|
|
You can get a trace of which MIR statements are being executed by setting the
|
|
|
|
`MIRI_LOG` environment variable. For example:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
MIRI_LOG=info ./miri run tests/run-pass/vecs.rs
|
|
|
|
```
|
|
|
|
|
|
|
|
Setting `MIRI_LOG` like this will configure logging for Miri itself as well as
|
2020-04-08 05:30:45 -05:00
|
|
|
the `rustc_middle::mir::interpret` and `rustc_mir::interpret` modules in rustc. You
|
2019-09-14 06:40:37 -05:00
|
|
|
can also do more targeted configuration, e.g. the following helps debug the
|
|
|
|
stacked borrows implementation:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
MIRI_LOG=rustc_mir::interpret=info,miri::stacked_borrows ./miri run tests/run-pass/vecs.rs
|
|
|
|
```
|
|
|
|
|
|
|
|
In addition, you can set `MIRI_BACKTRACE=1` to get a backtrace of where an
|
|
|
|
evaluation error was originally raised.
|
|
|
|
|
2020-04-08 04:39:35 -05:00
|
|
|
### Testing `cargo miri`
|
2019-09-14 06:40:37 -05:00
|
|
|
|
|
|
|
Working with the driver directly gives you full control, but you also lose all
|
2020-04-08 05:30:45 -05:00
|
|
|
the convenience provided by cargo. Once your test case depends on a crate, it
|
|
|
|
is probably easier to test it with the cargo wrapper. You can install your
|
2019-09-14 06:40:37 -05:00
|
|
|
development version of Miri using
|
|
|
|
|
|
|
|
```
|
|
|
|
./miri install
|
|
|
|
```
|
|
|
|
|
|
|
|
and then you can use it as if it was installed by `rustup`. Make sure you use
|
|
|
|
the same toolchain when calling `cargo miri` that you used when installing Miri!
|
|
|
|
|
|
|
|
There's a test for the cargo wrapper in the `test-cargo-miri` directory; run
|
2020-03-22 02:55:53 -05:00
|
|
|
`./run-test.py` in there to execute it. Like `./miri test`, this respects the
|
|
|
|
`MIRI_TEST_TARGET` environment variable to execute the test for another target.
|
2019-09-14 06:40:37 -05:00
|
|
|
|
2020-04-08 05:30:45 -05:00
|
|
|
## Advanced topic: other build environments
|
2020-04-08 04:39:35 -05:00
|
|
|
|
2020-04-08 05:30:45 -05:00
|
|
|
We described above the simplest way to get a working build environment for Miri,
|
|
|
|
which is to use the version of rustc indicated by `rustc-version`. But
|
|
|
|
sometimes, that is not enough.
|
|
|
|
|
|
|
|
### Updating `rustc-version`
|
|
|
|
|
|
|
|
The `rustc-version` file is regularly updated to keep Miri close to the latest
|
|
|
|
version of rustc. Usually, new contributors do not have to worry about this. But
|
|
|
|
sometimes a newer rustc is needed for a patch, and sometimes Miri needs fixing
|
|
|
|
for changes in rustc. In both cases, `rustc-version` needs updating.
|
2020-04-08 04:39:35 -05:00
|
|
|
|
|
|
|
To update the `rustc-version` file and install the latest rustc, you can run:
|
|
|
|
```
|
|
|
|
./rustup-toolchain HEAD
|
|
|
|
```
|
|
|
|
|
2020-04-08 05:30:45 -05:00
|
|
|
Now edit Miri until `./miri test` passes, and submit a PR. Generally, it is
|
|
|
|
preferred to separate updating `rustc-version` and doing what it takes to get
|
|
|
|
Miri working again, from implementing new features that rely on the updated
|
|
|
|
rustc. This avoids blocking all Miri development on landing a big PR.
|
2020-04-08 04:39:35 -05:00
|
|
|
|
2020-04-08 05:30:45 -05:00
|
|
|
### Building Miri with a locally built rustc
|
2019-09-14 06:40:37 -05:00
|
|
|
|
|
|
|
A big part of the Miri driver lives in rustc, so working on Miri will sometimes
|
2020-04-08 05:30:45 -05:00
|
|
|
require using a locally built rustc. The bug you want to fix may actually be on
|
2019-09-14 06:40:37 -05:00
|
|
|
the rustc side, or you just need to get more detailed trace of the execution
|
|
|
|
than what is possible with release builds -- in both cases, you should develop
|
|
|
|
miri against a rustc you compiled yourself, with debug assertions (and hence
|
|
|
|
tracing) enabled.
|
|
|
|
|
|
|
|
The setup for a local rustc works as follows:
|
|
|
|
```sh
|
2020-10-29 19:00:12 -05:00
|
|
|
# Clone the rust-lang/rust repo.
|
2020-10-30 16:33:12 -05:00
|
|
|
git clone https://github.com/rust-lang/rust rustc
|
2019-09-14 06:40:37 -05:00
|
|
|
cd rustc
|
2020-10-31 14:06:06 -05:00
|
|
|
# Create a config.toml with defaults for working on miri.
|
|
|
|
./x.py setup compiler
|
|
|
|
# Now edit `config.toml` and under `[rust]` set `debug-assertions = true`.
|
2020-10-29 19:00:12 -05:00
|
|
|
|
2020-11-07 13:26:41 -06:00
|
|
|
# Build a stage 1 rustc, and build the rustc libraries with that rustc.
|
2020-10-29 19:00:12 -05:00
|
|
|
# This step can take 30 minutes or more.
|
2020-10-30 16:33:12 -05:00
|
|
|
./x.py build --stage 1 compiler/rustc
|
2019-09-14 06:40:37 -05:00
|
|
|
# If you change something, you can get a faster rebuild by doing
|
2020-10-30 16:33:12 -05:00
|
|
|
./x.py build --keep-stage 0 --stage 1 compiler/rustc
|
2019-09-14 06:40:37 -05:00
|
|
|
# You may have to change the architecture in the next command
|
2020-10-30 16:33:12 -05:00
|
|
|
rustup toolchain link stage1 build/x86_64-unknown-linux-gnu/stage1
|
2019-09-14 06:40:37 -05:00
|
|
|
# Now cd to your Miri directory, then configure rustup
|
2020-10-30 16:33:12 -05:00
|
|
|
rustup override set stage1
|
2019-09-14 06:40:37 -05:00
|
|
|
```
|
|
|
|
|
2020-10-31 14:06:06 -05:00
|
|
|
For more information about building and configuring a local compiler,
|
|
|
|
see <https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html>.
|
|
|
|
|
2020-10-29 19:00:12 -05:00
|
|
|
With this, you should now have a working development setup! See
|
2020-04-08 04:39:35 -05:00
|
|
|
[above](#building-and-testing-miri) for how to proceed working on Miri.
|