summaryrefslogtreecommitdiff
path: root/arch/x86/machine/atomic.h
blob: 711b38caaacd15bd11a9e8b6363a475a23f615cf (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
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright (c) 2012-2018 Richard Braun.
 * Copyright (c) 2017 Agustina Arzille.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *
 * Architecture-specific definitions for atomic operations.
 */

#ifndef X86_ATOMIC_H
#define X86_ATOMIC_H

#ifndef KERN_ATOMIC_H
#error "don't include <machine/atomic.h> directly, use <kern/atomic.h> instead"
#endif

#include <stdbool.h>

#include <kern/atomic_types.h>
#include <kern/macros.h>

#ifdef __LP64__

/* Report that 64-bits operations are supported */
#define ATOMIC_HAVE_64B_OPS

#else /* __LP64__ */

/*
 * XXX Clang doesn't provide any __atomic_xxx_8 functions on i386.
 */
#ifndef __clang__

/* Report that 64-bits operations are supported */
#define ATOMIC_HAVE_64B_OPS

/*
 * On i386, GCC generates either an FP-stack read/write, or an SSE2
 * store/load to implement these 64-bit atomic operations. Since that's not
 * feasible in the kernel, fall back to cmpxchg8b.
 *
 * XXX Note that, in this case, loading becomes a potentially mutating
 * operation, but it's not expected to be a problem since atomic operations
 * are normally not used on read-only memory.
 *
 * Also note that this assumes the processor is at least an i586.
 */

static inline unsigned long long
atomic_i386_load_64(union atomic_constptr_64 ptr, int memorder)
{
    unsigned long long prev;

    prev = 0;
    __atomic_compare_exchange_n((unsigned long long *)(ptr.ull_ptr),
                                &prev, 0, false, memorder, __ATOMIC_RELAXED);
    return prev;
}
#define atomic_load_64 atomic_i386_load_64

static inline void
atomic_i386_store_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
                     int memorder)
{
    unsigned long long prev;
    bool done;

    prev = *ptr.ull_ptr;

    do {
        done = __atomic_compare_exchange_n(ptr.ull_ptr, &prev, val.ull,
                                           false, memorder, __ATOMIC_RELAXED);
    } while (!done);
}
#define atomic_store_64 atomic_i386_store_64

#endif /* __clang__ */

#endif /* __LP64__ */

#endif /* X86_ATOMIC_H */