-
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
rint and nearbyint intrinsic documentation is misleading about exceptions #77561
Comments
Which PR closed this issue?
|
Didn't it resolved by #77191? |
No, that did not change the discussion of exceptions, only of rounding modes. The issue should be reopened.
|
Oh, sorry for my misreading. |
This is an unfortunate leftover from before there was a design for strictfp support. We now have 3 intrinsic that mean the same thing. nearbyint, rint and roundeven all do the same thing. We should probably drop llvm.nearbyint and llvm.rint, and auto upgrade them to roundeven (but this would potentially not be worth the asymmetry with the constrained intrinsics) |
That still seems preferable over the confusion caused when frontends think there is a meaningful difference between these intrinsics. |
That said, when Rust tried to use |
That's a lowering issue. We should just start remapping the calls to whatever call exists instead of expecting exact match like happens now |
The rint intrinsic makes this statement about FP exceptions:
nearbyint differs from rint by not having that statement.
However, this is misleading, since LLVM also documents "the default LLVM floating-point environment assumes that traps are disabled and status flags are not observable". This means that whether or not rint raises an exception is assumed to be un-observable, and LLVM will freely reorder rint with other operations that might alter FP exception flags. Effectively, rint and nearbyint provide equivalent semantics (as least that's how LLVM frontends should treat the situation), and anyone relying on rint doing anything with exceptions will be disappointed eventually.
It would probably be better to remove any mention of exceptions in the rint and nearbyint docs, and possibly to merge those intrinsics. People relying on exception behavior need to use the constrained intrinsics.
The text was updated successfully, but these errors were encountered: