What are _mm_prefetch() locality hints?
Sometimes intrinsics are better understood in terms of the instruction they represent rather than as the abstract semantic given in their descriptions. The full set of the locality constants, as today, is #define _MM_HINT_T0 1 #define _MM_HINT_T1 2 #define _MM_HINT_T2 3 #define _MM_HINT_NTA 0 #define _MM_HINT_ENTA 4 #define _MM_HINT_ET0 5 #define _MM_HINT_ET1 6 #define _MM_HINT_ET2 … Read more