mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-16 17:03:35 +00:00
Auto merge of #71951 - Dylan-DPC:rollup-j9v1p0f, r=Dylan-DPC
Rollup of 7 pull requests Successful merges: - #71269 (Define UB in float-to-int casts to saturate) - #71591 (use new interface to create threads on HermitCore) - #71819 (x.py: Give a more helpful error message if curl isn't installed) - #71893 (Use the `impls` module to import pre-existing dataflow analyses) - #71929 (Use -fvisibility=hidden for libunwind) - #71937 (Ignore SGX on a few ui tests) - #71944 (Add comment for `Ord` implementation for array) Failed merges: r? @ghost
This commit is contained in:
commit
1836e3b42a
@ -1375,9 +1375,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hermit-abi"
|
||||
version = "0.1.10"
|
||||
version = "0.1.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e"
|
||||
checksum = "61565ff7aaace3525556587bd2dc31d4a07071957be715e63ce7b1eccf51a8f4"
|
||||
dependencies = [
|
||||
"compiler_builtins",
|
||||
"libc",
|
||||
|
@ -79,6 +79,7 @@ def _download(path, url, probably_big, verbose, exception):
|
||||
option = "-#"
|
||||
else:
|
||||
option = "-s"
|
||||
require(["curl", "--version"])
|
||||
run(["curl", option,
|
||||
"-y", "30", "-Y", "10", # timeout if speed is < 10 bytes/sec for > 30 seconds
|
||||
"--connect-timeout", "30", # timeout if cannot connect within 30 seconds
|
||||
@ -143,6 +144,21 @@ def run(args, verbose=False, exception=False, **kwargs):
|
||||
sys.exit(err)
|
||||
|
||||
|
||||
def require(cmd, exit=True):
|
||||
'''Run a command, returning its output.
|
||||
On error,
|
||||
If `exit` is `True`, exit the process.
|
||||
Otherwise, return None.'''
|
||||
try:
|
||||
return subprocess.check_output(cmd).strip()
|
||||
except (subprocess.CalledProcessError, OSError) as exc:
|
||||
if not exit:
|
||||
return None
|
||||
print("error: unable to run `{}`: {}".format(' '.join(cmd), exc))
|
||||
print("Please make sure it's installed and in the path.")
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
def stage0_data(rust_root):
|
||||
"""Build a dictionary from stage0.txt"""
|
||||
nightlies = os.path.join(rust_root, "src/stage0.txt")
|
||||
@ -164,16 +180,12 @@ def format_build_time(duration):
|
||||
def default_build_triple():
|
||||
"""Build triple as in LLVM"""
|
||||
default_encoding = sys.getdefaultencoding()
|
||||
try:
|
||||
ostype = subprocess.check_output(
|
||||
['uname', '-s']).strip().decode(default_encoding)
|
||||
cputype = subprocess.check_output(
|
||||
['uname', '-m']).strip().decode(default_encoding)
|
||||
except (subprocess.CalledProcessError, OSError):
|
||||
if sys.platform == 'win32':
|
||||
return 'x86_64-pc-windows-msvc'
|
||||
err = "uname not found"
|
||||
sys.exit(err)
|
||||
required = not sys.platform == 'win32'
|
||||
ostype = require(["uname", "-s"], exit=required).decode(default_encoding)
|
||||
cputype = require(['uname', '-m'], exit=required).decode(default_encoding)
|
||||
|
||||
if ostype is None or cputype is None:
|
||||
return 'x86_64-pc-windows-msvc'
|
||||
|
||||
# The goal here is to come up with the same triple as LLVM would,
|
||||
# at least for the subset of platforms we're willing to target.
|
||||
@ -203,12 +215,7 @@ def default_build_triple():
|
||||
# output from that option is too generic for our purposes (it will
|
||||
# always emit 'i386' on x86/amd64 systems). As such, isainfo -k
|
||||
# must be used instead.
|
||||
try:
|
||||
cputype = subprocess.check_output(
|
||||
['isainfo', '-k']).strip().decode(default_encoding)
|
||||
except (subprocess.CalledProcessError, OSError):
|
||||
err = "isainfo not found"
|
||||
sys.exit(err)
|
||||
cputype = require(['isainfo', '-k']).decode(default_encoding)
|
||||
elif ostype.startswith('MINGW'):
|
||||
# msys' `uname` does not print gcc configuration, but prints msys
|
||||
# configuration. so we cannot believe `uname -m`:
|
||||
@ -766,13 +773,8 @@ class RustBuild(object):
|
||||
default_encoding = sys.getdefaultencoding()
|
||||
|
||||
# check the existence and version of 'git' command
|
||||
try:
|
||||
git_version_output = subprocess.check_output(['git', '--version'])
|
||||
git_version_str = git_version_output.strip().split()[2].decode(default_encoding)
|
||||
self.git_version = distutils.version.LooseVersion(git_version_str)
|
||||
except (subprocess.CalledProcessError, OSError):
|
||||
print("error: `git` is not found, please make sure it's installed and in the path.")
|
||||
sys.exit(1)
|
||||
git_version_str = require(['git', '--version']).split()[2].decode(default_encoding)
|
||||
self.git_version = distutils.version.LooseVersion(git_version_str)
|
||||
|
||||
slow_submodules = self.get_toml('fast-submodules') == "false"
|
||||
start_time = time()
|
||||
|
@ -375,6 +375,7 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
/// Implements comparison of arrays lexicographically.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
impl<T: Ord, const N: usize> Ord for [T; N]
|
||||
where
|
||||
|
@ -768,7 +768,7 @@ fn cast_float_to_int<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
|
||||
) -> Bx::Value {
|
||||
let fptosui_result = if signed { bx.fptosi(x, int_ty) } else { bx.fptoui(x, int_ty) };
|
||||
|
||||
if !bx.cx().sess().opts.debugging_opts.saturating_float_casts {
|
||||
if let Some(false) = bx.cx().sess().opts.debugging_opts.saturating_float_casts {
|
||||
return fptosui_result;
|
||||
}
|
||||
|
||||
|
@ -559,7 +559,7 @@ fn test_debugging_options_tracking_hash() {
|
||||
tracked!(sanitizer, Some(Sanitizer::Address));
|
||||
tracked!(sanitizer_memory_track_origins, 2);
|
||||
tracked!(sanitizer_recover, vec![Sanitizer::Address]);
|
||||
tracked!(saturating_float_casts, true);
|
||||
tracked!(saturating_float_casts, Some(true));
|
||||
tracked!(share_generics, Some(true));
|
||||
tracked!(show_span, Some(String::from("abc")));
|
||||
tracked!(src_hash_algorithm, Some(SourceFileHashAlgorithm::Sha1));
|
||||
|
@ -32,13 +32,13 @@ use std::mem;
|
||||
use std::rc::Rc;
|
||||
|
||||
use crate::dataflow;
|
||||
use crate::dataflow::impls::{
|
||||
Borrows, EverInitializedPlaces, MaybeInitializedPlaces, MaybeUninitializedPlaces,
|
||||
};
|
||||
use crate::dataflow::indexes::{BorrowIndex, InitIndex, MoveOutIndex, MovePathIndex};
|
||||
use crate::dataflow::move_paths::{InitLocation, LookupResult, MoveData, MoveError};
|
||||
use crate::dataflow::Borrows;
|
||||
use crate::dataflow::EverInitializedPlaces;
|
||||
use crate::dataflow::MoveDataParamEnv;
|
||||
use crate::dataflow::{Analysis, BorrowckFlowState as Flows, BorrowckResults};
|
||||
use crate::dataflow::{MaybeInitializedPlaces, MaybeUninitializedPlaces};
|
||||
use crate::transform::MirSource;
|
||||
|
||||
use self::diagnostics::{AccessKind, RegionName};
|
||||
|
@ -21,8 +21,8 @@ use std::str::FromStr;
|
||||
use self::mir_util::PassWhere;
|
||||
use polonius_engine::{Algorithm, Output};
|
||||
|
||||
use crate::dataflow::impls::MaybeInitializedPlaces;
|
||||
use crate::dataflow::move_paths::{InitKind, InitLocation, MoveData};
|
||||
use crate::dataflow::MaybeInitializedPlaces;
|
||||
use crate::dataflow::ResultsCursor;
|
||||
use crate::transform::MirSource;
|
||||
use crate::util as mir_util;
|
||||
|
@ -3,8 +3,8 @@ use rustc_middle::mir::{Body, Local};
|
||||
use rustc_middle::ty::{RegionVid, TyCtxt};
|
||||
use std::rc::Rc;
|
||||
|
||||
use crate::dataflow::impls::MaybeInitializedPlaces;
|
||||
use crate::dataflow::move_paths::MoveData;
|
||||
use crate::dataflow::MaybeInitializedPlaces;
|
||||
use crate::dataflow::ResultsCursor;
|
||||
|
||||
use crate::borrow_check::{
|
||||
|
@ -8,9 +8,9 @@ use rustc_trait_selection::traits::query::type_op::outlives::DropckOutlives;
|
||||
use rustc_trait_selection::traits::query::type_op::TypeOp;
|
||||
use std::rc::Rc;
|
||||
|
||||
use crate::dataflow::impls::MaybeInitializedPlaces;
|
||||
use crate::dataflow::indexes::MovePathIndex;
|
||||
use crate::dataflow::move_paths::{HasMoveData, MoveData};
|
||||
use crate::dataflow::MaybeInitializedPlaces;
|
||||
use crate::dataflow::ResultsCursor;
|
||||
|
||||
use crate::borrow_check::{
|
||||
|
@ -39,8 +39,8 @@ use rustc_trait_selection::traits::query::type_op::custom::CustomTypeOp;
|
||||
use rustc_trait_selection::traits::query::{Fallible, NoSolution};
|
||||
use rustc_trait_selection::traits::{self, ObligationCause, PredicateObligations};
|
||||
|
||||
use crate::dataflow::impls::MaybeInitializedPlaces;
|
||||
use crate::dataflow::move_paths::MoveData;
|
||||
use crate::dataflow::MaybeInitializedPlaces;
|
||||
use crate::dataflow::ResultsCursor;
|
||||
use crate::transform::{
|
||||
check_consts::ConstCx,
|
||||
|
@ -21,14 +21,14 @@ use super::on_lookup_result_bits;
|
||||
use crate::dataflow::drop_flag_effects;
|
||||
|
||||
mod borrowed_locals;
|
||||
pub(super) mod borrows;
|
||||
mod liveness;
|
||||
mod storage_liveness;
|
||||
|
||||
pub use self::borrowed_locals::*;
|
||||
pub use self::borrowed_locals::{MaybeBorrowedLocals, MaybeMutBorrowedLocals};
|
||||
pub use self::borrows::Borrows;
|
||||
pub use self::liveness::MaybeLiveLocals;
|
||||
pub use self::storage_liveness::*;
|
||||
|
||||
pub(super) mod borrows;
|
||||
pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageLive};
|
||||
|
||||
/// `MaybeInitializedPlaces` tracks all places that might be
|
||||
/// initialized upon reaching a particular point in the control flow
|
||||
|
@ -8,17 +8,12 @@ pub use self::framework::{
|
||||
BottomValue, Engine, Forward, GenKill, GenKillAnalysis, Results, ResultsCursor,
|
||||
ResultsRefCursor, ResultsVisitor,
|
||||
};
|
||||
pub use self::impls::{
|
||||
borrows::Borrows, DefinitelyInitializedPlaces, EverInitializedPlaces, MaybeBorrowedLocals,
|
||||
MaybeInitializedPlaces, MaybeLiveLocals, MaybeMutBorrowedLocals, MaybeRequiresStorage,
|
||||
MaybeStorageLive, MaybeUninitializedPlaces,
|
||||
};
|
||||
|
||||
use self::move_paths::MoveData;
|
||||
|
||||
pub mod drop_flag_effects;
|
||||
mod framework;
|
||||
mod impls;
|
||||
pub mod impls;
|
||||
pub mod move_paths;
|
||||
|
||||
pub(crate) mod indexes {
|
||||
|
@ -20,7 +20,7 @@ use super::qualifs::{self, CustomEq, HasMutInterior, NeedsDrop};
|
||||
use super::resolver::FlowSensitiveAnalysis;
|
||||
use super::{is_lang_panic_fn, ConstCx, ConstKind, Qualif};
|
||||
use crate::const_eval::{is_const_fn, is_unstable_const_fn};
|
||||
use crate::dataflow::MaybeMutBorrowedLocals;
|
||||
use crate::dataflow::impls::MaybeMutBorrowedLocals;
|
||||
use crate::dataflow::{self, Analysis};
|
||||
|
||||
// We are using `MaybeMutBorrowedLocals` as a proxy for whether an item may have been mutated
|
||||
|
@ -1,10 +1,10 @@
|
||||
use crate::dataflow;
|
||||
use crate::dataflow::impls::{MaybeInitializedPlaces, MaybeUninitializedPlaces};
|
||||
use crate::dataflow::move_paths::{LookupResult, MoveData, MovePathIndex};
|
||||
use crate::dataflow::on_lookup_result_bits;
|
||||
use crate::dataflow::MoveDataParamEnv;
|
||||
use crate::dataflow::{on_all_children_bits, on_all_drop_children_bits};
|
||||
use crate::dataflow::{Analysis, ResultsCursor};
|
||||
use crate::dataflow::{MaybeInitializedPlaces, MaybeUninitializedPlaces};
|
||||
use crate::transform::{MirPass, MirSource};
|
||||
use crate::util::elaborate_drops::{elaborate_drop, DropFlagState, Unwind};
|
||||
use crate::util::elaborate_drops::{DropElaborator, DropFlagMode, DropStyle};
|
||||
|
@ -49,10 +49,10 @@
|
||||
//! For generators with state 1 (returned) and state 2 (poisoned) it does nothing.
|
||||
//! Otherwise it drops all the values in scope at the last suspension point.
|
||||
|
||||
use crate::dataflow::{self, Analysis};
|
||||
use crate::dataflow::{
|
||||
use crate::dataflow::impls::{
|
||||
MaybeBorrowedLocals, MaybeLiveLocals, MaybeRequiresStorage, MaybeStorageLive,
|
||||
};
|
||||
use crate::dataflow::{self, Analysis};
|
||||
use crate::transform::no_landing_pads::no_landing_pads;
|
||||
use crate::transform::simplify;
|
||||
use crate::transform::{MirPass, MirSource};
|
||||
|
@ -9,14 +9,14 @@ use rustc_index::bit_set::BitSet;
|
||||
use rustc_middle::mir::{self, Body, Local, Location};
|
||||
use rustc_middle::ty::{self, Ty, TyCtxt};
|
||||
|
||||
use crate::dataflow::impls::{
|
||||
DefinitelyInitializedPlaces, MaybeInitializedPlaces, MaybeLiveLocals, MaybeMutBorrowedLocals,
|
||||
MaybeUninitializedPlaces,
|
||||
};
|
||||
use crate::dataflow::move_paths::{HasMoveData, MoveData};
|
||||
use crate::dataflow::move_paths::{LookupResult, MovePathIndex};
|
||||
use crate::dataflow::MaybeMutBorrowedLocals;
|
||||
use crate::dataflow::MoveDataParamEnv;
|
||||
use crate::dataflow::{Analysis, Results, ResultsCursor};
|
||||
use crate::dataflow::{
|
||||
DefinitelyInitializedPlaces, MaybeInitializedPlaces, MaybeLiveLocals, MaybeUninitializedPlaces,
|
||||
};
|
||||
|
||||
pub struct SanityCheck;
|
||||
|
||||
|
@ -938,9 +938,9 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
|
||||
"enable origins tracking in MemorySanitizer"),
|
||||
sanitizer_recover: Vec<Sanitizer> = (vec![], parse_sanitizer_list, [TRACKED],
|
||||
"enable recovery for selected sanitizers"),
|
||||
saturating_float_casts: bool = (false, parse_bool, [TRACKED],
|
||||
saturating_float_casts: Option<bool> = (None, parse_opt_bool, [TRACKED],
|
||||
"make float->int casts UB-free: numbers outside the integer type's range are clipped to \
|
||||
the max/min integer respectively, and NaN is mapped to 0 (default: no)"),
|
||||
the max/min integer respectively, and NaN is mapped to 0 (default: yes)"),
|
||||
save_analysis: bool = (false, parse_bool, [UNTRACKED],
|
||||
"write syntax and type analysis (in JSON format) information, in \
|
||||
addition to normal output (default: no)"),
|
||||
|
@ -909,13 +909,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||
cast_suggestion,
|
||||
Applicability::MaybeIncorrect, // lossy conversion
|
||||
);
|
||||
err.warn(
|
||||
"if the rounded value cannot be represented by the target \
|
||||
integer type, including `Inf` and `NaN`, casting will cause \
|
||||
undefined behavior \
|
||||
(see issue #10184 <https://github.com/rust-lang/rust/issues/10184> \
|
||||
for more information)",
|
||||
);
|
||||
}
|
||||
true
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ dlmalloc = { version = "0.1", features = ['rustc-dep-of-std'] }
|
||||
fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }
|
||||
|
||||
[target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_os = "hermit"))'.dependencies]
|
||||
hermit-abi = { version = "0.1.10", features = ['rustc-dep-of-std'] }
|
||||
hermit-abi = { version = "0.1.12", features = ['rustc-dep-of-std'] }
|
||||
|
||||
[target.wasm32-wasi.dependencies]
|
||||
wasi = { version = "0.9.0", features = ['rustc-dep-of-std'], default-features = false }
|
||||
|
@ -16,25 +16,24 @@ pub struct Thread {
|
||||
unsafe impl Send for Thread {}
|
||||
unsafe impl Sync for Thread {}
|
||||
|
||||
pub const DEFAULT_MIN_STACK_SIZE: usize = 262144;
|
||||
pub const DEFAULT_MIN_STACK_SIZE: usize = 1 << 20;
|
||||
|
||||
impl Thread {
|
||||
pub unsafe fn new_with_coreid(
|
||||
_stack: usize,
|
||||
stack: usize,
|
||||
p: Box<dyn FnOnce()>,
|
||||
core_id: isize,
|
||||
) -> io::Result<Thread> {
|
||||
let p = Box::into_raw(box p);
|
||||
let mut tid: Tid = u32::MAX;
|
||||
let ret = abi::spawn(
|
||||
&mut tid as *mut Tid,
|
||||
let tid = abi::spawn2(
|
||||
thread_start,
|
||||
&*p as *const _ as *const u8 as usize,
|
||||
p as usize,
|
||||
abi::Priority::into(abi::NORMAL_PRIO),
|
||||
stack,
|
||||
core_id,
|
||||
);
|
||||
|
||||
return if ret != 0 {
|
||||
return if tid == 0 {
|
||||
// The thread failed to start and as a result p was not consumed. Therefore, it is
|
||||
// safe to reconstruct the box so that it gets deallocated.
|
||||
drop(Box::from_raw(p));
|
||||
|
@ -89,6 +89,7 @@ mod llvm_libunwind {
|
||||
cfg.flag("-fno-rtti");
|
||||
cfg.flag("-fstrict-aliasing");
|
||||
cfg.flag("-funwind-tables");
|
||||
cfg.flag("-fvisibility=hidden");
|
||||
}
|
||||
|
||||
let mut unwind_sources = vec![
|
||||
|
@ -1,7 +1,7 @@
|
||||
// compile-flags: -C no-prepopulate-passes
|
||||
// This file tests that we don't generate any code for saturation when using the
|
||||
// unchecked intrinsics.
|
||||
|
||||
// This file tests that we don't generate any code for saturation if
|
||||
// -Z saturating-float-casts is not enabled.
|
||||
// compile-flags: -C opt-level=3
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
@ -12,7 +12,7 @@ pub fn f32_to_u32(x: f32) -> u32 {
|
||||
// CHECK-NOT: fcmp
|
||||
// CHECK-NOT: icmp
|
||||
// CHECK-NOT: select
|
||||
x as u32
|
||||
unsafe { x.to_int_unchecked() }
|
||||
}
|
||||
|
||||
// CHECK-LABEL: @f32_to_i32
|
||||
@ -22,7 +22,7 @@ pub fn f32_to_i32(x: f32) -> i32 {
|
||||
// CHECK-NOT: fcmp
|
||||
// CHECK-NOT: icmp
|
||||
// CHECK-NOT: select
|
||||
x as i32
|
||||
unsafe { x.to_int_unchecked() }
|
||||
}
|
||||
|
||||
#[no_mangle]
|
||||
@ -31,5 +31,5 @@ pub fn f64_to_u16(x: f64) -> u16 {
|
||||
// CHECK-NOT: fcmp
|
||||
// CHECK-NOT: icmp
|
||||
// CHECK-NOT: select
|
||||
x as u16
|
||||
unsafe { x.to_int_unchecked() }
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
// run-pass
|
||||
// ignore-emscripten no processes
|
||||
// ignore-sgx no processes
|
||||
|
||||
use std::cell::RefCell;
|
||||
use std::env;
|
||||
|
@ -2,6 +2,7 @@
|
||||
#![allow(unused_attributes)]
|
||||
// ignore-windows
|
||||
// ignore-wasm32-bare no libs to link
|
||||
// ignore-sgx no libs to link
|
||||
|
||||
#![feature(link_args)]
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// ignore-sgx std::os::fortanix_sgx::usercalls::raw::Result changes compiler suggestions
|
||||
|
||||
use foo::MyEnum::Result;
|
||||
use foo::NoResult; // Through a re-export
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
error[E0573]: expected type, found variant `NoResult`
|
||||
--> $DIR/issue-17546.rs:12:17
|
||||
--> $DIR/issue-17546.rs:14:17
|
||||
|
|
||||
LL | fn new() -> NoResult<MyEnum, String> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
@ -19,7 +19,7 @@ LL | fn new() -> Result<MyEnum, String> {
|
||||
| ^^^^^^
|
||||
|
||||
error[E0573]: expected type, found variant `Result`
|
||||
--> $DIR/issue-17546.rs:22:17
|
||||
--> $DIR/issue-17546.rs:24:17
|
||||
|
|
||||
LL | fn new() -> Result<foo::MyEnum, String> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a type
|
||||
@ -37,7 +37,7 @@ LL | use std::result::Result;
|
||||
and 1 other candidate
|
||||
|
||||
error[E0573]: expected type, found variant `Result`
|
||||
--> $DIR/issue-17546.rs:28:13
|
||||
--> $DIR/issue-17546.rs:30:13
|
||||
|
|
||||
LL | fn new() -> Result<foo::MyEnum, String> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ not a type
|
||||
@ -55,7 +55,7 @@ LL | use std::result::Result;
|
||||
and 1 other candidate
|
||||
|
||||
error[E0573]: expected type, found variant `NoResult`
|
||||
--> $DIR/issue-17546.rs:33:15
|
||||
--> $DIR/issue-17546.rs:35:15
|
||||
|
|
||||
LL | fn newer() -> NoResult<foo::MyEnum, String> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
@ -1,5 +1,6 @@
|
||||
// ignore-cloudabi
|
||||
// ignore-windows
|
||||
// ignore-sgx std::os::fortanix_sgx::usercalls::alloc::Iter changes compiler suggestions
|
||||
// compile-flags: --error-format pretty-json --json=diagnostic-rendered-ansi
|
||||
|
||||
// The output for humans should just highlight the whole span without showing
|
||||
|
@ -72,10 +72,10 @@ mod foo {
|
||||
"spans": [
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 471,
|
||||
"byte_end": 475,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"byte_start": 560,
|
||||
"byte_end": 564,
|
||||
"line_start": 13,
|
||||
"line_end": 13,
|
||||
"column_start": 12,
|
||||
"column_end": 16,
|
||||
"is_primary": true,
|
||||
@ -100,10 +100,10 @@ mod foo {
|
||||
"spans": [
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -123,10 +123,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -146,10 +146,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -169,10 +169,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -192,10 +192,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -215,10 +215,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -238,10 +238,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -261,10 +261,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -284,10 +284,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -307,10 +307,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -330,10 +330,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -353,10 +353,10 @@ mod foo {
|
||||
},
|
||||
{
|
||||
"file_name": "$DIR/use_suggestion_json.rs",
|
||||
"byte_start": 448,
|
||||
"byte_end": 448,
|
||||
"line_start": 11,
|
||||
"line_end": 11,
|
||||
"byte_start": 537,
|
||||
"byte_end": 537,
|
||||
"line_start": 12,
|
||||
"line_end": 12,
|
||||
"column_start": 1,
|
||||
"column_end": 1,
|
||||
"is_primary": true,
|
||||
@ -380,7 +380,7 @@ mod foo {
|
||||
}
|
||||
],
|
||||
"rendered": "\u001b[0m\u001b[1m\u001b[38;5;9merror[E0412]\u001b[0m\u001b[0m\u001b[1m: cannot find type `Iter` in this scope\u001b[0m
|
||||
\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m$DIR/use_suggestion_json.rs:12:12\u001b[0m
|
||||
\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0m$DIR/use_suggestion_json.rs:13:12\u001b[0m
|
||||
\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m
|
||||
\u001b[0m\u001b[1m\u001b[38;5;12mLL\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m let x: Iter;\u001b[0m
|
||||
\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m| \u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9mnot found in this scope\u001b[0m
|
||||
|
@ -1,15 +1,22 @@
|
||||
// run-pass
|
||||
// compile-flags:-Zmir-opt-level=0
|
||||
// Tests saturating float->int casts. See u128-as-f32.rs for the opposite direction.
|
||||
// compile-flags: -Z saturating-float-casts
|
||||
//
|
||||
// Some of these tests come from a similar file in miri,
|
||||
// tests/run-pass/float.rs. Individual test cases are potentially duplicated
|
||||
// with the previously existing tests, but since this runs so quickly anyway,
|
||||
// we're not spending the time to figure out exactly which ones should be
|
||||
// merged.
|
||||
|
||||
#![feature(test, stmt_expr_attributes)]
|
||||
#![feature(track_caller)]
|
||||
#![deny(overflowing_literals)]
|
||||
extern crate test;
|
||||
|
||||
use std::{f32, f64};
|
||||
use std::{u8, i8, u16, i16, u32, i32, u64, i64};
|
||||
#[cfg(not(target_os="emscripten"))]
|
||||
use std::{u128, i128};
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
use std::{i128, u128};
|
||||
use std::{i16, i32, i64, i8, u16, u32, u64, u8};
|
||||
use test::black_box;
|
||||
|
||||
macro_rules! test {
|
||||
@ -17,31 +24,18 @@ macro_rules! test {
|
||||
// black_box disables constant evaluation to test run-time conversions:
|
||||
assert_eq!(black_box::<$src_ty>($val) as $dest_ty, $expected,
|
||||
"run-time {} -> {}", stringify!($src_ty), stringify!($dest_ty));
|
||||
);
|
||||
|
||||
($fval:expr, f* -> $ity:ident, $ival:expr) => (
|
||||
test!($fval, f32 -> $ity, $ival);
|
||||
test!($fval, f64 -> $ity, $ival);
|
||||
)
|
||||
}
|
||||
|
||||
// This macro tests const eval in addition to run-time evaluation.
|
||||
// If and when saturating casts are adopted, this macro should be merged with test!() to ensure
|
||||
// that run-time and const eval agree on inputs that currently trigger a const eval error.
|
||||
macro_rules! test_c {
|
||||
($val:expr, $src_ty:ident -> $dest_ty:ident, $expected:expr) => ({
|
||||
test!($val, $src_ty -> $dest_ty, $expected);
|
||||
{
|
||||
const X: $src_ty = $val;
|
||||
const Y: $dest_ty = X as $dest_ty;
|
||||
assert_eq!(Y, $expected,
|
||||
"const eval {} -> {}", stringify!($src_ty), stringify!($dest_ty));
|
||||
}
|
||||
});
|
||||
);
|
||||
|
||||
($fval:expr, f* -> $ity:ident, $ival:expr) => (
|
||||
test_c!($fval, f32 -> $ity, $ival);
|
||||
test_c!($fval, f64 -> $ity, $ival);
|
||||
test!($fval, f32 -> $ity, $ival);
|
||||
test!($fval, f64 -> $ity, $ival);
|
||||
)
|
||||
}
|
||||
|
||||
@ -55,11 +49,11 @@ macro_rules! common_fptoi_tests {
|
||||
// as well, the test is just slightly misplaced.
|
||||
test!($ity::MIN as $fty, $fty -> $ity, $ity::MIN);
|
||||
test!($ity::MAX as $fty, $fty -> $ity, $ity::MAX);
|
||||
test_c!(0., $fty -> $ity, 0);
|
||||
test_c!($fty::MIN_POSITIVE, $fty -> $ity, 0);
|
||||
test!(0., $fty -> $ity, 0);
|
||||
test!($fty::MIN_POSITIVE, $fty -> $ity, 0);
|
||||
test!(-0.9, $fty -> $ity, 0);
|
||||
test_c!(1., $fty -> $ity, 1);
|
||||
test_c!(42., $fty -> $ity, 42);
|
||||
test!(1., $fty -> $ity, 1);
|
||||
test!(42., $fty -> $ity, 42);
|
||||
)+ });
|
||||
|
||||
(f* -> $($ity:ident)+) => ({
|
||||
@ -85,11 +79,392 @@ macro_rules! fptoui_tests {
|
||||
})
|
||||
}
|
||||
|
||||
use std::fmt::Debug;
|
||||
|
||||
// Helper function to avoid promotion so that this tests "run-time" casts, not CTFE.
|
||||
#[track_caller]
|
||||
#[inline(never)]
|
||||
fn assert_eq<T: PartialEq + Debug>(x: T, y: T) {
|
||||
assert_eq!(x, y);
|
||||
}
|
||||
|
||||
trait FloatToInt<Int>: Copy {
|
||||
fn cast(self) -> Int;
|
||||
unsafe fn cast_unchecked(self) -> Int;
|
||||
}
|
||||
|
||||
impl FloatToInt<i8> for f32 {
|
||||
fn cast(self) -> i8 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i8 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<i32> for f32 {
|
||||
fn cast(self) -> i32 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i32 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<u32> for f32 {
|
||||
fn cast(self) -> u32 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> u32 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<i64> for f32 {
|
||||
fn cast(self) -> i64 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i64 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<u64> for f32 {
|
||||
fn cast(self) -> u64 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> u64 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
|
||||
impl FloatToInt<i8> for f64 {
|
||||
fn cast(self) -> i8 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i8 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<i32> for f64 {
|
||||
fn cast(self) -> i32 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i32 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<u32> for f64 {
|
||||
fn cast(self) -> u32 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> u32 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<i64> for f64 {
|
||||
fn cast(self) -> i64 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i64 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
impl FloatToInt<u64> for f64 {
|
||||
fn cast(self) -> u64 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> u64 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
impl FloatToInt<i128> for f64 {
|
||||
fn cast(self) -> i128 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> i128 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
impl FloatToInt<u128> for f64 {
|
||||
fn cast(self) -> u128 {
|
||||
self as _
|
||||
}
|
||||
unsafe fn cast_unchecked(self) -> u128 {
|
||||
self.to_int_unchecked()
|
||||
}
|
||||
}
|
||||
|
||||
/// Test this cast both via `as` and via `to_int_unchecked` (i.e., it must not saturate).
|
||||
#[track_caller]
|
||||
#[inline(never)]
|
||||
fn test_both_cast<F, I>(x: F, y: I)
|
||||
where
|
||||
F: FloatToInt<I>,
|
||||
I: PartialEq + Debug,
|
||||
{
|
||||
assert_eq!(x.cast(), y);
|
||||
assert_eq!(unsafe { x.cast_unchecked() }, y);
|
||||
}
|
||||
|
||||
fn casts() {
|
||||
// f32 -> i8
|
||||
test_both_cast::<f32, i8>(127.99, 127);
|
||||
test_both_cast::<f32, i8>(-128.99, -128);
|
||||
|
||||
// f32 -> i32
|
||||
test_both_cast::<f32, i32>(0.0, 0);
|
||||
test_both_cast::<f32, i32>(-0.0, 0);
|
||||
test_both_cast::<f32, i32>(/*0x1p-149*/ f32::from_bits(0x00000001), 0);
|
||||
test_both_cast::<f32, i32>(/*-0x1p-149*/ f32::from_bits(0x80000001), 0);
|
||||
test_both_cast::<f32, i32>(/*0x1.19999ap+0*/ f32::from_bits(0x3f8ccccd), 1);
|
||||
test_both_cast::<f32, i32>(/*-0x1.19999ap+0*/ f32::from_bits(0xbf8ccccd), -1);
|
||||
test_both_cast::<f32, i32>(1.9, 1);
|
||||
test_both_cast::<f32, i32>(-1.9, -1);
|
||||
test_both_cast::<f32, i32>(5.0, 5);
|
||||
test_both_cast::<f32, i32>(-5.0, -5);
|
||||
test_both_cast::<f32, i32>(2147483520.0, 2147483520);
|
||||
test_both_cast::<f32, i32>(-2147483648.0, -2147483648);
|
||||
// unrepresentable casts
|
||||
assert_eq::<i32>(2147483648.0f32 as i32, i32::MAX);
|
||||
assert_eq::<i32>(-2147483904.0f32 as i32, i32::MIN);
|
||||
assert_eq::<i32>(f32::MAX as i32, i32::MAX);
|
||||
assert_eq::<i32>(f32::MIN as i32, i32::MIN);
|
||||
assert_eq::<i32>(f32::INFINITY as i32, i32::MAX);
|
||||
assert_eq::<i32>(f32::NEG_INFINITY as i32, i32::MIN);
|
||||
assert_eq::<i32>(f32::NAN as i32, 0);
|
||||
assert_eq::<i32>((-f32::NAN) as i32, 0);
|
||||
|
||||
// f32 -> u32
|
||||
test_both_cast::<f32, u32>(0.0, 0);
|
||||
test_both_cast::<f32, u32>(-0.0, 0);
|
||||
test_both_cast::<f32, u32>(-0.9999999, 0);
|
||||
test_both_cast::<f32, u32>(/*0x1p-149*/ f32::from_bits(0x1), 0);
|
||||
test_both_cast::<f32, u32>(/*-0x1p-149*/ f32::from_bits(0x80000001), 0);
|
||||
test_both_cast::<f32, u32>(/*0x1.19999ap+0*/ f32::from_bits(0x3f8ccccd), 1);
|
||||
test_both_cast::<f32, u32>(1.9, 1);
|
||||
test_both_cast::<f32, u32>(5.0, 5);
|
||||
test_both_cast::<f32, u32>(2147483648.0, 0x8000_0000);
|
||||
test_both_cast::<f32, u32>(4294967040.0, 0u32.wrapping_sub(256));
|
||||
test_both_cast::<f32, u32>(/*-0x1.ccccccp-1*/ f32::from_bits(0xbf666666), 0);
|
||||
test_both_cast::<f32, u32>(/*-0x1.fffffep-1*/ f32::from_bits(0xbf7fffff), 0);
|
||||
test_both_cast::<f32, u32>((u32::MAX - 128) as f32, u32::MAX - 255); // rounding loss
|
||||
|
||||
// unrepresentable casts:
|
||||
|
||||
// rounds up and then becomes unrepresentable
|
||||
assert_eq::<u32>((u32::MAX - 127) as f32 as u32, u32::MAX);
|
||||
|
||||
assert_eq::<u32>(4294967296.0f32 as u32, u32::MAX);
|
||||
assert_eq::<u32>(-5.0f32 as u32, 0);
|
||||
assert_eq::<u32>(f32::MAX as u32, u32::MAX);
|
||||
assert_eq::<u32>(f32::MIN as u32, 0);
|
||||
assert_eq::<u32>(f32::INFINITY as u32, u32::MAX);
|
||||
assert_eq::<u32>(f32::NEG_INFINITY as u32, 0);
|
||||
assert_eq::<u32>(f32::NAN as u32, 0);
|
||||
assert_eq::<u32>((-f32::NAN) as u32, 0);
|
||||
|
||||
// f32 -> i64
|
||||
test_both_cast::<f32, i64>(4294967296.0, 4294967296);
|
||||
test_both_cast::<f32, i64>(-4294967296.0, -4294967296);
|
||||
test_both_cast::<f32, i64>(9223371487098961920.0, 9223371487098961920);
|
||||
test_both_cast::<f32, i64>(-9223372036854775808.0, -9223372036854775808);
|
||||
|
||||
// f64 -> i8
|
||||
test_both_cast::<f64, i8>(127.99, 127);
|
||||
test_both_cast::<f64, i8>(-128.99, -128);
|
||||
|
||||
// f64 -> i32
|
||||
test_both_cast::<f64, i32>(0.0, 0);
|
||||
test_both_cast::<f64, i32>(-0.0, 0);
|
||||
test_both_cast::<f64, i32>(/*0x1.199999999999ap+0*/ f64::from_bits(0x3ff199999999999a), 1);
|
||||
test_both_cast::<f64, i32>(
|
||||
/*-0x1.199999999999ap+0*/ f64::from_bits(0xbff199999999999a),
|
||||
-1,
|
||||
);
|
||||
test_both_cast::<f64, i32>(1.9, 1);
|
||||
test_both_cast::<f64, i32>(-1.9, -1);
|
||||
test_both_cast::<f64, i32>(1e8, 100_000_000);
|
||||
test_both_cast::<f64, i32>(2147483647.0, 2147483647);
|
||||
test_both_cast::<f64, i32>(-2147483648.0, -2147483648);
|
||||
// unrepresentable casts
|
||||
assert_eq::<i32>(2147483648.0f64 as i32, i32::MAX);
|
||||
assert_eq::<i32>(-2147483649.0f64 as i32, i32::MIN);
|
||||
|
||||
// f64 -> i64
|
||||
test_both_cast::<f64, i64>(0.0, 0);
|
||||
test_both_cast::<f64, i64>(-0.0, 0);
|
||||
test_both_cast::<f64, i64>(/*0x0.0000000000001p-1022*/ f64::from_bits(0x1), 0);
|
||||
test_both_cast::<f64, i64>(
|
||||
/*-0x0.0000000000001p-1022*/ f64::from_bits(0x8000000000000001),
|
||||
0,
|
||||
);
|
||||
test_both_cast::<f64, i64>(/*0x1.199999999999ap+0*/ f64::from_bits(0x3ff199999999999a), 1);
|
||||
test_both_cast::<f64, i64>(
|
||||
/*-0x1.199999999999ap+0*/ f64::from_bits(0xbff199999999999a),
|
||||
-1,
|
||||
);
|
||||
test_both_cast::<f64, i64>(5.0, 5);
|
||||
test_both_cast::<f64, i64>(5.9, 5);
|
||||
test_both_cast::<f64, i64>(-5.0, -5);
|
||||
test_both_cast::<f64, i64>(-5.9, -5);
|
||||
test_both_cast::<f64, i64>(4294967296.0, 4294967296);
|
||||
test_both_cast::<f64, i64>(-4294967296.0, -4294967296);
|
||||
test_both_cast::<f64, i64>(9223372036854774784.0, 9223372036854774784);
|
||||
test_both_cast::<f64, i64>(-9223372036854775808.0, -9223372036854775808);
|
||||
// unrepresentable casts
|
||||
assert_eq::<i64>(9223372036854775808.0f64 as i64, i64::MAX);
|
||||
assert_eq::<i64>(-9223372036854777856.0f64 as i64, i64::MIN);
|
||||
assert_eq::<i64>(f64::MAX as i64, i64::MAX);
|
||||
assert_eq::<i64>(f64::MIN as i64, i64::MIN);
|
||||
assert_eq::<i64>(f64::INFINITY as i64, i64::MAX);
|
||||
assert_eq::<i64>(f64::NEG_INFINITY as i64, i64::MIN);
|
||||
assert_eq::<i64>(f64::NAN as i64, 0);
|
||||
assert_eq::<i64>((-f64::NAN) as i64, 0);
|
||||
|
||||
// f64 -> u64
|
||||
test_both_cast::<f64, u64>(0.0, 0);
|
||||
test_both_cast::<f64, u64>(-0.0, 0);
|
||||
test_both_cast::<f64, u64>(-0.99999999999, 0);
|
||||
test_both_cast::<f64, u64>(5.0, 5);
|
||||
test_both_cast::<f64, u64>(1e16, 10000000000000000);
|
||||
test_both_cast::<f64, u64>((u64::MAX - 1024) as f64, u64::MAX - 2047); // rounding loss
|
||||
test_both_cast::<f64, u64>(9223372036854775808.0, 9223372036854775808);
|
||||
// unrepresentable casts
|
||||
assert_eq::<u64>(-5.0f64 as u64, 0);
|
||||
// rounds up and then becomes unrepresentable
|
||||
assert_eq::<u64>((u64::MAX - 1023) as f64 as u64, u64::MAX);
|
||||
assert_eq::<u64>(18446744073709551616.0f64 as u64, u64::MAX);
|
||||
assert_eq::<u64>(f64::MAX as u64, u64::MAX);
|
||||
assert_eq::<u64>(f64::MIN as u64, 0);
|
||||
assert_eq::<u64>(f64::INFINITY as u64, u64::MAX);
|
||||
assert_eq::<u64>(f64::NEG_INFINITY as u64, 0);
|
||||
assert_eq::<u64>(f64::NAN as u64, 0);
|
||||
assert_eq::<u64>((-f64::NAN) as u64, 0);
|
||||
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
{
|
||||
// f64 -> i128
|
||||
assert_eq::<i128>(f64::MAX as i128, i128::MAX);
|
||||
assert_eq::<i128>(f64::MIN as i128, i128::MIN);
|
||||
|
||||
// f64 -> u128
|
||||
assert_eq::<u128>(f64::MAX as u128, u128::MAX);
|
||||
assert_eq::<u128>(f64::MIN as u128, 0);
|
||||
}
|
||||
|
||||
// int -> f32
|
||||
assert_eq::<f32>(127i8 as f32, 127.0);
|
||||
assert_eq::<f32>(2147483647i32 as f32, 2147483648.0);
|
||||
assert_eq::<f32>((-2147483648i32) as f32, -2147483648.0);
|
||||
assert_eq::<f32>(1234567890i32 as f32, /*0x1.26580cp+30*/ f32::from_bits(0x4e932c06));
|
||||
assert_eq::<f32>(16777217i32 as f32, 16777216.0);
|
||||
assert_eq::<f32>((-16777217i32) as f32, -16777216.0);
|
||||
assert_eq::<f32>(16777219i32 as f32, 16777220.0);
|
||||
assert_eq::<f32>((-16777219i32) as f32, -16777220.0);
|
||||
assert_eq::<f32>(
|
||||
0x7fffff4000000001i64 as f32,
|
||||
/*0x1.fffffep+62*/ f32::from_bits(0x5effffff),
|
||||
);
|
||||
assert_eq::<f32>(
|
||||
0x8000004000000001u64 as i64 as f32,
|
||||
/*-0x1.fffffep+62*/ f32::from_bits(0xdeffffff),
|
||||
);
|
||||
assert_eq::<f32>(
|
||||
0x0020000020000001i64 as f32,
|
||||
/*0x1.000002p+53*/ f32::from_bits(0x5a000001),
|
||||
);
|
||||
assert_eq::<f32>(
|
||||
0xffdfffffdfffffffu64 as i64 as f32,
|
||||
/*-0x1.000002p+53*/ f32::from_bits(0xda000001),
|
||||
);
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
{
|
||||
assert_eq::<f32>(i128::MIN as f32, -170141183460469231731687303715884105728.0f32);
|
||||
assert_eq::<f32>(u128::MAX as f32, f32::INFINITY); // saturation
|
||||
}
|
||||
|
||||
// int -> f64
|
||||
assert_eq::<f64>(127i8 as f64, 127.0);
|
||||
assert_eq::<f64>(i16::MIN as f64, -32768.0f64);
|
||||
assert_eq::<f64>(2147483647i32 as f64, 2147483647.0);
|
||||
assert_eq::<f64>(-2147483648i32 as f64, -2147483648.0);
|
||||
assert_eq::<f64>(987654321i32 as f64, 987654321.0);
|
||||
assert_eq::<f64>(9223372036854775807i64 as f64, 9223372036854775807.0);
|
||||
assert_eq::<f64>(-9223372036854775808i64 as f64, -9223372036854775808.0);
|
||||
assert_eq::<f64>(4669201609102990i64 as f64, 4669201609102990.0); // Feigenbaum (?)
|
||||
assert_eq::<f64>(9007199254740993i64 as f64, 9007199254740992.0);
|
||||
assert_eq::<f64>(-9007199254740993i64 as f64, -9007199254740992.0);
|
||||
assert_eq::<f64>(9007199254740995i64 as f64, 9007199254740996.0);
|
||||
assert_eq::<f64>(-9007199254740995i64 as f64, -9007199254740996.0);
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
{
|
||||
// even that fits...
|
||||
assert_eq::<f64>(u128::MAX as f64, 340282366920938463463374607431768211455.0f64);
|
||||
}
|
||||
|
||||
// f32 -> f64
|
||||
assert_eq::<u64>((0.0f32 as f64).to_bits(), 0.0f64.to_bits());
|
||||
assert_eq::<u64>(((-0.0f32) as f64).to_bits(), (-0.0f64).to_bits());
|
||||
assert_eq::<f64>(5.0f32 as f64, 5.0f64);
|
||||
assert_eq::<f64>(
|
||||
/*0x1p-149*/ f32::from_bits(0x1) as f64,
|
||||
/*0x1p-149*/ f64::from_bits(0x36a0000000000000),
|
||||
);
|
||||
assert_eq::<f64>(
|
||||
/*-0x1p-149*/ f32::from_bits(0x80000001) as f64,
|
||||
/*-0x1p-149*/ f64::from_bits(0xb6a0000000000000),
|
||||
);
|
||||
assert_eq::<f64>(
|
||||
/*0x1.fffffep+127*/ f32::from_bits(0x7f7fffff) as f64,
|
||||
/*0x1.fffffep+127*/ f64::from_bits(0x47efffffe0000000),
|
||||
);
|
||||
assert_eq::<f64>(
|
||||
/*-0x1.fffffep+127*/ (-f32::from_bits(0x7f7fffff)) as f64,
|
||||
/*-0x1.fffffep+127*/ -f64::from_bits(0x47efffffe0000000),
|
||||
);
|
||||
assert_eq::<f64>(
|
||||
/*0x1p-119*/ f32::from_bits(0x4000000) as f64,
|
||||
/*0x1p-119*/ f64::from_bits(0x3880000000000000),
|
||||
);
|
||||
assert_eq::<f64>(
|
||||
/*0x1.8f867ep+125*/ f32::from_bits(0x7e47c33f) as f64,
|
||||
6.6382536710104395e+37,
|
||||
);
|
||||
assert_eq::<f64>(f32::INFINITY as f64, f64::INFINITY);
|
||||
assert_eq::<f64>(f32::NEG_INFINITY as f64, f64::NEG_INFINITY);
|
||||
|
||||
// f64 -> f32
|
||||
assert_eq::<u32>((0.0f64 as f32).to_bits(), 0.0f32.to_bits());
|
||||
assert_eq::<u32>(((-0.0f64) as f32).to_bits(), (-0.0f32).to_bits());
|
||||
assert_eq::<f32>(5.0f64 as f32, 5.0f32);
|
||||
assert_eq::<f32>(/*0x0.0000000000001p-1022*/ f64::from_bits(0x1) as f32, 0.0);
|
||||
assert_eq::<f32>(/*-0x0.0000000000001p-1022*/ (-f64::from_bits(0x1)) as f32, -0.0);
|
||||
assert_eq::<f32>(
|
||||
/*0x1.fffffe0000000p-127*/ f64::from_bits(0x380fffffe0000000) as f32,
|
||||
/*0x1p-149*/ f32::from_bits(0x800000),
|
||||
);
|
||||
assert_eq::<f32>(
|
||||
/*0x1.4eae4f7024c7p+108*/ f64::from_bits(0x46b4eae4f7024c70) as f32,
|
||||
/*0x1.4eae5p+108*/ f32::from_bits(0x75a75728),
|
||||
);
|
||||
assert_eq::<f32>(f64::MAX as f32, f32::INFINITY);
|
||||
assert_eq::<f32>(f64::MIN as f32, f32::NEG_INFINITY);
|
||||
assert_eq::<f32>(f64::INFINITY as f32, f32::INFINITY);
|
||||
assert_eq::<f32>(f64::NEG_INFINITY as f32, f32::NEG_INFINITY);
|
||||
}
|
||||
|
||||
pub fn main() {
|
||||
casts(); // from miri's tests
|
||||
|
||||
common_fptoi_tests!(f* -> i8 i16 i32 i64 u8 u16 u32 u64);
|
||||
fptoui_tests!(f* -> u8 u16 u32 u64);
|
||||
// FIXME emscripten does not support i128
|
||||
#[cfg(not(target_os="emscripten"))] {
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
{
|
||||
common_fptoi_tests!(f* -> i128 u128);
|
||||
fptoui_tests!(f* -> u128);
|
||||
}
|
||||
@ -97,39 +472,39 @@ pub fn main() {
|
||||
// The following tests cover edge cases for some integer types.
|
||||
|
||||
// # u8
|
||||
test_c!(254., f* -> u8, 254);
|
||||
test!(254., f* -> u8, 254);
|
||||
test!(256., f* -> u8, 255);
|
||||
|
||||
// # i8
|
||||
test_c!(-127., f* -> i8, -127);
|
||||
test!(-127., f* -> i8, -127);
|
||||
test!(-129., f* -> i8, -128);
|
||||
test_c!(126., f* -> i8, 126);
|
||||
test!(126., f* -> i8, 126);
|
||||
test!(128., f* -> i8, 127);
|
||||
|
||||
// # i32
|
||||
// -2147483648. is i32::MIN (exactly)
|
||||
test_c!(-2147483648., f* -> i32, i32::MIN);
|
||||
test!(-2147483648., f* -> i32, i32::MIN);
|
||||
// 2147483648. is i32::MAX rounded up
|
||||
test!(2147483648., f32 -> i32, 2147483647);
|
||||
// With 24 significand bits, floats with magnitude in [2^30 + 1, 2^31] are rounded to
|
||||
// multiples of 2^7. Therefore, nextDown(round(i32::MAX)) is 2^31 - 128:
|
||||
test_c!(2147483520., f32 -> i32, 2147483520);
|
||||
test!(2147483520., f32 -> i32, 2147483520);
|
||||
// Similarly, nextUp(i32::MIN) is i32::MIN + 2^8 and nextDown(i32::MIN) is i32::MIN - 2^7
|
||||
test!(-2147483904., f* -> i32, i32::MIN);
|
||||
test_c!(-2147483520., f* -> i32, -2147483520);
|
||||
test!(-2147483520., f* -> i32, -2147483520);
|
||||
|
||||
// # u32
|
||||
// round(MAX) and nextUp(round(MAX))
|
||||
test_c!(4294967040., f* -> u32, 4294967040);
|
||||
test!(4294967040., f* -> u32, 4294967040);
|
||||
test!(4294967296., f* -> u32, 4294967295);
|
||||
|
||||
// # u128
|
||||
#[cfg(not(target_os="emscripten"))]
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
{
|
||||
// float->int:
|
||||
test_c!(f32::MAX, f32 -> u128, 0xffffff00000000000000000000000000);
|
||||
test!(f32::MAX, f32 -> u128, 0xffffff00000000000000000000000000);
|
||||
// nextDown(f32::MAX) = 2^128 - 2 * 2^104
|
||||
const SECOND_LARGEST_F32: f32 = 340282326356119256160033759537265639424.;
|
||||
test_c!(SECOND_LARGEST_F32, f32 -> u128, 0xfffffe00000000000000000000000000);
|
||||
test!(SECOND_LARGEST_F32, f32 -> u128, 0xfffffe00000000000000000000000000);
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
// override -Ctarget-feature=-crt-static from compiletest
|
||||
// compile-flags: -Ctarget-feature=
|
||||
// ignore-wasm32
|
||||
// ignore-sgx no support for proc-macro crate type
|
||||
// build-pass
|
||||
#![crate_type = "proc-macro"]
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
// ignore-sgx std::os::fortanix_sgx::usercalls::raw::Result changes compiler suggestions
|
||||
|
||||
pub struct GslResult {
|
||||
pub val: f64,
|
||||
pub err: f64
|
||||
|
@ -1,5 +1,5 @@
|
||||
error[E0574]: expected struct, variant or union type, found enum `Result`
|
||||
--> $DIR/issue-16058.rs:8:9
|
||||
--> $DIR/issue-16058.rs:10:9
|
||||
|
|
||||
LL | Result {
|
||||
| ^^^^^^ not a struct, variant or union type
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
// ignore-wasm no panic or subprocess support
|
||||
// ignore-emscripten no panic or subprocess support
|
||||
// ignore-sgx no subprocess support
|
||||
|
||||
#![cfg(test)]
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
thread 'main' panicked at 'assertion failed: `(left == right)`
|
||||
left: `2`,
|
||||
right: `4`', $DIR/test-panic-abort-nocapture.rs:31:5
|
||||
right: `4`', $DIR/test-panic-abort-nocapture.rs:32:5
|
||||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
||||
thread 'main' panicked at 'assertion failed: `(left == right)`
|
||||
left: `2`,
|
||||
right: `4`', $DIR/test-panic-abort-nocapture.rs:25:5
|
||||
right: `4`', $DIR/test-panic-abort-nocapture.rs:26:5
|
||||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
||||
testing321
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
// ignore-wasm no panic or subprocess support
|
||||
// ignore-emscripten no panic or subprocess support
|
||||
// ignore-sgx no subprocess support
|
||||
|
||||
#![cfg(test)]
|
||||
|
||||
|
@ -18,7 +18,7 @@ testing123
|
||||
testing321
|
||||
thread 'main' panicked at 'assertion failed: `(left == right)`
|
||||
left: `2`,
|
||||
right: `5`', $DIR/test-panic-abort.rs:32:5
|
||||
right: `5`', $DIR/test-panic-abort.rs:33:5
|
||||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user