rust/src/librustc_driver
2018-04-26 16:39:44 +03:00
..
profile Move PROFQ_CHAN to a Session field 2018-03-09 08:04:31 +01:00
build.rs
Cargo.toml Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03:00
derive_registrar.rs
driver.rs in unit tests, use note to dump multiple program clauses 2018-04-23 13:28:14 -04:00
lib.rs Rename rustc_back::target to rustc_target::spec. 2018-04-26 16:39:44 +03:00
pretty.rs Use Span instead of SyntaxContext in Ident 2018-04-06 11:46:26 +03:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
test.rs Make Binder's field private and clean up its usage 2018-04-24 22:12:07 -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.