mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-05 12:25:13 +00:00
Auto merge of #56996 - clarcharr:spin_loop_hint, r=KodrAus
Move spin_loop_hint to core::hint module As mentioned in #55002. The new name is kept unstable to decide whether the function should have `_hint` in its name.
This commit is contained in:
commit
38650b69ca
@ -49,3 +49,26 @@ use intrinsics;
|
|||||||
pub unsafe fn unreachable_unchecked() -> ! {
|
pub unsafe fn unreachable_unchecked() -> ! {
|
||||||
intrinsics::unreachable()
|
intrinsics::unreachable()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Save power or switch hyperthreads in a busy-wait spin-loop.
|
||||||
|
///
|
||||||
|
/// This function is deliberately more primitive than
|
||||||
|
/// [`std::thread::yield_now`](../../std/thread/fn.yield_now.html) and
|
||||||
|
/// does not directly yield to the system's scheduler.
|
||||||
|
/// In some cases it might be useful to use a combination of both functions.
|
||||||
|
/// Careful benchmarking is advised.
|
||||||
|
///
|
||||||
|
/// On some platforms this function may not do anything at all.
|
||||||
|
#[inline]
|
||||||
|
#[unstable(feature = "renamed_spin_loop", issue = "55002")]
|
||||||
|
pub fn spin_loop() {
|
||||||
|
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
||||||
|
unsafe {
|
||||||
|
asm!("pause" ::: "memory" : "volatile");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_arch = "aarch64")]
|
||||||
|
unsafe {
|
||||||
|
asm!("yield" ::: "memory" : "volatile");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -84,6 +84,8 @@ use intrinsics;
|
|||||||
use cell::UnsafeCell;
|
use cell::UnsafeCell;
|
||||||
use fmt;
|
use fmt;
|
||||||
|
|
||||||
|
use hint::spin_loop;
|
||||||
|
|
||||||
/// Save power or switch hyperthreads in a busy-wait spin-loop.
|
/// Save power or switch hyperthreads in a busy-wait spin-loop.
|
||||||
///
|
///
|
||||||
/// This function is deliberately more primitive than
|
/// This function is deliberately more primitive than
|
||||||
@ -96,15 +98,7 @@ use fmt;
|
|||||||
#[inline]
|
#[inline]
|
||||||
#[stable(feature = "spin_loop_hint", since = "1.24.0")]
|
#[stable(feature = "spin_loop_hint", since = "1.24.0")]
|
||||||
pub fn spin_loop_hint() {
|
pub fn spin_loop_hint() {
|
||||||
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
spin_loop()
|
||||||
unsafe {
|
|
||||||
asm!("pause" ::: "memory" : "volatile");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_arch = "aarch64")]
|
|
||||||
unsafe {
|
|
||||||
asm!("yield" ::: "memory" : "volatile");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A boolean type which can be safely shared between threads.
|
/// A boolean type which can be safely shared between threads.
|
||||||
|
@ -286,6 +286,7 @@
|
|||||||
#![feature(staged_api)]
|
#![feature(staged_api)]
|
||||||
#![feature(stmt_expr_attributes)]
|
#![feature(stmt_expr_attributes)]
|
||||||
#![feature(str_internals)]
|
#![feature(str_internals)]
|
||||||
|
#![feature(renamed_spin_loop)]
|
||||||
#![feature(rustc_private)]
|
#![feature(rustc_private)]
|
||||||
#![feature(thread_local)]
|
#![feature(thread_local)]
|
||||||
#![feature(toowned_clone_into)]
|
#![feature(toowned_clone_into)]
|
||||||
|
Loading…
Reference in New Issue
Block a user