Lines Matching refs:code
46 Note well that many of these primitives generate absolutely no code
91 1. All code that executed prior to the RMW atomic operation.
95 3. All code that executed after the RMW atomic operation.
149 The smp_mb__after_atomic() primitive emits code only on CPUs whose
167 It is bad practice to place code between the smp__*() primitive and the
169 ordering of this intervening code will differ from one CPU architecture
177 the following code:
209 the following code:
223 prohibits compiler code-motion optimizations that might move memory
224 references across the point in the code containing the barrier(), but
226 used to prevent to compiler from moving code across an infinite loop:
234 WRITE_ONCE() to follow the loop. This code motion could be problematic
509 concurrent code. It is possible to used unmarked C-language accesses for
514 C-language accesses requires careful attention to not just your code,