rust/src/librustc_driver
2018-06-06 15:25:19 +02:00
..
profile Move query functions out from the define_maps! macro 2018-04-27 12:09:59 +02:00
build.rs
Cargo.toml Update Rayon version 2018-06-06 15:25:16 +02:00
derive_registrar.rs
driver.rs Reduce the amount of unsafe code and mark handle_deadlock as unsafe 2018-06-06 15:25:19 +02:00
lib.rs Impl CompilerCalls for CompileController instead of AdHocCompilerCalls 2018-06-05 18:04:18 +02:00
pretty.rs Rename trans to codegen everywhere. 2018-05-17 15:08:30 +03:00
README.md
test.rs stop invoking DebruijnIndex::new directly 2018-05-28 19:47:04 -04: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.