aboutsummaryrefslogtreecommitdiff
path: root/C/LzFindOpt.c
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /C/LzFindOpt.c
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-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.c14
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
22021-07-13 : Igor Pavlov : Public domain */ 22023-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/*
44MY_NO_INLINE 44Z7_NO_INLINE
45UInt32 * MY_FAST_CALL GetMatchesSpecN_1(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, 45UInt32 * 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
217UInt32 * MY_FAST_CALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, 217UInt32 * 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
222MY_NO_INLINE 222Z7_NO_INLINE
223UInt32 * MY_FAST_CALL GetMatchesSpecN_2(const Byte *lenLimit, size_t pos, const Byte *cur, CLzRef *son, 223UInt32 * 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/*
405typedef UInt32 uint32plus; // size_t 405typedef UInt32 uint32plus; // size_t
406 406
407UInt32 * MY_FAST_CALL GetMatchesSpecN_3(uint32plus lenLimit, size_t pos, const Byte *cur, CLzRef *son, 407UInt32 * 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)