| 1351 | |
| 1352 | #if defined(__i386__) || defined(__amd64__) |
| 1353 | static __inline void |
| 1354 | prefetch(void *x) |
| 1355 | { |
| 1356 | __asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x)); |
| 1357 | } |
| 1358 | static __inline void |
| 1359 | prefetch2cachelines(void *x) |
| 1360 | { |
no outgoing calls
no test coverage detected