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

[WIP] Add panic implementation docs #521

Merged
merged 7 commits into from
Jan 3, 2020
Merged

Conversation

Aaron1011
Copy link
Member

@Aaron1011 Aaron1011 commented Nov 22, 2019

This PR adds a descirption of the implementation of panicking in Rust, starting from the panic! macros and ending at the invocation of the platforms-specific unwind logic.

This is not fully complete - for one thing, it might be useful to have a description of how this works under Miri.

I developed this while working on the implementation of panics in Miri. Having this document available would have made things a lot easier for me 😄

Closes #486

@ehuss
Copy link
Contributor

ehuss commented Nov 23, 2019

Thanks, this looks useful! I too am trying to better understand the panic machinery.

I was wondering if you could define more what a "landing pad" is? I assume it is some reserved section of the stack frame, that does…something related to unwinding? It sounds like it has a list of destructors to run, is that all it does?

It might also be helpful to mention that there are two different panic strategies (encoded per crate), which are only loosely coupled with the panic runtimes. For example, the abort runtime can use crates built with unwind strategy, but not the other way around. The abort strategy disables landing pads, but I'd like to know what else changing the strategy does (or maybe landing pads are the only difference?).

Copy link
Member

@mark-i-m mark-i-m left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Aaron1011 Thanks! This is very helpful info, and I have wondered about it before many times.

My biggest request is to please add links for all of the names you reference (the first time you reference them) to the source code (since there don't appear to be rustdocs for most of these definitions). This helps us check for breakage by just doing linkchecking.

Thanks!

Comment on lines +38 to +41
[cfg(not(test))]
[panic_handler]
[unwind(allowed)]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like you are missing # before these lines?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't seem to figure out how to stop the # from being interpreted as the start of a comment.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think md has comments? Can you elaborate on what the concern is?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I added # marks, the lines didn't render in my web browser.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm... Ok, we can figure this out in a followup PR. I think we can go ahead and merge without this.

@mark-i-m
Copy link
Member

I was wondering if you could define more what a "landing pad" is?

@Aaron1011 This would be a great addition to the glossary appendix if you have time.

@RalfJung
Copy link
Member

RalfJung commented Nov 25, 2019

Not knowing about this PR, I wrote a blog post about this very topic. Sorry for the duplication of work!

We can likely copy some things from that post into this PR.

EDIT: You can find the markdown sources here, for easier copying.

@Aaron1011
Copy link
Member Author

The CI failure seems unrelated

@mark-i-m
Copy link
Member

mark-i-m commented Dec 6, 2019

@Aaron1011 Could you rebase on top of the latest master please? Hopefully that will get rid of the CI failures.

Also, it would be awesome if you could add as many links as possible, as this helps us to detect changes.

@Aaron1011
Copy link
Member Author

@mark-i-m: The CI failures didn't go away after rebasing

@JohnTitor
Copy link
Member

@Aaron1011 Could you add a line break not to exceed 100 characters of each line?

@mark-i-m
Copy link
Member

mark-i-m commented Dec 7, 2019

@JohnTitor Something odd is going on here... these files are not touched by the PR, and they are working just fine on master..

@mark-i-m mark-i-m closed this Dec 7, 2019
@mark-i-m mark-i-m reopened this Dec 7, 2019
@JohnTitor
Copy link
Member

Uhm, it's odd. The checker here doesn't ignore lines inside a code block...

Copy link
Member

@JohnTitor JohnTitor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The unnecessary code blocks cause the failure, it should be gone once you apply my suggestions and do rebase. See also my branch: https://github.com/JohnTitor/rustc-guide/tree/panic

@mark-i-m
Copy link
Member

mark-i-m commented Jan 3, 2020

Ping @Aaron1011 could you please apply the suggestions? It would be great to merge this chapter.

Co-Authored-By: Yuki Okushi <huyuumi.dev@gmail.com>
@Aaron1011
Copy link
Member Author

@mark-i-m: I've applied @JohnTitor's suggestions. However, I still can't figure out how to get lines starting with # to properly render

Copy link
Member

@mark-i-m mark-i-m left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Aaron1011 !

@mark-i-m mark-i-m merged commit 97dfbc9 into rust-lang:master Jan 3, 2020
@Aaron1011 Aaron1011 deleted the panic branch January 3, 2020 03:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Document panic implementation
6 participants