mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-12 05:20:38 +00:00
Add const support for the float rounding methods floor, ceil, trunc,
fract, round and round_ties_even.
This works by moving the calculation logic from
src/tools/miri/src/intrinsics/mod.rs
into
compiler/rustc_const_eval/src/interpret/intrinsics.rs.
All relevant method definitions were adjusted to include the `const`
keyword for all supported float types: f16, f32, f64 and f128.
The constness is hidden behind the feature gate
feature(const_float_round_methods)
which is tracked in
https://github.com/rust-lang/rust/issues/141555
This commit is a squash of the following commits:
- test: add tests that we expect to pass when float rounding becomes const
- feat: make float rounding methods `const`
- fix: replace `rustc_allow_const_fn_unstable(core_intrinsics)` attribute with `#[rustc_const_unstable(feature = "f128", issue = "116909")]` in `library/core/src/num/f128.rs`
- revert: undo update to `library/stdarch`
- refactor: replace multiple `float_<mode>_intrinsic` rounding methods with a single, parametrized one
- fix: add `#[cfg(not(bootstrap))]` to new const method tests
- test: add extra sign tests to check `+0.0` and `-0.0`
- revert: undo accidental changes to `round` docs
- fix: gate `const` float round method behind `const_float_round_methods`
- fix: remove unnecessary `#![feature(const_float_methods)]`
- fix: remove unnecessary `#![feature(const_float_methods)]` [2]
- revert: undo changes to `tests/ui/consts/const-eval/float_methods.rs`
- fix: adjust after rebase
- test: fix float tests
- test: add tests for `fract`
- chore: add commented-out `const_float_round_methods` feature gates to `f16` and `f128`
- fix: adjust NaN when rounding floats
- chore: add FIXME comment for de-duplicating float tests
- test: remove unnecessary test file `tests/ui/consts/const-eval/float_methods.rs`
- test: fix tests after upstream simplification of how float tests are run
200 lines
5.1 KiB
Rust
200 lines
5.1 KiB
Rust
// tidy-alphabetical-start
|
|
#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
|
|
#![cfg_attr(test, feature(cfg_select))]
|
|
#![feature(alloc_layout_extra)]
|
|
#![feature(array_chunks)]
|
|
#![feature(array_ptr_get)]
|
|
#![feature(array_try_from_fn)]
|
|
#![feature(array_windows)]
|
|
#![feature(ascii_char)]
|
|
#![feature(ascii_char_variants)]
|
|
#![feature(async_iter_from_iter)]
|
|
#![feature(async_iterator)]
|
|
#![feature(bigint_helper_methods)]
|
|
#![feature(bstr)]
|
|
#![feature(cfg_target_has_reliable_f16_f128)]
|
|
#![feature(char_max_len)]
|
|
#![feature(clone_to_uninit)]
|
|
#![feature(const_eval_select)]
|
|
#![feature(const_float_round_methods)]
|
|
#![feature(const_trait_impl)]
|
|
#![feature(core_float_math)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(core_intrinsics_fallbacks)]
|
|
#![feature(core_io_borrowed_buf)]
|
|
#![feature(core_private_bignum)]
|
|
#![feature(core_private_diy_float)]
|
|
#![feature(cstr_display)]
|
|
#![feature(dec2flt)]
|
|
#![feature(duration_constants)]
|
|
#![feature(duration_constructors)]
|
|
#![feature(duration_constructors_lite)]
|
|
#![feature(error_generic_member_access)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(extend_one)]
|
|
#![feature(extern_types)]
|
|
#![feature(f128)]
|
|
#![feature(f16)]
|
|
#![feature(float_algebraic)]
|
|
#![feature(float_gamma)]
|
|
#![feature(float_minimum_maximum)]
|
|
#![feature(flt2dec)]
|
|
#![feature(fmt_internals)]
|
|
#![feature(formatting_options)]
|
|
#![feature(freeze)]
|
|
#![feature(future_join)]
|
|
#![feature(generic_assert_internals)]
|
|
#![feature(hasher_prefixfree_extras)]
|
|
#![feature(hashmap_internals)]
|
|
#![feature(int_roundings)]
|
|
#![feature(ip)]
|
|
#![feature(ip_from)]
|
|
#![feature(is_ascii_octdigit)]
|
|
#![feature(isolate_most_least_significant_one)]
|
|
#![feature(iter_advance_by)]
|
|
#![feature(iter_array_chunks)]
|
|
#![feature(iter_chain)]
|
|
#![feature(iter_collect_into)]
|
|
#![feature(iter_intersperse)]
|
|
#![feature(iter_is_partitioned)]
|
|
#![feature(iter_map_windows)]
|
|
#![feature(iter_next_chunk)]
|
|
#![feature(iter_order_by)]
|
|
#![feature(iter_partition_in_place)]
|
|
#![feature(iterator_try_collect)]
|
|
#![feature(iterator_try_reduce)]
|
|
#![feature(layout_for_ptr)]
|
|
#![feature(lazy_get)]
|
|
#![feature(maybe_uninit_fill)]
|
|
#![feature(maybe_uninit_uninit_array_transpose)]
|
|
#![feature(maybe_uninit_write_slice)]
|
|
#![feature(min_specialization)]
|
|
#![feature(never_type)]
|
|
#![feature(next_index)]
|
|
#![feature(numfmt)]
|
|
#![feature(pattern)]
|
|
#![feature(pointer_is_aligned_to)]
|
|
#![feature(portable_simd)]
|
|
#![feature(ptr_metadata)]
|
|
#![feature(slice_from_ptr_range)]
|
|
#![feature(slice_internals)]
|
|
#![feature(slice_partition_dedup)]
|
|
#![feature(slice_split_once)]
|
|
#![feature(split_array)]
|
|
#![feature(split_as_slice)]
|
|
#![feature(std_internals)]
|
|
#![feature(step_trait)]
|
|
#![feature(str_internals)]
|
|
#![feature(strict_provenance_atomic_ptr)]
|
|
#![feature(strict_provenance_lints)]
|
|
#![feature(test)]
|
|
#![feature(trusted_len)]
|
|
#![feature(trusted_random_access)]
|
|
#![feature(try_blocks)]
|
|
#![feature(try_find)]
|
|
#![feature(try_trait_v2)]
|
|
#![feature(unsize)]
|
|
#![feature(unwrap_infallible)]
|
|
// tidy-alphabetical-end
|
|
#![allow(internal_features)]
|
|
#![deny(fuzzy_provenance_casts)]
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
|
|
|
/// Version of `assert_matches` that ignores fancy runtime printing in const context and uses structural equality.
|
|
macro_rules! assert_eq_const_safe {
|
|
($t:ty: $left:expr, $right:expr) => {
|
|
assert_eq_const_safe!($t: $left, $right, concat!(stringify!($left), " == ", stringify!($right)));
|
|
};
|
|
($t:ty: $left:expr, $right:expr$(, $($arg:tt)+)?) => {
|
|
{
|
|
fn runtime() {
|
|
assert_eq!($left, $right, $($($arg)*),*);
|
|
}
|
|
const fn compiletime() {
|
|
const PAT: $t = $right;
|
|
assert!(matches!($left, PAT), $($($arg)*),*);
|
|
}
|
|
core::intrinsics::const_eval_select((), compiletime, runtime)
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Creates a test for runtime and a test for constant-time.
|
|
macro_rules! test_runtime_and_compiletime {
|
|
($(
|
|
$(#[$attr:meta])*
|
|
fn $test:ident() $block:block
|
|
)*) => {
|
|
$(
|
|
$(#[$attr])*
|
|
#[test]
|
|
fn $test() $block
|
|
$(#[$attr])*
|
|
const _: () = $block;
|
|
)*
|
|
}
|
|
}
|
|
|
|
mod alloc;
|
|
mod any;
|
|
mod array;
|
|
mod ascii;
|
|
mod ascii_char;
|
|
mod asserting;
|
|
mod async_iter;
|
|
mod atomic;
|
|
mod bool;
|
|
mod bstr;
|
|
mod cell;
|
|
mod char;
|
|
mod clone;
|
|
mod cmp;
|
|
mod const_ptr;
|
|
mod convert;
|
|
mod ffi;
|
|
mod floats;
|
|
mod fmt;
|
|
mod future;
|
|
mod hash;
|
|
mod hint;
|
|
mod intrinsics;
|
|
mod io;
|
|
mod iter;
|
|
mod lazy;
|
|
mod macros;
|
|
mod manually_drop;
|
|
mod mem;
|
|
mod net;
|
|
mod nonzero;
|
|
mod num;
|
|
mod ops;
|
|
mod option;
|
|
mod panic;
|
|
mod pattern;
|
|
mod pin;
|
|
mod pin_macro;
|
|
mod ptr;
|
|
mod result;
|
|
mod simd;
|
|
mod slice;
|
|
mod str;
|
|
mod str_lossy;
|
|
mod task;
|
|
mod time;
|
|
mod tuple;
|
|
mod unicode;
|
|
mod waker;
|
|
|
|
/// Copied from `std::test_helpers::test_rng`, see that function for rationale.
|
|
#[track_caller]
|
|
#[allow(dead_code)] // Not used in all configurations.
|
|
pub(crate) fn test_rng() -> rand_xorshift::XorShiftRng {
|
|
use core::hash::{BuildHasher, Hash, Hasher};
|
|
let mut hasher = std::hash::RandomState::new().build_hasher();
|
|
core::panic::Location::caller().hash(&mut hasher);
|
|
let hc64 = hasher.finish();
|
|
let seed_vec = hc64.to_le_bytes().into_iter().chain(0u8..8).collect::<Vec<u8>>();
|
|
let seed: [u8; 16] = seed_vec.as_slice().try_into().unwrap();
|
|
rand::SeedableRng::from_seed(seed)
|
|
}
|