Coverage Report

Created: 2025-08-26 06:33

/src/lzma-fuzz/sdk/C/LzmaEnc.c
Line
Count
Source (jump to first uncovered line)
1
/* LzmaEnc.c -- LZMA Encoder
2
2019-01-10: Igor Pavlov : Public domain */
3
4
#include "Precomp.h"
5
6
#include <string.h>
7
8
/* #define SHOW_STAT */
9
/* #define SHOW_STAT2 */
10
11
#if defined(SHOW_STAT) || defined(SHOW_STAT2)
12
#include <stdio.h>
13
#endif
14
15
#include "LzmaEnc.h"
16
17
#include "LzFind.h"
18
#ifndef _7ZIP_ST
19
#include "LzFindMt.h"
20
#endif
21
22
#ifdef SHOW_STAT
23
static unsigned g_STAT_OFFSET = 0;
24
#endif
25
26
15.9k
#define kLzmaMaxHistorySize ((UInt32)3 << 29)
27
/* #define kLzmaMaxHistorySize ((UInt32)7 << 29) */
28
29
89.2M
#define kNumTopBits 24
30
89.2M
#define kTopValue ((UInt32)1 << kNumTopBits)
31
32
442M
#define kNumBitModelTotalBits 11
33
352M
#define kBitModelTotal (1 << kNumBitModelTotalBits)
34
239M
#define kNumMoveBits 5
35
149M
#define kProbInitValue (kBitModelTotal >> 1)
36
37
145M
#define kNumMoveReducingBits 4
38
2.89M
#define kNumBitPriceShiftBits 4
39
#define kBitPrice (1 << kNumBitPriceShiftBits)
40
41
27.0k
#define REP_LEN_COUNT 64
42
43
void LzmaEncProps_Init(CLzmaEncProps *p)
44
23.9k
{
45
23.9k
  p->level = 5;
46
23.9k
  p->dictSize = p->mc = 0;
47
23.9k
  p->reduceSize = (UInt64)(Int64)-1;
48
23.9k
  p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1;
49
23.9k
  p->writeEndMark = 0;
50
23.9k
}
51
52
void LzmaEncProps_Normalize(CLzmaEncProps *p)
53
79.8k
{
54
79.8k
  int level = p->level;
55
79.8k
  if (level < 0) level = 5;
56
79.8k
  p->level = level;
57
  
58
79.8k
  if (p->dictSize == 0) p->dictSize = (level <= 5 ? (1 << (level * 2 + 14)) : (level <= 7 ? (1 << 25) : (1 << 26)));
59
79.8k
  if (p->dictSize > p->reduceSize)
60
0
  {
61
0
    unsigned i;
62
0
    UInt32 reduceSize = (UInt32)p->reduceSize;
63
0
    for (i = 11; i <= 30; i++)
64
0
    {
65
0
      if (reduceSize <= ((UInt32)2 << i)) { p->dictSize = ((UInt32)2 << i); break; }
66
0
      if (reduceSize <= ((UInt32)3 << i)) { p->dictSize = ((UInt32)3 << i); break; }
67
0
    }
68
0
  }
69
70
79.8k
  if (p->lc < 0) p->lc = 3;
71
79.8k
  if (p->lp < 0) p->lp = 0;
72
79.8k
  if (p->pb < 0) p->pb = 2;
73
74
79.8k
  if (p->algo < 0) p->algo = (level < 5 ? 0 : 1);
75
79.8k
  if (p->fb < 0) p->fb = (level < 7 ? 32 : 64);
76
79.8k
  if (p->btMode < 0) p->btMode = (p->algo == 0 ? 0 : 1);
77
79.8k
  if (p->numHashBytes < 0) p->numHashBytes = 4;
78
79.8k
  if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1);
79
  
80
79.8k
  if (p->numThreads < 0)
81
39.9k
    p->numThreads =
82
      #ifndef _7ZIP_ST
83
      ((p->btMode && p->algo) ? 2 : 1);
84
      #else
85
39.9k
      1;
86
79.8k
      #endif
87
79.8k
}
88
89
UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2)
90
7.97k
{
91
7.97k
  CLzmaEncProps props = *props2;
92
7.97k
  LzmaEncProps_Normalize(&props);
93
7.97k
  return props.dictSize;
94
7.97k
}
95
96
#if (_MSC_VER >= 1400)
97
/* BSR code is fast for some new CPUs */
98
/* #define LZMA_LOG_BSR */
99
#endif
100
101
#ifdef LZMA_LOG_BSR
102
103
#define kDicLogSizeMaxCompress 32
104
105
#define BSR2_RET(pos, res) { unsigned long zz; _BitScanReverse(&zz, (pos)); res = (zz + zz) + ((pos >> (zz - 1)) & 1); }
106
107
static unsigned GetPosSlot1(UInt32 pos)
108
{
109
  unsigned res;
110
  BSR2_RET(pos, res);
111
  return res;
112
}
113
#define GetPosSlot2(pos, res) { BSR2_RET(pos, res); }
114
#define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res); }
115
116
#else
117
118
4.21M
#define kNumLogBits (9 + sizeof(size_t) / 2)
119
/* #define kNumLogBits (11 + sizeof(size_t) / 8 * 3) */
120
121
15.9k
#define kDicLogSizeMaxCompress ((kNumLogBits - 1) * 2 + 7)
122
123
static void LzmaEnc_FastPosInit(Byte *g_FastPos)
124
7.97k
{
125
7.97k
  unsigned slot;
126
7.97k
  g_FastPos[0] = 0;
127
7.97k
  g_FastPos[1] = 1;
128
7.97k
  g_FastPos += 2;
129
  
130
199k
  for (slot = 2; slot < kNumLogBits * 2; slot++)
131
191k
  {
132
191k
    size_t k = ((size_t)1 << ((slot >> 1) - 1));
133
191k
    size_t j;
134
65.5M
    for (j = 0; j < k; j++)
135
65.3M
      g_FastPos[j] = (Byte)slot;
136
191k
    g_FastPos += k;
137
191k
  }
138
7.97k
}
139
140
/* we can use ((limit - pos) >> 31) only if (pos < ((UInt32)1 << 31)) */
141
/*
142
#define BSR2_RET(pos, res) { unsigned zz = 6 + ((kNumLogBits - 1) & \
143
  (0 - (((((UInt32)1 << (kNumLogBits + 6)) - 1) - pos) >> 31))); \
144
  res = p->g_FastPos[pos >> zz] + (zz * 2); }
145
*/
146
147
/*
148
#define BSR2_RET(pos, res) { unsigned zz = 6 + ((kNumLogBits - 1) & \
149
  (0 - (((((UInt32)1 << (kNumLogBits)) - 1) - (pos >> 6)) >> 31))); \
150
  res = p->g_FastPos[pos >> zz] + (zz * 2); }
151
*/
152
153
3.99M
#define BSR2_RET(pos, res) { unsigned zz = (pos < (1 << (kNumLogBits + 6))) ? 6 : 6 + kNumLogBits - 1; \
154
3.99M
  res = p->g_FastPos[pos >> zz] + (zz * 2); }
155
156
/*
157
#define BSR2_RET(pos, res) { res = (pos < (1 << (kNumLogBits + 6))) ? \
158
  p->g_FastPos[pos >> 6] + 12 : \
159
  p->g_FastPos[pos >> (6 + kNumLogBits - 1)] + (6 + (kNumLogBits - 1)) * 2; }
160
*/
161
162
8.08M
#define GetPosSlot1(pos) p->g_FastPos[pos]
163
3.85M
#define GetPosSlot2(pos, res) { BSR2_RET(pos, res); }
164
859k
#define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos & (kNumFullDistances - 1)]; else BSR2_RET(pos, res); }
165
166
#endif
167
168
169
77.6M
#define LZMA_NUM_REPS 4
170
171
typedef UInt16 CState;
172
typedef UInt16 CExtra;
173
174
typedef struct
175
{
176
  UInt32 price;
177
  CState state;
178
  CExtra extra;
179
      // 0   : normal
180
      // 1   : LIT : MATCH
181
      // > 1 : MATCH (extra-1) : LIT : REP0 (len)
182
  UInt32 len;
183
  UInt32 dist;
184
  UInt32 reps[LZMA_NUM_REPS];
185
} COptimal;
186
187
188
// 18.06
189
60.9M
#define kNumOpts (1 << 11)
190
7.75M
#define kPackReserve (kNumOpts * 8)
191
// #define kNumOpts (1 << 12)
192
// #define kPackReserve (1 + kNumOpts * 2)
193
194
27.5M
#define kNumLenToPosStates 4
195
26.0M
#define kNumPosSlotBits 6
196
#define kDicLogSizeMin 0
197
143k
#define kDicLogSizeMax 32
198
#define kDistTableSizeMax (kDicLogSizeMax * 2)
199
200
5.01M
#define kNumAlignBits 4
201
4.60M
#define kAlignTableSize (1 << kNumAlignBits)
202
4.37M
#define kAlignMask (kAlignTableSize - 1)
203
204
885k
#define kStartPosModelIndex 4
205
39.1M
#define kEndPosModelIndex 14
206
39.7M
#define kNumFullDistances (1 << (kEndPosModelIndex >> 1))
207
208
typedef
209
#ifdef _LZMA_PROB32
210
  UInt32
211
#else
212
  UInt16
213
#endif
214
  CLzmaProb;
215
216
12.9M
#define LZMA_PB_MAX 4
217
31.9k
#define LZMA_LC_MAX 8
218
31.9k
#define LZMA_LP_MAX 4
219
220
12.9M
#define LZMA_NUM_PB_STATES_MAX (1 << LZMA_PB_MAX)
221
222
30.0M
#define kLenNumLowBits 3
223
19.1M
#define kLenNumLowSymbols (1 << kLenNumLowBits)
224
29.5M
#define kLenNumHighBits 8
225
25.0M
#define kLenNumHighSymbols (1 << kLenNumHighBits)
226
15.7M
#define kLenNumSymbolsTotal (kLenNumLowSymbols * 2 + kLenNumHighSymbols)
227
228
106M
#define LZMA_MATCH_LEN_MIN 2
229
15.7M
#define LZMA_MATCH_LEN_MAX (LZMA_MATCH_LEN_MIN + kLenNumSymbolsTotal - 1)
230
231
234k
#define kNumStates 12
232
233
234
typedef struct
235
{
236
  CLzmaProb low[LZMA_NUM_PB_STATES_MAX << (kLenNumLowBits + 1)];
237
  CLzmaProb high[kLenNumHighSymbols];
238
} CLenEnc;
239
240
241
typedef struct
242
{
243
  unsigned tableSize;
244
  UInt32 prices[LZMA_NUM_PB_STATES_MAX][kLenNumSymbolsTotal];
245
  // UInt32 prices1[LZMA_NUM_PB_STATES_MAX][kLenNumLowSymbols * 2];
246
  // UInt32 prices2[kLenNumSymbolsTotal];
247
} CLenPriceEnc;
248
249
#define GET_PRICE_LEN(p, posState, len) \
250
89.5M
    ((p)->prices[posState][(size_t)(len) - LZMA_MATCH_LEN_MIN])
251
252
/*
253
#define GET_PRICE_LEN(p, posState, len) \
254
    ((p)->prices2[(size_t)(len) - 2] + ((p)->prices1[posState][((len) - 2) & (kLenNumLowSymbols * 2 - 1)] & (((len) - 2 - kLenNumLowSymbols * 2) >> 9)))
255
*/
256
257
typedef struct
258
{
259
  UInt32 range;
260
  unsigned cache;
261
  UInt64 low;
262
  UInt64 cacheSize;
263
  Byte *buf;
264
  Byte *bufLim;
265
  Byte *bufBase;
266
  ISeqOutStream *outStream;
267
  UInt64 processed;
268
  SRes res;
269
} CRangeEnc;
270
271
272
typedef struct
273
{
274
  CLzmaProb *litProbs;
275
276
  unsigned state;
277
  UInt32 reps[LZMA_NUM_REPS];
278
279
  CLzmaProb posAlignEncoder[1 << kNumAlignBits];
280
  CLzmaProb isRep[kNumStates];
281
  CLzmaProb isRepG0[kNumStates];
282
  CLzmaProb isRepG1[kNumStates];
283
  CLzmaProb isRepG2[kNumStates];
284
  CLzmaProb isMatch[kNumStates][LZMA_NUM_PB_STATES_MAX];
285
  CLzmaProb isRep0Long[kNumStates][LZMA_NUM_PB_STATES_MAX];
286
287
  CLzmaProb posSlotEncoder[kNumLenToPosStates][1 << kNumPosSlotBits];
288
  CLzmaProb posEncoders[kNumFullDistances];
289
  
290
  CLenEnc lenProbs;
291
  CLenEnc repLenProbs;
292
293
} CSaveState;
294
295
296
typedef UInt32 CProbPrice;
297
298
299
typedef struct
300
{
301
  void *matchFinderObj;
302
  IMatchFinder matchFinder;
303
304
  unsigned optCur;
305
  unsigned optEnd;
306
307
  unsigned longestMatchLen;
308
  unsigned numPairs;
309
  UInt32 numAvail;
310
311
  unsigned state;
312
  unsigned numFastBytes;
313
  unsigned additionalOffset;
314
  UInt32 reps[LZMA_NUM_REPS];
315
  unsigned lpMask, pbMask;
316
  CLzmaProb *litProbs;
317
  CRangeEnc rc;
318
319
  UInt32 backRes;
320
321
  unsigned lc, lp, pb;
322
  unsigned lclp;
323
324
  BoolInt fastMode;
325
  BoolInt writeEndMark;
326
  BoolInt finished;
327
  BoolInt multiThread;
328
  BoolInt needInit;
329
  // BoolInt _maxMode;
330
331
  UInt64 nowPos64;
332
  
333
  unsigned matchPriceCount;
334
  // unsigned alignPriceCount;
335
  int repLenEncCounter;
336
337
  unsigned distTableSize;
338
339
  UInt32 dictSize;
340
  SRes result;
341
342
  #ifndef _7ZIP_ST
343
  BoolInt mtMode;
344
  // begin of CMatchFinderMt is used in LZ thread
345
  CMatchFinderMt matchFinderMt;
346
  // end of CMatchFinderMt is used in BT and HASH threads
347
  #endif
348
349
  CMatchFinder matchFinderBase;
350
351
  #ifndef _7ZIP_ST
352
  Byte pad[128];
353
  #endif
354
  
355
  // LZ thread
356
  CProbPrice ProbPrices[kBitModelTotal >> kNumMoveReducingBits];
357
358
  UInt32 matches[LZMA_MATCH_LEN_MAX * 2 + 2 + 1];
359
360
  UInt32 alignPrices[kAlignTableSize];
361
  UInt32 posSlotPrices[kNumLenToPosStates][kDistTableSizeMax];
362
  UInt32 distancesPrices[kNumLenToPosStates][kNumFullDistances];
363
364
  CLzmaProb posAlignEncoder[1 << kNumAlignBits];
365
  CLzmaProb isRep[kNumStates];
366
  CLzmaProb isRepG0[kNumStates];
367
  CLzmaProb isRepG1[kNumStates];
368
  CLzmaProb isRepG2[kNumStates];
369
  CLzmaProb isMatch[kNumStates][LZMA_NUM_PB_STATES_MAX];
370
  CLzmaProb isRep0Long[kNumStates][LZMA_NUM_PB_STATES_MAX];
371
  CLzmaProb posSlotEncoder[kNumLenToPosStates][1 << kNumPosSlotBits];
372
  CLzmaProb posEncoders[kNumFullDistances];
373
  
374
  CLenEnc lenProbs;
375
  CLenEnc repLenProbs;
376
377
  #ifndef LZMA_LOG_BSR
378
  Byte g_FastPos[1 << kNumLogBits];
379
  #endif
380
381
  CLenPriceEnc lenEnc;
382
  CLenPriceEnc repLenEnc;
383
384
  COptimal opt[kNumOpts];
385
386
  CSaveState saveState;
387
388
  #ifndef _7ZIP_ST
389
  Byte pad2[128];
390
  #endif
391
} CLzmaEnc;
392
393
394
395
181k
#define COPY_ARR(dest, src, arr) memcpy(dest->arr, src->arr, sizeof(src->arr));
396
397
void LzmaEnc_SaveState(CLzmaEncHandle pp)
398
16.0k
{
399
16.0k
  CLzmaEnc *p = (CLzmaEnc *)pp;
400
16.0k
  CSaveState *dest = &p->saveState;
401
  
402
16.0k
  dest->state = p->state;
403
  
404
16.0k
  dest->lenProbs = p->lenProbs;
405
16.0k
  dest->repLenProbs = p->repLenProbs;
406
407
16.0k
  COPY_ARR(dest, p, reps);
408
409
16.0k
  COPY_ARR(dest, p, posAlignEncoder);
410
16.0k
  COPY_ARR(dest, p, isRep);
411
16.0k
  COPY_ARR(dest, p, isRepG0);
412
16.0k
  COPY_ARR(dest, p, isRepG1);
413
16.0k
  COPY_ARR(dest, p, isRepG2);
414
16.0k
  COPY_ARR(dest, p, isMatch);
415
16.0k
  COPY_ARR(dest, p, isRep0Long);
416
16.0k
  COPY_ARR(dest, p, posSlotEncoder);
417
16.0k
  COPY_ARR(dest, p, posEncoders);
418
419
16.0k
  memcpy(dest->litProbs, p->litProbs, ((UInt32)0x300 << p->lclp) * sizeof(CLzmaProb));
420
16.0k
}
421
422
423
void LzmaEnc_RestoreState(CLzmaEncHandle pp)
424
2.07k
{
425
2.07k
  CLzmaEnc *dest = (CLzmaEnc *)pp;
426
2.07k
  const CSaveState *p = &dest->saveState;
427
428
2.07k
  dest->state = p->state;
429
430
2.07k
  dest->lenProbs = p->lenProbs;
431
2.07k
  dest->repLenProbs = p->repLenProbs;
432
  
433
2.07k
  COPY_ARR(dest, p, reps);
434
  
435
2.07k
  COPY_ARR(dest, p, posAlignEncoder);
436
2.07k
  COPY_ARR(dest, p, isRep);
437
2.07k
  COPY_ARR(dest, p, isRepG0);
438
2.07k
  COPY_ARR(dest, p, isRepG1);
439
2.07k
  COPY_ARR(dest, p, isRepG2);
440
2.07k
  COPY_ARR(dest, p, isMatch);
441
2.07k
  COPY_ARR(dest, p, isRep0Long);
442
2.07k
  COPY_ARR(dest, p, posSlotEncoder);
443
2.07k
  COPY_ARR(dest, p, posEncoders);
444
445
2.07k
  memcpy(dest->litProbs, p->litProbs, ((UInt32)0x300 << dest->lclp) * sizeof(CLzmaProb));
446
2.07k
}
447
448
449
450
SRes LzmaEnc_SetProps(CLzmaEncHandle pp, const CLzmaEncProps *props2)
451
15.9k
{
452
15.9k
  CLzmaEnc *p = (CLzmaEnc *)pp;
453
15.9k
  CLzmaEncProps props = *props2;
454
15.9k
  LzmaEncProps_Normalize(&props);
455
456
15.9k
  if (props.lc > LZMA_LC_MAX
457
15.9k
      || props.lp > LZMA_LP_MAX
458
15.9k
      || props.pb > LZMA_PB_MAX
459
15.9k
      || props.dictSize > ((UInt64)1 << kDicLogSizeMaxCompress)
460
15.9k
      || props.dictSize > kLzmaMaxHistorySize)
461
0
    return SZ_ERROR_PARAM;
462
463
15.9k
  p->dictSize = props.dictSize;
464
15.9k
  {
465
15.9k
    unsigned fb = props.fb;
466
15.9k
    if (fb < 5)
467
0
      fb = 5;
468
15.9k
    if (fb > LZMA_MATCH_LEN_MAX)
469
0
      fb = LZMA_MATCH_LEN_MAX;
470
15.9k
    p->numFastBytes = fb;
471
15.9k
  }
472
15.9k
  p->lc = props.lc;
473
15.9k
  p->lp = props.lp;
474
15.9k
  p->pb = props.pb;
475
15.9k
  p->fastMode = (props.algo == 0);
476
  // p->_maxMode = True;
477
15.9k
  p->matchFinderBase.btMode = (Byte)(props.btMode ? 1 : 0);
478
15.9k
  {
479
15.9k
    unsigned numHashBytes = 4;
480
15.9k
    if (props.btMode)
481
14.4k
    {
482
14.4k
      if (props.numHashBytes < 2)
483
0
        numHashBytes = 2;
484
14.4k
      else if (props.numHashBytes < 4)
485
5.11k
        numHashBytes = props.numHashBytes;
486
14.4k
    }
487
15.9k
    p->matchFinderBase.numHashBytes = numHashBytes;
488
15.9k
  }
489
490
15.9k
  p->matchFinderBase.cutValue = props.mc;
491
492
15.9k
  p->writeEndMark = props.writeEndMark;
493
494
  #ifndef _7ZIP_ST
495
  /*
496
  if (newMultiThread != _multiThread)
497
  {
498
    ReleaseMatchFinder();
499
    _multiThread = newMultiThread;
500
  }
501
  */
502
  p->multiThread = (props.numThreads > 1);
503
  #endif
504
505
15.9k
  return SZ_OK;
506
15.9k
}
507
508
509
void LzmaEnc_SetDataSize(CLzmaEncHandle pp, UInt64 expectedDataSiize)
510
7.97k
{
511
7.97k
  CLzmaEnc *p = (CLzmaEnc *)pp;
512
7.97k
  p->matchFinderBase.expectedDataSize = expectedDataSiize;
513
7.97k
}
514
515
516
7.97k
#define kState_Start 0
517
917k
#define kState_LitAfterMatch 4
518
1.85M
#define kState_LitAfterRep   5
519
0
#define kState_MatchAfterLit 7
520
44.8k
#define kState_RepAfterLit   8
521
522
static const Byte kLiteralNextStates[kNumStates] = {0, 0, 0, 0, 1, 2, 3, 4,  5,  6,   4, 5};
523
static const Byte kMatchNextStates[kNumStates]   = {7, 7, 7, 7, 7, 7, 7, 10, 10, 10, 10, 10};
524
static const Byte kRepNextStates[kNumStates]     = {8, 8, 8, 8, 8, 8, 8, 11, 11, 11, 11, 11};
525
static const Byte kShortRepNextStates[kNumStates]= {9, 9, 9, 9, 9, 9, 9, 11, 11, 11, 11, 11};
526
527
14.1M
#define IsLitState(s) ((s) < 7)
528
14.6M
#define GetLenToPosState2(len) (((len) < kNumLenToPosStates - 1) ? (len) : kNumLenToPosStates - 1)
529
1.48M
#define GetLenToPosState(len) (((len) < kNumLenToPosStates + 1) ? (len) - 2 : kNumLenToPosStates - 1)
530
531
50.3M
#define kInfinityPrice (1 << 30)
532
533
static void RangeEnc_Construct(CRangeEnc *p)
534
7.97k
{
535
7.97k
  p->outStream = NULL;
536
7.97k
  p->bufBase = NULL;
537
7.97k
}
538
539
#define RangeEnc_GetProcessed(p)       ((p)->processed + ((p)->buf - (p)->bufBase) + (p)->cacheSize)
540
7.75M
#define RangeEnc_GetProcessed_sizet(p) ((size_t)(p)->processed + ((p)->buf - (p)->bufBase) + (size_t)(p)->cacheSize)
541
542
7.97k
#define RC_BUF_SIZE (1 << 16)
543
544
static int RangeEnc_Alloc(CRangeEnc *p, ISzAllocPtr alloc)
545
7.97k
{
546
7.97k
  if (!p->bufBase)
547
7.97k
  {
548
7.97k
    p->bufBase = (Byte *)ISzAlloc_Alloc(alloc, RC_BUF_SIZE);
549
7.97k
    if (!p->bufBase)
550
0
      return 0;
551
7.97k
    p->bufLim = p->bufBase + RC_BUF_SIZE;
552
7.97k
  }
553
7.97k
  return 1;
554
7.97k
}
555
556
static void RangeEnc_Free(CRangeEnc *p, ISzAllocPtr alloc)
557
7.97k
{
558
7.97k
  ISzAlloc_Free(alloc, p->bufBase);
559
7.97k
  p->bufBase = 0;
560
7.97k
}
561
562
static void RangeEnc_Init(CRangeEnc *p)
563
34.0k
{
564
  /* Stream.Init(); */
565
34.0k
  p->range = 0xFFFFFFFF;
566
34.0k
  p->cache = 0;
567
34.0k
  p->low = 0;
568
34.0k
  p->cacheSize = 0;
569
570
34.0k
  p->buf = p->bufBase;
571
572
34.0k
  p->processed = 0;
573
34.0k
  p->res = SZ_OK;
574
34.0k
}
575
576
MY_NO_INLINE static void RangeEnc_FlushStream(CRangeEnc *p)
577
16.0k
{
578
16.0k
  size_t num;
579
16.0k
  if (p->res != SZ_OK)
580
0
    return;
581
16.0k
  num = p->buf - p->bufBase;
582
16.0k
  if (num != ISeqOutStream_Write(p->outStream, p->bufBase, num))
583
0
    p->res = SZ_ERROR_WRITE;
584
16.0k
  p->processed += num;
585
16.0k
  p->buf = p->bufBase;
586
16.0k
}
587
588
MY_NO_INLINE static void MY_FAST_CALL RangeEnc_ShiftLow(CRangeEnc *p)
589
9.31M
{
590
9.31M
  UInt32 low = (UInt32)p->low;
591
9.31M
  unsigned high = (unsigned)(p->low >> 32);
592
9.31M
  p->low = (UInt32)(low << 8);
593
9.31M
  if (low < (UInt32)0xFF000000 || high != 0)
594
9.28M
  {
595
9.28M
    {
596
9.28M
      Byte *buf = p->buf;
597
9.28M
      *buf++ = (Byte)(p->cache + high);
598
9.28M
      p->cache = (unsigned)(low >> 24);
599
9.28M
      p->buf = buf;
600
9.28M
      if (buf == p->bufLim)
601
0
        RangeEnc_FlushStream(p);
602
9.28M
      if (p->cacheSize == 0)
603
9.24M
        return;
604
9.28M
    }
605
36.9k
    high += 0xFF;
606
36.9k
    for (;;)
607
37.2k
    {
608
37.2k
      Byte *buf = p->buf;
609
37.2k
      *buf++ = (Byte)(high);
610
37.2k
      p->buf = buf;
611
37.2k
      if (buf == p->bufLim)
612
0
        RangeEnc_FlushStream(p);
613
37.2k
      if (--p->cacheSize == 0)
614
36.9k
        return;
615
37.2k
    }
616
36.9k
  }
617
37.2k
  p->cacheSize++;
618
37.2k
}
619
620
static void RangeEnc_FlushData(CRangeEnc *p)
621
16.0k
{
622
16.0k
  int i;
623
96.2k
  for (i = 0; i < 5; i++)
624
80.2k
    RangeEnc_ShiftLow(p);
625
16.0k
}
626
627
89.2M
#define RC_NORM(p) if (range < kTopValue) { range <<= 8; RangeEnc_ShiftLow(p); }
628
629
#define RC_BIT_PRE(p, prob) \
630
88.6M
  ttt = *(prob); \
631
88.6M
  newBound = (range >> kNumBitModelTotalBits) * ttt;
632
633
// #define _LZMA_ENC_USE_BRANCH
634
635
#ifdef _LZMA_ENC_USE_BRANCH
636
637
#define RC_BIT(p, prob, bit) { \
638
  RC_BIT_PRE(p, prob) \
639
  if (bit == 0) { range = newBound; ttt += (kBitModelTotal - ttt) >> kNumMoveBits; } \
640
  else { (p)->low += newBound; range -= newBound; ttt -= ttt >> kNumMoveBits; } \
641
  *(prob) = (CLzmaProb)ttt; \
642
  RC_NORM(p) \
643
  }
644
645
#else
646
647
75.3M
#define RC_BIT(p, prob, bit) { \
648
75.3M
  UInt32 mask; \
649
75.3M
  RC_BIT_PRE(p, prob) \
650
75.3M
  mask = 0 - (UInt32)bit; \
651
75.3M
  range &= mask; \
652
75.3M
  mask &= newBound; \
653
75.3M
  range -= mask; \
654
75.3M
  (p)->low += mask; \
655
75.3M
  mask = (UInt32)bit - 1; \
656
75.3M
  range += newBound & mask; \
657
75.3M
  mask &= (kBitModelTotal - ((1 << kNumMoveBits) - 1)); \
658
75.3M
  mask += ((1 << kNumMoveBits) - 1); \
659
75.3M
  ttt += (Int32)(mask - ttt) >> kNumMoveBits; \
660
75.3M
  *(prob) = (CLzmaProb)ttt; \
661
75.3M
  RC_NORM(p) \
662
75.3M
  }
663
664
#endif
665
666
667
668
669
#define RC_BIT_0_BASE(p, prob) \
670
10.5M
  range = newBound; *(prob) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
671
672
#define RC_BIT_1_BASE(p, prob) \
673
2.69M
  range -= newBound; (p)->low += newBound; *(prob) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits)); \
674
675
#define RC_BIT_0(p, prob) \
676
10.2M
  RC_BIT_0_BASE(p, prob) \
677
10.2M
  RC_NORM(p)
678
679
#define RC_BIT_1(p, prob) \
680
2.52M
  RC_BIT_1_BASE(p, prob) \
681
2.52M
  RC_NORM(p)
682
683
static void RangeEnc_EncodeBit_0(CRangeEnc *p, CLzmaProb *prob)
684
7.97k
{
685
7.97k
  UInt32 range, ttt, newBound;
686
7.97k
  range = p->range;
687
7.97k
  RC_BIT_PRE(p, prob)
688
7.97k
  RC_BIT_0(p, prob)
689
7.97k
  p->range = range;
690
7.97k
}
691
692
static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 sym)
693
7.82M
{
694
7.82M
  UInt32 range = p->range;
695
7.82M
  sym |= 0x100;
696
7.82M
  do
697
62.6M
  {
698
62.6M
    UInt32 ttt, newBound;
699
    // RangeEnc_EncodeBit(p, probs + (sym >> 8), (sym >> 7) & 1);
700
62.6M
    CLzmaProb *prob = probs + (sym >> 8);
701
62.6M
    UInt32 bit = (sym >> 7) & 1;
702
62.6M
    sym <<= 1;
703
62.6M
    RC_BIT(p, prob, bit);
704
62.6M
  }
705
62.6M
  while (sym < 0x10000);
706
7.82M
  p->range = range;
707
7.82M
}
708
709
static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 sym, UInt32 matchByte)
710
321k
{
711
321k
  UInt32 range = p->range;
712
321k
  UInt32 offs = 0x100;
713
321k
  sym |= 0x100;
714
321k
  do
715
2.56M
  {
716
2.56M
    UInt32 ttt, newBound;
717
2.56M
    CLzmaProb *prob;
718
2.56M
    UInt32 bit;
719
2.56M
    matchByte <<= 1;
720
    // RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (sym >> 8)), (sym >> 7) & 1);
721
2.56M
    prob = probs + (offs + (matchByte & offs) + (sym >> 8));
722
2.56M
    bit = (sym >> 7) & 1;
723
2.56M
    sym <<= 1;
724
2.56M
    offs &= ~(matchByte ^ sym);
725
2.56M
    RC_BIT(p, prob, bit);
726
2.56M
  }
727
2.56M
  while (sym < 0x10000);
728
321k
  p->range = range;
729
321k
}
730
731
732
733
static void LzmaEnc_InitPriceTables(CProbPrice *ProbPrices)
734
7.97k
{
735
7.97k
  UInt32 i;
736
1.02M
  for (i = 0; i < (kBitModelTotal >> kNumMoveReducingBits); i++)
737
1.02M
  {
738
1.02M
    const unsigned kCyclesBits = kNumBitPriceShiftBits;
739
1.02M
    UInt32 w = (i << kNumMoveReducingBits) + (1 << (kNumMoveReducingBits - 1));
740
1.02M
    unsigned bitCount = 0;
741
1.02M
    unsigned j;
742
5.10M
    for (j = 0; j < kCyclesBits; j++)
743
4.08M
    {
744
4.08M
      w = w * w;
745
4.08M
      bitCount <<= 1;
746
54.9M
      while (w >= ((UInt32)1 << 16))
747
50.9M
      {
748
50.9M
        w >>= 1;
749
50.9M
        bitCount++;
750
50.9M
      }
751
4.08M
    }
752
1.02M
    ProbPrices[i] = (CProbPrice)((kNumBitModelTotalBits << kCyclesBits) - 15 - bitCount);
753
    // printf("\n%3d: %5d", i, ProbPrices[i]);
754
1.02M
  }
755
7.97k
}
756
757
758
#define GET_PRICE(prob, bit) \
759
2.09M
  p->ProbPrices[((prob) ^ (unsigned)(((-(int)(bit))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
760
761
#define GET_PRICEa(prob, bit) \
762
78.4M
     ProbPrices[((prob) ^ (unsigned)((-((int)(bit))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
763
764
16.3M
#define GET_PRICE_0(prob) p->ProbPrices[(prob) >> kNumMoveReducingBits]
765
24.8M
#define GET_PRICE_1(prob) p->ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]
766
767
10.4M
#define GET_PRICEa_0(prob) ProbPrices[(prob) >> kNumMoveReducingBits]
768
10.4M
#define GET_PRICEa_1(prob) ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]
769
770
771
static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 sym, const CProbPrice *ProbPrices)
772
1.04M
{
773
1.04M
  UInt32 price = 0;
774
1.04M
  sym |= 0x100;
775
1.04M
  do
776
8.36M
  {
777
8.36M
    unsigned bit = sym & 1;
778
8.36M
    sym >>= 1;
779
8.36M
    price += GET_PRICEa(probs[sym], bit);
780
8.36M
  }
781
8.36M
  while (sym >= 2);
782
1.04M
  return price;
783
1.04M
}
784
785
786
static UInt32 LitEnc_Matched_GetPrice(const CLzmaProb *probs, UInt32 sym, UInt32 matchByte, const CProbPrice *ProbPrices)
787
3.59M
{
788
3.59M
  UInt32 price = 0;
789
3.59M
  UInt32 offs = 0x100;
790
3.59M
  sym |= 0x100;
791
3.59M
  do
792
28.7M
  {
793
28.7M
    matchByte <<= 1;
794
28.7M
    price += GET_PRICEa(probs[offs + (matchByte & offs) + (sym >> 8)], (sym >> 7) & 1);
795
28.7M
    sym <<= 1;
796
28.7M
    offs &= ~(matchByte ^ sym);
797
28.7M
  }
798
28.7M
  while (sym < 0x10000);
799
3.59M
  return price;
800
3.59M
}
801
802
803
static void RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, unsigned numBits, unsigned sym)
804
420k
{
805
420k
  UInt32 range = rc->range;
806
420k
  unsigned m = 1;
807
420k
  do
808
893k
  {
809
893k
    UInt32 ttt, newBound;
810
893k
    unsigned bit = sym & 1;
811
    // RangeEnc_EncodeBit(rc, probs + m, bit);
812
893k
    sym >>= 1;
813
893k
    RC_BIT(rc, probs + m, bit);
814
893k
    m = (m << 1) | bit;
815
893k
  }
816
893k
  while (--numBits);
817
420k
  rc->range = range;
818
420k
}
819
820
821
822
static void LenEnc_Init(CLenEnc *p)
823
36.0k
{
824
36.0k
  unsigned i;
825
9.25M
  for (i = 0; i < (LZMA_NUM_PB_STATES_MAX << (kLenNumLowBits + 1)); i++)
826
9.21M
    p->low[i] = kProbInitValue;
827
9.25M
  for (i = 0; i < kLenNumHighSymbols; i++)
828
9.21M
    p->high[i] = kProbInitValue;
829
36.0k
}
830
831
static void LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, unsigned sym, unsigned posState)
832
1.27M
{
833
1.27M
  UInt32 range, ttt, newBound;
834
1.27M
  CLzmaProb *probs = p->low;
835
1.27M
  range = rc->range;
836
1.27M
  RC_BIT_PRE(rc, probs);
837
1.27M
  if (sym >= kLenNumLowSymbols)
838
135k
  {
839
135k
    RC_BIT_1(rc, probs);
840
135k
    probs += kLenNumLowSymbols;
841
135k
    RC_BIT_PRE(rc, probs);
842
135k
    if (sym >= kLenNumLowSymbols * 2)
843
87.4k
    {
844
87.4k
      RC_BIT_1(rc, probs);
845
87.4k
      rc->range = range;
846
      // RcTree_Encode(rc, p->high, kLenNumHighBits, sym - kLenNumLowSymbols * 2);
847
87.4k
      LitEnc_Encode(rc, p->high, sym - kLenNumLowSymbols * 2);
848
87.4k
      return;
849
87.4k
    }
850
48.1k
    sym -= kLenNumLowSymbols;
851
48.1k
  }
852
853
  // RcTree_Encode(rc, probs + (posState << kLenNumLowBits), kLenNumLowBits, sym);
854
1.18M
  {
855
1.18M
    unsigned m;
856
1.18M
    unsigned bit;
857
1.18M
    RC_BIT_0(rc, probs);
858
1.18M
    probs += (posState << (1 + kLenNumLowBits));
859
1.18M
    bit = (sym >> 2)    ; RC_BIT(rc, probs + 1, bit); m = (1 << 1) + bit;
860
1.18M
    bit = (sym >> 1) & 1; RC_BIT(rc, probs + m, bit); m = (m << 1) + bit;
861
1.18M
    bit =  sym       & 1; RC_BIT(rc, probs + m, bit);
862
1.18M
    rc->range = range;
863
1.18M
  }
864
1.18M
}
865
866
static void SetPrices_3(const CLzmaProb *probs, UInt32 startPrice, UInt32 *prices, const CProbPrice *ProbPrices)
867
935k
{
868
935k
  unsigned i;
869
4.67M
  for (i = 0; i < 8; i += 2)
870
3.74M
  {
871
3.74M
    UInt32 price = startPrice;
872
3.74M
    UInt32 prob;
873
3.74M
    price += GET_PRICEa(probs[1           ], (i >> 2));
874
3.74M
    price += GET_PRICEa(probs[2 + (i >> 2)], (i >> 1) & 1);
875
3.74M
    prob = probs[4 + (i >> 1)];
876
3.74M
    prices[i    ] = price + GET_PRICEa_0(prob);
877
3.74M
    prices[i + 1] = price + GET_PRICEa_1(prob);
878
3.74M
  }
879
935k
}
880
881
882
MY_NO_INLINE static void MY_FAST_CALL LenPriceEnc_UpdateTables(
883
    CLenPriceEnc *p,
884
    unsigned numPosStates,
885
    const CLenEnc *enc,
886
    const CProbPrice *ProbPrices)
887
60.5k
{
888
60.5k
  UInt32 b;
889
 
890
60.5k
  {
891
60.5k
    unsigned prob = enc->low[0];
892
60.5k
    UInt32 a, c;
893
60.5k
    unsigned posState;
894
60.5k
    b = GET_PRICEa_1(prob);
895
60.5k
    a = GET_PRICEa_0(prob);
896
60.5k
    c = b + GET_PRICEa_0(enc->low[kLenNumLowSymbols]);
897
528k
    for (posState = 0; posState < numPosStates; posState++)
898
467k
    {
899
467k
      UInt32 *prices = p->prices[posState];
900
467k
      const CLzmaProb *probs = enc->low + (posState << (1 + kLenNumLowBits));
901
467k
      SetPrices_3(probs, a, prices, ProbPrices);
902
467k
      SetPrices_3(probs + kLenNumLowSymbols, c, prices + kLenNumLowSymbols, ProbPrices);
903
467k
    }
904
60.5k
  }
905
906
  /*
907
  {
908
    unsigned i;
909
    UInt32 b;
910
    a = GET_PRICEa_0(enc->low[0]);
911
    for (i = 0; i < kLenNumLowSymbols; i++)
912
      p->prices2[i] = a;
913
    a = GET_PRICEa_1(enc->low[0]);
914
    b = a + GET_PRICEa_0(enc->low[kLenNumLowSymbols]);
915
    for (i = kLenNumLowSymbols; i < kLenNumLowSymbols * 2; i++)
916
      p->prices2[i] = b;
917
    a += GET_PRICEa_1(enc->low[kLenNumLowSymbols]);
918
  }
919
  */
920
 
921
  // p->counter = numSymbols;
922
  // p->counter = 64;
923
924
60.5k
  {
925
60.5k
    unsigned i = p->tableSize;
926
    
927
60.5k
    if (i > kLenNumLowSymbols * 2)
928
34.6k
    {
929
34.6k
      const CLzmaProb *probs = enc->high;
930
34.6k
      UInt32 *prices = p->prices[0] + kLenNumLowSymbols * 2;
931
34.6k
      i -= kLenNumLowSymbols * 2 - 1;
932
34.6k
      i >>= 1;
933
34.6k
      b += GET_PRICEa_1(enc->low[kLenNumLowSymbols]);
934
34.6k
      do
935
2.23M
      {
936
        /*
937
        p->prices2[i] = a +
938
        // RcTree_GetPrice(enc->high, kLenNumHighBits, i - kLenNumLowSymbols * 2, ProbPrices);
939
        LitEnc_GetPrice(probs, i - kLenNumLowSymbols * 2, ProbPrices);
940
        */
941
        // UInt32 price = a + RcTree_GetPrice(probs, kLenNumHighBits - 1, sym, ProbPrices);
942
2.23M
        unsigned sym = --i + (1 << (kLenNumHighBits - 1));
943
2.23M
        UInt32 price = b;
944
2.23M
        do
945
15.6M
        {
946
15.6M
          unsigned bit = sym & 1;
947
15.6M
          sym >>= 1;
948
15.6M
          price += GET_PRICEa(probs[sym], bit);
949
15.6M
        }
950
15.6M
        while (sym >= 2);
951
952
2.23M
        {
953
2.23M
          unsigned prob = probs[(size_t)i + (1 << (kLenNumHighBits - 1))];
954
2.23M
          prices[(size_t)i * 2    ] = price + GET_PRICEa_0(prob);
955
2.23M
          prices[(size_t)i * 2 + 1] = price + GET_PRICEa_1(prob);
956
2.23M
        }
957
2.23M
      }
958
2.23M
      while (i);
959
960
34.6k
      {
961
34.6k
        unsigned posState;
962
34.6k
        size_t num = (p->tableSize - kLenNumLowSymbols * 2) * sizeof(p->prices[0][0]);
963
323k
        for (posState = 1; posState < numPosStates; posState++)
964
289k
          memcpy(p->prices[posState] + kLenNumLowSymbols * 2, p->prices[0] + kLenNumLowSymbols * 2, num);
965
34.6k
      }
966
34.6k
    }
967
60.5k
  }
968
60.5k
}
969
970
/*
971
  #ifdef SHOW_STAT
972
  g_STAT_OFFSET += num;
973
  printf("\n MovePos %u", num);
974
  #endif
975
*/
976
  
977
269k
#define MOVE_POS(p, num) { \
978
269k
    p->additionalOffset += (num); \
979
269k
    p->matchFinder.Skip(p->matchFinderObj, (UInt32)(num)); }
980
981
982
static unsigned ReadMatchDistances(CLzmaEnc *p, unsigned *numPairsRes)
983
12.1M
{
984
12.1M
  unsigned numPairs;
985
  
986
12.1M
  p->additionalOffset++;
987
12.1M
  p->numAvail = p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
988
12.1M
  numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches);
989
12.1M
  *numPairsRes = numPairs;
990
  
991
  #ifdef SHOW_STAT
992
  printf("\n i = %u numPairs = %u    ", g_STAT_OFFSET, numPairs / 2);
993
  g_STAT_OFFSET++;
994
  {
995
    unsigned i;
996
    for (i = 0; i < numPairs; i += 2)
997
      printf("%2u %6u   | ", p->matches[i], p->matches[i + 1]);
998
  }
999
  #endif
1000
  
1001
12.1M
  if (numPairs == 0)
1002
7.21M
    return 0;
1003
4.97M
  {
1004
4.97M
    unsigned len = p->matches[(size_t)numPairs - 2];
1005
4.97M
    if (len != p->numFastBytes)
1006
4.80M
      return len;
1007
165k
    {
1008
165k
      UInt32 numAvail = p->numAvail;
1009
165k
      if (numAvail > LZMA_MATCH_LEN_MAX)
1010
153k
        numAvail = LZMA_MATCH_LEN_MAX;
1011
165k
      {
1012
165k
        const Byte *p1 = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1013
165k
        const Byte *p2 = p1 + len;
1014
165k
        ptrdiff_t dif = (ptrdiff_t)-1 - p->matches[(size_t)numPairs - 1];
1015
165k
        const Byte *lim = p1 + numAvail;
1016
4.51M
        for (; p2 != lim && *p2 == p2[dif]; p2++)
1017
4.34M
        {}
1018
165k
        return (unsigned)(p2 - p1);
1019
4.97M
      }
1020
4.97M
    }
1021
4.97M
  }
1022
4.97M
}
1023
1024
18.0M
#define MARK_LIT ((UInt32)(Int32)-1)
1025
1026
1.32M
#define MakeAs_Lit(p)       { (p)->dist = MARK_LIT; (p)->extra = 0; }
1027
108k
#define MakeAs_ShortRep(p)  { (p)->dist = 0; (p)->extra = 0; }
1028
1.04M
#define IsShortRep(p)       ((p)->dist == 0)
1029
1030
1031
#define GetPrice_ShortRep(p, state, posState) \
1032
134k
  ( GET_PRICE_0(p->isRepG0[state]) + GET_PRICE_0(p->isRep0Long[state][posState]))
1033
1034
2.88M
#define GetPrice_Rep_0(p, state, posState) ( \
1035
2.88M
    GET_PRICE_1(p->isMatch[state][posState]) \
1036
2.88M
  + GET_PRICE_1(p->isRep0Long[state][posState])) \
1037
2.88M
  + GET_PRICE_1(p->isRep[state]) \
1038
2.88M
  + GET_PRICE_0(p->isRepG0[state])
1039
  
1040
MY_FORCE_INLINE
1041
static UInt32 GetPrice_PureRep(const CLzmaEnc *p, unsigned repIndex, size_t state, size_t posState)
1042
4.74M
{
1043
4.74M
  UInt32 price;
1044
4.74M
  UInt32 prob = p->isRepG0[state];
1045
4.74M
  if (repIndex == 0)
1046
1.54M
  {
1047
1.54M
    price = GET_PRICE_0(prob);
1048
1.54M
    price += GET_PRICE_1(p->isRep0Long[state][posState]);
1049
1.54M
  }
1050
3.20M
  else
1051
3.20M
  {
1052
3.20M
    price = GET_PRICE_1(prob);
1053
3.20M
    prob = p->isRepG1[state];
1054
3.20M
    if (repIndex == 1)
1055
1.11M
      price += GET_PRICE_0(prob);
1056
2.09M
    else
1057
2.09M
    {
1058
2.09M
      price += GET_PRICE_1(prob);
1059
2.09M
      price += GET_PRICE(p->isRepG2[state], repIndex - 2);
1060
2.09M
    }
1061
3.20M
  }
1062
4.74M
  return price;
1063
4.74M
}
1064
1065
1066
static unsigned Backward(CLzmaEnc *p, unsigned cur)
1067
412k
{
1068
412k
  unsigned wr = cur + 1;
1069
412k
  p->optEnd = wr;
1070
1071
412k
  for (;;)
1072
1.92M
  {
1073
1.92M
    UInt32 dist = p->opt[cur].dist;
1074
1.92M
    unsigned len = (unsigned)p->opt[cur].len;
1075
1.92M
    unsigned extra = (unsigned)p->opt[cur].extra;
1076
1.92M
    cur -= len;
1077
1078
1.92M
    if (extra)
1079
22.9k
    {
1080
22.9k
      wr--;
1081
22.9k
      p->opt[wr].len = (UInt32)len;
1082
22.9k
      cur -= extra;
1083
22.9k
      len = extra;
1084
22.9k
      if (extra == 1)
1085
557
      {
1086
557
        p->opt[wr].dist = dist;
1087
557
        dist = MARK_LIT;
1088
557
      }
1089
22.3k
      else
1090
22.3k
      {
1091
22.3k
        p->opt[wr].dist = 0;
1092
22.3k
        len--;
1093
22.3k
        wr--;
1094
22.3k
        p->opt[wr].dist = MARK_LIT;
1095
22.3k
        p->opt[wr].len = 1;
1096
22.3k
      }
1097
22.9k
    }
1098
1099
1.92M
    if (cur == 0)
1100
412k
    {
1101
412k
      p->backRes = dist;
1102
412k
      p->optCur = wr;
1103
412k
      return len;
1104
412k
    }
1105
    
1106
1.50M
    wr--;
1107
1.50M
    p->opt[wr].dist = dist;
1108
1.50M
    p->opt[wr].len = (UInt32)len;
1109
1.50M
  }
1110
412k
}
1111
1112
1113
1114
#define LIT_PROBS(pos, prevByte) \
1115
12.6M
  (p->litProbs + (UInt32)3 * (((((pos) << 8) + (prevByte)) & p->lpMask) << p->lc))
1116
1117
1118
static unsigned GetOptimum(CLzmaEnc *p, UInt32 position)
1119
3.79M
{
1120
3.79M
  unsigned last, cur;
1121
3.79M
  UInt32 reps[LZMA_NUM_REPS];
1122
3.79M
  unsigned repLens[LZMA_NUM_REPS];
1123
3.79M
  UInt32 *matches;
1124
1125
3.79M
  {
1126
3.79M
    UInt32 numAvail;
1127
3.79M
    unsigned numPairs, mainLen, repMaxIndex, i, posState;
1128
3.79M
    UInt32 matchPrice, repMatchPrice;
1129
3.79M
    const Byte *data;
1130
3.79M
    Byte curByte, matchByte;
1131
    
1132
3.79M
    p->optCur = p->optEnd = 0;
1133
    
1134
3.79M
    if (p->additionalOffset == 0)
1135
3.76M
      mainLen = ReadMatchDistances(p, &numPairs);
1136
35.5k
    else
1137
35.5k
    {
1138
35.5k
      mainLen = p->longestMatchLen;
1139
35.5k
      numPairs = p->numPairs;
1140
35.5k
    }
1141
    
1142
3.79M
    numAvail = p->numAvail;
1143
3.79M
    if (numAvail < 2)
1144
1.95k
    {
1145
1.95k
      p->backRes = MARK_LIT;
1146
1.95k
      return 1;
1147
1.95k
    }
1148
3.79M
    if (numAvail > LZMA_MATCH_LEN_MAX)
1149
3.66M
      numAvail = LZMA_MATCH_LEN_MAX;
1150
    
1151
3.79M
    data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1152
3.79M
    repMaxIndex = 0;
1153
    
1154
18.9M
    for (i = 0; i < LZMA_NUM_REPS; i++)
1155
15.1M
    {
1156
15.1M
      unsigned len;
1157
15.1M
      const Byte *data2;
1158
15.1M
      reps[i] = p->reps[i];
1159
15.1M
      data2 = data - reps[i];
1160
15.1M
      if (data[0] != data2[0] || data[1] != data2[1])
1161
15.0M
      {
1162
15.0M
        repLens[i] = 0;
1163
15.0M
        continue;
1164
15.0M
      }
1165
4.53M
      for (len = 2; len < numAvail && data[len] == data2[len]; len++)
1166
4.38M
      {}
1167
153k
      repLens[i] = len;
1168
153k
      if (len > repLens[repMaxIndex])
1169
80.6k
        repMaxIndex = i;
1170
153k
    }
1171
    
1172
3.79M
    if (repLens[repMaxIndex] >= p->numFastBytes)
1173
49.9k
    {
1174
49.9k
      unsigned len;
1175
49.9k
      p->backRes = (UInt32)repMaxIndex;
1176
49.9k
      len = repLens[repMaxIndex];
1177
49.9k
      MOVE_POS(p, len - 1)
1178
49.9k
      return len;
1179
49.9k
    }
1180
    
1181
3.74M
    matches = p->matches;
1182
    
1183
3.74M
    if (mainLen >= p->numFastBytes)
1184
51.0k
    {
1185
51.0k
      p->backRes = matches[(size_t)numPairs - 1] + LZMA_NUM_REPS;
1186
51.0k
      MOVE_POS(p, mainLen - 1)
1187
51.0k
      return mainLen;
1188
51.0k
    }
1189
    
1190
3.69M
    curByte = *data;
1191
3.69M
    matchByte = *(data - reps[0]);
1192
1193
3.69M
    last = repLens[repMaxIndex];
1194
3.69M
    if (last <= mainLen)
1195
3.69M
      last = mainLen;
1196
    
1197
3.69M
    if (last < 2 && curByte != matchByte)
1198
3.25M
    {
1199
3.25M
      p->backRes = MARK_LIT;
1200
3.25M
      return 1;
1201
3.25M
    }
1202
    
1203
442k
    p->opt[0].state = (CState)p->state;
1204
    
1205
442k
    posState = (position & p->pbMask);
1206
    
1207
442k
    {
1208
442k
      const CLzmaProb *probs = LIT_PROBS(position, *(data - 1));
1209
442k
      p->opt[1].price = GET_PRICE_0(p->isMatch[p->state][posState]) +
1210
442k
        (!IsLitState(p->state) ?
1211
62.1k
          LitEnc_Matched_GetPrice(probs, curByte, matchByte, p->ProbPrices) :
1212
442k
          LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1213
442k
    }
1214
1215
442k
    MakeAs_Lit(&p->opt[1]);
1216
    
1217
442k
    matchPrice = GET_PRICE_1(p->isMatch[p->state][posState]);
1218
442k
    repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]);
1219
    
1220
    // 18.06
1221
442k
    if (matchByte == curByte && repLens[0] == 0)
1222
39.0k
    {
1223
39.0k
      UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, p->state, posState);
1224
39.0k
      if (shortRepPrice < p->opt[1].price)
1225
32.8k
      {
1226
32.8k
        p->opt[1].price = shortRepPrice;
1227
32.8k
        MakeAs_ShortRep(&p->opt[1]);
1228
32.8k
      }
1229
39.0k
      if (last < 2)
1230
29.8k
      {
1231
29.8k
        p->backRes = p->opt[1].dist;
1232
29.8k
        return 1;
1233
29.8k
      }
1234
39.0k
    }
1235
   
1236
412k
    p->opt[1].len = 1;
1237
    
1238
412k
    p->opt[0].reps[0] = reps[0];
1239
412k
    p->opt[0].reps[1] = reps[1];
1240
412k
    p->opt[0].reps[2] = reps[2];
1241
412k
    p->opt[0].reps[3] = reps[3];
1242
    
1243
    // ---------- REP ----------
1244
    
1245
2.06M
    for (i = 0; i < LZMA_NUM_REPS; i++)
1246
1.64M
    {
1247
1.64M
      unsigned repLen = repLens[i];
1248
1.64M
      UInt32 price;
1249
1.64M
      if (repLen < 2)
1250
1.59M
        continue;
1251
57.6k
      price = repMatchPrice + GetPrice_PureRep(p, i, p->state, posState);
1252
57.6k
      do
1253
316k
      {
1254
316k
        UInt32 price2 = price + GET_PRICE_LEN(&p->repLenEnc, posState, repLen);
1255
316k
        COptimal *opt = &p->opt[repLen];
1256
316k
        if (price2 < opt->price)
1257
197k
        {
1258
197k
          opt->price = price2;
1259
197k
          opt->len = (UInt32)repLen;
1260
197k
          opt->dist = (UInt32)i;
1261
197k
          opt->extra = 0;
1262
197k
        }
1263
316k
      }
1264
316k
      while (--repLen >= 2);
1265
57.6k
    }
1266
    
1267
    
1268
    // ---------- MATCH ----------
1269
412k
    {
1270
412k
      unsigned len = repLens[0] + 1;
1271
412k
      if (len <= mainLen)
1272
403k
      {
1273
403k
        unsigned offs = 0;
1274
403k
        UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]);
1275
1276
403k
        if (len < 2)
1277
402k
          len = 2;
1278
1.26k
        else
1279
3.83k
          while (len > matches[offs])
1280
2.57k
            offs += 2;
1281
    
1282
403k
        for (; ; len++)
1283
627k
        {
1284
627k
          COptimal *opt;
1285
627k
          UInt32 dist = matches[(size_t)offs + 1];
1286
627k
          UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len);
1287
627k
          unsigned lenToPosState = GetLenToPosState(len);
1288
       
1289
627k
          if (dist < kNumFullDistances)
1290
232k
            price += p->distancesPrices[lenToPosState][dist & (kNumFullDistances - 1)];
1291
394k
          else
1292
394k
          {
1293
394k
            unsigned slot;
1294
394k
            GetPosSlot2(dist, slot);
1295
394k
            price += p->alignPrices[dist & kAlignMask];
1296
394k
            price += p->posSlotPrices[lenToPosState][slot];
1297
394k
          }
1298
          
1299
627k
          opt = &p->opt[len];
1300
          
1301
627k
          if (price < opt->price)
1302
580k
          {
1303
580k
            opt->price = price;
1304
580k
            opt->len = (UInt32)len;
1305
580k
            opt->dist = dist + LZMA_NUM_REPS;
1306
580k
            opt->extra = 0;
1307
580k
          }
1308
          
1309
627k
          if (len == matches[offs])
1310
464k
          {
1311
464k
            offs += 2;
1312
464k
            if (offs == numPairs)
1313
403k
              break;
1314
464k
          }
1315
627k
        }
1316
403k
      }
1317
412k
    }
1318
    
1319
1320
412k
    cur = 0;
1321
1322
    #ifdef SHOW_STAT2
1323
    /* if (position >= 0) */
1324
    {
1325
      unsigned i;
1326
      printf("\n pos = %4X", position);
1327
      for (i = cur; i <= last; i++)
1328
      printf("\nprice[%4X] = %u", position - cur + i, p->opt[i].price);
1329
    }
1330
    #endif
1331
412k
  }
1332
1333
1334
  
1335
  // ---------- Optimal Parsing ----------
1336
1337
0
  for (;;)
1338
4.67M
  {
1339
4.67M
    unsigned numAvail;
1340
4.67M
    UInt32 numAvailFull;
1341
4.67M
    unsigned newLen, numPairs, prev, state, posState, startLen;
1342
4.67M
    UInt32 litPrice, matchPrice, repMatchPrice;
1343
4.67M
    BoolInt nextIsLit;
1344
4.67M
    Byte curByte, matchByte;
1345
4.67M
    const Byte *data;
1346
4.67M
    COptimal *curOpt, *nextOpt;
1347
1348
4.67M
    if (++cur == last)
1349
376k
      break;
1350
    
1351
    // 18.06
1352
4.29M
    if (cur >= kNumOpts - 64)
1353
387
    {
1354
387
      unsigned j, best;
1355
387
      UInt32 price = p->opt[cur].price;
1356
387
      best = cur;
1357
9.70k
      for (j = cur + 1; j <= last; j++)
1358
9.32k
      {
1359
9.32k
        UInt32 price2 = p->opt[j].price;
1360
9.32k
        if (price >= price2)
1361
837
        {
1362
837
          price = price2;
1363
837
          best = j;
1364
837
        }
1365
9.32k
      }
1366
387
      {
1367
387
        unsigned delta = best - cur;
1368
387
        if (delta != 0)
1369
232
        {
1370
232
          MOVE_POS(p, delta);
1371
232
        }
1372
387
      }
1373
387
      cur = best;
1374
387
      break;
1375
387
    }
1376
1377
4.29M
    newLen = ReadMatchDistances(p, &numPairs);
1378
    
1379
4.29M
    if (newLen >= p->numFastBytes)
1380
35.5k
    {
1381
35.5k
      p->numPairs = numPairs;
1382
35.5k
      p->longestMatchLen = newLen;
1383
35.5k
      break;
1384
35.5k
    }
1385
    
1386
4.25M
    curOpt = &p->opt[cur];
1387
1388
4.25M
    position++;
1389
1390
    // we need that check here, if skip_items in p->opt are possible
1391
    /*
1392
    if (curOpt->price >= kInfinityPrice)
1393
      continue;
1394
    */
1395
1396
4.25M
    prev = cur - curOpt->len;
1397
1398
4.25M
    if (curOpt->len == 1)
1399
1.04M
    {
1400
1.04M
      state = (unsigned)p->opt[prev].state;
1401
1.04M
      if (IsShortRep(curOpt))
1402
78.0k
        state = kShortRepNextStates[state];
1403
967k
      else
1404
967k
        state = kLiteralNextStates[state];
1405
1.04M
    }
1406
3.21M
    else
1407
3.21M
    {
1408
3.21M
      const COptimal *prevOpt;
1409
3.21M
      UInt32 b0;
1410
3.21M
      UInt32 dist = curOpt->dist;
1411
1412
3.21M
      if (curOpt->extra)
1413
44.0k
      {
1414
44.0k
        prev -= (unsigned)curOpt->extra;
1415
44.0k
        state = kState_RepAfterLit;
1416
44.0k
        if (curOpt->extra == 1)
1417
797
          state = (dist < LZMA_NUM_REPS ? kState_RepAfterLit : kState_MatchAfterLit);
1418
44.0k
      }
1419
3.17M
      else
1420
3.17M
      {
1421
3.17M
        state = (unsigned)p->opt[prev].state;
1422
3.17M
        if (dist < LZMA_NUM_REPS)
1423
1.41M
          state = kRepNextStates[state];
1424
1.75M
        else
1425
1.75M
          state = kMatchNextStates[state];
1426
3.17M
      }
1427
1428
3.21M
      prevOpt = &p->opt[prev];
1429
3.21M
      b0 = prevOpt->reps[0];
1430
1431
3.21M
      if (dist < LZMA_NUM_REPS)
1432
1.44M
      {
1433
1.44M
        if (dist == 0)
1434
349k
        {
1435
349k
          reps[0] = b0;
1436
349k
          reps[1] = prevOpt->reps[1];
1437
349k
          reps[2] = prevOpt->reps[2];
1438
349k
          reps[3] = prevOpt->reps[3];
1439
349k
        }
1440
1.09M
        else
1441
1.09M
        {
1442
1.09M
          reps[1] = b0;
1443
1.09M
          b0 = prevOpt->reps[1];
1444
1.09M
          if (dist == 1)
1445
633k
          {
1446
633k
            reps[0] = b0;
1447
633k
            reps[2] = prevOpt->reps[2];
1448
633k
            reps[3] = prevOpt->reps[3];
1449
633k
          }
1450
465k
          else
1451
465k
          {
1452
465k
            reps[2] = b0;
1453
465k
            reps[0] = prevOpt->reps[dist];
1454
465k
            reps[3] = prevOpt->reps[dist ^ 1];
1455
465k
          }
1456
1.09M
        }
1457
1.44M
      }
1458
1.76M
      else
1459
1.76M
      {
1460
1.76M
        reps[0] = (dist - LZMA_NUM_REPS + 1);
1461
1.76M
        reps[1] = b0;
1462
1.76M
        reps[2] = prevOpt->reps[1];
1463
1.76M
        reps[3] = prevOpt->reps[2];
1464
1.76M
      }
1465
3.21M
    }
1466
    
1467
4.25M
    curOpt->state = (CState)state;
1468
4.25M
    curOpt->reps[0] = reps[0];
1469
4.25M
    curOpt->reps[1] = reps[1];
1470
4.25M
    curOpt->reps[2] = reps[2];
1471
4.25M
    curOpt->reps[3] = reps[3];
1472
1473
4.25M
    data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1474
4.25M
    curByte = *data;
1475
4.25M
    matchByte = *(data - reps[0]);
1476
1477
4.25M
    posState = (position & p->pbMask);
1478
1479
    /*
1480
    The order of Price checks:
1481
       <  LIT
1482
       <= SHORT_REP
1483
       <  LIT : REP_0
1484
       <  REP    [ : LIT : REP_0 ]
1485
       <  MATCH  [ : LIT : REP_0 ]
1486
    */
1487
1488
4.25M
    {
1489
4.25M
      UInt32 curPrice = curOpt->price;
1490
4.25M
      unsigned prob = p->isMatch[state][posState];
1491
4.25M
      matchPrice = curPrice + GET_PRICE_1(prob);
1492
4.25M
      litPrice = curPrice + GET_PRICE_0(prob);
1493
4.25M
    }
1494
1495
4.25M
    nextOpt = &p->opt[(size_t)cur + 1];
1496
4.25M
    nextIsLit = False;
1497
1498
    // here we can allow skip_items in p->opt, if we don't check (nextOpt->price < kInfinityPrice)
1499
    // 18.new.06
1500
4.25M
    if ((nextOpt->price < kInfinityPrice
1501
        // && !IsLitState(state)
1502
4.25M
        && matchByte == curByte)
1503
4.25M
        || litPrice > nextOpt->price
1504
4.25M
        )
1505
2.84M
      litPrice = 0;
1506
1.41M
    else
1507
1.41M
    {
1508
1.41M
      const CLzmaProb *probs = LIT_PROBS(position, *(data - 1));
1509
1.41M
      litPrice += (!IsLitState(state) ?
1510
751k
          LitEnc_Matched_GetPrice(probs, curByte, matchByte, p->ProbPrices) :
1511
1.41M
          LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1512
      
1513
1.41M
      if (litPrice < nextOpt->price)
1514
884k
      {
1515
884k
        nextOpt->price = litPrice;
1516
884k
        nextOpt->len = 1;
1517
884k
        MakeAs_Lit(nextOpt);
1518
884k
        nextIsLit = True;
1519
884k
      }
1520
1.41M
    }
1521
1522
4.25M
    repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]);
1523
    
1524
4.25M
    numAvailFull = p->numAvail;
1525
4.25M
    {
1526
4.25M
      unsigned temp = kNumOpts - 1 - cur;
1527
4.25M
      if (numAvailFull > temp)
1528
3.43M
        numAvailFull = (UInt32)temp;
1529
4.25M
    }
1530
1531
    // 18.06
1532
    // ---------- SHORT_REP ----------
1533
4.25M
    if (IsLitState(state)) // 18.new
1534
967k
    if (matchByte == curByte)
1535
198k
    if (repMatchPrice < nextOpt->price) // 18.new
1536
    // if (numAvailFull < 2 || data[1] != *(data - reps[0] + 1))
1537
96.7k
    if (
1538
        // nextOpt->price >= kInfinityPrice ||
1539
96.7k
        nextOpt->len < 2   // we can check nextOpt->len, if skip items are not allowed in p->opt
1540
96.7k
        || (nextOpt->dist != 0
1541
            // && nextOpt->extra <= 1 // 17.old
1542
89.3k
            )
1543
96.7k
        )
1544
95.7k
    {
1545
95.7k
      UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, state, posState);
1546
      // if (shortRepPrice <= nextOpt->price) // 17.old
1547
95.7k
      if (shortRepPrice < nextOpt->price)  // 18.new
1548
75.6k
      {
1549
75.6k
        nextOpt->price = shortRepPrice;
1550
75.6k
        nextOpt->len = 1;
1551
75.6k
        MakeAs_ShortRep(nextOpt);
1552
75.6k
        nextIsLit = False;
1553
75.6k
      }
1554
95.7k
    }
1555
    
1556
4.25M
    if (numAvailFull < 2)
1557
3.17k
      continue;
1558
4.25M
    numAvail = (numAvailFull <= p->numFastBytes ? numAvailFull : p->numFastBytes);
1559
1560
    // numAvail <= p->numFastBytes
1561
1562
    // ---------- LIT : REP_0 ----------
1563
1564
4.25M
    if (!nextIsLit
1565
4.25M
        && litPrice != 0 // 18.new
1566
4.25M
        && matchByte != curByte
1567
4.25M
        && numAvailFull > 2)
1568
531k
    {
1569
531k
      const Byte *data2 = data - reps[0];
1570
531k
      if (data[1] == data2[1] && data[2] == data2[2])
1571
108k
      {
1572
108k
        unsigned len;
1573
108k
        unsigned limit = p->numFastBytes + 1;
1574
108k
        if (limit > numAvailFull)
1575
4.75k
          limit = numAvailFull;
1576
273k
        for (len = 3; len < limit && data[len] == data2[len]; len++)
1577
165k
        {}
1578
        
1579
108k
        {
1580
108k
          unsigned state2 = kLiteralNextStates[state];
1581
108k
          unsigned posState2 = (position + 1) & p->pbMask;
1582
108k
          UInt32 price = litPrice + GetPrice_Rep_0(p, state2, posState2);
1583
108k
          {
1584
108k
            unsigned offset = cur + len;
1585
1586
108k
            if (last < offset)
1587
4.59k
              last = offset;
1588
          
1589
            // do
1590
108k
            {
1591
108k
              UInt32 price2;
1592
108k
              COptimal *opt;
1593
108k
              len--;
1594
              // price2 = price + GetPrice_Len_Rep_0(p, len, state2, posState2);
1595
108k
              price2 = price + GET_PRICE_LEN(&p->repLenEnc, posState2, len);
1596
1597
108k
              opt = &p->opt[offset];
1598
              // offset--;
1599
108k
              if (price2 < opt->price)
1600
7.22k
              {
1601
7.22k
                opt->price = price2;
1602
7.22k
                opt->len = (UInt32)len;
1603
7.22k
                opt->dist = 0;
1604
7.22k
                opt->extra = 1;
1605
7.22k
              }
1606
108k
            }
1607
            // while (len >= 3);
1608
108k
          }
1609
108k
        }
1610
108k
      }
1611
531k
    }
1612
    
1613
4.25M
    startLen = 2; /* speed optimization */
1614
1615
4.25M
    {
1616
      // ---------- REP ----------
1617
4.25M
      unsigned repIndex = 0; // 17.old
1618
      // unsigned repIndex = IsLitState(state) ? 0 : 1; // 18.notused
1619
21.2M
      for (; repIndex < LZMA_NUM_REPS; repIndex++)
1620
17.0M
      {
1621
17.0M
        unsigned len;
1622
17.0M
        UInt32 price;
1623
17.0M
        const Byte *data2 = data - reps[repIndex];
1624
17.0M
        if (data[0] != data2[0] || data[1] != data2[1])
1625
12.3M
          continue;
1626
        
1627
69.2M
        for (len = 2; len < numAvail && data[len] == data2[len]; len++)
1628
64.5M
        {}
1629
        
1630
        // if (len < startLen) continue; // 18.new: speed optimization
1631
1632
4.68M
        {
1633
4.68M
          unsigned offset = cur + len;
1634
4.68M
          if (last < offset)
1635
193k
            last = offset;
1636
4.68M
        }
1637
4.68M
        {
1638
4.68M
          unsigned len2 = len;
1639
4.68M
          price = repMatchPrice + GetPrice_PureRep(p, repIndex, state, posState);
1640
4.68M
          do
1641
69.2M
          {
1642
69.2M
            UInt32 price2 = price + GET_PRICE_LEN(&p->repLenEnc, posState, len2);
1643
69.2M
            COptimal *opt = &p->opt[cur + len2];
1644
69.2M
            if (price2 < opt->price)
1645
2.80M
            {
1646
2.80M
              opt->price = price2;
1647
2.80M
              opt->len = (UInt32)len2;
1648
2.80M
              opt->dist = (UInt32)repIndex;
1649
2.80M
              opt->extra = 0;
1650
2.80M
            }
1651
69.2M
          }
1652
69.2M
          while (--len2 >= 2);
1653
4.68M
        }
1654
        
1655
4.68M
        if (repIndex == 0) startLen = len + 1;  // 17.old
1656
        // startLen = len + 1; // 18.new
1657
1658
        /* if (_maxMode) */
1659
4.68M
        {
1660
          // ---------- REP : LIT : REP_0 ----------
1661
          // numFastBytes + 1 + numFastBytes
1662
1663
4.68M
          unsigned len2 = len + 1;
1664
4.68M
          unsigned limit = len2 + p->numFastBytes;
1665
4.68M
          if (limit > numAvailFull)
1666
366k
            limit = numAvailFull;
1667
          
1668
4.68M
          len2 += 2;
1669
4.68M
          if (len2 <= limit)
1670
4.60M
          if (data[len2 - 2] == data2[len2 - 2])
1671
2.63M
          if (data[len2 - 1] == data2[len2 - 1])
1672
1.85M
          {
1673
1.85M
            unsigned state2 = kRepNextStates[state];
1674
1.85M
            unsigned posState2 = (position + len) & p->pbMask;
1675
1.85M
            price += GET_PRICE_LEN(&p->repLenEnc, posState, len)
1676
1.85M
                + GET_PRICE_0(p->isMatch[state2][posState2])
1677
1.85M
                + LitEnc_Matched_GetPrice(LIT_PROBS(position + len, data[(size_t)len - 1]),
1678
1.85M
                    data[len], data2[len], p->ProbPrices);
1679
            
1680
            // state2 = kLiteralNextStates[state2];
1681
1.85M
            state2 = kState_LitAfterRep;
1682
1.85M
            posState2 = (posState2 + 1) & p->pbMask;
1683
1684
1685
1.85M
            price += GetPrice_Rep_0(p, state2, posState2);
1686
1687
19.9M
          for (; len2 < limit && data[len2] == data2[len2]; len2++)
1688
18.0M
          {}
1689
          
1690
1.85M
          len2 -= len;
1691
          // if (len2 >= 3)
1692
1.85M
          {
1693
1.85M
            {
1694
1.85M
              unsigned offset = cur + len + len2;
1695
1696
1.85M
              if (last < offset)
1697
539k
                last = offset;
1698
              // do
1699
1.85M
              {
1700
1.85M
                UInt32 price2;
1701
1.85M
                COptimal *opt;
1702
1.85M
                len2--;
1703
                // price2 = price + GetPrice_Len_Rep_0(p, len2, state2, posState2);
1704
1.85M
                price2 = price + GET_PRICE_LEN(&p->repLenEnc, posState2, len2);
1705
1706
1.85M
                opt = &p->opt[offset];
1707
                // offset--;
1708
1.85M
                if (price2 < opt->price)
1709
650k
                {
1710
650k
                  opt->price = price2;
1711
650k
                  opt->len = (UInt32)len2;
1712
650k
                  opt->extra = (CExtra)(len + 1);
1713
650k
                  opt->dist = (UInt32)repIndex;
1714
650k
                }
1715
1.85M
              }
1716
              // while (len2 >= 3);
1717
1.85M
            }
1718
1.85M
          }
1719
1.85M
          }
1720
4.68M
        }
1721
4.68M
      }
1722
4.25M
    }
1723
1724
1725
    // ---------- MATCH ----------
1726
    /* for (unsigned len = 2; len <= newLen; len++) */
1727
4.25M
    if (newLen > numAvail)
1728
570
    {
1729
570
      newLen = numAvail;
1730
1.76k
      for (numPairs = 0; newLen > matches[numPairs]; numPairs += 2);
1731
570
      matches[numPairs] = (UInt32)newLen;
1732
570
      numPairs += 2;
1733
570
    }
1734
    
1735
    // startLen = 2; /* speed optimization */
1736
1737
4.25M
    if (newLen >= startLen)
1738
2.64M
    {
1739
2.64M
      UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]);
1740
2.64M
      UInt32 dist;
1741
2.64M
      unsigned offs, posSlot, len;
1742
      
1743
2.64M
      {
1744
2.64M
        unsigned offset = cur + newLen;
1745
2.64M
        if (last < offset)
1746
735k
          last = offset;
1747
2.64M
      }
1748
1749
2.64M
      offs = 0;
1750
2.98M
      while (startLen > matches[offs])
1751
336k
        offs += 2;
1752
2.64M
      dist = matches[(size_t)offs + 1];
1753
      
1754
      // if (dist >= kNumFullDistances)
1755
2.64M
      GetPosSlot2(dist, posSlot);
1756
      
1757
12.0M
      for (len = /*2*/ startLen; ; len++)
1758
14.6M
      {
1759
14.6M
        UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len);
1760
14.6M
        {
1761
14.6M
          COptimal *opt;
1762
14.6M
          unsigned lenNorm = len - 2;
1763
14.6M
          lenNorm = GetLenToPosState2(lenNorm);
1764
14.6M
          if (dist < kNumFullDistances)
1765
10.6M
            price += p->distancesPrices[lenNorm][dist & (kNumFullDistances - 1)];
1766
3.97M
          else
1767
3.97M
            price += p->posSlotPrices[lenNorm][posSlot] + p->alignPrices[dist & kAlignMask];
1768
          
1769
14.6M
          opt = &p->opt[cur + len];
1770
14.6M
          if (price < opt->price)
1771
3.21M
          {
1772
3.21M
            opt->price = price;
1773
3.21M
            opt->len = (UInt32)len;
1774
3.21M
            opt->dist = dist + LZMA_NUM_REPS;
1775
3.21M
            opt->extra = 0;
1776
3.21M
          }
1777
14.6M
        }
1778
1779
14.6M
        if (len == matches[offs])
1780
3.46M
        {
1781
          // if (p->_maxMode) {
1782
          // MATCH : LIT : REP_0
1783
1784
3.46M
          const Byte *data2 = data - dist - 1;
1785
3.46M
          unsigned len2 = len + 1;
1786
3.46M
          unsigned limit = len2 + p->numFastBytes;
1787
3.46M
          if (limit > numAvailFull)
1788
126k
            limit = numAvailFull;
1789
          
1790
3.46M
          len2 += 2;
1791
3.46M
          if (len2 <= limit)
1792
3.44M
          if (data[len2 - 2] == data2[len2 - 2])
1793
1.45M
          if (data[len2 - 1] == data2[len2 - 1])
1794
917k
          {
1795
3.69M
          for (; len2 < limit && data[len2] == data2[len2]; len2++)
1796
2.77M
          {}
1797
          
1798
917k
          len2 -= len;
1799
          
1800
          // if (len2 >= 3)
1801
917k
          {
1802
917k
            unsigned state2 = kMatchNextStates[state];
1803
917k
            unsigned posState2 = (position + len) & p->pbMask;
1804
917k
            unsigned offset;
1805
917k
            price += GET_PRICE_0(p->isMatch[state2][posState2]);
1806
917k
            price += LitEnc_Matched_GetPrice(LIT_PROBS(position + len, data[(size_t)len - 1]),
1807
917k
                    data[len], data2[len], p->ProbPrices);
1808
1809
            // state2 = kLiteralNextStates[state2];
1810
917k
            state2 = kState_LitAfterMatch;
1811
1812
917k
            posState2 = (posState2 + 1) & p->pbMask;
1813
917k
            price += GetPrice_Rep_0(p, state2, posState2);
1814
1815
917k
            offset = cur + len + len2;
1816
1817
917k
            if (last < offset)
1818
118k
              last = offset;
1819
            // do
1820
917k
            {
1821
917k
              UInt32 price2;
1822
917k
              COptimal *opt;
1823
917k
              len2--;
1824
              // price2 = price + GetPrice_Len_Rep_0(p, len2, state2, posState2);
1825
917k
              price2 = price + GET_PRICE_LEN(&p->repLenEnc, posState2, len2);
1826
917k
              opt = &p->opt[offset];
1827
              // offset--;
1828
917k
              if (price2 < opt->price)
1829
433k
              {
1830
433k
                opt->price = price2;
1831
433k
                opt->len = (UInt32)len2;
1832
433k
                opt->extra = (CExtra)(len + 1);
1833
433k
                opt->dist = dist + LZMA_NUM_REPS;
1834
433k
              }
1835
917k
            }
1836
            // while (len2 >= 3);
1837
917k
          }
1838
1839
917k
          }
1840
        
1841
3.46M
          offs += 2;
1842
3.46M
          if (offs == numPairs)
1843
2.64M
            break;
1844
812k
          dist = matches[(size_t)offs + 1];
1845
          // if (dist >= kNumFullDistances)
1846
812k
            GetPosSlot2(dist, posSlot);
1847
812k
        }
1848
14.6M
      }
1849
2.64M
    }
1850
4.25M
  }
1851
1852
412k
  do
1853
4.92M
    p->opt[last].price = kInfinityPrice;
1854
4.92M
  while (--last);
1855
1856
412k
  return Backward(p, cur);
1857
442k
}
1858
1859
1860
1861
97.6k
#define ChangePair(smallDist, bigDist) (((bigDist) >> 7) > (smallDist))
1862
1863
1864
1865
static unsigned GetOptimumFast(CLzmaEnc *p)
1866
4.04M
{
1867
4.04M
  UInt32 numAvail, mainDist;
1868
4.04M
  unsigned mainLen, numPairs, repIndex, repLen, i;
1869
4.04M
  const Byte *data;
1870
1871
4.04M
  if (p->additionalOffset == 0)
1872
3.99M
    mainLen = ReadMatchDistances(p, &numPairs);
1873
43.5k
  else
1874
43.5k
  {
1875
43.5k
    mainLen = p->longestMatchLen;
1876
43.5k
    numPairs = p->numPairs;
1877
43.5k
  }
1878
1879
4.04M
  numAvail = p->numAvail;
1880
4.04M
  p->backRes = MARK_LIT;
1881
4.04M
  if (numAvail < 2)
1882
1.28k
    return 1;
1883
  // if (mainLen < 2 && p->state == 0) return 1; // 18.06.notused
1884
4.03M
  if (numAvail > LZMA_MATCH_LEN_MAX)
1885
3.94M
    numAvail = LZMA_MATCH_LEN_MAX;
1886
4.03M
  data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1887
4.03M
  repLen = repIndex = 0;
1888
  
1889
20.1M
  for (i = 0; i < LZMA_NUM_REPS; i++)
1890
16.1M
  {
1891
16.1M
    unsigned len;
1892
16.1M
    const Byte *data2 = data - p->reps[i];
1893
16.1M
    if (data[0] != data2[0] || data[1] != data2[1])
1894
15.9M
      continue;
1895
2.82M
    for (len = 2; len < numAvail && data[len] == data2[len]; len++)
1896
2.70M
    {}
1897
120k
    if (len >= p->numFastBytes)
1898
28.5k
    {
1899
28.5k
      p->backRes = (UInt32)i;
1900
28.5k
      MOVE_POS(p, len - 1)
1901
28.5k
      return len;
1902
28.5k
    }
1903
92.2k
    if (len > repLen)
1904
68.3k
    {
1905
68.3k
      repIndex = i;
1906
68.3k
      repLen = len;
1907
68.3k
    }
1908
92.2k
  }
1909
1910
4.01M
  if (mainLen >= p->numFastBytes)
1911
40.7k
  {
1912
40.7k
    p->backRes = p->matches[(size_t)numPairs - 1] + LZMA_NUM_REPS;
1913
40.7k
    MOVE_POS(p, mainLen - 1)
1914
40.7k
    return mainLen;
1915
40.7k
  }
1916
1917
3.97M
  mainDist = 0; /* for GCC */
1918
  
1919
3.97M
  if (mainLen >= 2)
1920
495k
  {
1921
495k
    mainDist = p->matches[(size_t)numPairs - 1];
1922
498k
    while (numPairs > 2)
1923
55.0k
    {
1924
55.0k
      UInt32 dist2;
1925
55.0k
      if (mainLen != p->matches[(size_t)numPairs - 4] + 1)
1926
16.2k
        break;
1927
38.7k
      dist2 = p->matches[(size_t)numPairs - 3];
1928
38.7k
      if (!ChangePair(dist2, mainDist))
1929
35.1k
        break;
1930
3.65k
      numPairs -= 2;
1931
3.65k
      mainLen--;
1932
3.65k
      mainDist = dist2;
1933
3.65k
    }
1934
495k
    if (mainLen == 2 && mainDist >= 0x80)
1935
321k
      mainLen = 1;
1936
495k
  }
1937
1938
3.97M
  if (repLen >= 2)
1939
52.2k
    if (    repLen + 1 >= mainLen
1940
52.2k
        || (repLen + 2 >= mainLen && mainDist >= (1 << 9))
1941
52.2k
        || (repLen + 3 >= mainLen && mainDist >= (1 << 15)))
1942
45.9k
  {
1943
45.9k
    p->backRes = (UInt32)repIndex;
1944
45.9k
    MOVE_POS(p, repLen - 1)
1945
45.9k
    return repLen;
1946
45.9k
  }
1947
  
1948
3.92M
  if (mainLen < 2 || numAvail <= 2)
1949
3.79M
    return 1;
1950
1951
128k
  {
1952
128k
    unsigned len1 = ReadMatchDistances(p, &p->numPairs);
1953
128k
    p->longestMatchLen = len1;
1954
  
1955
128k
    if (len1 >= 2)
1956
99.8k
    {
1957
99.8k
      UInt32 newDist = p->matches[(size_t)p->numPairs - 1];
1958
99.8k
      if (   (len1 >= mainLen && newDist < mainDist)
1959
99.8k
          || (len1 == mainLen + 1 && !ChangePair(mainDist, newDist))
1960
99.8k
          || (len1 >  mainLen + 1)
1961
99.8k
          || (len1 + 1 >= mainLen && mainLen >= 3 && ChangePair(newDist, mainDist)))
1962
37.1k
        return 1;
1963
99.8k
    }
1964
128k
  }
1965
  
1966
91.5k
  data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - 1;
1967
  
1968
437k
  for (i = 0; i < LZMA_NUM_REPS; i++)
1969
352k
  {
1970
352k
    unsigned len, limit;
1971
352k
    const Byte *data2 = data - p->reps[i];
1972
352k
    if (data[0] != data2[0] || data[1] != data2[1])
1973
338k
      continue;
1974
13.8k
    limit = mainLen - 1;
1975
21.6k
    for (len = 2;; len++)
1976
35.5k
    {
1977
35.5k
      if (len >= limit)
1978
6.41k
        return 1;
1979
29.1k
      if (data[len] != data2[len])
1980
7.41k
        break;
1981
29.1k
    }
1982
13.8k
  }
1983
  
1984
85.1k
  p->backRes = mainDist + LZMA_NUM_REPS;
1985
85.1k
  if (mainLen != 2)
1986
53.1k
  {
1987
53.1k
    MOVE_POS(p, mainLen - 2)
1988
53.1k
  }
1989
85.1k
  return mainLen;
1990
91.5k
}
1991
1992
1993
1994
1995
static void WriteEndMarker(CLzmaEnc *p, unsigned posState)
1996
0
{
1997
0
  UInt32 range;
1998
0
  range = p->rc.range;
1999
0
  {
2000
0
    UInt32 ttt, newBound;
2001
0
    CLzmaProb *prob = &p->isMatch[p->state][posState];
2002
0
    RC_BIT_PRE(&p->rc, prob)
2003
0
    RC_BIT_1(&p->rc, prob)
2004
0
    prob = &p->isRep[p->state];
2005
0
    RC_BIT_PRE(&p->rc, prob)
2006
0
    RC_BIT_0(&p->rc, prob)
2007
0
  }
2008
0
  p->state = kMatchNextStates[p->state];
2009
  
2010
0
  p->rc.range = range;
2011
0
  LenEnc_Encode(&p->lenProbs, &p->rc, 0, posState);
2012
0
  range = p->rc.range;
2013
2014
0
  {
2015
    // RcTree_Encode_PosSlot(&p->rc, p->posSlotEncoder[0], (1 << kNumPosSlotBits) - 1);
2016
0
    CLzmaProb *probs = p->posSlotEncoder[0];
2017
0
    unsigned m = 1;
2018
0
    do
2019
0
    {
2020
0
      UInt32 ttt, newBound;
2021
0
      RC_BIT_PRE(p, probs + m)
2022
0
      RC_BIT_1(&p->rc, probs + m);
2023
0
      m = (m << 1) + 1;
2024
0
    }
2025
0
    while (m < (1 << kNumPosSlotBits));
2026
0
  }
2027
0
  {
2028
    // RangeEnc_EncodeDirectBits(&p->rc, ((UInt32)1 << (30 - kNumAlignBits)) - 1, 30 - kNumAlignBits);    UInt32 range = p->range;
2029
0
    unsigned numBits = 30 - kNumAlignBits;
2030
0
    do
2031
0
    {
2032
0
      range >>= 1;
2033
0
      p->rc.low += range;
2034
0
      RC_NORM(&p->rc)
2035
0
    }
2036
0
    while (--numBits);
2037
0
  }
2038
   
2039
0
  {
2040
    // RcTree_ReverseEncode(&p->rc, p->posAlignEncoder, kNumAlignBits, kAlignMask);
2041
0
    CLzmaProb *probs = p->posAlignEncoder;
2042
0
    unsigned m = 1;
2043
0
    do
2044
0
    {
2045
0
      UInt32 ttt, newBound;
2046
0
      RC_BIT_PRE(p, probs + m)
2047
0
      RC_BIT_1(&p->rc, probs + m);
2048
0
      m = (m << 1) + 1;
2049
0
    }
2050
0
    while (m < kAlignTableSize);
2051
0
  }
2052
0
  p->rc.range = range;
2053
0
}
2054
2055
2056
static SRes CheckErrors(CLzmaEnc *p)
2057
32.0k
{
2058
32.0k
  if (p->result != SZ_OK)
2059
0
    return p->result;
2060
32.0k
  if (p->rc.res != SZ_OK)
2061
0
    p->result = SZ_ERROR_WRITE;
2062
32.0k
  if (p->matchFinderBase.result != SZ_OK)
2063
0
    p->result = SZ_ERROR_READ;
2064
32.0k
  if (p->result != SZ_OK)
2065
0
    p->finished = True;
2066
32.0k
  return p->result;
2067
32.0k
}
2068
2069
2070
MY_NO_INLINE static SRes Flush(CLzmaEnc *p, UInt32 nowPos)
2071
16.0k
{
2072
  /* ReleaseMFStream(); */
2073
16.0k
  p->finished = True;
2074
16.0k
  if (p->writeEndMark)
2075
0
    WriteEndMarker(p, nowPos & p->pbMask);
2076
16.0k
  RangeEnc_FlushData(&p->rc);
2077
16.0k
  RangeEnc_FlushStream(&p->rc);
2078
16.0k
  return CheckErrors(p);
2079
16.0k
}
2080
2081
2082
MY_NO_INLINE static void FillAlignPrices(CLzmaEnc *p)
2083
26.0k
{
2084
26.0k
  unsigned i;
2085
26.0k
  const CProbPrice *ProbPrices = p->ProbPrices;
2086
26.0k
  const CLzmaProb *probs = p->posAlignEncoder;
2087
  // p->alignPriceCount = 0;
2088
234k
  for (i = 0; i < kAlignTableSize / 2; i++)
2089
208k
  {
2090
208k
    UInt32 price = 0;
2091
208k
    unsigned sym = i;
2092
208k
    unsigned m = 1;
2093
208k
    unsigned bit;
2094
208k
    UInt32 prob;
2095
208k
    bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[m], bit); m = (m << 1) + bit;
2096
208k
    bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[m], bit); m = (m << 1) + bit;
2097
208k
    bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[m], bit); m = (m << 1) + bit;
2098
208k
    prob = probs[m];
2099
208k
    p->alignPrices[i    ] = price + GET_PRICEa_0(prob);
2100
208k
    p->alignPrices[i + 8] = price + GET_PRICEa_1(prob);
2101
    // p->alignPrices[i] = RcTree_ReverseGetPrice(p->posAlignEncoder, kNumAlignBits, i, p->ProbPrices);
2102
208k
  }
2103
26.0k
}
2104
2105
2106
MY_NO_INLINE static void FillDistancesPrices(CLzmaEnc *p)
2107
26.0k
{
2108
  // int y; for (y = 0; y < 100; y++) {
2109
2110
26.0k
  UInt32 tempPrices[kNumFullDistances];
2111
26.0k
  unsigned i, lps;
2112
2113
26.0k
  const CProbPrice *ProbPrices = p->ProbPrices;
2114
26.0k
  p->matchPriceCount = 0;
2115
2116
1.64M
  for (i = kStartPosModelIndex / 2; i < kNumFullDistances / 2; i++)
2117
1.61M
  {
2118
1.61M
    unsigned posSlot = GetPosSlot1(i);
2119
1.61M
    unsigned footerBits = (posSlot >> 1) - 1;
2120
1.61M
    unsigned base = ((2 | (posSlot & 1)) << footerBits);
2121
1.61M
    const CLzmaProb *probs = p->posEncoders + (size_t)base * 2;
2122
    // tempPrices[i] = RcTree_ReverseGetPrice(p->posEncoders + base, footerBits, i - base, p->ProbPrices);
2123
1.61M
    UInt32 price = 0;
2124
1.61M
    unsigned m = 1;
2125
1.61M
    unsigned sym = i;
2126
1.61M
    unsigned offset = (unsigned)1 << footerBits;
2127
1.61M
    base += i;
2128
    
2129
1.61M
    if (footerBits)
2130
1.56M
    do
2131
5.11M
    {
2132
5.11M
      unsigned bit = sym & 1;
2133
5.11M
      sym >>= 1;
2134
5.11M
      price += GET_PRICEa(probs[m], bit);
2135
5.11M
      m = (m << 1) + bit;
2136
5.11M
    }
2137
5.11M
    while (--footerBits);
2138
2139
1.61M
    {
2140
1.61M
      unsigned prob = probs[m];
2141
1.61M
      tempPrices[base         ] = price + GET_PRICEa_0(prob);
2142
1.61M
      tempPrices[base + offset] = price + GET_PRICEa_1(prob);
2143
1.61M
    }
2144
1.61M
  }
2145
2146
130k
  for (lps = 0; lps < kNumLenToPosStates; lps++)
2147
104k
  {
2148
104k
    unsigned slot;
2149
104k
    unsigned distTableSize2 = (p->distTableSize + 1) >> 1;
2150
104k
    UInt32 *posSlotPrices = p->posSlotPrices[lps];
2151
104k
    const CLzmaProb *probs = p->posSlotEncoder[lps];
2152
    
2153
2.60M
    for (slot = 0; slot < distTableSize2; slot++)
2154
2.50M
    {
2155
      // posSlotPrices[slot] = RcTree_GetPrice(encoder, kNumPosSlotBits, slot, p->ProbPrices);
2156
2.50M
      UInt32 price;
2157
2.50M
      unsigned bit;
2158
2.50M
      unsigned sym = slot + (1 << (kNumPosSlotBits - 1));
2159
2.50M
      unsigned prob;
2160
2.50M
      bit = sym & 1; sym >>= 1; price  = GET_PRICEa(probs[sym], bit);
2161
2.50M
      bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[sym], bit);
2162
2.50M
      bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[sym], bit);
2163
2.50M
      bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[sym], bit);
2164
2.50M
      bit = sym & 1; sym >>= 1; price += GET_PRICEa(probs[sym], bit);
2165
2.50M
      prob = probs[(size_t)slot + (1 << (kNumPosSlotBits - 1))];
2166
2.50M
      posSlotPrices[(size_t)slot * 2    ] = price + GET_PRICEa_0(prob);
2167
2.50M
      posSlotPrices[(size_t)slot * 2 + 1] = price + GET_PRICEa_1(prob);
2168
2.50M
    }
2169
    
2170
104k
    {
2171
104k
      UInt32 delta = ((UInt32)((kEndPosModelIndex / 2 - 1) - kNumAlignBits) << kNumBitPriceShiftBits);
2172
1.87M
      for (slot = kEndPosModelIndex / 2; slot < distTableSize2; slot++)
2173
1.77M
      {
2174
1.77M
        posSlotPrices[(size_t)slot * 2    ] += delta;
2175
1.77M
        posSlotPrices[(size_t)slot * 2 + 1] += delta;
2176
1.77M
        delta += ((UInt32)1 << kNumBitPriceShiftBits);
2177
1.77M
      }
2178
104k
    }
2179
2180
104k
    {
2181
104k
      UInt32 *dp = p->distancesPrices[lps];
2182
      
2183
104k
      dp[0] = posSlotPrices[0];
2184
104k
      dp[1] = posSlotPrices[1];
2185
104k
      dp[2] = posSlotPrices[2];
2186
104k
      dp[3] = posSlotPrices[3];
2187
2188
6.57M
      for (i = 4; i < kNumFullDistances; i += 2)
2189
6.46M
      {
2190
6.46M
        UInt32 slotPrice = posSlotPrices[GetPosSlot1(i)];
2191
6.46M
        dp[i    ] = slotPrice + tempPrices[i];
2192
6.46M
        dp[i + 1] = slotPrice + tempPrices[i + 1];
2193
6.46M
      }
2194
104k
    }
2195
104k
  }
2196
  // }
2197
26.0k
}
2198
2199
2200
2201
void LzmaEnc_Construct(CLzmaEnc *p)
2202
7.97k
{
2203
7.97k
  RangeEnc_Construct(&p->rc);
2204
7.97k
  MatchFinder_Construct(&p->matchFinderBase);
2205
  
2206
  #ifndef _7ZIP_ST
2207
  MatchFinderMt_Construct(&p->matchFinderMt);
2208
  p->matchFinderMt.MatchFinder = &p->matchFinderBase;
2209
  #endif
2210
2211
7.97k
  {
2212
7.97k
    CLzmaEncProps props;
2213
7.97k
    LzmaEncProps_Init(&props);
2214
7.97k
    LzmaEnc_SetProps(p, &props);
2215
7.97k
  }
2216
2217
7.97k
  #ifndef LZMA_LOG_BSR
2218
7.97k
  LzmaEnc_FastPosInit(p->g_FastPos);
2219
7.97k
  #endif
2220
2221
7.97k
  LzmaEnc_InitPriceTables(p->ProbPrices);
2222
7.97k
  p->litProbs = NULL;
2223
7.97k
  p->saveState.litProbs = NULL;
2224
2225
7.97k
}
2226
2227
CLzmaEncHandle LzmaEnc_Create(ISzAllocPtr alloc)
2228
7.97k
{
2229
7.97k
  void *p;
2230
7.97k
  p = ISzAlloc_Alloc(alloc, sizeof(CLzmaEnc));
2231
7.97k
  if (p)
2232
7.97k
    LzmaEnc_Construct((CLzmaEnc *)p);
2233
7.97k
  return p;
2234
7.97k
}
2235
2236
void LzmaEnc_FreeLits(CLzmaEnc *p, ISzAllocPtr alloc)
2237
15.9k
{
2238
15.9k
  ISzAlloc_Free(alloc, p->litProbs);
2239
15.9k
  ISzAlloc_Free(alloc, p->saveState.litProbs);
2240
15.9k
  p->litProbs = NULL;
2241
15.9k
  p->saveState.litProbs = NULL;
2242
15.9k
}
2243
2244
void LzmaEnc_Destruct(CLzmaEnc *p, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2245
7.97k
{
2246
  #ifndef _7ZIP_ST
2247
  MatchFinderMt_Destruct(&p->matchFinderMt, allocBig);
2248
  #endif
2249
  
2250
7.97k
  MatchFinder_Free(&p->matchFinderBase, allocBig);
2251
7.97k
  LzmaEnc_FreeLits(p, alloc);
2252
7.97k
  RangeEnc_Free(&p->rc, alloc);
2253
7.97k
}
2254
2255
void LzmaEnc_Destroy(CLzmaEncHandle p, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2256
7.97k
{
2257
7.97k
  LzmaEnc_Destruct((CLzmaEnc *)p, alloc, allocBig);
2258
7.97k
  ISzAlloc_Free(alloc, p);
2259
7.97k
}
2260
2261
2262
static SRes LzmaEnc_CodeOneBlock(CLzmaEnc *p, UInt32 maxPackSize, UInt32 maxUnpackSize)
2263
16.0k
{
2264
16.0k
  UInt32 nowPos32, startPos32;
2265
16.0k
  if (p->needInit)
2266
7.97k
  {
2267
7.97k
    p->matchFinder.Init(p->matchFinderObj);
2268
7.97k
    p->needInit = 0;
2269
7.97k
  }
2270
2271
16.0k
  if (p->finished)
2272
0
    return p->result;
2273
16.0k
  RINOK(CheckErrors(p));
2274
2275
16.0k
  nowPos32 = (UInt32)p->nowPos64;
2276
16.0k
  startPos32 = nowPos32;
2277
2278
16.0k
  if (p->nowPos64 == 0)
2279
7.97k
  {
2280
7.97k
    unsigned numPairs;
2281
7.97k
    Byte curByte;
2282
7.97k
    if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0)
2283
0
      return Flush(p, nowPos32);
2284
7.97k
    ReadMatchDistances(p, &numPairs);
2285
7.97k
    RangeEnc_EncodeBit_0(&p->rc, &p->isMatch[kState_Start][0]);
2286
    // p->state = kLiteralNextStates[p->state];
2287
7.97k
    curByte = *(p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - p->additionalOffset);
2288
7.97k
    LitEnc_Encode(&p->rc, p->litProbs, curByte);
2289
7.97k
    p->additionalOffset--;
2290
7.97k
    nowPos32++;
2291
7.97k
  }
2292
2293
16.0k
  if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) != 0)
2294
  
2295
8.02k
  for (;;)
2296
9.39M
  {
2297
9.39M
    UInt32 dist;
2298
9.39M
    unsigned len, posState;
2299
9.39M
    UInt32 range, ttt, newBound;
2300
9.39M
    CLzmaProb *probs;
2301
  
2302
9.39M
    if (p->fastMode)
2303
4.04M
      len = GetOptimumFast(p);
2304
5.35M
    else
2305
5.35M
    {
2306
5.35M
      unsigned oci = p->optCur;
2307
5.35M
      if (p->optEnd == oci)
2308
3.79M
        len = GetOptimum(p, nowPos32);
2309
1.55M
      else
2310
1.55M
      {
2311
1.55M
        const COptimal *opt = &p->opt[oci];
2312
1.55M
        len = opt->len;
2313
1.55M
        p->backRes = opt->dist;
2314
1.55M
        p->optCur = oci + 1;
2315
1.55M
      }
2316
5.35M
    }
2317
2318
9.39M
    posState = (unsigned)nowPos32 & p->pbMask;
2319
9.39M
    range = p->rc.range;
2320
9.39M
    probs = &p->isMatch[p->state][posState];
2321
    
2322
9.39M
    RC_BIT_PRE(&p->rc, probs)
2323
    
2324
9.39M
    dist = p->backRes;
2325
2326
    #ifdef SHOW_STAT2
2327
    printf("\n pos = %6X, len = %3u  pos = %6u", nowPos32, len, dist);
2328
    #endif
2329
2330
9.39M
    if (dist == MARK_LIT)
2331
8.05M
    {
2332
8.05M
      Byte curByte;
2333
8.05M
      const Byte *data;
2334
8.05M
      unsigned state;
2335
2336
8.05M
      RC_BIT_0(&p->rc, probs);
2337
8.05M
      p->rc.range = range;
2338
8.05M
      data = p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - p->additionalOffset;
2339
8.05M
      probs = LIT_PROBS(nowPos32, *(data - 1));
2340
8.05M
      curByte = *data;
2341
8.05M
      state = p->state;
2342
8.05M
      p->state = kLiteralNextStates[state];
2343
8.05M
      if (IsLitState(state))
2344
7.73M
        LitEnc_Encode(&p->rc, probs, curByte);
2345
321k
      else
2346
321k
        LitEnc_EncodeMatched(&p->rc, probs, curByte, *(data - p->reps[0]));
2347
8.05M
    }
2348
1.33M
    else
2349
1.33M
    {
2350
1.33M
      RC_BIT_1(&p->rc, probs);
2351
1.33M
      probs = &p->isRep[p->state];
2352
1.33M
      RC_BIT_PRE(&p->rc, probs)
2353
      
2354
1.33M
      if (dist < LZMA_NUM_REPS)
2355
476k
      {
2356
476k
        RC_BIT_1(&p->rc, probs);
2357
476k
        probs = &p->isRepG0[p->state];
2358
476k
        RC_BIT_PRE(&p->rc, probs)
2359
476k
        if (dist == 0)
2360
158k
        {
2361
158k
          RC_BIT_0(&p->rc, probs);
2362
158k
          probs = &p->isRep0Long[p->state][posState];
2363
158k
          RC_BIT_PRE(&p->rc, probs)
2364
158k
          if (len != 1)
2365
98.3k
          {
2366
98.3k
            RC_BIT_1_BASE(&p->rc, probs);
2367
98.3k
          }
2368
60.1k
          else
2369
60.1k
          {
2370
60.1k
            RC_BIT_0_BASE(&p->rc, probs);
2371
60.1k
            p->state = kShortRepNextStates[p->state];
2372
60.1k
          }
2373
158k
        }
2374
317k
        else
2375
317k
        {
2376
317k
          RC_BIT_1(&p->rc, probs);
2377
317k
          probs = &p->isRepG1[p->state];
2378
317k
          RC_BIT_PRE(&p->rc, probs)
2379
317k
          if (dist == 1)
2380
141k
          {
2381
141k
            RC_BIT_0_BASE(&p->rc, probs);
2382
141k
            dist = p->reps[1];
2383
141k
          }
2384
176k
          else
2385
176k
          {
2386
176k
            RC_BIT_1(&p->rc, probs);
2387
176k
            probs = &p->isRepG2[p->state];
2388
176k
            RC_BIT_PRE(&p->rc, probs)
2389
176k
            if (dist == 2)
2390
110k
            {
2391
110k
              RC_BIT_0_BASE(&p->rc, probs);
2392
110k
              dist = p->reps[2];
2393
110k
            }
2394
66.2k
            else
2395
66.2k
            {
2396
66.2k
              RC_BIT_1_BASE(&p->rc, probs);
2397
66.2k
              dist = p->reps[3];
2398
66.2k
              p->reps[3] = p->reps[2];
2399
66.2k
            }
2400
176k
            p->reps[2] = p->reps[1];
2401
176k
          }
2402
317k
          p->reps[1] = p->reps[0];
2403
317k
          p->reps[0] = dist;
2404
317k
        }
2405
2406
476k
        RC_NORM(&p->rc)
2407
2408
476k
        p->rc.range = range;
2409
2410
476k
        if (len != 1)
2411
416k
        {
2412
416k
          LenEnc_Encode(&p->repLenProbs, &p->rc, len - LZMA_MATCH_LEN_MIN, posState);
2413
416k
          --p->repLenEncCounter;
2414
416k
          p->state = kRepNextStates[p->state];
2415
416k
        }
2416
476k
      }
2417
859k
      else
2418
859k
      {
2419
859k
        unsigned posSlot;
2420
859k
        RC_BIT_0(&p->rc, probs);
2421
859k
        p->rc.range = range;
2422
859k
        p->state = kMatchNextStates[p->state];
2423
2424
859k
        LenEnc_Encode(&p->lenProbs, &p->rc, len - LZMA_MATCH_LEN_MIN, posState);
2425
        // --p->lenEnc.counter;
2426
2427
859k
        dist -= LZMA_NUM_REPS;
2428
859k
        p->reps[3] = p->reps[2];
2429
859k
        p->reps[2] = p->reps[1];
2430
859k
        p->reps[1] = p->reps[0];
2431
859k
        p->reps[0] = dist + 1;
2432
        
2433
859k
        p->matchPriceCount++;
2434
859k
        GetPosSlot(dist, posSlot);
2435
        // RcTree_Encode_PosSlot(&p->rc, p->posSlotEncoder[GetLenToPosState(len)], posSlot);
2436
859k
        {
2437
859k
          UInt32 sym = (UInt32)posSlot + (1 << kNumPosSlotBits);
2438
859k
          range = p->rc.range;
2439
859k
          probs = p->posSlotEncoder[GetLenToPosState(len)];
2440
859k
          do
2441
5.15M
          {
2442
5.15M
            CLzmaProb *prob = probs + (sym >> kNumPosSlotBits);
2443
5.15M
            UInt32 bit = (sym >> (kNumPosSlotBits - 1)) & 1;
2444
5.15M
            sym <<= 1;
2445
5.15M
            RC_BIT(&p->rc, prob, bit);
2446
5.15M
          }
2447
5.15M
          while (sym < (1 << kNumPosSlotBits * 2));
2448
859k
          p->rc.range = range;
2449
859k
        }
2450
        
2451
859k
        if (dist >= kStartPosModelIndex)
2452
562k
        {
2453
562k
          unsigned footerBits = ((posSlot >> 1) - 1);
2454
2455
562k
          if (dist < kNumFullDistances)
2456
420k
          {
2457
420k
            unsigned base = ((2 | (posSlot & 1)) << footerBits);
2458
420k
            RcTree_ReverseEncode(&p->rc, p->posEncoders + base, footerBits, (unsigned)(dist /* - base */));
2459
420k
          }
2460
141k
          else
2461
141k
          {
2462
141k
            UInt32 pos2 = (dist | 0xF) << (32 - footerBits);
2463
141k
            range = p->rc.range;
2464
            // RangeEnc_EncodeDirectBits(&p->rc, posReduced >> kNumAlignBits, footerBits - kNumAlignBits);
2465
            /*
2466
            do
2467
            {
2468
              range >>= 1;
2469
              p->rc.low += range & (0 - ((dist >> --footerBits) & 1));
2470
              RC_NORM(&p->rc)
2471
            }
2472
            while (footerBits > kNumAlignBits);
2473
            */
2474
141k
            do
2475
611k
            {
2476
611k
              range >>= 1;
2477
611k
              p->rc.low += range & (0 - (pos2 >> 31));
2478
611k
              pos2 += pos2;
2479
611k
              RC_NORM(&p->rc)
2480
611k
            }
2481
611k
            while (pos2 != 0xF0000000);
2482
2483
2484
            // RcTree_ReverseEncode(&p->rc, p->posAlignEncoder, kNumAlignBits, posReduced & kAlignMask);
2485
2486
141k
            {
2487
141k
              unsigned m = 1;
2488
141k
              unsigned bit;
2489
141k
              bit = dist & 1; dist >>= 1; RC_BIT(&p->rc, p->posAlignEncoder + m, bit); m = (m << 1) + bit;
2490
141k
              bit = dist & 1; dist >>= 1; RC_BIT(&p->rc, p->posAlignEncoder + m, bit); m = (m << 1) + bit;
2491
141k
              bit = dist & 1; dist >>= 1; RC_BIT(&p->rc, p->posAlignEncoder + m, bit); m = (m << 1) + bit;
2492
141k
              bit = dist & 1;             RC_BIT(&p->rc, p->posAlignEncoder + m, bit);
2493
141k
              p->rc.range = range;
2494
              // p->alignPriceCount++;
2495
141k
            }
2496
141k
          }
2497
562k
        }
2498
859k
      }
2499
1.33M
    }
2500
2501
9.39M
    nowPos32 += (UInt32)len;
2502
9.39M
    p->additionalOffset -= len;
2503
    
2504
9.39M
    if (p->additionalOffset == 0)
2505
7.75M
    {
2506
7.75M
      UInt32 processed;
2507
2508
7.75M
      if (!p->fastMode)
2509
3.76M
      {
2510
        /*
2511
        if (p->alignPriceCount >= 16) // kAlignTableSize
2512
          FillAlignPrices(p);
2513
        if (p->matchPriceCount >= 128)
2514
          FillDistancesPrices(p);
2515
        if (p->lenEnc.counter <= 0)
2516
          LenPriceEnc_UpdateTables(&p->lenEnc, 1 << p->pb, &p->lenProbs, p->ProbPrices);
2517
        */
2518
3.76M
        if (p->matchPriceCount >= 64)
2519
9.49k
        {
2520
9.49k
          FillAlignPrices(p);
2521
          // { int y; for (y = 0; y < 100; y++) {
2522
9.49k
          FillDistancesPrices(p);
2523
          // }}
2524
9.49k
          LenPriceEnc_UpdateTables(&p->lenEnc, 1 << p->pb, &p->lenProbs, p->ProbPrices);
2525
9.49k
        }
2526
3.76M
        if (p->repLenEncCounter <= 0)
2527
2.98k
        {
2528
2.98k
          p->repLenEncCounter = REP_LEN_COUNT;
2529
2.98k
          LenPriceEnc_UpdateTables(&p->repLenEnc, 1 << p->pb, &p->repLenProbs, p->ProbPrices);
2530
2.98k
        }
2531
3.76M
      }
2532
    
2533
7.75M
      if (p->matchFinder.GetNumAvailableBytes(p->matchFinderObj) == 0)
2534
7.93k
        break;
2535
7.75M
      processed = nowPos32 - startPos32;
2536
      
2537
7.75M
      if (maxPackSize)
2538
7.75M
      {
2539
7.75M
        if (processed + kNumOpts + 300 >= maxUnpackSize
2540
7.75M
            || RangeEnc_GetProcessed_sizet(&p->rc) + kPackReserve >= maxPackSize)
2541
90
          break;
2542
7.75M
      }
2543
0
      else if (processed >= (1 << 17))
2544
0
      {
2545
0
        p->nowPos64 += nowPos32 - startPos32;
2546
0
        return CheckErrors(p);
2547
0
      }
2548
7.75M
    }
2549
9.39M
  }
2550
2551
16.0k
  p->nowPos64 += nowPos32 - startPos32;
2552
16.0k
  return Flush(p, nowPos32);
2553
16.0k
}
2554
2555
2556
2557
7.97k
#define kBigHashDicLimit ((UInt32)1 << 24)
2558
2559
static SRes LzmaEnc_Alloc(CLzmaEnc *p, UInt32 keepWindowSize, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2560
7.97k
{
2561
7.97k
  UInt32 beforeSize = kNumOpts;
2562
7.97k
  if (!RangeEnc_Alloc(&p->rc, alloc))
2563
0
    return SZ_ERROR_MEM;
2564
2565
  #ifndef _7ZIP_ST
2566
  p->mtMode = (p->multiThread && !p->fastMode && (p->matchFinderBase.btMode != 0));
2567
  #endif
2568
2569
7.97k
  {
2570
7.97k
    unsigned lclp = p->lc + p->lp;
2571
7.97k
    if (!p->litProbs || !p->saveState.litProbs || p->lclp != lclp)
2572
7.97k
    {
2573
7.97k
      LzmaEnc_FreeLits(p, alloc);
2574
7.97k
      p->litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((UInt32)0x300 << lclp) * sizeof(CLzmaProb));
2575
7.97k
      p->saveState.litProbs = (CLzmaProb *)ISzAlloc_Alloc(alloc, ((UInt32)0x300 << lclp) * sizeof(CLzmaProb));
2576
7.97k
      if (!p->litProbs || !p->saveState.litProbs)
2577
0
      {
2578
0
        LzmaEnc_FreeLits(p, alloc);
2579
0
        return SZ_ERROR_MEM;
2580
0
      }
2581
7.97k
      p->lclp = lclp;
2582
7.97k
    }
2583
7.97k
  }
2584
2585
7.97k
  p->matchFinderBase.bigHash = (Byte)(p->dictSize > kBigHashDicLimit ? 1 : 0);
2586
2587
7.97k
  if (beforeSize + p->dictSize < keepWindowSize)
2588
0
    beforeSize = keepWindowSize - p->dictSize;
2589
2590
  #ifndef _7ZIP_ST
2591
  if (p->mtMode)
2592
  {
2593
    RINOK(MatchFinderMt_Create(&p->matchFinderMt, p->dictSize, beforeSize, p->numFastBytes,
2594
        LZMA_MATCH_LEN_MAX
2595
        + 1  /* 18.04 */
2596
        , allocBig));
2597
    p->matchFinderObj = &p->matchFinderMt;
2598
    p->matchFinderBase.bigHash = (Byte)(
2599
        (p->dictSize > kBigHashDicLimit && p->matchFinderBase.hashMask >= 0xFFFFFF) ? 1 : 0);
2600
    MatchFinderMt_CreateVTable(&p->matchFinderMt, &p->matchFinder);
2601
  }
2602
  else
2603
  #endif
2604
7.97k
  {
2605
7.97k
    if (!MatchFinder_Create(&p->matchFinderBase, p->dictSize, beforeSize, p->numFastBytes, LZMA_MATCH_LEN_MAX, allocBig))
2606
0
      return SZ_ERROR_MEM;
2607
7.97k
    p->matchFinderObj = &p->matchFinderBase;
2608
7.97k
    MatchFinder_CreateVTable(&p->matchFinderBase, &p->matchFinder);
2609
7.97k
  }
2610
  
2611
7.97k
  return SZ_OK;
2612
7.97k
}
2613
2614
void LzmaEnc_Init(CLzmaEnc *p)
2615
18.0k
{
2616
18.0k
  unsigned i;
2617
18.0k
  p->state = 0;
2618
18.0k
  p->reps[0] =
2619
18.0k
  p->reps[1] =
2620
18.0k
  p->reps[2] =
2621
18.0k
  p->reps[3] = 1;
2622
2623
18.0k
  RangeEnc_Init(&p->rc);
2624
2625
306k
  for (i = 0; i < (1 << kNumAlignBits); i++)
2626
288k
    p->posAlignEncoder[i] = kProbInitValue;
2627
2628
234k
  for (i = 0; i < kNumStates; i++)
2629
216k
  {
2630
216k
    unsigned j;
2631
3.67M
    for (j = 0; j < LZMA_NUM_PB_STATES_MAX; j++)
2632
3.45M
    {
2633
3.45M
      p->isMatch[i][j] = kProbInitValue;
2634
3.45M
      p->isRep0Long[i][j] = kProbInitValue;
2635
3.45M
    }
2636
216k
    p->isRep[i] = kProbInitValue;
2637
216k
    p->isRepG0[i] = kProbInitValue;
2638
216k
    p->isRepG1[i] = kProbInitValue;
2639
216k
    p->isRepG2[i] = kProbInitValue;
2640
216k
  }
2641
2642
18.0k
  {
2643
90.0k
    for (i = 0; i < kNumLenToPosStates; i++)
2644
72.0k
    {
2645
72.0k
      CLzmaProb *probs = p->posSlotEncoder[i];
2646
72.0k
      unsigned j;
2647
4.68M
      for (j = 0; j < (1 << kNumPosSlotBits); j++)
2648
4.60M
        probs[j] = kProbInitValue;
2649
72.0k
    }
2650
18.0k
  }
2651
18.0k
  {
2652
2.32M
    for (i = 0; i < kNumFullDistances; i++)
2653
2.30M
      p->posEncoders[i] = kProbInitValue;
2654
18.0k
  }
2655
2656
18.0k
  {
2657
18.0k
    UInt32 num = (UInt32)0x300 << (p->lp + p->lc);
2658
18.0k
    UInt32 k;
2659
18.0k
    CLzmaProb *probs = p->litProbs;
2660
116M
    for (k = 0; k < num; k++)
2661
116M
      probs[k] = kProbInitValue;
2662
18.0k
  }
2663
2664
2665
18.0k
  LenEnc_Init(&p->lenProbs);
2666
18.0k
  LenEnc_Init(&p->repLenProbs);
2667
2668
18.0k
  p->optEnd = 0;
2669
18.0k
  p->optCur = 0;
2670
2671
18.0k
  {
2672
36.8M
    for (i = 0; i < kNumOpts; i++)
2673
36.8M
      p->opt[i].price = kInfinityPrice;
2674
18.0k
  }
2675
2676
18.0k
  p->additionalOffset = 0;
2677
2678
18.0k
  p->pbMask = (1 << p->pb) - 1;
2679
18.0k
  p->lpMask = ((UInt32)0x100 << p->lp) - ((unsigned)0x100 >> p->lc);
2680
18.0k
}
2681
2682
2683
void LzmaEnc_InitPrices(CLzmaEnc *p)
2684
24.0k
{
2685
24.0k
  if (!p->fastMode)
2686
16.5k
  {
2687
16.5k
    FillDistancesPrices(p);
2688
16.5k
    FillAlignPrices(p);
2689
16.5k
  }
2690
2691
24.0k
  p->lenEnc.tableSize =
2692
24.0k
  p->repLenEnc.tableSize =
2693
24.0k
      p->numFastBytes + 1 - LZMA_MATCH_LEN_MIN;
2694
2695
24.0k
  p->repLenEncCounter = REP_LEN_COUNT;
2696
2697
24.0k
  LenPriceEnc_UpdateTables(&p->lenEnc, 1 << p->pb, &p->lenProbs, p->ProbPrices);
2698
24.0k
  LenPriceEnc_UpdateTables(&p->repLenEnc, 1 << p->pb, &p->repLenProbs, p->ProbPrices);
2699
24.0k
}
2700
2701
static SRes LzmaEnc_AllocAndInit(CLzmaEnc *p, UInt32 keepWindowSize, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2702
7.97k
{
2703
7.97k
  unsigned i;
2704
143k
  for (i = kEndPosModelIndex / 2; i < kDicLogSizeMax; i++)
2705
143k
    if (p->dictSize <= ((UInt32)1 << i))
2706
7.97k
      break;
2707
7.97k
  p->distTableSize = i * 2;
2708
2709
7.97k
  p->finished = False;
2710
7.97k
  p->result = SZ_OK;
2711
7.97k
  RINOK(LzmaEnc_Alloc(p, keepWindowSize, alloc, allocBig));
2712
7.97k
  LzmaEnc_Init(p);
2713
7.97k
  LzmaEnc_InitPrices(p);
2714
7.97k
  p->nowPos64 = 0;
2715
7.97k
  return SZ_OK;
2716
7.97k
}
2717
2718
static SRes LzmaEnc_Prepare(CLzmaEncHandle pp, ISeqOutStream *outStream, ISeqInStream *inStream,
2719
    ISzAllocPtr alloc, ISzAllocPtr allocBig)
2720
0
{
2721
0
  CLzmaEnc *p = (CLzmaEnc *)pp;
2722
0
  p->matchFinderBase.stream = inStream;
2723
0
  p->needInit = 1;
2724
0
  p->rc.outStream = outStream;
2725
0
  return LzmaEnc_AllocAndInit(p, 0, alloc, allocBig);
2726
0
}
2727
2728
SRes LzmaEnc_PrepareForLzma2(CLzmaEncHandle pp,
2729
    ISeqInStream *inStream, UInt32 keepWindowSize,
2730
    ISzAllocPtr alloc, ISzAllocPtr allocBig)
2731
7.97k
{
2732
7.97k
  CLzmaEnc *p = (CLzmaEnc *)pp;
2733
7.97k
  p->matchFinderBase.stream = inStream;
2734
7.97k
  p->needInit = 1;
2735
7.97k
  return LzmaEnc_AllocAndInit(p, keepWindowSize, alloc, allocBig);
2736
7.97k
}
2737
2738
static void LzmaEnc_SetInputBuf(CLzmaEnc *p, const Byte *src, SizeT srcLen)
2739
0
{
2740
0
  p->matchFinderBase.directInput = 1;
2741
0
  p->matchFinderBase.bufferBase = (Byte *)src;
2742
0
  p->matchFinderBase.directInputRem = srcLen;
2743
0
}
2744
2745
SRes LzmaEnc_MemPrepare(CLzmaEncHandle pp, const Byte *src, SizeT srcLen,
2746
    UInt32 keepWindowSize, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2747
0
{
2748
0
  CLzmaEnc *p = (CLzmaEnc *)pp;
2749
0
  LzmaEnc_SetInputBuf(p, src, srcLen);
2750
0
  p->needInit = 1;
2751
2752
0
  LzmaEnc_SetDataSize(pp, srcLen);
2753
0
  return LzmaEnc_AllocAndInit(p, keepWindowSize, alloc, allocBig);
2754
0
}
2755
2756
void LzmaEnc_Finish(CLzmaEncHandle pp)
2757
7.97k
{
2758
  #ifndef _7ZIP_ST
2759
  CLzmaEnc *p = (CLzmaEnc *)pp;
2760
  if (p->mtMode)
2761
    MatchFinderMt_ReleaseStream(&p->matchFinderMt);
2762
  #else
2763
7.97k
  UNUSED_VAR(pp);
2764
7.97k
  #endif
2765
7.97k
}
2766
2767
2768
typedef struct
2769
{
2770
  ISeqOutStream vt;
2771
  Byte *data;
2772
  SizeT rem;
2773
  BoolInt overflow;
2774
} CLzmaEnc_SeqOutStreamBuf;
2775
2776
static size_t SeqOutStreamBuf_Write(const ISeqOutStream *pp, const void *data, size_t size)
2777
16.0k
{
2778
16.0k
  CLzmaEnc_SeqOutStreamBuf *p = CONTAINER_FROM_VTBL(pp, CLzmaEnc_SeqOutStreamBuf, vt);
2779
16.0k
  if (p->rem < size)
2780
0
  {
2781
0
    size = p->rem;
2782
0
    p->overflow = True;
2783
0
  }
2784
16.0k
  memcpy(p->data, data, size);
2785
16.0k
  p->rem -= size;
2786
16.0k
  p->data += size;
2787
16.0k
  return size;
2788
16.0k
}
2789
2790
2791
UInt32 LzmaEnc_GetNumAvailableBytes(CLzmaEncHandle pp)
2792
0
{
2793
0
  const CLzmaEnc *p = (CLzmaEnc *)pp;
2794
0
  return p->matchFinder.GetNumAvailableBytes(p->matchFinderObj);
2795
0
}
2796
2797
2798
const Byte *LzmaEnc_GetCurBuf(CLzmaEncHandle pp)
2799
2.07k
{
2800
2.07k
  const CLzmaEnc *p = (CLzmaEnc *)pp;
2801
2.07k
  return p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - p->additionalOffset;
2802
2.07k
}
2803
2804
2805
SRes LzmaEnc_CodeOneMemBlock(CLzmaEncHandle pp, BoolInt reInit,
2806
    Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize)
2807
16.0k
{
2808
16.0k
  CLzmaEnc *p = (CLzmaEnc *)pp;
2809
16.0k
  UInt64 nowPos64;
2810
16.0k
  SRes res;
2811
16.0k
  CLzmaEnc_SeqOutStreamBuf outStream;
2812
2813
16.0k
  outStream.vt.Write = SeqOutStreamBuf_Write;
2814
16.0k
  outStream.data = dest;
2815
16.0k
  outStream.rem = *destLen;
2816
16.0k
  outStream.overflow = False;
2817
2818
16.0k
  p->writeEndMark = False;
2819
16.0k
  p->finished = False;
2820
16.0k
  p->result = SZ_OK;
2821
2822
16.0k
  if (reInit)
2823
10.0k
    LzmaEnc_Init(p);
2824
16.0k
  LzmaEnc_InitPrices(p);
2825
2826
16.0k
  nowPos64 = p->nowPos64;
2827
16.0k
  RangeEnc_Init(&p->rc);
2828
16.0k
  p->rc.outStream = &outStream.vt;
2829
2830
16.0k
  if (desiredPackSize == 0)
2831
0
    return SZ_ERROR_OUTPUT_EOF;
2832
2833
16.0k
  res = LzmaEnc_CodeOneBlock(p, desiredPackSize, *unpackSize);
2834
  
2835
16.0k
  *unpackSize = (UInt32)(p->nowPos64 - nowPos64);
2836
16.0k
  *destLen -= outStream.rem;
2837
16.0k
  if (outStream.overflow)
2838
0
    return SZ_ERROR_OUTPUT_EOF;
2839
2840
16.0k
  return res;
2841
16.0k
}
2842
2843
2844
static SRes LzmaEnc_Encode2(CLzmaEnc *p, ICompressProgress *progress)
2845
0
{
2846
0
  SRes res = SZ_OK;
2847
2848
  #ifndef _7ZIP_ST
2849
  Byte allocaDummy[0x300];
2850
  allocaDummy[0] = 0;
2851
  allocaDummy[1] = allocaDummy[0];
2852
  #endif
2853
2854
0
  for (;;)
2855
0
  {
2856
0
    res = LzmaEnc_CodeOneBlock(p, 0, 0);
2857
0
    if (res != SZ_OK || p->finished)
2858
0
      break;
2859
0
    if (progress)
2860
0
    {
2861
0
      res = ICompressProgress_Progress(progress, p->nowPos64, RangeEnc_GetProcessed(&p->rc));
2862
0
      if (res != SZ_OK)
2863
0
      {
2864
0
        res = SZ_ERROR_PROGRESS;
2865
0
        break;
2866
0
      }
2867
0
    }
2868
0
  }
2869
  
2870
0
  LzmaEnc_Finish(p);
2871
2872
  /*
2873
  if (res == SZ_OK && !Inline_MatchFinder_IsFinishedOK(&p->matchFinderBase))
2874
    res = SZ_ERROR_FAIL;
2875
  }
2876
  */
2877
2878
0
  return res;
2879
0
}
2880
2881
2882
SRes LzmaEnc_Encode(CLzmaEncHandle pp, ISeqOutStream *outStream, ISeqInStream *inStream, ICompressProgress *progress,
2883
    ISzAllocPtr alloc, ISzAllocPtr allocBig)
2884
0
{
2885
0
  RINOK(LzmaEnc_Prepare(pp, outStream, inStream, alloc, allocBig));
2886
0
  return LzmaEnc_Encode2((CLzmaEnc *)pp, progress);
2887
0
}
2888
2889
2890
SRes LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size)
2891
7.97k
{
2892
7.97k
  CLzmaEnc *p = (CLzmaEnc *)pp;
2893
7.97k
  unsigned i;
2894
7.97k
  UInt32 dictSize = p->dictSize;
2895
7.97k
  if (*size < LZMA_PROPS_SIZE)
2896
0
    return SZ_ERROR_PARAM;
2897
7.97k
  *size = LZMA_PROPS_SIZE;
2898
7.97k
  props[0] = (Byte)((p->pb * 5 + p->lp) * 9 + p->lc);
2899
2900
7.97k
  if (dictSize >= ((UInt32)1 << 22))
2901
7.97k
  {
2902
7.97k
    UInt32 kDictMask = ((UInt32)1 << 20) - 1;
2903
7.97k
    if (dictSize < (UInt32)0xFFFFFFFF - kDictMask)
2904
7.97k
      dictSize = (dictSize + kDictMask) & ~kDictMask;
2905
7.97k
  }
2906
0
  else for (i = 11; i <= 30; i++)
2907
0
  {
2908
0
    if (dictSize <= ((UInt32)2 << i)) { dictSize = (2 << i); break; }
2909
0
    if (dictSize <= ((UInt32)3 << i)) { dictSize = (3 << i); break; }
2910
0
  }
2911
2912
39.8k
  for (i = 0; i < 4; i++)
2913
31.9k
    props[1 + i] = (Byte)(dictSize >> (8 * i));
2914
7.97k
  return SZ_OK;
2915
7.97k
}
2916
2917
2918
unsigned LzmaEnc_IsWriteEndMark(CLzmaEncHandle pp)
2919
0
{
2920
0
  return ((CLzmaEnc *)pp)->writeEndMark;
2921
0
}
2922
2923
2924
SRes LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
2925
    int writeEndMark, ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2926
0
{
2927
0
  SRes res;
2928
0
  CLzmaEnc *p = (CLzmaEnc *)pp;
2929
2930
0
  CLzmaEnc_SeqOutStreamBuf outStream;
2931
2932
0
  outStream.vt.Write = SeqOutStreamBuf_Write;
2933
0
  outStream.data = dest;
2934
0
  outStream.rem = *destLen;
2935
0
  outStream.overflow = False;
2936
2937
0
  p->writeEndMark = writeEndMark;
2938
0
  p->rc.outStream = &outStream.vt;
2939
2940
0
  res = LzmaEnc_MemPrepare(pp, src, srcLen, 0, alloc, allocBig);
2941
  
2942
0
  if (res == SZ_OK)
2943
0
  {
2944
0
    res = LzmaEnc_Encode2(p, progress);
2945
0
    if (res == SZ_OK && p->nowPos64 != srcLen)
2946
0
      res = SZ_ERROR_FAIL;
2947
0
  }
2948
2949
0
  *destLen -= outStream.rem;
2950
0
  if (outStream.overflow)
2951
0
    return SZ_ERROR_OUTPUT_EOF;
2952
0
  return res;
2953
0
}
2954
2955
2956
SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
2957
    const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
2958
    ICompressProgress *progress, ISzAllocPtr alloc, ISzAllocPtr allocBig)
2959
0
{
2960
0
  CLzmaEnc *p = (CLzmaEnc *)LzmaEnc_Create(alloc);
2961
0
  SRes res;
2962
0
  if (!p)
2963
0
    return SZ_ERROR_MEM;
2964
2965
0
  res = LzmaEnc_SetProps(p, props);
2966
0
  if (res == SZ_OK)
2967
0
  {
2968
0
    res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize);
2969
0
    if (res == SZ_OK)
2970
0
      res = LzmaEnc_MemEncode(p, dest, destLen, src, srcLen,
2971
0
          writeEndMark, progress, alloc, allocBig);
2972
0
  }
2973
2974
0
  LzmaEnc_Destroy(p, alloc, allocBig);
2975
0
  return res;
2976
0
}