Skip to content

Commit 36bb79f

Browse files
committed
Add the function body span to StableMIR
1 parent 2a76340 commit 36bb79f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

compiler/rustc_smir/src/rustc_smir/convert/mir.rs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ impl<'tcx> Stable<'tcx> for mir::Body<'tcx> {
3737
self.arg_count,
3838
self.var_debug_info.iter().map(|info| info.stable(tables)).collect(),
3939
self.spread_arg.stable(tables),
40+
self.span.stable(tables),
4041
)
4142
}
4243
}

compiler/stable_mir/src/mir/body.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ pub struct Body {
2727
///
2828
/// This is used for the "rust-call" ABI such as closures.
2929
pub(super) spread_arg: Option<Local>,
30+
31+
/// The span that covers the entire function body.
32+
pub span: Span,
3033
}
3134

3235
pub type BasicBlockIdx = usize;
@@ -42,14 +45,15 @@ impl Body {
4245
arg_count: usize,
4346
var_debug_info: Vec<VarDebugInfo>,
4447
spread_arg: Option<Local>,
48+
span: Span,
4549
) -> Self {
4650
// If locals doesn't contain enough entries, it can lead to panics in
4751
// `ret_local`, `arg_locals`, and `inner_locals`.
4852
assert!(
4953
locals.len() > arg_count,
5054
"A Body must contain at least a local for the return value and each of the function's arguments"
5155
);
52-
Self { blocks, locals, arg_count, var_debug_info, spread_arg }
56+
Self { blocks, locals, arg_count, var_debug_info, spread_arg, span }
5357
}
5458

5559
/// Return local that holds this function's return value.

compiler/stable_mir/src/mir/visit.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ pub trait MirVisitor {
133133
}
134134

135135
fn super_body(&mut self, body: &Body) {
136-
let Body { blocks, locals: _, arg_count, var_debug_info, spread_arg: _ } = body;
136+
let Body { blocks, locals: _, arg_count, var_debug_info, spread_arg: _, span } = body;
137137

138138
for bb in blocks {
139139
self.visit_basic_block(bb);
@@ -153,6 +153,8 @@ pub trait MirVisitor {
153153
for info in var_debug_info.iter() {
154154
self.visit_var_debug_info(info);
155155
}
156+
157+
self.visit_span(span)
156158
}
157159

158160
fn super_basic_block(&mut self, bb: &BasicBlock) {

0 commit comments

Comments
 (0)