arm64的prefetch/prefetchw/spin_lock_prefetch
prefetch 用于手工执行预抓取,其是通过gcc内置的函数,arm64 则是自己通过汇编实现的,主要用于提升性能prefetch定义在incude/linux/prefetch.h中#ifndef ARCH_HAS_PREFETCH#define prefetch(x) __builtin_prefetch(x)#endif#ifndef ARCH_HAS_PREFET