路障宏包含:
mb()/rmb()/wmb
barrier()
__asm__:GCC关键字,用来声明一个内联汇编表达式。
__volatile__:告诉编译器,不要优化后面表达式中的内联汇编代码。
内联汇编表达式中的(“memory”):告诉GCC如下两个条件
If your assembler instructions access memory in an unpredictable fashion, add `memory' to the list of clobbered registers. This will cause GCC to not keep memory values cached in registers across the assembler instruction and not optimize stores or loads to that memory.
1.缓存的数据都将无效。
2.不要优化存储或加载到内存的指令。
参考:gcc - difference in mfence and asm volatile ("" : : : "memory") - Stack Overflow