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

handle NaN in unordered comparisons #627

Merged
merged 1 commit into from
Feb 12, 2025

Conversation

folkertdev
Copy link
Contributor

fixes #75
fixes #626

The tests/ui/numbers-arithmetic/saturating-float-casts.rs test now succeeds.

@folkertdev folkertdev force-pushed the fix-unordered-compare branch from 5e01af2 to 61bcada Compare February 12, 2025 15:02
Copy link
Member

@GuillaumeGomez GuillaumeGomez left a comment

Choose a reason for hiding this comment

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

Looks nice!

Copy link
Contributor

@antoyo antoyo left a comment

Choose a reason for hiding this comment

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

Looks good to me. Please confirm it also work in the above case.

@folkertdev folkertdev force-pushed the fix-unordered-compare branch from 61bcada to 3d66b06 Compare February 12, 2025 15:19
@folkertdev
Copy link
Contributor Author

folkertdev commented Feb 12, 2025

as an additional note, this still fails:

#![feature(repr_simd, intrinsics)]

extern "rust-intrinsic" {
    fn simd_as<T, U>(x: T) -> U;
}

#[derive(Copy, Clone)]
#[repr(simd)]
struct V<T>([T; 2]);

fn main() {
    unsafe {
        let f = V::<f32>([f32::MIN, f32::MAX]);
        let i: V<i16> = simd_as(f);
        assert_eq!(i.0[0], f.0[0] as i16);
        assert_eq!(i.0[1], f.0[1] as i16);
    }
}

The i vector will just be [0, 0]. It looks like convert_vector, which is used for this conversion internally, does not match the LLVM semantics

https://github.com/rust-lang/gccjit.rs/blob/ac3ffb0b698ea24c9bbf32e3565fd72c0a1e79b7/src/context.rs#L925-L938

just to be clear: this does not use fptoint_sat currently (even though its code looks like it should work on vectors).

@antoyo
Copy link
Contributor

antoyo commented Feb 12, 2025

The tests/ui/numbers-arithmetic/saturating-float-casts.rs test now succeeds.

In this case, please remove this test from here.

After that, I'll merge.

Thanks.

@folkertdev folkertdev force-pushed the fix-unordered-compare branch from 3d66b06 to c817210 Compare February 12, 2025 17:56
@antoyo antoyo merged commit 7f05920 into rust-lang:master Feb 12, 2025
37 checks passed
@antoyo
Copy link
Contributor

antoyo commented Feb 12, 2025

Thanks for your contribution!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants