Skip to content

Commit 3b2c906

Browse files
committed
Enhance test and fix arguments list
Add a comma between function arguments
1 parent bb08f56 commit 3b2c906

File tree

3 files changed

+92
-4
lines changed

3 files changed

+92
-4
lines changed

compiler/stable_mir/src/mir/pretty.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ impl Debug for Place {
2424

2525
pub(crate) fn function_body<W: Write>(writer: &mut W, body: &Body, name: &str) -> io::Result<()> {
2626
write!(writer, "fn {name}(")?;
27-
body.arg_locals()
28-
.iter()
29-
.enumerate()
30-
.try_for_each(|(index, local)| write!(writer, "_{}: {}", index + 1, local.ty))?;
27+
let mut sep = "";
28+
body.arg_locals().iter().enumerate().try_for_each(|(index, local)| {
29+
write!(writer, "{}_{}: {}", sep, index + 1, local.ty)?;
30+
sep = ", ";
31+
io::Result::Ok(())
32+
})?;
3133
write!(writer, ")")?;
3234

3335
let return_local = body.ret_local();

tests/ui/stable-mir-print/operands.rs

+20
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,23 @@ pub fn operands(val: u8) {
2323
let size_of = std::mem::size_of_val(&length);
2424
assert_eq!(length, size_of);
2525
}
26+
27+
pub struct Dummy { c: char, i: i32 }
28+
29+
pub enum Ctors {
30+
Unit,
31+
StructLike { d: Dummy },
32+
TupLike(bool),
33+
}
34+
35+
pub fn more_operands() -> [Ctors; 3] {
36+
let dummy = Dummy { c: 'a', i: i32::MIN };
37+
let unit = Ctors::Unit;
38+
let struct_like = Ctors::StructLike { d: dummy };
39+
let tup_like = Ctors::TupLike(false);
40+
[unit, struct_like, tup_like]
41+
}
42+
43+
pub fn closures(x: bool, z: bool) -> impl FnOnce(bool) -> bool {
44+
move |y: bool| { (x ^ y) || z }
45+
}

tests/ui/stable-mir-print/operands.stdout

+66
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,69 @@ fn operands::{constant#0}() -> usize {
195195
return;
196196
}
197197
}
198+
fn more_operands() -> [Ctors; 3] {
199+
let mut _0: [Ctors; 3];
200+
let _1: Dummy;
201+
let _2: Ctors;
202+
let _3: Ctors;
203+
let _4: Ctors;
204+
debug dummy => _1;
205+
debug unit => _2;
206+
debug struct_like => _3;
207+
debug tup_like => _4;
208+
bb0: {
209+
_1 = Dummy('a', core::num::<impl i32>::MIN);
210+
_2 = Ctors::Unit;
211+
_3 = Ctors::StructLike(move _1);
212+
_4 = Ctors::TupLike(false);
213+
_0 = [move _2, move _3, move _4];
214+
return;
215+
}
216+
}
217+
fn more_operands::{constant#0}() -> usize {
218+
let mut _0: usize;
219+
bb0: {
220+
_0 = 3_usize;
221+
return;
222+
}
223+
}
224+
fn closures(_1: bool, _2: bool) -> {closure@$DIR/operands.rs:44:5: 44:19} {
225+
let mut _0: {closure@$DIR/operands.rs:44:5: 44:19};
226+
debug x => _1;
227+
debug z => _2;
228+
bb0: {
229+
_0 = {closure@Span { id: 105, repr: "$DIR/operands.rs:44:5: 44:19" }}(_1, _2);
230+
return;
231+
}
232+
}
233+
fn closures::{closure#0}(_1: {closure@$DIR/operands.rs:44:5: 44:19}, _2: bool) -> bool {
234+
let mut _0: bool;
235+
let mut _3: bool;
236+
let mut _4: bool;
237+
debug y => _2;
238+
debug x => (_1.0: bool);
239+
debug z => (_1.1: bool);
240+
bb0: {
241+
_4 = (_1.0: bool);
242+
_3 = BitXor(move _4, _2);
243+
switchInt(move _3) -> [0: bb2, otherwise: bb1];
244+
}
245+
bb1: {
246+
_0 = true;
247+
goto -> bb3;
248+
}
249+
bb2: {
250+
_0 = (_1.1: bool);
251+
goto -> bb3;
252+
}
253+
bb3: {
254+
return;
255+
}
256+
}
257+
fn Ctors::TupLike(_1: bool) -> Ctors {
258+
let mut _0: Ctors;
259+
bb0: {
260+
_0 = Ctors::TupLike(move _1);
261+
return;
262+
}
263+
}

0 commit comments

Comments
 (0)