Merge pull request #2040 from caoyzh/dev-2

Optimize by prefetching on aarch64
This commit is contained in:
Nick Terrell
2020-04-08 13:14:47 -07:00
committed by GitHub
3 changed files with 11 additions and 0 deletions
+3
View File
@@ -198,6 +198,9 @@ size_t ZSTD_compressBlock_doubleFast_generic(
} }
ip += ((ip-anchor) >> kSearchStrength) + 1;
#if defined(__aarch64__)
PREFETCH_L1(ip+256);
#endif
continue;
_search_next_long: