summaryrefslogtreecommitdiffstats
path: root/src/doc/rustc-dev-guide/examples
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rustc-dev-guide/examples')
-rw-r--r--src/doc/rustc-dev-guide/examples/rustc-driver-example.rs94
-rw-r--r--src/doc/rustc-dev-guide/examples/rustc-driver-getting-diagnostics.rs96
-rw-r--r--src/doc/rustc-dev-guide/examples/rustc-driver-interacting-with-the-ast.rs93
3 files changed, 283 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs b/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
new file mode 100644
index 000000000..4203fe96a
--- /dev/null
+++ b/src/doc/rustc-dev-guide/examples/rustc-driver-example.rs
@@ -0,0 +1,94 @@
+#![feature(rustc_private)]
+
+// NOTE: For the example to compile, you will need to first run the following:
+// rustup component add rustc-dev llvm-tools-preview
+
+// version: 1.62.0-nightly (7c4b47696 2022-04-30)
+
+extern crate rustc_error_codes;
+extern crate rustc_errors;
+extern crate rustc_hash;
+extern crate rustc_hir;
+extern crate rustc_interface;
+extern crate rustc_session;
+extern crate rustc_span;
+
+use std::{path, process, str};
+
+use rustc_errors::registry;
+use rustc_hash::{FxHashMap, FxHashSet};
+use rustc_session::config::{self, CheckCfg};
+use rustc_span::source_map;
+
+fn main() {
+ let out = process::Command::new("rustc")
+ .arg("--print=sysroot")
+ .current_dir(".")
+ .output()
+ .unwrap();
+ let sysroot = str::from_utf8(&out.stdout).unwrap().trim();
+ let config = rustc_interface::Config {
+ // Command line options
+ opts: config::Options {
+ maybe_sysroot: Some(path::PathBuf::from(sysroot)),
+ ..config::Options::default()
+ },
+ // cfg! configuration in addition to the default ones
+ crate_cfg: FxHashSet::default(), // FxHashSet<(String, Option<String>)>
+ crate_check_cfg: CheckCfg::default(), // CheckCfg
+ input: config::Input::Str {
+ name: source_map::FileName::Custom("main.rs".into()),
+ input: r#"
+static HELLO: &str = "Hello, world!";
+fn main() {
+ println!("{HELLO}");
+}
+"#
+ .into(),
+ },
+ input_path: None, // Option<PathBuf>
+ output_dir: None, // Option<PathBuf>
+ output_file: None, // Option<PathBuf>
+ file_loader: None, // Option<Box<dyn FileLoader + Send + Sync>>
+ diagnostic_output: rustc_session::DiagnosticOutput::Default,
+ lint_caps: FxHashMap::default(), // FxHashMap<lint::LintId, lint::Level>
+ // This is a callback from the driver that is called when [`ParseSess`] is created.
+ parse_sess_created: None, //Option<Box<dyn FnOnce(&mut ParseSess) + Send>>
+ // This is a callback from the driver that is called when we're registering lints;
+ // it is called during plugin registration when we have the LintStore in a non-shared state.
+ //
+ // Note that if you find a Some here you probably want to call that function in the new
+ // function being registered.
+ register_lints: None, // Option<Box<dyn Fn(&Session, &mut LintStore) + Send + Sync>>
+ // This is a callback from the driver that is called just after we have populated
+ // the list of queries.
+ //
+ // The second parameter is local providers and the third parameter is external providers.
+ override_queries: None, // Option<fn(&Session, &mut ty::query::Providers<'_>, &mut ty::query::Providers<'_>)>
+ // Registry of diagnostics codes.
+ registry: registry::Registry::new(&rustc_error_codes::DIAGNOSTICS),
+ make_codegen_backend: None,
+ };
+ rustc_interface::run_compiler(config, |compiler| {
+ compiler.enter(|queries| {
+ // Parse the program and print the syntax tree.
+ let parse = queries.parse().unwrap().take();
+ println!("{parse:?}");
+ // Analyze the program and inspect the types of definitions.
+ queries.global_ctxt().unwrap().take().enter(|tcx| {
+ for id in tcx.hir().items() {
+ let hir = tcx.hir();
+ let item = hir.item(id);
+ match item.kind {
+ rustc_hir::ItemKind::Static(_, _, _) | rustc_hir::ItemKind::Fn(_, _, _) => {
+ let name = item.ident;
+ let ty = tcx.type_of(hir.local_def_id(item.hir_id()));
+ println!("{name:?}:\t{ty:?}")
+ }
+ _ => (),
+ }
+ }
+ })
+ });
+ });
+}
diff --git a/src/doc/rustc-dev-guide/examples/rustc-driver-getting-diagnostics.rs b/src/doc/rustc-dev-guide/examples/rustc-driver-getting-diagnostics.rs
new file mode 100644
index 000000000..1d3a4034e
--- /dev/null
+++ b/src/doc/rustc-dev-guide/examples/rustc-driver-getting-diagnostics.rs
@@ -0,0 +1,96 @@
+#![feature(rustc_private)]
+
+// NOTE: For the example to compile, you will need to first run the following:
+// rustup component add rustc-dev llvm-tools-preview
+
+// version: 1.62.0-nightly (7c4b47696 2022-04-30)
+
+extern crate rustc_error_codes;
+extern crate rustc_errors;
+extern crate rustc_hash;
+extern crate rustc_hir;
+extern crate rustc_interface;
+extern crate rustc_session;
+extern crate rustc_span;
+
+use rustc_errors::registry;
+use rustc_session::config::{self, CheckCfg};
+use rustc_span::source_map;
+use std::io;
+use std::path;
+use std::process;
+use std::str;
+use std::sync;
+
+// Buffer diagnostics in a Vec<u8>.
+#[derive(Clone)]
+pub struct DiagnosticSink(sync::Arc<sync::Mutex<Vec<u8>>>);
+
+impl io::Write for DiagnosticSink {
+ fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
+ self.0.lock().unwrap().write(buf)
+ }
+ fn flush(&mut self) -> io::Result<()> {
+ self.0.lock().unwrap().flush()
+ }
+}
+
+fn main() {
+ let out = process::Command::new("rustc")
+ .arg("--print=sysroot")
+ .current_dir(".")
+ .output()
+ .unwrap();
+ let sysroot = str::from_utf8(&out.stdout).unwrap().trim();
+ let buffer = sync::Arc::new(sync::Mutex::new(Vec::new()));
+ let config = rustc_interface::Config {
+ opts: config::Options {
+ maybe_sysroot: Some(path::PathBuf::from(sysroot)),
+ // Configure the compiler to emit diagnostics in compact JSON format.
+ error_format: config::ErrorOutputType::Json {
+ pretty: false,
+ json_rendered: rustc_errors::emitter::HumanReadableErrorType::Default(
+ rustc_errors::emitter::ColorConfig::Never,
+ ),
+ },
+ ..config::Options::default()
+ },
+ // This program contains a type error.
+ input: config::Input::Str {
+ name: source_map::FileName::Custom("main.rs".into()),
+ input: "
+fn main() {
+ let x: &str = 1;
+}
+"
+ .into(),
+ },
+ // Redirect the diagnostic output of the compiler to a buffer.
+ diagnostic_output: rustc_session::DiagnosticOutput::Raw(Box::from(DiagnosticSink(
+ buffer.clone(),
+ ))),
+ crate_cfg: rustc_hash::FxHashSet::default(),
+ crate_check_cfg: CheckCfg::default(),
+ input_path: None,
+ output_dir: None,
+ output_file: None,
+ file_loader: None,
+ lint_caps: rustc_hash::FxHashMap::default(),
+ parse_sess_created: None,
+ register_lints: None,
+ override_queries: None,
+ registry: registry::Registry::new(&rustc_error_codes::DIAGNOSTICS),
+ make_codegen_backend: None,
+ };
+ rustc_interface::run_compiler(config, |compiler| {
+ compiler.enter(|queries| {
+ queries.global_ctxt().unwrap().take().enter(|tcx| {
+ // Run the analysis phase on the local crate to trigger the type error.
+ let _ = tcx.analysis(());
+ });
+ });
+ });
+ // Read buffered diagnostics.
+ let diagnostics = String::from_utf8(buffer.lock().unwrap().clone()).unwrap();
+ println!("{diagnostics}");
+}
diff --git a/src/doc/rustc-dev-guide/examples/rustc-driver-interacting-with-the-ast.rs b/src/doc/rustc-dev-guide/examples/rustc-driver-interacting-with-the-ast.rs
new file mode 100644
index 000000000..231994a97
--- /dev/null
+++ b/src/doc/rustc-dev-guide/examples/rustc-driver-interacting-with-the-ast.rs
@@ -0,0 +1,93 @@
+#![feature(rustc_private)]
+
+// NOTE: For the example to compile, you will need to first run the following:
+// rustup component add rustc-dev llvm-tools-preview
+
+// version: 1.62.0-nightly (7c4b47696 2022-04-30)
+
+extern crate rustc_ast_pretty;
+extern crate rustc_error_codes;
+extern crate rustc_errors;
+extern crate rustc_hash;
+extern crate rustc_hir;
+extern crate rustc_interface;
+extern crate rustc_session;
+extern crate rustc_span;
+
+use std::{path, process, str};
+
+use rustc_ast_pretty::pprust::item_to_string;
+use rustc_errors::registry;
+use rustc_session::config::{self, CheckCfg};
+use rustc_span::source_map;
+
+fn main() {
+ let out = process::Command::new("rustc")
+ .arg("--print=sysroot")
+ .current_dir(".")
+ .output()
+ .unwrap();
+ let sysroot = str::from_utf8(&out.stdout).unwrap().trim();
+ let config = rustc_interface::Config {
+ opts: config::Options {
+ maybe_sysroot: Some(path::PathBuf::from(sysroot)),
+ ..config::Options::default()
+ },
+ input: config::Input::Str {
+ name: source_map::FileName::Custom("main.rs".to_string()),
+ input: r#"
+fn main() {
+ let message = "Hello, World!";
+ println!("{message}");
+}
+"#
+ .to_string(),
+ },
+ diagnostic_output: rustc_session::DiagnosticOutput::Default,
+ crate_cfg: rustc_hash::FxHashSet::default(),
+ crate_check_cfg: CheckCfg::default(),
+ input_path: None,
+ output_dir: None,
+ output_file: None,
+ file_loader: None,
+ lint_caps: rustc_hash::FxHashMap::default(),
+ parse_sess_created: None,
+ register_lints: None,
+ override_queries: None,
+ make_codegen_backend: None,
+ registry: registry::Registry::new(&rustc_error_codes::DIAGNOSTICS),
+ };
+ rustc_interface::run_compiler(config, |compiler| {
+ compiler.enter(|queries| {
+ // TODO: add this to -Z unpretty
+ let ast_krate = queries.parse().unwrap().take();
+ for item in ast_krate.items {
+ println!("{}", item_to_string(&item));
+ }
+
+ // Analyze the crate and inspect the types under the cursor.
+ queries.global_ctxt().unwrap().take().enter(|tcx| {
+ // Every compilation contains a single crate.
+ let hir_krate = tcx.hir();
+ // Iterate over the top-level items in the crate, looking for the main function.
+ for id in hir_krate.items() {
+ let item = hir_krate.item(id);
+ // Use pattern-matching to find a specific node inside the main function.
+ if let rustc_hir::ItemKind::Fn(_, _, body_id) = item.kind {
+ let expr = &tcx.hir().body(body_id).value;
+ if let rustc_hir::ExprKind::Block(block, _) = expr.kind {
+ if let rustc_hir::StmtKind::Local(local) = block.stmts[0].kind {
+ if let Some(expr) = local.init {
+ let hir_id = expr.hir_id; // hir_id identifies the string "Hello, world!"
+ let def_id = tcx.hir().local_def_id(item.hir_id()); // def_id identifies the main function
+ let ty = tcx.typeck(def_id).node_type(hir_id);
+ println!("{expr:#?}: {ty:?}");
+ }
+ }
+ }
+ }
+ }
+ })
+ });
+ });
+}