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/BwtSort.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/BwtSort.c')
-rw-r--r-- | C/BwtSort.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/C/BwtSort.c b/C/BwtSort.c index 3eb57ef..05ad6de 100644 --- a/C/BwtSort.c +++ b/C/BwtSort.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* BwtSort.c -- BWT block sorting | 1 | /* BwtSort.c -- BWT block sorting |
2 | 2021-04-01 : Igor Pavlov : Public domain */ | 2 | 2023-04-02 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #include "Precomp.h" | 4 | #include "Precomp.h" |
5 | 5 | ||
@@ -8,8 +8,6 @@ | |||
8 | 8 | ||
9 | /* #define BLOCK_SORT_USE_HEAP_SORT */ | 9 | /* #define BLOCK_SORT_USE_HEAP_SORT */ |
10 | 10 | ||
11 | #define NO_INLINE MY_FAST_CALL | ||
12 | |||
13 | /* Don't change it !!! */ | 11 | /* Don't change it !!! */ |
14 | #define kNumHashBytes 2 | 12 | #define kNumHashBytes 2 |
15 | #define kNumHashValues (1 << (kNumHashBytes * 8)) | 13 | #define kNumHashValues (1 << (kNumHashBytes * 8)) |
@@ -60,7 +58,10 @@ SortGroup - is recursive Range-Sort function with HeapSort optimization for smal | |||
60 | returns: 1 - if there are groups, 0 - no more groups | 58 | returns: 1 - if there are groups, 0 - no more groups |
61 | */ | 59 | */ |
62 | 60 | ||
63 | static UInt32 NO_INLINE SortGroup(UInt32 BlockSize, UInt32 NumSortedBytes, UInt32 groupOffset, UInt32 groupSize, int NumRefBits, UInt32 *Indices | 61 | static |
62 | UInt32 | ||
63 | Z7_FASTCALL | ||
64 | SortGroup(UInt32 BlockSize, UInt32 NumSortedBytes, UInt32 groupOffset, UInt32 groupSize, int NumRefBits, UInt32 *Indices | ||
64 | #ifndef BLOCK_SORT_USE_HEAP_SORT | 65 | #ifndef BLOCK_SORT_USE_HEAP_SORT |
65 | , UInt32 left, UInt32 range | 66 | , UInt32 left, UInt32 range |
66 | #endif | 67 | #endif |
@@ -72,7 +73,7 @@ static UInt32 NO_INLINE SortGroup(UInt32 BlockSize, UInt32 NumSortedBytes, UInt3 | |||
72 | { | 73 | { |
73 | /* | 74 | /* |
74 | #ifndef BLOCK_SORT_EXTERNAL_FLAGS | 75 | #ifndef BLOCK_SORT_EXTERNAL_FLAGS |
75 | SetFinishedGroupSize(ind2, 1); | 76 | SetFinishedGroupSize(ind2, 1) |
76 | #endif | 77 | #endif |
77 | */ | 78 | */ |
78 | return 0; | 79 | return 0; |
@@ -463,7 +464,7 @@ UInt32 BlockSort(UInt32 *Indices, const Byte *data, UInt32 blockSize) | |||
463 | Indices[(size_t)(i - finishedGroupSize) + 1] &= kIndexMask; | 464 | Indices[(size_t)(i - finishedGroupSize) + 1] &= kIndexMask; |
464 | { | 465 | { |
465 | UInt32 newGroupSize = groupSize + finishedGroupSize; | 466 | UInt32 newGroupSize = groupSize + finishedGroupSize; |
466 | SetFinishedGroupSize(Indices + i - finishedGroupSize, newGroupSize); | 467 | SetFinishedGroupSize(Indices + i - finishedGroupSize, newGroupSize) |
467 | finishedGroupSize = newGroupSize; | 468 | finishedGroupSize = newGroupSize; |
468 | } | 469 | } |
469 | i += groupSize; | 470 | i += groupSize; |