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

Use macros for more division/array checks #244

Merged
merged 2 commits into from
May 29, 2020

Conversation

alexcrichton
Copy link
Member

This commit moves over more array accesses to the i! macro to avoid
bounds checks when debug assertions are disabled. This is surfaced from
rust-lang/compiler-builtins#360 where recent changes in codegen units
has caused some bounds checks to not get elided in release mode. This
also adds a div! macro to work around rust-lang/rust#72751.

@Lokathor
Copy link
Contributor

The div! macro should likely not contain the unsafe{ ... } block. That should be left to users of the macro to check for the rhs not being zero on each usage.

Also the div macro should have some sort of doc string about why a person would care to use it, probably with a link to that 72751 issue.

@alexcrichton
Copy link
Member Author

That's not really how this is degined to be used. Like the i! macro definition the unsafety is encapsulated in the macro, rightfully so because it's supposed to be a safe macro. The only purpose is to cater to compiler-builtins which can't panic in release mode, so we're relying on testing elsewhere to weed out possible cases where it does indeed panic or cause unsafety.

This commit moves over more array accesses to the `i!` macro to avoid
bounds checks when debug assertions are disabled. This is surfaced from
rust-lang/compiler-builtins#360 where recent changes in codegen units
has caused some bounds checks to not get elided in release mode. This
also adds a `div!` macro to work around rust-lang/rust#72751.
It's not intended to run all our tests
@alexcrichton alexcrichton merged commit fe396e0 into rust-lang:master May 29, 2020
@alexcrichton alexcrichton deleted the less-panics branch May 29, 2020 19:16
@Lokathor
Copy link
Contributor

okay, i see.

You should put that explanation as a comment then.

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.

2 participants