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
81
//! Raw x86_64 hardware transactional memory primitives.

#[inline]
fn unsupported() -> ! {
    panic!("target CPU does not support hardware transactional memory")
}

#[derive(PartialEq, Eq, Ord, PartialOrd, Copy, Clone, Debug, Hash)]
pub(super) struct BeginCode(i8);

impl BeginCode {
    #[inline]
    pub fn is_started(&self) -> bool {
        unsupported()
    }

    #[inline]
    pub fn is_explicit_abort(&self) -> bool {
        unsupported()
    }

    #[inline]
    pub fn is_retry(&self) -> bool {
        unsupported()
    }

    #[inline]
    pub fn is_conflict(&self) -> bool {
        unsupported()
    }

    #[inline]
    pub fn is_capacity(&self) -> bool {
        unsupported()
    }
}

#[derive(PartialEq, Eq, Ord, PartialOrd, Copy, Clone, Debug, Hash)]
pub(super) struct TestCode(i8);

impl TestCode {
    #[inline]
    pub fn in_transaction(&self) -> bool {
        false
    }

    #[inline]
    pub fn is_suspended(&self) -> bool {
        false
    }
}

#[inline]
pub(super) unsafe fn begin() -> BeginCode {
    unsupported()
}

#[inline]
pub(super) unsafe fn abort() -> ! {
    unsupported()
}

#[inline]
pub(super) unsafe fn test() -> TestCode {
    unsupported()
}

#[inline]
pub(super) unsafe fn end() {
    unsupported()
}

#[inline]
pub(super) const fn htm_supported() -> bool {
    false
}

#[inline]
pub(super) const fn htm_supported_runtime() -> bool {
    false
}