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

Tracking Issue for unchecked_div_rem #136716

Open
1 of 4 tasks
tgross35 opened this issue Feb 7, 2025 · 9 comments
Open
1 of 4 tasks

Tracking Issue for unchecked_div_rem #136716

tgross35 opened this issue Feb 7, 2025 · 9 comments
Assignees
Labels
C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. E-help-wanted Call for participation: Help is requested to fix this issue. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@tgross35
Copy link
Contributor

tgross35 commented Feb 7, 2025

Feature gate: #![feature(unchecked_div_rem)]

This is a tracking issue for unchecked versions of / and % on integers. This is similar to existing methods like unchecked_mul.

Public API

// in core

impl {i8, u8, i16, u16, i32, u32, i64, u64, i128, u128} {
    // Same preconditions as the versions in intrinsics

    /// Performs an unchecked division, resulting in undefined behavior where y == 0 or x == T::MIN && y == -1.
    pub fn unchecked_div(self, rhs: Self) -> Self;

    /// Returns the remainder of an unchecked division, resulting in undefined behavior when y == 0 or x == T::MIN && y == -1.
    pub fn unchecked_rem(self, rhs: Self) -> Self;
}

Steps / History

Unresolved Questions

Footnotes

  1. https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html

@tgross35 tgross35 added C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Feb 7, 2025
@tgross35
Copy link
Contributor Author

tgross35 commented Feb 7, 2025

I won't be able to work on this for a little bit so if anyone wants,

@rustbot label +E-easy +E-help-wanted

@rustbot rustbot added E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. E-help-wanted Call for participation: Help is requested to fix this issue. labels Feb 7, 2025
@yegeunyang
Copy link
Contributor

@rustbot claim

@the8472
Copy link
Member

the8472 commented Feb 8, 2025

Those methods are a bit unusual in that the signed methods have more safety preconditions than the unsigned ones. So converting u8 code to i8 can have subtle consequences.
They also map to different instruction (DIV vs. IDIV on x86).

I think treating these differently would make sense and "consistency" is not a good argument. We do have some asymmetry between unsigned and signed types in other places too, for example unchecked_neg does not exist on unsigned types.

@yegeunyang
Copy link
Contributor

@rustbot release-assignment

@Thrumbo33
Copy link

@rustbot claim

@tgross35
Copy link
Contributor Author

Those methods are a bit unusual in that the signed methods have more safety preconditions than the unsigned ones. So converting u8 code to i8 can have subtle consequences. They also map to different instruction (DIV vs. IDIV on x86).

I think treating these differently would make sense and "consistency" is not a good argument. We do have some asymmetry between unsigned and signed types in other places too, for example unchecked_neg does not exist on unsigned types.

Do you think these should only exist on unsigned types then? Or not exist at all.

@Thrumbo33
Copy link

@rustbot release-assignment

@madhav-madhusoodanan
Copy link
Contributor

@rustbot claim

@madhav-madhusoodanan
Copy link
Contributor

Those methods are a bit unusual in that the signed methods have more safety preconditions than the unsigned ones. So converting u8 code to i8 can have subtle consequences. They also map to different instruction (DIV vs. IDIV on x86).

I think treating these differently would make sense and "consistency" is not a good argument. We do have some asymmetry between unsigned and signed types in other places too, for example unchecked_neg does not exist on unsigned types.

@the8472 @tgross35 Would it be a good idea to then implement 2 different versions of unchecked_div and unchecked_rem for the signed and unsigned types?

We could then tailor the failure condition being passed to assert_unsafe_precondition for the unsigned version (checking only for rhs == 0) and the signed version (checking for LHS (self) == type::MIN and RHS == -1 also).

I believe overflow_div handles the latter part. To handle the former (zero equality check) case we could return self itself when rhs == 0, in line with how overflow_div handles failure cases.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. E-help-wanted Call for participation: Help is requested to fix this issue. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

6 participants