diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /C/LzFindOpt.c | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to 'C/LzFindOpt.c')
-rw-r--r-- | C/LzFindOpt.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/C/LzFindOpt.c b/C/LzFindOpt.c index 8ff006e..85bdc13 100644 --- a/C/LzFindOpt.c +++ b/C/LzFindOpt.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* LzFindOpt.c -- multithreaded Match finder for LZ algorithms | 1 | /* LzFindOpt.c -- multithreaded Match finder for LZ algorithms |
2 | 2021-07-13 : Igor Pavlov : Public domain */ | 2 | 2023-04-02 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
@@ -41,8 +41,8 @@ UInt64 g_NumIters_Bytes; | |||
41 | // #define CYC_TO_POS_OFFSET 1 // for debug | 41 | // #define CYC_TO_POS_OFFSET 1 // for debug |
42 | 42 | ||
43 | /* | 43 | /* |
44 | MY_NO_INLINE | 44 | Z7_NO_INLINE |
45 | UInt32 * MY_FAST_CALL GetMatchesSpecN_1(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, | 45 | UInt32 * Z7_FASTCALL GetMatchesSpecN_1(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, |
46 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, UInt32 *posRes) | 46 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, UInt32 *posRes) |
47 | { | 47 | { |
48 | do | 48 | do |
@@ -214,13 +214,13 @@ else | |||
214 | to eliminate "movsx" BUG in old MSVC x64 compiler. | 214 | to eliminate "movsx" BUG in old MSVC x64 compiler. |
215 | */ | 215 | */ |
216 | 216 | ||
217 | UInt32 * MY_FAST_CALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, | 217 | UInt32 * Z7_FASTCALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, |
218 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, | 218 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, |
219 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, | 219 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, |
220 | UInt32 *posRes); | 220 | UInt32 *posRes); |
221 | 221 | ||
222 | MY_NO_INLINE | 222 | Z7_NO_INLINE |
223 | UInt32 * MY_FAST_CALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, | 223 | UInt32 * Z7_FASTCALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, |
224 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, | 224 | UInt32 _cutValue, UInt32 *d, size_t _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, |
225 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, | 225 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, |
226 | UInt32 *posRes) | 226 | UInt32 *posRes) |
@@ -404,7 +404,7 @@ else | |||
404 | /* | 404 | /* |
405 | typedef UInt32 uint32plus; // size_t | 405 | typedef UInt32 uint32plus; // size_t |
406 | 406 | ||
407 | UInt32 * MY_FAST_CALL GetMatchesSpecN_3(uint32plus lenLimit, size_t pos, const Byte *cur, CLzRef *son, | 407 | UInt32 * Z7_FASTCALL GetMatchesSpecN_3(uint32plus lenLimit, size_t pos, const Byte *cur, CLzRef *son, |
408 | UInt32 _cutValue, UInt32 *d, uint32plus _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, | 408 | UInt32 _cutValue, UInt32 *d, uint32plus _maxLen, const UInt32 *hash, const UInt32 *limit, const UInt32 *size, |
409 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, | 409 | size_t _cyclicBufferPos, UInt32 _cyclicBufferSize, |
410 | UInt32 *posRes) | 410 | UInt32 *posRes) |