]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/compiler.h
Update bcachefs sources to b91a514413 bcachefs: Don't try to delete stripes when RO
[bcachefs-tools-debian] / include / linux / compiler.h
1 #ifndef _TOOLS_LINUX_COMPILER_H_
2 #define _TOOLS_LINUX_COMPILER_H_
3
4 /* Optimization barrier */
5 /* The "volatile" is due to gcc bugs */
6 #define barrier() __asm__ __volatile__("": : :"memory")
7 #define barrier_data(ptr) __asm__ __volatile__("": :"r"(ptr) :"memory")
8
9 #ifndef __always_inline
10 # define __always_inline        inline __attribute__((always_inline))
11 #endif
12
13 #ifdef __ANDROID__
14 /*
15  * FIXME: Big hammer to get rid of tons of:
16  *   "warning: always_inline function might not be inlinable"
17  *
18  * At least on android-ndk-r12/platforms/android-24/arch-arm
19  */
20 #undef __always_inline
21 #define __always_inline inline
22 #endif
23
24 #define noinline
25 #define noinline_for_stack noinline
26
27 #define __user
28 #define __kernel
29
30 #define __pure                  __attribute__((pure))
31 #define __aligned(x)            __attribute__((aligned(x)))
32 #define __printf(a, b)          __attribute__((format(printf, a, b)))
33 #define __used                  __attribute__((__used__))
34 #define __maybe_unused          __attribute__((unused))
35 #define __always_unused         __attribute__((unused))
36 #define __packed                __attribute__((__packed__))
37 #define __flatten               __attribute__((flatten))
38 #define __force
39 #define __nocast
40 #define __iomem
41 #define __chk_user_ptr(x) (void)0
42 #define __chk_io_ptr(x) (void)0
43 #define __builtin_warning(x, y...) (1)
44 #define __must_hold(x)
45 #define __acquires(x)
46 #define __releases(x)
47 #define __acquire(x) (void)0
48 #define __release(x) (void)0
49 #define __cond_lock(x,c) (c)
50 #define __percpu
51 #define __rcu
52 #define __sched
53 #define __init
54 #define __exit
55 #define __private
56 #define __must_check
57 #define __malloc
58 #define __weak                  __attribute__((weak))
59 #define likely(x)               __builtin_expect(!!(x), 1)
60 #define unlikely(x)             __builtin_expect(!!(x), 0)
61 #define unreachable()           __builtin_unreachable()
62 #define __same_type(a, b)       __builtin_types_compatible_p(typeof(a), typeof(b))
63
64 #define ___PASTE(a,b) a##b
65 #define __PASTE(a,b) ___PASTE(a,b)
66 #define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__)
67
68 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x))
69
70 #define __initcall(x)   /* unimplemented */
71 #define __exitcall(x)   /* unimplemented */
72
73 #include <linux/types.h>
74
75 /*
76  * Following functions are taken from kernel sources and
77  * break aliasing rules in their original form.
78  *
79  * While kernel is compiled with -fno-strict-aliasing,
80  * perf uses -Wstrict-aliasing=3 which makes build fail
81  * under gcc 4.4.
82  *
83  * Using extra __may_alias__ type to allow aliasing
84  * in this case.
85  */
86 typedef __u8  __attribute__((__may_alias__))  __u8_alias_t;
87 typedef __u16 __attribute__((__may_alias__)) __u16_alias_t;
88 typedef __u32 __attribute__((__may_alias__)) __u32_alias_t;
89 typedef __u64 __attribute__((__may_alias__)) __u64_alias_t;
90
91 static __always_inline void __read_once_size(const volatile void *p, void *res, int size)
92 {
93         switch (size) {
94         case 1: *(__u8_alias_t  *) res = *(volatile __u8_alias_t  *) p; break;
95         case 2: *(__u16_alias_t *) res = *(volatile __u16_alias_t *) p; break;
96         case 4: *(__u32_alias_t *) res = *(volatile __u32_alias_t *) p; break;
97         case 8: *(__u64_alias_t *) res = *(volatile __u64_alias_t *) p; break;
98         default:
99                 barrier();
100                 __builtin_memcpy((void *)res, (const void *)p, size);
101                 barrier();
102         }
103 }
104
105 static __always_inline void __write_once_size(volatile void *p, void *res, int size)
106 {
107         switch (size) {
108         case 1: *(volatile  __u8_alias_t *) p = *(__u8_alias_t  *) res; break;
109         case 2: *(volatile __u16_alias_t *) p = *(__u16_alias_t *) res; break;
110         case 4: *(volatile __u32_alias_t *) p = *(__u32_alias_t *) res; break;
111         case 8: *(volatile __u64_alias_t *) p = *(__u64_alias_t *) res; break;
112         default:
113                 barrier();
114                 __builtin_memcpy((void *)p, (const void *)res, size);
115                 barrier();
116         }
117 }
118
119 /*
120  * Prevent the compiler from merging or refetching reads or writes. The
121  * compiler is also forbidden from reordering successive instances of
122  * READ_ONCE, WRITE_ONCE and ACCESS_ONCE (see below), but only when the
123  * compiler is aware of some particular ordering.  One way to make the
124  * compiler aware of ordering is to put the two invocations of READ_ONCE,
125  * WRITE_ONCE or ACCESS_ONCE() in different C statements.
126  *
127  * In contrast to ACCESS_ONCE these two macros will also work on aggregate
128  * data types like structs or unions. If the size of the accessed data
129  * type exceeds the word size of the machine (e.g., 32 bits or 64 bits)
130  * READ_ONCE() and WRITE_ONCE()  will fall back to memcpy and print a
131  * compile-time warning.
132  *
133  * Their two major use cases are: (1) Mediating communication between
134  * process-level code and irq/NMI handlers, all running on the same CPU,
135  * and (2) Ensuring that the compiler does not  fold, spindle, or otherwise
136  * mutilate accesses that either do not require ordering or that interact
137  * with an explicit memory barrier or atomic instruction that provides the
138  * required ordering.
139  */
140
141 #define READ_ONCE(x) \
142         ({ union { typeof(x) __val; char __c[1]; } __u; __read_once_size(&(x), __u.__c, sizeof(x)); __u.__val; })
143
144 #define WRITE_ONCE(x, val) \
145         ({ union { typeof(x) __val; char __c[1]; } __u = { .__val = (val) }; __write_once_size(&(x), __u.__c, sizeof(x)); __u.__val; })
146
147 #define lockless_dereference(p) \
148 ({ \
149         typeof(p) _________p1 = READ_ONCE(p); \
150         typeof(*(p)) *___typecheck_p __maybe_unused; \
151         smp_read_barrier_depends(); /* Dependency order vs. p above. */ \
152         (_________p1); \
153 })
154
155 #define flush_cache_all()                       do { } while (0)
156 #define flush_cache_mm(mm)                      do { } while (0)
157 #define flush_cache_dup_mm(mm)                  do { } while (0)
158 #define flush_cache_range(vma, start, end)      do { } while (0)
159 #define flush_cache_page(vma, vmaddr, pfn)      do { } while (0)
160 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
161 #define flush_dcache_page(page)                 do { } while (0)
162 #define flush_dcache_mmap_lock(mapping)         do { } while (0)
163 #define flush_dcache_mmap_unlock(mapping)       do { } while (0)
164 #define flush_icache_range(start, end)          do { } while (0)
165 #define flush_icache_page(vma,pg)               do { } while (0)
166 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
167 #define flush_cache_vmap(start, end)            do { } while (0)
168 #define flush_cache_vunmap(start, end)          do { } while (0)
169
170 #ifdef __x86_64
171 #define CONFIG_X86_64   y
172 #endif
173
174 #endif /* _TOOLS_LINUX_COMPILER_H */