rust/src/librustc_driver
bors 664c7797f6 Auto merge of #56614 - Zoxc:query-perf2, r=michaelwoerister
Replace LockCell with atomic types

Split from https://github.com/rust-lang/rust/pull/56509

r? @michaelwoerister
2019-01-09 11:08:14 +00:00
..
profile Remove licenses 2018-12-25 21:08:33 -07:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml rustc: Move jemalloc from rustc_driver to rustc 2018-12-19 08:27:23 -08:00
driver.rs Rollup merge of #57308 - Zoxc:controller-sync, r=michaelwoerister 2019-01-07 16:25:35 +01:00
lib.rs Auto merge of #56614 - Zoxc:query-perf2, r=michaelwoerister 2019-01-09 11:08:14 +00:00
pretty.rs Get rid of Block::recovered 2018-12-27 15:51:36 +03:00
proc_macro_decls.rs Remove licenses 2018-12-25 21:08:33 -07:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
test.rs remove outdated rustc_driver tests 2019-01-02 17:35:05 -05:00

The driver crate is effectively the "main" function for the rust compiler. It orchestrates the compilation process and "knits together" the code from the other crates within rustc. This crate itself does not contain any of the "main logic" of the compiler (though it does have some code related to pretty printing or other minor compiler options).

For more information about how the driver works, see the rustc guide.