Skip to content

Commit 2f50334

Browse files
committed
Add Call terminator to SMIR
1 parent 7e23d18 commit 2f50334

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

compiler/rustc_smir/src/rustc_smir/mod.rs

+21-1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,18 @@ fn rustc_place_to_place(place: &rustc_middle::mir::Place<'_>) -> stable_mir::mir
128128
stable_mir::mir::Place { local: place.local.as_usize() }
129129
}
130130

131+
fn rustc_unwind_to_unwind(
132+
unwind: &rustc_middle::mir::UnwindAction,
133+
) -> stable_mir::mir::UnwindAction {
134+
use rustc_middle::mir::UnwindAction;
135+
match unwind {
136+
UnwindAction::Continue => stable_mir::mir::UnwindAction::Continue,
137+
UnwindAction::Unreachable => stable_mir::mir::UnwindAction::Unreachable,
138+
UnwindAction::Terminate => stable_mir::mir::UnwindAction::Terminate,
139+
UnwindAction::Cleanup(bb) => stable_mir::mir::UnwindAction::Cleanup(bb.as_usize()),
140+
}
141+
}
142+
131143
fn rustc_terminator_to_terminator(
132144
terminator: &rustc_middle::mir::Terminator<'_>,
133145
) -> stable_mir::mir::Terminator {
@@ -151,7 +163,15 @@ fn rustc_terminator_to_terminator(
151163
Return => Terminator::Return,
152164
Unreachable => Terminator::Unreachable,
153165
Drop { .. } => todo!(),
154-
Call { .. } => todo!(),
166+
Call { func, args, destination, target, unwind, from_hir_call: _, fn_span: _ } => {
167+
Terminator::Call {
168+
func: rustc_op_to_op(func),
169+
args: args.iter().map(|arg| rustc_op_to_op(arg)).collect(),
170+
destination: rustc_place_to_place(destination),
171+
target: target.map(|t| t.as_usize()),
172+
unwind: rustc_unwind_to_unwind(unwind),
173+
}
174+
}
155175
Assert { .. } => todo!(),
156176
Yield { .. } => todo!(),
157177
GeneratorDrop => todo!(),

compiler/rustc_smir/src/stable_mir/mir/body.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub enum Terminator {
3333
args: Vec<Operand>,
3434
destination: Place,
3535
target: Option<usize>,
36-
cleanup: Option<usize>,
36+
unwind: UnwindAction,
3737
},
3838
Assert {
3939
cond: Operand,
@@ -44,6 +44,14 @@ pub enum Terminator {
4444
},
4545
}
4646

47+
#[derive(Clone, Debug)]
48+
pub enum UnwindAction {
49+
Continue,
50+
Unreachable,
51+
Terminate,
52+
Cleanup(usize),
53+
}
54+
4755
#[derive(Clone, Debug)]
4856
pub enum Statement {
4957
Assign(Place, Operand),

tests/ui-fulldeps/stable-mir/crate-info.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ fn test_stable_mir(tcx: TyCtxt<'_>) {
3333

3434
// Find items in the local crate.
3535
let items = stable_mir::all_local_items();
36-
assert!(get_item(tcx, &items, (DefKind::Fn, "foo_bar")).is_some());
3736
assert!(get_item(tcx, &items, (DefKind::Fn, "foo::bar")).is_some());
3837

3938
// Find the `std` crate.
@@ -52,6 +51,15 @@ fn test_stable_mir(tcx: TyCtxt<'_>) {
5251
stable_mir::mir::Terminator::Return => {}
5352
other => panic!("{other:?}"),
5453
}
54+
55+
let foo_bar = get_item(tcx, &items, (DefKind::Fn, "foo_bar")).unwrap();
56+
let body = foo_bar.body();
57+
assert_eq!(body.blocks.len(), 4);
58+
let block = &body.blocks[0];
59+
match &block.terminator {
60+
stable_mir::mir::Terminator::Call { .. } => {}
61+
other => panic!("{other:?}"),
62+
}
5563
}
5664

5765
// Use internal API to find a function in a crate.

0 commit comments

Comments
 (0)