| 74 | #define bsrq(mask) (__builtin_clzl(mask) ^ 0x3f) |
| 75 | |
| 76 | static __inline void |
| 77 | clflush(u_long addr) |
| 78 | { |
| 79 | |
| 80 | __asm __volatile("clflush %0" : : "m" (*(char *)addr)); |
| 81 | } |
| 82 | |
| 83 | static __inline void |
| 84 | clflushopt(u_long addr) |
no outgoing calls
no test coverage detected