Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MIR codegen attributes cleanups to beginning of the lexical block. #37032

Closed
vadimcn opened this issue Oct 7, 2016 · 2 comments
Closed

MIR codegen attributes cleanups to beginning of the lexical block. #37032

vadimcn opened this issue Oct 7, 2016 · 2 comments
Labels
A-debuginfo Area: Debugging information in compiled programs (DWARF, PDB, etc.)

Comments

@vadimcn
Copy link
Contributor

vadimcn commented Oct 7, 2016

Compile this code with debug info (-g):

1: fn main() {
2:     zzz();
3:     let s = String::from("sss");
4:     zzz();
5: }
6: 
7: fn zzz() {}

Set a breakpoint on line 2 and start line-stepping. The line position order will be something like this: 2, 3, 4, 3 (cleanup for s), 1 (epilogue for main).
I think everyone will agree that it would make much more sense to attribute the last two to line 5.

The fix will probably need to be done in rustc_trans::mir::MirContext::trans_block.
Also, this probably means that mir::SourceInfo should carry a Pos, not a Span (we only ever use span.lo anyways).

@vadimcn vadimcn added the A-debuginfo Area: Debugging information in compiled programs (DWARF, PDB, etc.) label Oct 7, 2016
@vadimcn
Copy link
Contributor Author

vadimcn commented Oct 7, 2016

cc @michaelwoerister, @eddyb. Amirite about trans_block()?

@michaelwoerister
Copy link
Member

I haven't looked at this in detail but I agree that it would make sense to associate cleanup with the end of the scope. Old-trans did it this way.

Manishearth added a commit to Manishearth/rust that referenced this issue Oct 22, 2016
Fix line stepping in debugger.

Attribute drop code to block's closing brace, instead of the line where the allocation was done.
Attribute function epilogues to function body's closing brace, rather than the function header.

Fixes rust-lang#37032

r? @michaelwoerister
bors added a commit that referenced this issue Oct 22, 2016
Fix line stepping in debugger.

Attribute drop code to block's closing brace, instead of the line where the allocation was done.
Attribute function epilogues to function body's closing brace, rather than the function header.

Fixes #37032

r? @michaelwoerister
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-debuginfo Area: Debugging information in compiled programs (DWARF, PDB, etc.)
Projects
None yet
Development

No branches or pull requests

2 participants