-
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
Tracking Issue for float_semantics
RFC 3514
#128288
Comments
The RFC largely documents how rustc and Miri already behave. So the main task here is to write suitable documentation -- not sure where the discussion of which NaNs can be generated would even go. Probably somewhere in the reference, but ideally mentioned in the The other main outcome of this is that can we proceed with stabilization of #57241. |
…rithmetic, r=nnethercote stabilize const_fn_floating_point_arithmetic Part of rust-lang#128288 Fixes rust-lang#57241 The existing test `tests/ui/consts/const_let_eq_float.rs` ([link](https://github.com/RalfJung/rust/blob/const_fn_floating_point_arithmetic/tests/ui/consts/const_let_eq_float.rs)) covers the basics, and also Miri has extensive tests covering the interpreter's float machinery. Also, that machinery can already be used on stable inside `const`/`static` initializers, just not inside `const fn`. This was explicitly called out in rust-lang/rfcs#3514 so in a sense t-lang just recently already FCP'd this, but let's hear from them whether they want another FCP for the stabilization here or whether that was covered by the FCP for the RFC. Cc `@rust-lang/lang` ### Open items - [x] Update the Reference: rust-lang/reference#1566
…rithmetic, r=nnethercote stabilize const_fn_floating_point_arithmetic Part of rust-lang#128288 Fixes rust-lang#57241 The existing test `tests/ui/consts/const_let_eq_float.rs` ([link](https://github.com/RalfJung/rust/blob/const_fn_floating_point_arithmetic/tests/ui/consts/const_let_eq_float.rs)) covers the basics, and also Miri has extensive tests covering the interpreter's float machinery. Also, that machinery can already be used on stable inside `const`/`static` initializers, just not inside `const fn`. This was explicitly called out in rust-lang/rfcs#3514 so in a sense t-lang just recently already FCP'd this, but let's hear from them whether they want another FCP for the stabilization here or whether that was covered by the FCP for the RFC. Cc ``@rust-lang/lang`` ### Open items - [x] Update the Reference: rust-lang/reference#1566
Rollup merge of rust-lang#128596 - RalfJung:const_fn_floating_point_arithmetic, r=nnethercote stabilize const_fn_floating_point_arithmetic Part of rust-lang#128288 Fixes rust-lang#57241 The existing test `tests/ui/consts/const_let_eq_float.rs` ([link](https://github.com/RalfJung/rust/blob/const_fn_floating_point_arithmetic/tests/ui/consts/const_let_eq_float.rs)) covers the basics, and also Miri has extensive tests covering the interpreter's float machinery. Also, that machinery can already be used on stable inside `const`/`static` initializers, just not inside `const fn`. This was explicitly called out in rust-lang/rfcs#3514 so in a sense t-lang just recently already FCP'd this, but let's hear from them whether they want another FCP for the stabilization here or whether that was covered by the FCP for the RFC. Cc ``@rust-lang/lang`` ### Open items - [x] Update the Reference: rust-lang/reference#1566
…, r=nnethercote stabilize const_fn_floating_point_arithmetic Part of rust-lang/rust#128288 Fixes rust-lang/rust#57241 The existing test `tests/ui/consts/const_let_eq_float.rs` ([link](https://github.com/RalfJung/rust/blob/const_fn_floating_point_arithmetic/tests/ui/consts/const_let_eq_float.rs)) covers the basics, and also Miri has extensive tests covering the interpreter's float machinery. Also, that machinery can already be used on stable inside `const`/`static` initializers, just not inside `const fn`. This was explicitly called out in rust-lang/rfcs#3514 so in a sense t-lang just recently already FCP'd this, but let's hear from them whether they want another FCP for the stabilization here or whether that was covered by the FCP for the RFC. Cc ``@rust-lang/lang`` ### Open items - [x] Update the Reference: rust-lang/reference#1566
…omcc float types: document NaN bit pattern guarantees Part of rust-lang#128288: document the guarantees we make for NaN bit patterns. Cc `@tgross35`
…omcc float types: document NaN bit pattern guarantees Part of rust-lang#128288: document the guarantees we make for NaN bit patterns. Cc ``@tgross35``
Rollup merge of rust-lang#129559 - RalfJung:float-nan-semantics, r=thomcc float types: document NaN bit pattern guarantees Part of rust-lang#128288: document the guarantees we make for NaN bit patterns. Cc ``@tgross35``
float types: document NaN bit pattern guarantees Part of rust-lang/rust#128288: document the guarantees we make for NaN bit patterns. Cc ``@tgross35``
With #129559 having landed, is there anything else left to do here? |
As of llvm/llvm-project#102140, LLVM now also properly documents the guarantees that we promise to our users -- just in time for the release. :D |
Going over the checkmarks listed in the issue:
I don't think this issue needs to consider updating the reference. The specific guarantees around floating-point semantics are well-documented in the library API docs, and the reference doesn't tend to concern itself with library specifics. If the reference contained any language suggesting that const evaluation is deterministic in all cases, then we'd need to correct that, but I can't find any language to that effect. To be clear, the reference probably should talk about the semantic guarantees of const evaluation, but the lack of that is a broader issue, not specific to this feature.
This isn't an actionable question because we the list of targets is unbounded. If there are such troubles then those are likely soundness bugs, and since this feature is already stable, those should be filed as separate issues, there's nothing to block closing this.
The library docs already make a best-effort attempt at this. If they can be fleshed out further in the future, that can be tracked in separate issues.
I'm unclear regarding the desired result of asking this question. Intrinsics are perma-unstable, so their behavior can be changed at any time. If some of the wrapper functions that we use to provide stable interfaces to intrinsics are impacted by such a decision, then that's a concern for the documentation of those wrapper functions, but AFAIK the stdlib makes few (no?) strong guarantees about what intrinsics it lowers to, and if it wants to clarify those guarantees, that's a separate issue from this one. So ultimately I think there's nothing left to do here and a member of the lang team can close this. |
The "platform intrinsics" point refers to the operations in Regarding the "extra" NaN patterns, it'd be good to figure this out at least for powerpc and s390x, to cover our tier 2 targets with host tools. To cover all tier 2 targets we also need loongarch64 and nvptx64. |
core::arch is staggeringly huge, can we get a concrete example? Also, even if they're stable, they're not/will never be const-stable, correct?
Shall we make it an explicit tier requirement for targets to document this before they can be promoted? At the same time, the documentation is explicit that unmentioned targets may have any NaN payload, which is something that we can trivially relax at any point in the future. And I'm actually somewhat wary of documenting these values because we can't control whether the targets will have a change of heart and decide to add more possible payloads in the future. |
Regarding updating the reference, I'd like to ask whether or not the docs for inline assembly are considered sufficiently precise to capture the language in the RFC. There's plenty of stuff in the docs about preserving FP registers, but maybe it would be useful to state the requirements plainly as the RFC does. |
Just anything that performs float arithmetic will do. I am sure those intrinsics exist there, I just don't know how they will be called. :) And specifically ARM NEON does not follow the spec we have laid down for scalar operations, see #129880. I assume in this case we want to say the intrinsics behave like the vendor intended, not like "normal" Rust float ops?
Probably not, but that doesn't relief us from defining their semantics.
I think it is enough to document what we can find out about our existing tier 2 targets, as your PR does. As you said, newly promoted targets will be correct by default, and if anyone cares they can file an issue.
What specifically are you referring to here? |
The RFC's section "Assumptions about floating-point environment" includes language like "when leaving the inline assembly block, the floating-point control bits must be in exactly the same state as when the inline assembly block was entered". The reference's section on inline assembly ( https://doc.rust-lang.org/nightly/reference/inline-assembly.html ) doesn't have general language to this effect, instead it has stuff like "These flags registers must be restored upon exiting the assembly code if the preserves_flags option is set [lists some specific FP flags for some specific platforms, among others]", or "On x86, the x87 floating-point register stack must remain unchanged unless [...]". It seems to be more concerned with specifics and have more implied exceptions than the blanket statement in the RFC would suggest, at least to me. |
Ah, good point. Yes, all parts of the "FP control machinery" must be left unchanged or restored to their original value. Also, the initial state of the "FP control machinery" (e.g. exception flags) when the asm block starts is entirely unspecified and not correlated with what previous Rust code or previous inline asm blocks did in any way. @Amanieu what would be the best way to specify this? I lack the low-level knowledge to properly express this. |
fp flags generally have two parts: control bits (current rounding mode, if fp exceptions cause interrupts or are ignored, things like enabling treating denormals as zero, etc.) and status bits (if a underflow occurred, if a division by zero occurred, etc.). generally any rust code isn't permitted to change the control bits from the defaults, and llvm is allowed to arbitrarily change the status bits and ignores whatever values the status bits have. therefore, i think it's reasonable for inline asm to (unless marked with |
Essentially this boils down to properly specifying the calling convention. Specifically, what the FPU control mode should be set to on entry to a function and what it is set to on exit. Since inline asm is fundamentally just an FFI call, we just need to specify this as part of the asm "calling convention". This is also relevant for This would have to be specified separately for each architecture, for example: On x86:
On ARM:
|
See #139277: There are platforms and use-cases on which supporting denormal numbers is impractial, either because it breaks real-time guarantees (which are required by the application), requires OS support that is not present, or is (in the case of at least some GPUs) simply not possible. Audio DSP on x86-64 is one example of such a use-case. Writing Metal shaders in Rust is another. |
This is a tracking issue for RFC 3514:
The feature gate for the issue is
#![feature(float_semantics)]
.About tracking issues
Tracking issues are used to record the overall progress of implementation. They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions. A tracking issue is however not meant for large scale discussion, questions, or bug reports about a feature. Instead, open a dedicated issue for the specific matter and add the relevant feature gate label.
Steps
Unresolved Questions
simd
intrinsics, and those are subject to the NaN-non-determinism described above. So the current de-facto semantics of at least some platform intrinsics is that they do not match what the platform does.Related
TODO.
cc @RalfJung @rust-lang/lang
The text was updated successfully, but these errors were encountered: