core/stdarch/crates/core_arch/src/x86_64/
rdrand.rs1#![allow(clippy::module_name_repetitions)]
6
7#[allow(improper_ctypes)]
8unsafe extern "unadjusted" {
9 #[link_name = "llvm.x86.rdrand.64"]
10 fn x86_rdrand64_step() -> (u64, i32);
11 #[link_name = "llvm.x86.rdseed.64"]
12 fn x86_rdseed64_step() -> (u64, i32);
13}
14
15#[cfg(test)]
16use stdarch_test::assert_instr;
17
18#[inline]
23#[target_feature(enable = "rdrand")]
24#[cfg_attr(test, assert_instr(rdrand))]
25#[stable(feature = "simd_x86", since = "1.27.0")]
26pub unsafe fn _rdrand64_step(val: &mut u64) -> i32 {
27 let (v, flag) = x86_rdrand64_step();
28 *val = v;
29 flag
30}
31
32#[inline]
37#[target_feature(enable = "rdseed")]
38#[cfg_attr(test, assert_instr(rdseed))]
39#[stable(feature = "simd_x86", since = "1.27.0")]
40pub unsafe fn _rdseed64_step(val: &mut u64) -> i32 {
41 let (v, flag) = x86_rdseed64_step();
42 *val = v;
43 flag
44}