-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #115540 - cjgillot:custom-debuginfo, r=oli-obk
Support debuginfo for custom MIR.
- Loading branch information
Showing
9 changed files
with
207 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
tests/mir-opt/building/custom/debuginfo.numbered.built.after.mir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// MIR for `numbered` after built | ||
|
||
fn numbered(_1: (u32, i32)) -> () { | ||
debug first => (_1.0: u32); | ||
debug second => (_1.0: u32); | ||
let mut _0: (); | ||
|
||
bb0: { | ||
return; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
tests/mir-opt/building/custom/debuginfo.pointee.built.after.mir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// MIR for `pointee` after built | ||
|
||
fn pointee(_1: &mut Option<i32>) -> () { | ||
debug foo => (((*_1) as variant#1).0: i32); | ||
let mut _0: (); | ||
|
||
bb0: { | ||
return; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#![feature(custom_mir, core_intrinsics)] | ||
|
||
extern crate core; | ||
use core::intrinsics::mir::*; | ||
|
||
// EMIT_MIR debuginfo.pointee.built.after.mir | ||
#[custom_mir(dialect = "built")] | ||
fn pointee(opt: &mut Option<i32>) { | ||
mir!( | ||
debug foo => Field::<i32>(Variant(*opt, 1), 0); | ||
{ | ||
Return() | ||
} | ||
) | ||
} | ||
|
||
// EMIT_MIR debuginfo.numbered.built.after.mir | ||
#[custom_mir(dialect = "analysis", phase = "post-cleanup")] | ||
fn numbered(i: (u32, i32)) { | ||
mir!( | ||
debug first => i.0; | ||
debug second => i.0; | ||
{ | ||
Return() | ||
} | ||
) | ||
} | ||
|
||
struct S { x: f32 } | ||
|
||
// EMIT_MIR debuginfo.structured.built.after.mir | ||
#[custom_mir(dialect = "analysis", phase = "post-cleanup")] | ||
fn structured(i: S) { | ||
mir!( | ||
debug x => i.x; | ||
{ | ||
Return() | ||
} | ||
) | ||
} | ||
|
||
// EMIT_MIR debuginfo.variant.built.after.mir | ||
#[custom_mir(dialect = "built")] | ||
fn variant(opt: Option<i32>) { | ||
mir!( | ||
debug inner => Field::<i32>(Variant(opt, 1), 0); | ||
{ | ||
Return() | ||
} | ||
) | ||
} | ||
|
||
// EMIT_MIR debuginfo.variant_deref.built.after.mir | ||
#[custom_mir(dialect = "built")] | ||
fn variant_deref(opt: Option<&i32>) { | ||
mir!( | ||
debug pointer => Field::<&i32>(Variant(opt, 1), 0); | ||
debug deref => *Field::<&i32>(Variant(opt, 1), 0); | ||
{ | ||
Return() | ||
} | ||
) | ||
} | ||
|
||
fn main() { | ||
numbered((5, 6)); | ||
structured(S { x: 5. }); | ||
variant(Some(5)); | ||
variant_deref(Some(&5)); | ||
pointee(&mut Some(5)); | ||
} |
10 changes: 10 additions & 0 deletions
10
tests/mir-opt/building/custom/debuginfo.structured.built.after.mir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// MIR for `structured` after built | ||
|
||
fn structured(_1: S) -> () { | ||
debug x => (_1.0: f32); | ||
let mut _0: (); | ||
|
||
bb0: { | ||
return; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
tests/mir-opt/building/custom/debuginfo.variant.built.after.mir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// MIR for `variant` after built | ||
|
||
fn variant(_1: Option<i32>) -> () { | ||
debug inner => ((_1 as variant#1).0: i32); | ||
let mut _0: (); | ||
|
||
bb0: { | ||
return; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
tests/mir-opt/building/custom/debuginfo.variant_deref.built.after.mir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// MIR for `variant_deref` after built | ||
|
||
fn variant_deref(_1: Option<&i32>) -> () { | ||
debug pointer => ((_1 as variant#1).0: &i32); | ||
debug deref => (*((_1 as variant#1).0: &i32)); | ||
let mut _0: (); | ||
|
||
bb0: { | ||
return; | ||
} | ||
} |