1
Fork 0
rust/compiler/rustc_builtin_macros/src/deriving/debug.rs

139 lines
5.1 KiB
Rust
Raw Normal View History

2019-02-04 21:49:54 +09:00
use crate::deriving::generic::ty::*;
2019-12-22 17:42:04 -05:00
use crate::deriving::generic::*;
use crate::deriving::path_std;
use rustc_ast::ptr::P;
2020-04-27 23:26:11 +05:30
use rustc_ast::{self as ast, Expr, MetaItem};
use rustc_expand::base::{Annotatable, ExtCtxt};
2020-04-19 13:00:18 +02:00
use rustc_span::symbol::{sym, Ident};
use rustc_span::{Span, DUMMY_SP};
2014-02-06 23:02:28 +11:00
2019-12-22 17:42:04 -05:00
pub fn expand_deriving_debug(
cx: &mut ExtCtxt<'_>,
span: Span,
mitem: &MetaItem,
item: &Annotatable,
push: &mut dyn FnMut(Annotatable),
) {
2014-02-06 23:02:28 +11:00
// &mut ::std::fmt::Formatter
2019-12-22 17:42:04 -05:00
let fmtr =
Ptr(Box::new(Literal(path_std!(fmt::Formatter))), Borrowed(None, ast::Mutability::Mut));
2014-02-06 23:02:28 +11:00
let trait_def = TraitDef {
span,
attributes: Vec::new(),
path: path_std!(fmt::Debug),
additional_bounds: Vec::new(),
generics: Bounds::empty(),
is_unsafe: false,
supports_unions: false,
methods: vec![MethodDef {
name: sym::fmt,
generics: Bounds::empty(),
2019-12-22 17:42:04 -05:00
explicit_self: borrowed_explicit_self(),
args: vec![(fmtr, sym::f)],
ret_ty: Literal(path_std!(fmt::Result)),
2019-12-22 17:42:04 -05:00
attributes: Vec::new(),
is_unsafe: false,
unify_fieldless_variants: false,
combine_substructure: combine_substructure(Box::new(|a, b, c| {
show_substructure(a, b, c)
})),
}],
associated_types: Vec::new(),
2014-02-06 23:02:28 +11:00
};
trait_def.expand(cx, mitem, item, push)
2014-02-06 23:02:28 +11:00
}
/// We use the debug builders to do the heavy lifting here
2019-02-04 21:49:54 +09:00
fn show_substructure(cx: &mut ExtCtxt<'_>, span: Span, substr: &Substructure<'_>) -> P<Expr> {
// build fmt.debug_struct(<name>).field(<fieldname>, &<fieldval>)....build()
// or fmt.debug_tuple(<name>).field(&<fieldval>)....build()
// based on the "shape".
let (ident, vdata, fields) = match substr.fields {
Struct(vdata, fields) => (substr.type_ident, *vdata, fields),
2019-08-13 21:40:21 -03:00
EnumMatching(_, _, v, fields) => (v.ident, &v.data, fields),
2019-12-22 17:42:04 -05:00
EnumNonMatchingCollapsed(..) | StaticStruct(..) | StaticEnum(..) => {
cx.span_bug(span, "nonsensical .fields in `#[derive(Debug)]`")
}
2014-02-06 23:02:28 +11:00
};
2017-03-17 04:04:41 +00:00
// We want to make sure we have the ctxt set so that we can use unstable methods
let span = cx.with_def_site_ctxt(span);
let name = cx.expr_lit(span, ast::LitKind::Str(ident.name, ast::StrStyle::Cooked));
let builder = Ident::new(sym::debug_trait_builder, span);
let builder_expr = cx.expr_ident(span, builder);
2014-02-06 23:02:28 +11:00
let fmt = substr.nonself_args[0].clone();
2020-10-16 11:43:39 +02:00
let mut stmts = Vec::with_capacity(fields.len() + 2);
match vdata {
ast::VariantData::Tuple(..) | ast::VariantData::Unit(..) => {
// tuple struct/"normal" variant
let expr =
cx.expr_method_call(span, fmt, Ident::new(sym::debug_tuple, span), vec![name]);
stmts.push(cx.stmt_let(span, true, builder, expr));
for field in fields {
// Use double indirection to make sure this works for unsized types
let field = cx.expr_addr_of(field.span, field.self_.clone());
let field = cx.expr_addr_of(field.span, field);
2019-12-22 17:42:04 -05:00
let expr = cx.expr_method_call(
span,
builder_expr.clone(),
Ident::new(sym::field, span),
vec![field],
);
// Use `let _ = expr;` to avoid triggering the
// unused_results lint.
2020-05-04 18:27:23 -04:00
stmts.push(stmt_let_underscore(cx, span, expr));
2014-02-06 23:02:28 +11:00
}
}
ast::VariantData::Struct(..) => {
// normal struct/struct variant
let expr =
cx.expr_method_call(span, fmt, Ident::new(sym::debug_struct, span), vec![name]);
stmts.push(cx.stmt_let(DUMMY_SP, true, builder, expr));
for field in fields {
2019-12-22 17:42:04 -05:00
let name = cx.expr_lit(
field.span,
ast::LitKind::Str(field.name.unwrap().name, ast::StrStyle::Cooked),
);
// Use double indirection to make sure this works for unsized types
let field = cx.expr_addr_of(field.span, field.self_.clone());
let field = cx.expr_addr_of(field.span, field);
2019-12-22 17:42:04 -05:00
let expr = cx.expr_method_call(
span,
builder_expr.clone(),
Ident::new(sym::field, span),
vec![name, field],
);
2020-05-04 18:27:23 -04:00
stmts.push(stmt_let_underscore(cx, span, expr));
}
}
}
let expr = cx.expr_method_call(span, builder_expr, Ident::new(sym::finish, span), vec![]);
2014-02-06 23:02:28 +11:00
2016-06-23 09:51:18 +00:00
stmts.push(cx.stmt_expr(expr));
let block = cx.block(span, stmts);
cx.expr_block(block)
2014-02-06 23:02:28 +11:00
}
2020-05-04 18:27:23 -04:00
fn stmt_let_underscore(cx: &mut ExtCtxt<'_>, sp: Span, expr: P<ast::Expr>) -> ast::Stmt {
let local = P(ast::Local {
pat: cx.pat_wild(sp),
ty: None,
init: Some(expr),
id: ast::DUMMY_NODE_ID,
span: sp,
2019-12-03 16:38:34 +01:00
attrs: ast::AttrVec::new(),
tokens: None,
});
ast::Stmt { id: ast::DUMMY_NODE_ID, kind: ast::StmtKind::Local(local), span: sp }
}