-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Fix panic message when RangeFrom
index is out of bounds
#74510
Fix panic message when RangeFrom
index is out of bounds
#74510
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
So, this is definitely an improvement and I'd be happy to merge it. But I wonder if a different (entirely new) panic message would be better than reusing the one for a single index being OOB? Something like:
|
That's a good point. I guess I could then also improve the error message for |
I thought a bit about good panic messages, but this isn't trivial :/
That way, users easily see that the panic was caused by a range index. But... (a) that adds a couple of new panic function, and (b) passing two indices (in case of Alternatively, one could add two new panic messages (for start index of range >= len, and for end index of range >= len). But it's not as clear to the user, I think. Opinions? |
Code size increases aren't great, and the separate "range start > len" and "range end > len" messages would be a considerable improvement over the status quo already, so I think I prefer that. |
Before, the `Range` method was called with `end = slice.len()`. Unfortunately, because `Range::index` first checks the order of the indices (start has to be smaller than end), an out of bounds index leads to `core::slice::slice_index_order_fail` being called. This prints the message 'slice index starts at 27 but ends at 10', which is worse than 'index 27 out of range for slice of length 10'. This is not only useful to normal users reading panic messages, but also for people inspecting assembly and being confused by `slice_index_order_fail` calls.
e6c79c0
to
87aee9f
Compare
Sounds good to me. I just pushed an update. Now we should have:
(for
(for I didn't use your suggestion as these ones are more similar to the existing index message. But if you prefer something else, I can still change of course. |
87aee9f
to
ea74e7d
Compare
@bors r+ |
📌 Commit ea74e7d has been approved by |
…x-panic, r=hanna-kruppe Fix panic message when `RangeFrom` index is out of bounds Before, the `Range` method was called with `end = slice.len()`. Unfortunately, because `Range::index` first checks the order of the indices (start has to be smaller than end), an out of bounds index leads to `core::slice::slice_index_order_fail` being called. This prints the message 'slice index starts at 27 but ends at 10', which is worse than 'index 27 out of range for slice of length 10'. This is not only useful to normal users reading panic messages, but also for people inspecting assembly and being confused by `slice_index_order_fail` calls. You can see the produced assembly [here](https://rust.godbolt.org/z/GzMGWf) and try on Playground [here](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=aada5996b2f3848075a6d02cf4055743). (By the way. this is only about which panic function is called; I'm pretty sure it does not improve anything about performance).
⌛ Testing commit ea74e7d with merge 4006dc7d272433d55e4fa4c2d8da2b709bd7e2fd... |
💔 Test failed - checks-actions |
ea74e7d
to
0d64b01
Compare
Fixed and pushed again. And I ran the full |
Whoops, missed this! @bors r+ |
📌 Commit 0d64b01 has been approved by |
…x-panic, r=hanna-kruppe Fix panic message when `RangeFrom` index is out of bounds Before, the `Range` method was called with `end = slice.len()`. Unfortunately, because `Range::index` first checks the order of the indices (start has to be smaller than end), an out of bounds index leads to `core::slice::slice_index_order_fail` being called. This prints the message 'slice index starts at 27 but ends at 10', which is worse than 'index 27 out of range for slice of length 10'. This is not only useful to normal users reading panic messages, but also for people inspecting assembly and being confused by `slice_index_order_fail` calls. You can see the produced assembly [here](https://rust.godbolt.org/z/GzMGWf) and try on Playground [here](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=aada5996b2f3848075a6d02cf4055743). (By the way. this is only about which panic function is called; I'm pretty sure it does not improve anything about performance).
☀️ Test successful - checks-actions, checks-azure |
@hanna-kruppe No problem, that's still notably faster than my average review delay :P Thanks! |
Before, the
Range
method was called withend = slice.len()
. Unfortunately, becauseRange::index
first checks the order of the indices (start has to be smaller than end), an out of bounds index leads tocore::slice::slice_index_order_fail
being called. This prints the message 'slice index starts at 27 but ends at 10', which is worse than 'index 27 out of range for slice of length 10'. This is not only useful to normal users reading panic messages, but also for people inspecting assembly and being confused byslice_index_order_fail
calls.You can see the produced assembly here and try on Playground here. (By the way. this is only about which panic function is called; I'm pretty sure it does not improve anything about performance).