rust/compiler/rustc_symbol_mangling/src/test.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
3.1 KiB
Rust
Raw Normal View History

2016-03-16 19:00:20 +00:00
//! Walks the crate looking for items/impl-items/trait-items that have
//! either a `rustc_symbol_name` or `rustc_def_path` attribute and
2016-03-16 19:00:20 +00:00
//! generates an error giving, respectively, the symbol name or
//! def-path. This is used for unit testing the code that generates
2016-03-16 19:00:20 +00:00
//! paths etc in all kinds of annoying scenarios.
use rustc_hir::def_id::LocalDefId;
use rustc_middle::ty::print::with_no_trimmed_paths;
use rustc_middle::ty::{GenericArgs, Instance, TyCtxt};
2020-01-01 18:30:57 +00:00
use rustc_span::symbol::{Symbol, sym};
2016-03-16 19:00:20 +00:00
use crate::errors::{Kind, TestOutput};
const SYMBOL_NAME: Symbol = sym::rustc_symbol_name;
const DEF_PATH: Symbol = sym::rustc_def_path;
2016-03-16 19:00:20 +00:00
2019-06-21 18:27:44 +00:00
pub fn report_symbol_names(tcx: TyCtxt<'_>) {
2016-03-16 19:00:20 +00:00
// if the `rustc_attrs` feature is not enabled, then the
// attributes we are interested in cannot be present anyway, so
// skip the walk.
if !tcx.features().rustc_attrs() {
2016-03-16 19:00:20 +00:00
return;
}
tcx.dep_graph.with_ignore(|| {
let mut symbol_names = SymbolNamesTest { tcx };
let crate_items = tcx.hir_crate_items(());
2024-03-20 22:52:26 +00:00
for id in crate_items.free_items() {
symbol_names.process_attrs(id.owner_id.def_id);
}
for id in crate_items.trait_items() {
symbol_names.process_attrs(id.owner_id.def_id);
}
for id in crate_items.impl_items() {
symbol_names.process_attrs(id.owner_id.def_id);
}
for id in crate_items.foreign_items() {
symbol_names.process_attrs(id.owner_id.def_id);
}
})
2016-03-16 19:00:20 +00:00
}
struct SymbolNamesTest<'tcx> {
2019-06-13 21:48:52 +00:00
tcx: TyCtxt<'tcx>,
2016-03-16 19:00:20 +00:00
}
impl SymbolNamesTest<'_> {
fn process_attrs(&mut self, def_id: LocalDefId) {
let tcx = self.tcx;
2022-05-02 07:31:56 +00:00
// The formatting of `tag({})` is chosen so that tests can elect
// to test the entirety of the string, if they choose, or else just
// some subset.
2023-03-13 18:54:05 +00:00
for attr in tcx.get_attrs(def_id, SYMBOL_NAME) {
2022-05-02 07:31:56 +00:00
let def_id = def_id.to_def_id();
let instance = Instance::new(
def_id,
tcx.erase_regions(GenericArgs::identity_for_item(tcx, def_id)),
2022-05-02 07:31:56 +00:00
);
let mangled = tcx.symbol_name(instance);
tcx.dcx().emit_err(TestOutput {
span: attr.span,
kind: Kind::SymbolName,
content: format!("{mangled}"),
});
2022-05-02 07:31:56 +00:00
if let Ok(demangling) = rustc_demangle::try_demangle(mangled.name) {
tcx.dcx().emit_err(TestOutput {
span: attr.span,
kind: Kind::Demangling,
content: format!("{demangling}"),
});
tcx.dcx().emit_err(TestOutput {
span: attr.span,
kind: Kind::DemanglingAlt,
content: format!("{demangling:#}"),
});
2016-03-16 19:00:20 +00:00
}
2022-05-02 07:31:56 +00:00
}
2016-03-16 19:00:20 +00:00
2023-03-13 18:54:05 +00:00
for attr in tcx.get_attrs(def_id, DEF_PATH) {
tcx.dcx().emit_err(TestOutput {
span: attr.span,
kind: Kind::DefPath,
content: with_no_trimmed_paths!(tcx.def_path_str(def_id)),
});
2016-03-16 19:00:20 +00:00
}
}
}