]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/compiler.h
6d039ea376df93743bd0e488a66b07dd1bfd0ba5
[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 #define fallthrough             __attribute__((__fallthrough__))
64
65 #define ___PASTE(a,b) a##b
66 #define __PASTE(a,b) ___PASTE(a,b)
67 #define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__)
68
69 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x))
70
71 #define __initcall(x)   /* unimplemented */
72 #define __exitcall(x)   /* unimplemented */
73
74 #include <linux/types.h>
75
76 /*
77  * Following functions are taken from kernel sources and
78  * break aliasing rules in their original form.
79  *
80  * While kernel is compiled with -fno-strict-aliasing,
81  * perf uses -Wstrict-aliasing=3 which makes build fail
82  * under gcc 4.4.
83  *
84  * Using extra __may_alias__ type to allow aliasing
85  * in this case.
86  */
87 typedef __u8  __attribute__((__may_alias__))  __u8_alias_t;
88 typedef __u16 __attribute__((__may_alias__)) __u16_alias_t;
89 typedef __u32 __attribute__((__may_alias__)) __u32_alias_t;
90 typedef __u64 __attribute__((__may_alias__)) __u64_alias_t;
91
92 static __always_inline void __read_once_size(const volatile void *p, void *res, int size)
93 {
94         switch (size) {
95         case 1: *(__u8_alias_t  *) res = *(volatile __u8_alias_t  *) p; break;
96         case 2: *(__u16_alias_t *) res = *(volatile __u16_alias_t *) p; break;
97         case 4: *(__u32_alias_t *) res = *(volatile __u32_alias_t *) p; break;
98         case 8: *(__u64_alias_t *) res = *(volatile __u64_alias_t *) p; break;
99         default:
100                 barrier();
101                 __builtin_memcpy((void *)res, (const void *)p, size);
102                 barrier();
103         }
104 }
105
106 static __always_inline void __write_once_size(volatile void *p, void *res, int size)
107 {
108         switch (size) {
109         case 1: *(volatile  __u8_alias_t *) p = *(__u8_alias_t  *) res; break;
110         case 2: *(volatile __u16_alias_t *) p = *(__u16_alias_t *) res; break;
111         case 4: *(volatile __u32_alias_t *) p = *(__u32_alias_t *) res; break;
112         case 8: *(volatile __u64_alias_t *) p = *(__u64_alias_t *) res; break;
113         default:
114                 barrier();
115                 __builtin_memcpy((void *)p, (const void *)res, size);
116                 barrier();
117         }
118 }
119
120 /*
121  * Prevent the compiler from merging or refetching reads or writes. The
122  * compiler is also forbidden from reordering successive instances of
123  * READ_ONCE, WRITE_ONCE and ACCESS_ONCE (see below), but only when the
124  * compiler is aware of some particular ordering.  One way to make the
125  * compiler aware of ordering is to put the two invocations of READ_ONCE,
126  * WRITE_ONCE or ACCESS_ONCE() in different C statements.
127  *
128  * In contrast to ACCESS_ONCE these two macros will also work on aggregate
129  * data types like structs or unions. If the size of the accessed data
130  * type exceeds the word size of the machine (e.g., 32 bits or 64 bits)
131  * READ_ONCE() and WRITE_ONCE()  will fall back to memcpy and print a
132  * compile-time warning.
133  *
134  * Their two major use cases are: (1) Mediating communication between
135  * process-level code and irq/NMI handlers, all running on the same CPU,
136  * and (2) Ensuring that the compiler does not  fold, spindle, or otherwise
137  * mutilate accesses that either do not require ordering or that interact
138  * with an explicit memory barrier or atomic instruction that provides the
139  * required ordering.
140  */
141
142 #define READ_ONCE(x) \
143         ({ union { typeof(x) __val; char __c[1]; } __u; __read_once_size(&(x), __u.__c, sizeof(x)); __u.__val; })
144
145 #define WRITE_ONCE(x, val) \
146         ({ union { typeof(x) __val; char __c[1]; } __u = { .__val = (val) }; __write_once_size(&(x), __u.__c, sizeof(x)); __u.__val; })
147
148 #define lockless_dereference(p) \
149 ({ \
150         typeof(p) _________p1 = READ_ONCE(p); \
151         typeof(*(p)) *___typecheck_p __maybe_unused; \
152         smp_read_barrier_depends(); /* Dependency order vs. p above. */ \
153         (_________p1); \
154 })
155
156 #define flush_cache_all()                       do { } while (0)
157 #define flush_cache_mm(mm)                      do { } while (0)
158 #define flush_cache_dup_mm(mm)                  do { } while (0)
159 #define flush_cache_range(vma, start, end)      do { } while (0)
160 #define flush_cache_page(vma, vmaddr, pfn)      do { } while (0)
161 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
162 #define flush_dcache_page(page)                 do { } while (0)
163 #define flush_dcache_mmap_lock(mapping)         do { } while (0)
164 #define flush_dcache_mmap_unlock(mapping)       do { } while (0)
165 #define flush_icache_range(start, end)          do { } while (0)
166 #define flush_icache_page(vma,pg)               do { } while (0)
167 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
168 #define flush_cache_vmap(start, end)            do { } while (0)
169 #define flush_cache_vunmap(start, end)          do { } while (0)
170
171 #ifdef __x86_64
172 #define CONFIG_X86_64   y
173 #endif
174
175 #endif /* _TOOLS_LINUX_COMPILER_H */