about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/0weak_memory/extra_cpp.rs
blob: 94df730808066aab85971a2ebdff4d37a15774a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//@compile-flags: -Zmiri-ignore-leaks

// Tests operations not performable through C++'s atomic API
// but doable in safe (at least sound) Rust.

#![feature(atomic_from_mut)]

use std::sync::atomic::Ordering::*;
use std::sync::atomic::{AtomicU16, AtomicU32};
use std::thread::spawn;

fn static_atomic_mut(val: u32) -> &'static mut AtomicU32 {
    let ret = Box::leak(Box::new(AtomicU32::new(val)));
    ret
}

fn split_u32(dword: &mut u32) -> &mut [u16; 2] {
    unsafe { std::mem::transmute::<&mut u32, &mut [u16; 2]>(dword) }
}

fn mem_replace() {
    let mut x = AtomicU32::new(0);

    let old_x = std::mem::replace(&mut x, AtomicU32::new(42));

    assert_eq!(x.load(Relaxed), 42);
    assert_eq!(old_x.load(Relaxed), 0);
}

fn assign_to_mut() {
    let x = static_atomic_mut(0);
    x.store(1, Relaxed);

    *x = AtomicU32::new(2);

    assert_eq!(x.load(Relaxed), 2);
}

fn get_mut_write() {
    let x = static_atomic_mut(0);
    x.store(1, Relaxed);
    {
        let x_mut = x.get_mut();
        *x_mut = 2;
    }

    let j1 = spawn(move || x.load(Relaxed));

    let r1 = j1.join().unwrap();
    assert_eq!(r1, 2);
}

// This is technically doable in C++ with atomic_ref
// but little literature exists atm on its involvement
// in mixed size/atomicity accesses
fn from_mut_split() {
    let mut x: u32 = 0;

    {
        let x_atomic = AtomicU32::from_mut(&mut x);
        x_atomic.store(u32::from_be(0xabbafafa), Relaxed);
    }

    // Split the `AtomicU32` into two `AtomicU16`.
    // Crucially, there is no non-atomic access to `x`! All accesses are atomic, but of different size.
    let (x_hi, x_lo) = split_u32(&mut x).split_at_mut(1);

    let x_hi_atomic = AtomicU16::from_mut(&mut x_hi[0]);
    let x_lo_atomic = AtomicU16::from_mut(&mut x_lo[0]);

    assert_eq!(x_hi_atomic.load(Relaxed), u16::from_be(0xabba));
    assert_eq!(x_lo_atomic.load(Relaxed), u16::from_be(0xfafa));
}

pub fn main() {
    get_mut_write();
    from_mut_split();
    assign_to_mut();
    mem_replace();
}