Coverage Report

Created: 2026-07-30 06:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Utilities/cmzstd/lib/common/bitstream.h
Line
Count
Source
1
/* ******************************************************************
2
 * bitstream
3
 * Part of FSE library
4
 * Copyright (c) Meta Platforms, Inc. and affiliates.
5
 *
6
 * You can contact the author at :
7
 * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy
8
 *
9
 * This source code is licensed under both the BSD-style license (found in the
10
 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
11
 * in the COPYING file in the root directory of this source tree).
12
 * You may select, at your option, one of the above-listed licenses.
13
****************************************************************** */
14
#ifndef BITSTREAM_H_MODULE
15
#define BITSTREAM_H_MODULE
16
17
#include <assert.h>
18
19
/*
20
*  This API consists of small unitary functions, which must be inlined for best performance.
21
*  Since link-time-optimization is not available for all compilers,
22
*  these functions are defined into a .h to be included.
23
*/
24
25
/*-****************************************
26
*  Dependencies
27
******************************************/
28
#include "mem.h"            /* unaligned access routines */
29
#include "compiler.h"       /* UNLIKELY() */
30
#include "debug.h"          /* assert(), DEBUGLOG(), RAWLOG() */
31
#include "error_private.h"  /* error codes and messages */
32
#include "bits.h"           /* ZSTD_highbit32 */
33
34
/*=========================================
35
*  Target specific
36
=========================================*/
37
#ifndef ZSTD_NO_INTRINSICS
38
#  if (defined(__BMI__) || defined(__BMI2__)) && defined(__GNUC__)
39
#    include <immintrin.h>   /* support for bextr (experimental)/bzhi */
40
#  elif defined(__ICCARM__)
41
#    include <intrinsics.h>
42
#  endif
43
#endif
44
45
0
#define STREAM_ACCUMULATOR_MIN_32  25
46
0
#define STREAM_ACCUMULATOR_MIN_64  57
47
0
#define STREAM_ACCUMULATOR_MIN    ((U32)(MEM_32bits() ? STREAM_ACCUMULATOR_MIN_32 : STREAM_ACCUMULATOR_MIN_64))
48
49
50
/*-******************************************
51
*  bitStream encoding API (write forward)
52
********************************************/
53
typedef size_t BitContainerType;
54
/* bitStream can mix input from multiple sources.
55
 * A critical property of these streams is that they encode and decode in **reverse** direction.
56
 * So the first bit sequence you add will be the last to be read, like a LIFO stack.
57
 */
58
typedef struct {
59
    BitContainerType bitContainer;
60
    unsigned bitPos;
61
    char*  startPtr;
62
    char*  ptr;
63
    char*  endPtr;
64
} BIT_CStream_t;
65
66
MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, void* dstBuffer, size_t dstCapacity);
67
MEM_STATIC void   BIT_addBits(BIT_CStream_t* bitC, BitContainerType value, unsigned nbBits);
68
MEM_STATIC void   BIT_flushBits(BIT_CStream_t* bitC);
69
MEM_STATIC size_t BIT_closeCStream(BIT_CStream_t* bitC);
70
71
/* Start with initCStream, providing the size of buffer to write into.
72
*  bitStream will never write outside of this buffer.
73
*  `dstCapacity` must be >= sizeof(bitD->bitContainer), otherwise @return will be an error code.
74
*
75
*  bits are first added to a local register.
76
*  Local register is BitContainerType, 64-bits on 64-bits systems, or 32-bits on 32-bits systems.
77
*  Writing data into memory is an explicit operation, performed by the flushBits function.
78
*  Hence keep track how many bits are potentially stored into local register to avoid register overflow.
79
*  After a flushBits, a maximum of 7 bits might still be stored into local register.
80
*
81
*  Avoid storing elements of more than 24 bits if you want compatibility with 32-bits bitstream readers.
82
*
83
*  Last operation is to close the bitStream.
84
*  The function returns the final size of CStream in bytes.
85
*  If data couldn't fit into `dstBuffer`, it will return a 0 ( == not storable)
86
*/
87
88
89
/*-********************************************
90
*  bitStream decoding API (read backward)
91
**********************************************/
92
typedef struct {
93
    BitContainerType bitContainer;
94
    unsigned bitsConsumed;
95
    const char* ptr;
96
    const char* start;
97
    const char* limitPtr;
98
} BIT_DStream_t;
99
100
typedef enum { BIT_DStream_unfinished = 0,  /* fully refilled */
101
               BIT_DStream_endOfBuffer = 1, /* still some bits left in bitstream */
102
               BIT_DStream_completed = 2,   /* bitstream entirely consumed, bit-exact */
103
               BIT_DStream_overflow = 3     /* user requested more bits than present in bitstream */
104
    } BIT_DStream_status;  /* result of BIT_reloadDStream() */
105
106
MEM_STATIC size_t   BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize);
107
MEM_STATIC BitContainerType BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits);
108
MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD);
109
MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* bitD);
110
111
112
/* Start by invoking BIT_initDStream().
113
*  A chunk of the bitStream is then stored into a local register.
114
*  Local register size is 64-bits on 64-bits systems, 32-bits on 32-bits systems (BitContainerType).
115
*  You can then retrieve bitFields stored into the local register, **in reverse order**.
116
*  Local register is explicitly reloaded from memory by the BIT_reloadDStream() method.
117
*  A reload guarantee a minimum of ((8*sizeof(bitD->bitContainer))-7) bits when its result is BIT_DStream_unfinished.
118
*  Otherwise, it can be less than that, so proceed accordingly.
119
*  Checking if DStream has reached its end can be performed with BIT_endOfDStream().
120
*/
121
122
123
/*-****************************************
124
*  unsafe API
125
******************************************/
126
MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC, BitContainerType value, unsigned nbBits);
127
/* faster, but works only if value is "clean", meaning all high bits above nbBits are 0 */
128
129
MEM_STATIC void BIT_flushBitsFast(BIT_CStream_t* bitC);
130
/* unsafe version; does not check buffer overflow */
131
132
MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits);
133
/* faster, but works only if nbBits >= 1 */
134
135
/*=====    Local Constants   =====*/
136
static const unsigned BIT_mask[] = {
137
    0,          1,         3,         7,         0xF,       0x1F,
138
    0x3F,       0x7F,      0xFF,      0x1FF,     0x3FF,     0x7FF,
139
    0xFFF,      0x1FFF,    0x3FFF,    0x7FFF,    0xFFFF,    0x1FFFF,
140
    0x3FFFF,    0x7FFFF,   0xFFFFF,   0x1FFFFF,  0x3FFFFF,  0x7FFFFF,
141
    0xFFFFFF,   0x1FFFFFF, 0x3FFFFFF, 0x7FFFFFF, 0xFFFFFFF, 0x1FFFFFFF,
142
    0x3FFFFFFF, 0x7FFFFFFF}; /* up to 31 bits */
143
#define BIT_MASK_SIZE (sizeof(BIT_mask) / sizeof(BIT_mask[0]))
144
145
/*-**************************************************************
146
*  bitStream encoding
147
****************************************************************/
148
/*! BIT_initCStream() :
149
 *  `dstCapacity` must be > sizeof(size_t)
150
 *  @return : 0 if success,
151
 *            otherwise an error code (can be tested using ERR_isError()) */
152
MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC,
153
                                  void* startPtr, size_t dstCapacity)
154
0
{
155
0
    bitC->bitContainer = 0;
156
0
    bitC->bitPos = 0;
157
0
    bitC->startPtr = (char*)startPtr;
158
0
    bitC->ptr = bitC->startPtr;
159
0
    bitC->endPtr = bitC->startPtr + dstCapacity - sizeof(bitC->bitContainer);
160
0
    if (dstCapacity <= sizeof(bitC->bitContainer)) return ERROR(dstSize_tooSmall);
161
0
    return 0;
162
0
}
Unexecuted instantiation: zstd_common.c:BIT_initCStream
Unexecuted instantiation: zstd_compress.c:BIT_initCStream
Unexecuted instantiation: zstd_compress_literals.c:BIT_initCStream
Unexecuted instantiation: zstd_compress_sequences.c:BIT_initCStream
Unexecuted instantiation: zstd_compress_superblock.c:BIT_initCStream
Unexecuted instantiation: zstd_double_fast.c:BIT_initCStream
Unexecuted instantiation: zstd_fast.c:BIT_initCStream
Unexecuted instantiation: zstd_lazy.c:BIT_initCStream
Unexecuted instantiation: zstd_ldm.c:BIT_initCStream
Unexecuted instantiation: zstdmt_compress.c:BIT_initCStream
Unexecuted instantiation: zstd_opt.c:BIT_initCStream
Unexecuted instantiation: zstd_preSplit.c:BIT_initCStream
Unexecuted instantiation: zstd_decompress.c:BIT_initCStream
Unexecuted instantiation: entropy_common.c:BIT_initCStream
Unexecuted instantiation: fse_decompress.c:BIT_initCStream
Unexecuted instantiation: fse_compress.c:BIT_initCStream
Unexecuted instantiation: huf_compress.c:BIT_initCStream
Unexecuted instantiation: huf_decompress.c:BIT_initCStream
Unexecuted instantiation: zstd_ddict.c:BIT_initCStream
Unexecuted instantiation: zstd_decompress_block.c:BIT_initCStream
163
164
FORCE_INLINE_TEMPLATE BitContainerType BIT_getLowerBits(BitContainerType bitContainer, U32 const nbBits)
165
0
{
166
#if STATIC_BMI2 && !defined(ZSTD_NO_INTRINSICS)
167
#  if (defined(__x86_64__) || defined(_M_X64)) && !defined(__ILP32__)
168
    return _bzhi_u64(bitContainer, nbBits);
169
#  else
170
    DEBUG_STATIC_ASSERT(sizeof(bitContainer) == sizeof(U32));
171
    return _bzhi_u32(bitContainer, nbBits);
172
#  endif
173
#else
174
0
    assert(nbBits < BIT_MASK_SIZE);
175
0
    return bitContainer & BIT_mask[nbBits];
176
0
#endif
177
0
}
Unexecuted instantiation: zstd_common.c:BIT_getLowerBits
Unexecuted instantiation: zstd_compress.c:BIT_getLowerBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_getLowerBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_getLowerBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_getLowerBits
Unexecuted instantiation: zstd_double_fast.c:BIT_getLowerBits
Unexecuted instantiation: zstd_fast.c:BIT_getLowerBits
Unexecuted instantiation: zstd_lazy.c:BIT_getLowerBits
Unexecuted instantiation: zstd_ldm.c:BIT_getLowerBits
Unexecuted instantiation: zstdmt_compress.c:BIT_getLowerBits
Unexecuted instantiation: zstd_opt.c:BIT_getLowerBits
Unexecuted instantiation: zstd_preSplit.c:BIT_getLowerBits
Unexecuted instantiation: zstd_decompress.c:BIT_getLowerBits
Unexecuted instantiation: entropy_common.c:BIT_getLowerBits
Unexecuted instantiation: fse_decompress.c:BIT_getLowerBits
Unexecuted instantiation: fse_compress.c:BIT_getLowerBits
Unexecuted instantiation: huf_compress.c:BIT_getLowerBits
Unexecuted instantiation: huf_decompress.c:BIT_getLowerBits
Unexecuted instantiation: zstd_ddict.c:BIT_getLowerBits
Unexecuted instantiation: zstd_decompress_block.c:BIT_getLowerBits
178
179
/*! BIT_addBits() :
180
 *  can add up to 31 bits into `bitC`.
181
 *  Note : does not check for register overflow ! */
182
MEM_STATIC void BIT_addBits(BIT_CStream_t* bitC,
183
                            BitContainerType value, unsigned nbBits)
184
0
{
185
0
    DEBUG_STATIC_ASSERT(BIT_MASK_SIZE == 32);
186
0
    assert(nbBits < BIT_MASK_SIZE);
187
0
    assert(nbBits + bitC->bitPos < sizeof(bitC->bitContainer) * 8);
188
0
    bitC->bitContainer |= BIT_getLowerBits(value, nbBits) << bitC->bitPos;
189
0
    bitC->bitPos += nbBits;
190
0
}
Unexecuted instantiation: zstd_common.c:BIT_addBits
Unexecuted instantiation: zstd_compress.c:BIT_addBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_addBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_addBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_addBits
Unexecuted instantiation: zstd_double_fast.c:BIT_addBits
Unexecuted instantiation: zstd_fast.c:BIT_addBits
Unexecuted instantiation: zstd_lazy.c:BIT_addBits
Unexecuted instantiation: zstd_ldm.c:BIT_addBits
Unexecuted instantiation: zstdmt_compress.c:BIT_addBits
Unexecuted instantiation: zstd_opt.c:BIT_addBits
Unexecuted instantiation: zstd_preSplit.c:BIT_addBits
Unexecuted instantiation: zstd_decompress.c:BIT_addBits
Unexecuted instantiation: entropy_common.c:BIT_addBits
Unexecuted instantiation: fse_decompress.c:BIT_addBits
Unexecuted instantiation: fse_compress.c:BIT_addBits
Unexecuted instantiation: huf_compress.c:BIT_addBits
Unexecuted instantiation: huf_decompress.c:BIT_addBits
Unexecuted instantiation: zstd_ddict.c:BIT_addBits
Unexecuted instantiation: zstd_decompress_block.c:BIT_addBits
191
192
/*! BIT_addBitsFast() :
193
 *  works only if `value` is _clean_,
194
 *  meaning all high bits above nbBits are 0 */
195
MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC,
196
                                BitContainerType value, unsigned nbBits)
197
0
{
198
0
    assert((value>>nbBits) == 0);
199
0
    assert(nbBits + bitC->bitPos < sizeof(bitC->bitContainer) * 8);
200
0
    bitC->bitContainer |= value << bitC->bitPos;
201
0
    bitC->bitPos += nbBits;
202
0
}
Unexecuted instantiation: zstd_common.c:BIT_addBitsFast
Unexecuted instantiation: zstd_compress.c:BIT_addBitsFast
Unexecuted instantiation: zstd_compress_literals.c:BIT_addBitsFast
Unexecuted instantiation: zstd_compress_sequences.c:BIT_addBitsFast
Unexecuted instantiation: zstd_compress_superblock.c:BIT_addBitsFast
Unexecuted instantiation: zstd_double_fast.c:BIT_addBitsFast
Unexecuted instantiation: zstd_fast.c:BIT_addBitsFast
Unexecuted instantiation: zstd_lazy.c:BIT_addBitsFast
Unexecuted instantiation: zstd_ldm.c:BIT_addBitsFast
Unexecuted instantiation: zstdmt_compress.c:BIT_addBitsFast
Unexecuted instantiation: zstd_opt.c:BIT_addBitsFast
Unexecuted instantiation: zstd_preSplit.c:BIT_addBitsFast
Unexecuted instantiation: zstd_decompress.c:BIT_addBitsFast
Unexecuted instantiation: entropy_common.c:BIT_addBitsFast
Unexecuted instantiation: fse_decompress.c:BIT_addBitsFast
Unexecuted instantiation: fse_compress.c:BIT_addBitsFast
Unexecuted instantiation: huf_compress.c:BIT_addBitsFast
Unexecuted instantiation: huf_decompress.c:BIT_addBitsFast
Unexecuted instantiation: zstd_ddict.c:BIT_addBitsFast
Unexecuted instantiation: zstd_decompress_block.c:BIT_addBitsFast
203
204
/*! BIT_flushBitsFast() :
205
 *  assumption : bitContainer has not overflowed
206
 *  unsafe version; does not check buffer overflow */
207
MEM_STATIC void BIT_flushBitsFast(BIT_CStream_t* bitC)
208
0
{
209
0
    size_t const nbBytes = bitC->bitPos >> 3;
210
0
    assert(bitC->bitPos < sizeof(bitC->bitContainer) * 8);
211
0
    assert(bitC->ptr <= bitC->endPtr);
212
0
    MEM_writeLEST(bitC->ptr, bitC->bitContainer);
213
0
    bitC->ptr += nbBytes;
214
0
    bitC->bitPos &= 7;
215
0
    bitC->bitContainer >>= nbBytes*8;
216
0
}
Unexecuted instantiation: zstd_common.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_compress.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_compress_literals.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_compress_sequences.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_compress_superblock.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_double_fast.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_fast.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_lazy.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_ldm.c:BIT_flushBitsFast
Unexecuted instantiation: zstdmt_compress.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_opt.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_preSplit.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_decompress.c:BIT_flushBitsFast
Unexecuted instantiation: entropy_common.c:BIT_flushBitsFast
Unexecuted instantiation: fse_decompress.c:BIT_flushBitsFast
Unexecuted instantiation: fse_compress.c:BIT_flushBitsFast
Unexecuted instantiation: huf_compress.c:BIT_flushBitsFast
Unexecuted instantiation: huf_decompress.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_ddict.c:BIT_flushBitsFast
Unexecuted instantiation: zstd_decompress_block.c:BIT_flushBitsFast
217
218
/*! BIT_flushBits() :
219
 *  assumption : bitContainer has not overflowed
220
 *  safe version; check for buffer overflow, and prevents it.
221
 *  note : does not signal buffer overflow.
222
 *  overflow will be revealed later on using BIT_closeCStream() */
223
MEM_STATIC void BIT_flushBits(BIT_CStream_t* bitC)
224
0
{
225
0
    size_t const nbBytes = bitC->bitPos >> 3;
226
0
    assert(bitC->bitPos < sizeof(bitC->bitContainer) * 8);
227
0
    assert(bitC->ptr <= bitC->endPtr);
228
0
    MEM_writeLEST(bitC->ptr, bitC->bitContainer);
229
0
    bitC->ptr += nbBytes;
230
0
    if (bitC->ptr > bitC->endPtr) bitC->ptr = bitC->endPtr;
231
0
    bitC->bitPos &= 7;
232
0
    bitC->bitContainer >>= nbBytes*8;
233
0
}
Unexecuted instantiation: zstd_common.c:BIT_flushBits
Unexecuted instantiation: zstd_compress.c:BIT_flushBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_flushBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_flushBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_flushBits
Unexecuted instantiation: zstd_double_fast.c:BIT_flushBits
Unexecuted instantiation: zstd_fast.c:BIT_flushBits
Unexecuted instantiation: zstd_lazy.c:BIT_flushBits
Unexecuted instantiation: zstd_ldm.c:BIT_flushBits
Unexecuted instantiation: zstdmt_compress.c:BIT_flushBits
Unexecuted instantiation: zstd_opt.c:BIT_flushBits
Unexecuted instantiation: zstd_preSplit.c:BIT_flushBits
Unexecuted instantiation: zstd_decompress.c:BIT_flushBits
Unexecuted instantiation: entropy_common.c:BIT_flushBits
Unexecuted instantiation: fse_decompress.c:BIT_flushBits
Unexecuted instantiation: fse_compress.c:BIT_flushBits
Unexecuted instantiation: huf_compress.c:BIT_flushBits
Unexecuted instantiation: huf_decompress.c:BIT_flushBits
Unexecuted instantiation: zstd_ddict.c:BIT_flushBits
Unexecuted instantiation: zstd_decompress_block.c:BIT_flushBits
234
235
/*! BIT_closeCStream() :
236
 *  @return : size of CStream, in bytes,
237
 *            or 0 if it could not fit into dstBuffer */
238
MEM_STATIC size_t BIT_closeCStream(BIT_CStream_t* bitC)
239
0
{
240
0
    BIT_addBitsFast(bitC, 1, 1);   /* endMark */
241
0
    BIT_flushBits(bitC);
242
0
    if (bitC->ptr >= bitC->endPtr) return 0; /* overflow detected */
243
0
    return (size_t)(bitC->ptr - bitC->startPtr) + (bitC->bitPos > 0);
244
0
}
Unexecuted instantiation: zstd_common.c:BIT_closeCStream
Unexecuted instantiation: zstd_compress.c:BIT_closeCStream
Unexecuted instantiation: zstd_compress_literals.c:BIT_closeCStream
Unexecuted instantiation: zstd_compress_sequences.c:BIT_closeCStream
Unexecuted instantiation: zstd_compress_superblock.c:BIT_closeCStream
Unexecuted instantiation: zstd_double_fast.c:BIT_closeCStream
Unexecuted instantiation: zstd_fast.c:BIT_closeCStream
Unexecuted instantiation: zstd_lazy.c:BIT_closeCStream
Unexecuted instantiation: zstd_ldm.c:BIT_closeCStream
Unexecuted instantiation: zstdmt_compress.c:BIT_closeCStream
Unexecuted instantiation: zstd_opt.c:BIT_closeCStream
Unexecuted instantiation: zstd_preSplit.c:BIT_closeCStream
Unexecuted instantiation: zstd_decompress.c:BIT_closeCStream
Unexecuted instantiation: entropy_common.c:BIT_closeCStream
Unexecuted instantiation: fse_decompress.c:BIT_closeCStream
Unexecuted instantiation: fse_compress.c:BIT_closeCStream
Unexecuted instantiation: huf_compress.c:BIT_closeCStream
Unexecuted instantiation: huf_decompress.c:BIT_closeCStream
Unexecuted instantiation: zstd_ddict.c:BIT_closeCStream
Unexecuted instantiation: zstd_decompress_block.c:BIT_closeCStream
245
246
247
/*-********************************************************
248
*  bitStream decoding
249
**********************************************************/
250
/*! BIT_initDStream() :
251
 *  Initialize a BIT_DStream_t.
252
 * `bitD` : a pointer to an already allocated BIT_DStream_t structure.
253
 * `srcSize` must be the *exact* size of the bitStream, in bytes.
254
 * @return : size of stream (== srcSize), or an errorCode if a problem is detected
255
 */
256
MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize)
257
3.62k
{
258
3.62k
    if (srcSize < 1) { ZSTD_memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); }
259
260
3.54k
    bitD->start = (const char*)srcBuffer;
261
3.54k
    bitD->limitPtr = bitD->start + sizeof(bitD->bitContainer);
262
263
3.54k
    if (srcSize >=  sizeof(bitD->bitContainer)) {  /* normal case */
264
1.51k
        bitD->ptr   = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer);
265
1.51k
        bitD->bitContainer = MEM_readLEST(bitD->ptr);
266
1.51k
        { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
267
1.51k
          bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;  /* ensures bitsConsumed is always set */
268
1.51k
          if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
269
2.02k
    } else {
270
2.02k
        bitD->ptr   = bitD->start;
271
2.02k
        bitD->bitContainer = *(const BYTE*)(bitD->start);
272
2.02k
        switch(srcSize)
273
2.02k
        {
274
228
        case 7: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
275
228
                ZSTD_FALLTHROUGH;
276
277
592
        case 6: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
278
592
                ZSTD_FALLTHROUGH;
279
280
866
        case 5: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
281
866
                ZSTD_FALLTHROUGH;
282
283
1.32k
        case 4: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[3]) << 24;
284
1.32k
                ZSTD_FALLTHROUGH;
285
286
1.52k
        case 3: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[2]) << 16;
287
1.52k
                ZSTD_FALLTHROUGH;
288
289
1.66k
        case 2: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[1]) <<  8;
290
1.66k
                ZSTD_FALLTHROUGH;
291
292
2.02k
        default: break;
293
2.02k
        }
294
2.02k
        {   BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
295
2.02k
            bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;
296
2.02k
            if (lastByte == 0) return ERROR(corruption_detected);  /* endMark not present */
297
2.02k
        }
298
1.96k
        bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8;
299
1.96k
    }
300
301
3.41k
    return srcSize;
302
3.54k
}
Unexecuted instantiation: zstd_common.c:BIT_initDStream
Unexecuted instantiation: zstd_compress.c:BIT_initDStream
Unexecuted instantiation: zstd_compress_literals.c:BIT_initDStream
Unexecuted instantiation: zstd_compress_sequences.c:BIT_initDStream
Unexecuted instantiation: zstd_compress_superblock.c:BIT_initDStream
Unexecuted instantiation: zstd_double_fast.c:BIT_initDStream
Unexecuted instantiation: zstd_fast.c:BIT_initDStream
Unexecuted instantiation: zstd_lazy.c:BIT_initDStream
Unexecuted instantiation: zstd_ldm.c:BIT_initDStream
Unexecuted instantiation: zstdmt_compress.c:BIT_initDStream
Unexecuted instantiation: zstd_opt.c:BIT_initDStream
Unexecuted instantiation: zstd_preSplit.c:BIT_initDStream
Unexecuted instantiation: zstd_decompress.c:BIT_initDStream
Unexecuted instantiation: entropy_common.c:BIT_initDStream
fse_decompress.c:BIT_initDStream
Line
Count
Source
257
846
{
258
846
    if (srcSize < 1) { ZSTD_memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); }
259
260
834
    bitD->start = (const char*)srcBuffer;
261
834
    bitD->limitPtr = bitD->start + sizeof(bitD->bitContainer);
262
263
834
    if (srcSize >=  sizeof(bitD->bitContainer)) {  /* normal case */
264
416
        bitD->ptr   = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer);
265
416
        bitD->bitContainer = MEM_readLEST(bitD->ptr);
266
416
        { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
267
416
          bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;  /* ensures bitsConsumed is always set */
268
416
          if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
269
418
    } else {
270
418
        bitD->ptr   = bitD->start;
271
418
        bitD->bitContainer = *(const BYTE*)(bitD->start);
272
418
        switch(srcSize)
273
418
        {
274
30
        case 7: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
275
30
                ZSTD_FALLTHROUGH;
276
277
340
        case 6: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
278
340
                ZSTD_FALLTHROUGH;
279
280
354
        case 5: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
281
354
                ZSTD_FALLTHROUGH;
282
283
364
        case 4: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[3]) << 24;
284
364
                ZSTD_FALLTHROUGH;
285
286
386
        case 3: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[2]) << 16;
287
386
                ZSTD_FALLTHROUGH;
288
289
408
        case 2: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[1]) <<  8;
290
408
                ZSTD_FALLTHROUGH;
291
292
418
        default: break;
293
418
        }
294
418
        {   BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
295
418
            bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;
296
418
            if (lastByte == 0) return ERROR(corruption_detected);  /* endMark not present */
297
418
        }
298
408
        bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8;
299
408
    }
300
301
802
    return srcSize;
302
834
}
Unexecuted instantiation: fse_compress.c:BIT_initDStream
Unexecuted instantiation: huf_compress.c:BIT_initDStream
huf_decompress.c:BIT_initDStream
Line
Count
Source
257
1.35k
{
258
1.35k
    if (srcSize < 1) { ZSTD_memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); }
259
260
1.30k
    bitD->start = (const char*)srcBuffer;
261
1.30k
    bitD->limitPtr = bitD->start + sizeof(bitD->bitContainer);
262
263
1.30k
    if (srcSize >=  sizeof(bitD->bitContainer)) {  /* normal case */
264
486
        bitD->ptr   = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer);
265
486
        bitD->bitContainer = MEM_readLEST(bitD->ptr);
266
486
        { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
267
486
          bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;  /* ensures bitsConsumed is always set */
268
486
          if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
269
822
    } else {
270
822
        bitD->ptr   = bitD->start;
271
822
        bitD->bitContainer = *(const BYTE*)(bitD->start);
272
822
        switch(srcSize)
273
822
        {
274
22
        case 7: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
275
22
                ZSTD_FALLTHROUGH;
276
277
42
        case 6: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
278
42
                ZSTD_FALLTHROUGH;
279
280
236
        case 5: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
281
236
                ZSTD_FALLTHROUGH;
282
283
508
        case 4: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[3]) << 24;
284
508
                ZSTD_FALLTHROUGH;
285
286
532
        case 3: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[2]) << 16;
287
532
                ZSTD_FALLTHROUGH;
288
289
556
        case 2: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[1]) <<  8;
290
556
                ZSTD_FALLTHROUGH;
291
292
822
        default: break;
293
822
        }
294
822
        {   BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
295
822
            bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;
296
822
            if (lastByte == 0) return ERROR(corruption_detected);  /* endMark not present */
297
822
        }
298
796
        bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8;
299
796
    }
300
301
1.26k
    return srcSize;
302
1.30k
}
Unexecuted instantiation: zstd_ddict.c:BIT_initDStream
zstd_decompress_block.c:BIT_initDStream
Line
Count
Source
257
1.42k
{
258
1.42k
    if (srcSize < 1) { ZSTD_memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); }
259
260
1.39k
    bitD->start = (const char*)srcBuffer;
261
1.39k
    bitD->limitPtr = bitD->start + sizeof(bitD->bitContainer);
262
263
1.39k
    if (srcSize >=  sizeof(bitD->bitContainer)) {  /* normal case */
264
612
        bitD->ptr   = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer);
265
612
        bitD->bitContainer = MEM_readLEST(bitD->ptr);
266
612
        { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
267
612
          bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;  /* ensures bitsConsumed is always set */
268
612
          if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ }
269
786
    } else {
270
786
        bitD->ptr   = bitD->start;
271
786
        bitD->bitContainer = *(const BYTE*)(bitD->start);
272
786
        switch(srcSize)
273
786
        {
274
176
        case 7: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16);
275
176
                ZSTD_FALLTHROUGH;
276
277
210
        case 6: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24);
278
210
                ZSTD_FALLTHROUGH;
279
280
276
        case 5: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32);
281
276
                ZSTD_FALLTHROUGH;
282
283
456
        case 4: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[3]) << 24;
284
456
                ZSTD_FALLTHROUGH;
285
286
602
        case 3: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[2]) << 16;
287
602
                ZSTD_FALLTHROUGH;
288
289
700
        case 2: bitD->bitContainer += (BitContainerType)(((const BYTE*)(srcBuffer))[1]) <<  8;
290
700
                ZSTD_FALLTHROUGH;
291
292
786
        default: break;
293
786
        }
294
786
        {   BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1];
295
786
            bitD->bitsConsumed = lastByte ? 8 - ZSTD_highbit32(lastByte) : 0;
296
786
            if (lastByte == 0) return ERROR(corruption_detected);  /* endMark not present */
297
786
        }
298
764
        bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8;
299
764
    }
300
301
1.34k
    return srcSize;
302
1.39k
}
303
304
FORCE_INLINE_TEMPLATE BitContainerType BIT_getUpperBits(BitContainerType bitContainer, U32 const start)
305
0
{
306
0
    return bitContainer >> start;
307
0
}
Unexecuted instantiation: zstd_common.c:BIT_getUpperBits
Unexecuted instantiation: zstd_compress.c:BIT_getUpperBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_getUpperBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_getUpperBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_getUpperBits
Unexecuted instantiation: zstd_double_fast.c:BIT_getUpperBits
Unexecuted instantiation: zstd_fast.c:BIT_getUpperBits
Unexecuted instantiation: zstd_lazy.c:BIT_getUpperBits
Unexecuted instantiation: zstd_ldm.c:BIT_getUpperBits
Unexecuted instantiation: zstdmt_compress.c:BIT_getUpperBits
Unexecuted instantiation: zstd_opt.c:BIT_getUpperBits
Unexecuted instantiation: zstd_preSplit.c:BIT_getUpperBits
Unexecuted instantiation: zstd_decompress.c:BIT_getUpperBits
Unexecuted instantiation: entropy_common.c:BIT_getUpperBits
Unexecuted instantiation: fse_decompress.c:BIT_getUpperBits
Unexecuted instantiation: fse_compress.c:BIT_getUpperBits
Unexecuted instantiation: huf_compress.c:BIT_getUpperBits
Unexecuted instantiation: huf_decompress.c:BIT_getUpperBits
Unexecuted instantiation: zstd_ddict.c:BIT_getUpperBits
Unexecuted instantiation: zstd_decompress_block.c:BIT_getUpperBits
308
309
FORCE_INLINE_TEMPLATE BitContainerType BIT_getMiddleBits(BitContainerType bitContainer, U32 const start, U32 const nbBits)
310
8.44M
{
311
8.44M
    U32 const regMask = sizeof(bitContainer)*8 - 1;
312
    /* if start > regMask, bitstream is corrupted, and result is undefined */
313
8.44M
    assert(nbBits < BIT_MASK_SIZE);
314
    /* x86 transform & ((1 << nbBits) - 1) to bzhi instruction, it is better
315
     * than accessing memory. When bmi2 instruction is not present, we consider
316
     * such cpus old (pre-Haswell, 2013) and their performance is not of that
317
     * importance.
318
     */
319
8.44M
#if defined(__x86_64__) || defined(_M_X64)
320
8.44M
    return (bitContainer >> (start & regMask)) & ((((U64)1) << nbBits) - 1);
321
#else
322
    return (bitContainer >> (start & regMask)) & BIT_mask[nbBits];
323
#endif
324
8.44M
}
Unexecuted instantiation: zstd_common.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_compress.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_double_fast.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_fast.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_lazy.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_ldm.c:BIT_getMiddleBits
Unexecuted instantiation: zstdmt_compress.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_opt.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_preSplit.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_decompress.c:BIT_getMiddleBits
Unexecuted instantiation: entropy_common.c:BIT_getMiddleBits
fse_decompress.c:BIT_getMiddleBits
Line
Count
Source
310
38.3k
{
311
38.3k
    U32 const regMask = sizeof(bitContainer)*8 - 1;
312
    /* if start > regMask, bitstream is corrupted, and result is undefined */
313
38.3k
    assert(nbBits < BIT_MASK_SIZE);
314
    /* x86 transform & ((1 << nbBits) - 1) to bzhi instruction, it is better
315
     * than accessing memory. When bmi2 instruction is not present, we consider
316
     * such cpus old (pre-Haswell, 2013) and their performance is not of that
317
     * importance.
318
     */
319
38.3k
#if defined(__x86_64__) || defined(_M_X64)
320
38.3k
    return (bitContainer >> (start & regMask)) & ((((U64)1) << nbBits) - 1);
321
#else
322
    return (bitContainer >> (start & regMask)) & BIT_mask[nbBits];
323
#endif
324
38.3k
}
Unexecuted instantiation: fse_compress.c:BIT_getMiddleBits
Unexecuted instantiation: huf_compress.c:BIT_getMiddleBits
Unexecuted instantiation: huf_decompress.c:BIT_getMiddleBits
Unexecuted instantiation: zstd_ddict.c:BIT_getMiddleBits
zstd_decompress_block.c:BIT_getMiddleBits
Line
Count
Source
310
8.40M
{
311
8.40M
    U32 const regMask = sizeof(bitContainer)*8 - 1;
312
    /* if start > regMask, bitstream is corrupted, and result is undefined */
313
8.40M
    assert(nbBits < BIT_MASK_SIZE);
314
    /* x86 transform & ((1 << nbBits) - 1) to bzhi instruction, it is better
315
     * than accessing memory. When bmi2 instruction is not present, we consider
316
     * such cpus old (pre-Haswell, 2013) and their performance is not of that
317
     * importance.
318
     */
319
8.40M
#if defined(__x86_64__) || defined(_M_X64)
320
8.40M
    return (bitContainer >> (start & regMask)) & ((((U64)1) << nbBits) - 1);
321
#else
322
    return (bitContainer >> (start & regMask)) & BIT_mask[nbBits];
323
#endif
324
8.40M
}
325
326
/*! BIT_lookBits() :
327
 *  Provides next n bits from local register.
328
 *  local register is not modified.
329
 *  On 32-bits, maxNbBits==24.
330
 *  On 64-bits, maxNbBits==56.
331
 * @return : value extracted */
332
FORCE_INLINE_TEMPLATE BitContainerType BIT_lookBits(const BIT_DStream_t*  bitD, U32 nbBits)
333
8.44M
{
334
    /* arbitrate between double-shift and shift+mask */
335
8.44M
#if 1
336
    /* if bitD->bitsConsumed + nbBits > sizeof(bitD->bitContainer)*8,
337
     * bitstream is likely corrupted, and result is undefined */
338
8.44M
    return BIT_getMiddleBits(bitD->bitContainer, (sizeof(bitD->bitContainer)*8) - bitD->bitsConsumed - nbBits, nbBits);
339
#else
340
    /* this code path is slower on my os-x laptop */
341
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
342
    return ((bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> 1) >> ((regMask-nbBits) & regMask);
343
#endif
344
8.44M
}
Unexecuted instantiation: zstd_common.c:BIT_lookBits
Unexecuted instantiation: zstd_compress.c:BIT_lookBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_lookBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_lookBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_lookBits
Unexecuted instantiation: zstd_double_fast.c:BIT_lookBits
Unexecuted instantiation: zstd_fast.c:BIT_lookBits
Unexecuted instantiation: zstd_lazy.c:BIT_lookBits
Unexecuted instantiation: zstd_ldm.c:BIT_lookBits
Unexecuted instantiation: zstdmt_compress.c:BIT_lookBits
Unexecuted instantiation: zstd_opt.c:BIT_lookBits
Unexecuted instantiation: zstd_preSplit.c:BIT_lookBits
Unexecuted instantiation: zstd_decompress.c:BIT_lookBits
Unexecuted instantiation: entropy_common.c:BIT_lookBits
fse_decompress.c:BIT_lookBits
Line
Count
Source
333
38.3k
{
334
    /* arbitrate between double-shift and shift+mask */
335
38.3k
#if 1
336
    /* if bitD->bitsConsumed + nbBits > sizeof(bitD->bitContainer)*8,
337
     * bitstream is likely corrupted, and result is undefined */
338
38.3k
    return BIT_getMiddleBits(bitD->bitContainer, (sizeof(bitD->bitContainer)*8) - bitD->bitsConsumed - nbBits, nbBits);
339
#else
340
    /* this code path is slower on my os-x laptop */
341
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
342
    return ((bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> 1) >> ((regMask-nbBits) & regMask);
343
#endif
344
38.3k
}
Unexecuted instantiation: fse_compress.c:BIT_lookBits
Unexecuted instantiation: huf_compress.c:BIT_lookBits
Unexecuted instantiation: huf_decompress.c:BIT_lookBits
Unexecuted instantiation: zstd_ddict.c:BIT_lookBits
zstd_decompress_block.c:BIT_lookBits
Line
Count
Source
333
8.40M
{
334
    /* arbitrate between double-shift and shift+mask */
335
8.40M
#if 1
336
    /* if bitD->bitsConsumed + nbBits > sizeof(bitD->bitContainer)*8,
337
     * bitstream is likely corrupted, and result is undefined */
338
8.40M
    return BIT_getMiddleBits(bitD->bitContainer, (sizeof(bitD->bitContainer)*8) - bitD->bitsConsumed - nbBits, nbBits);
339
#else
340
    /* this code path is slower on my os-x laptop */
341
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
342
    return ((bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> 1) >> ((regMask-nbBits) & regMask);
343
#endif
344
8.40M
}
345
346
/*! BIT_lookBitsFast() :
347
 *  unsafe version; only works if nbBits >= 1 */
348
MEM_STATIC BitContainerType BIT_lookBitsFast(const BIT_DStream_t* bitD, U32 nbBits)
349
2.30M
{
350
2.30M
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
351
2.30M
    assert(nbBits >= 1);
352
2.30M
    return (bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> (((regMask+1)-nbBits) & regMask);
353
2.30M
}
Unexecuted instantiation: zstd_common.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_compress.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_compress_literals.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_compress_sequences.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_compress_superblock.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_double_fast.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_fast.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_lazy.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_ldm.c:BIT_lookBitsFast
Unexecuted instantiation: zstdmt_compress.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_opt.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_preSplit.c:BIT_lookBitsFast
Unexecuted instantiation: zstd_decompress.c:BIT_lookBitsFast
Unexecuted instantiation: entropy_common.c:BIT_lookBitsFast
fse_decompress.c:BIT_lookBitsFast
Line
Count
Source
349
6.17k
{
350
6.17k
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
351
    assert(nbBits >= 1);
352
6.17k
    return (bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> (((regMask+1)-nbBits) & regMask);
353
6.17k
}
Unexecuted instantiation: fse_compress.c:BIT_lookBitsFast
Unexecuted instantiation: huf_compress.c:BIT_lookBitsFast
huf_decompress.c:BIT_lookBitsFast
Line
Count
Source
349
194k
{
350
194k
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
351
    assert(nbBits >= 1);
352
194k
    return (bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> (((regMask+1)-nbBits) & regMask);
353
194k
}
Unexecuted instantiation: zstd_ddict.c:BIT_lookBitsFast
zstd_decompress_block.c:BIT_lookBitsFast
Line
Count
Source
349
2.10M
{
350
2.10M
    U32 const regMask = sizeof(bitD->bitContainer)*8 - 1;
351
    assert(nbBits >= 1);
352
2.10M
    return (bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> (((regMask+1)-nbBits) & regMask);
353
2.10M
}
354
355
FORCE_INLINE_TEMPLATE void BIT_skipBits(BIT_DStream_t* bitD, U32 nbBits)
356
10.7M
{
357
10.7M
    bitD->bitsConsumed += nbBits;
358
10.7M
}
Unexecuted instantiation: zstd_common.c:BIT_skipBits
Unexecuted instantiation: zstd_compress.c:BIT_skipBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_skipBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_skipBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_skipBits
Unexecuted instantiation: zstd_double_fast.c:BIT_skipBits
Unexecuted instantiation: zstd_fast.c:BIT_skipBits
Unexecuted instantiation: zstd_lazy.c:BIT_skipBits
Unexecuted instantiation: zstd_ldm.c:BIT_skipBits
Unexecuted instantiation: zstdmt_compress.c:BIT_skipBits
Unexecuted instantiation: zstd_opt.c:BIT_skipBits
Unexecuted instantiation: zstd_preSplit.c:BIT_skipBits
Unexecuted instantiation: zstd_decompress.c:BIT_skipBits
Unexecuted instantiation: entropy_common.c:BIT_skipBits
fse_decompress.c:BIT_skipBits
Line
Count
Source
356
44.4k
{
357
44.4k
    bitD->bitsConsumed += nbBits;
358
44.4k
}
Unexecuted instantiation: fse_compress.c:BIT_skipBits
Unexecuted instantiation: huf_compress.c:BIT_skipBits
huf_decompress.c:BIT_skipBits
Line
Count
Source
356
194k
{
357
194k
    bitD->bitsConsumed += nbBits;
358
194k
}
Unexecuted instantiation: zstd_ddict.c:BIT_skipBits
zstd_decompress_block.c:BIT_skipBits
Line
Count
Source
356
10.5M
{
357
10.5M
    bitD->bitsConsumed += nbBits;
358
10.5M
}
359
360
/*! BIT_readBits() :
361
 *  Read (consume) next n bits from local register and update.
362
 *  Pay attention to not read more than nbBits contained into local register.
363
 * @return : extracted value. */
364
FORCE_INLINE_TEMPLATE BitContainerType BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits)
365
8.44M
{
366
8.44M
    BitContainerType const value = BIT_lookBits(bitD, nbBits);
367
8.44M
    BIT_skipBits(bitD, nbBits);
368
8.44M
    return value;
369
8.44M
}
Unexecuted instantiation: zstd_common.c:BIT_readBits
Unexecuted instantiation: zstd_compress.c:BIT_readBits
Unexecuted instantiation: zstd_compress_literals.c:BIT_readBits
Unexecuted instantiation: zstd_compress_sequences.c:BIT_readBits
Unexecuted instantiation: zstd_compress_superblock.c:BIT_readBits
Unexecuted instantiation: zstd_double_fast.c:BIT_readBits
Unexecuted instantiation: zstd_fast.c:BIT_readBits
Unexecuted instantiation: zstd_lazy.c:BIT_readBits
Unexecuted instantiation: zstd_ldm.c:BIT_readBits
Unexecuted instantiation: zstdmt_compress.c:BIT_readBits
Unexecuted instantiation: zstd_opt.c:BIT_readBits
Unexecuted instantiation: zstd_preSplit.c:BIT_readBits
Unexecuted instantiation: zstd_decompress.c:BIT_readBits
Unexecuted instantiation: entropy_common.c:BIT_readBits
fse_decompress.c:BIT_readBits
Line
Count
Source
365
38.3k
{
366
38.3k
    BitContainerType const value = BIT_lookBits(bitD, nbBits);
367
38.3k
    BIT_skipBits(bitD, nbBits);
368
38.3k
    return value;
369
38.3k
}
Unexecuted instantiation: fse_compress.c:BIT_readBits
Unexecuted instantiation: huf_compress.c:BIT_readBits
Unexecuted instantiation: huf_decompress.c:BIT_readBits
Unexecuted instantiation: zstd_ddict.c:BIT_readBits
zstd_decompress_block.c:BIT_readBits
Line
Count
Source
365
8.40M
{
366
8.40M
    BitContainerType const value = BIT_lookBits(bitD, nbBits);
367
8.40M
    BIT_skipBits(bitD, nbBits);
368
8.40M
    return value;
369
8.40M
}
370
371
/*! BIT_readBitsFast() :
372
 *  unsafe version; only works if nbBits >= 1 */
373
MEM_STATIC BitContainerType BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits)
374
2.10M
{
375
2.10M
    BitContainerType const value = BIT_lookBitsFast(bitD, nbBits);
376
2.10M
    assert(nbBits >= 1);
377
2.10M
    BIT_skipBits(bitD, nbBits);
378
2.10M
    return value;
379
2.10M
}
Unexecuted instantiation: zstd_common.c:BIT_readBitsFast
Unexecuted instantiation: zstd_compress.c:BIT_readBitsFast
Unexecuted instantiation: zstd_compress_literals.c:BIT_readBitsFast
Unexecuted instantiation: zstd_compress_sequences.c:BIT_readBitsFast
Unexecuted instantiation: zstd_compress_superblock.c:BIT_readBitsFast
Unexecuted instantiation: zstd_double_fast.c:BIT_readBitsFast
Unexecuted instantiation: zstd_fast.c:BIT_readBitsFast
Unexecuted instantiation: zstd_lazy.c:BIT_readBitsFast
Unexecuted instantiation: zstd_ldm.c:BIT_readBitsFast
Unexecuted instantiation: zstdmt_compress.c:BIT_readBitsFast
Unexecuted instantiation: zstd_opt.c:BIT_readBitsFast
Unexecuted instantiation: zstd_preSplit.c:BIT_readBitsFast
Unexecuted instantiation: zstd_decompress.c:BIT_readBitsFast
Unexecuted instantiation: entropy_common.c:BIT_readBitsFast
fse_decompress.c:BIT_readBitsFast
Line
Count
Source
374
6.17k
{
375
6.17k
    BitContainerType const value = BIT_lookBitsFast(bitD, nbBits);
376
    assert(nbBits >= 1);
377
6.17k
    BIT_skipBits(bitD, nbBits);
378
6.17k
    return value;
379
6.17k
}
Unexecuted instantiation: fse_compress.c:BIT_readBitsFast
Unexecuted instantiation: huf_compress.c:BIT_readBitsFast
Unexecuted instantiation: huf_decompress.c:BIT_readBitsFast
Unexecuted instantiation: zstd_ddict.c:BIT_readBitsFast
zstd_decompress_block.c:BIT_readBitsFast
Line
Count
Source
374
2.10M
{
375
2.10M
    BitContainerType const value = BIT_lookBitsFast(bitD, nbBits);
376
    assert(nbBits >= 1);
377
2.10M
    BIT_skipBits(bitD, nbBits);
378
2.10M
    return value;
379
2.10M
}
380
381
/*! BIT_reloadDStream_internal() :
382
 *  Simple variant of BIT_reloadDStream(), with two conditions:
383
 *  1. bitstream is valid : bitsConsumed <= sizeof(bitD->bitContainer)*8
384
 *  2. look window is valid after shifted down : bitD->ptr >= bitD->start
385
 */
386
MEM_STATIC BIT_DStream_status BIT_reloadDStream_internal(BIT_DStream_t* bitD)
387
57.8k
{
388
57.8k
    assert(bitD->bitsConsumed <= sizeof(bitD->bitContainer)*8);
389
57.8k
    bitD->ptr -= bitD->bitsConsumed >> 3;
390
57.8k
    assert(bitD->ptr >= bitD->start);
391
57.8k
    bitD->bitsConsumed &= 7;
392
57.8k
    bitD->bitContainer = MEM_readLEST(bitD->ptr);
393
57.8k
    return BIT_DStream_unfinished;
394
57.8k
}
Unexecuted instantiation: zstd_common.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_compress.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_compress_literals.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_compress_sequences.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_compress_superblock.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_double_fast.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_fast.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_lazy.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_ldm.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstdmt_compress.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_opt.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_preSplit.c:BIT_reloadDStream_internal
Unexecuted instantiation: zstd_decompress.c:BIT_reloadDStream_internal
Unexecuted instantiation: entropy_common.c:BIT_reloadDStream_internal
fse_decompress.c:BIT_reloadDStream_internal
Line
Count
Source
387
2.43k
{
388
2.43k
    assert(bitD->bitsConsumed <= sizeof(bitD->bitContainer)*8);
389
2.43k
    bitD->ptr -= bitD->bitsConsumed >> 3;
390
    assert(bitD->ptr >= bitD->start);
391
2.43k
    bitD->bitsConsumed &= 7;
392
2.43k
    bitD->bitContainer = MEM_readLEST(bitD->ptr);
393
2.43k
    return BIT_DStream_unfinished;
394
2.43k
}
Unexecuted instantiation: fse_compress.c:BIT_reloadDStream_internal
Unexecuted instantiation: huf_compress.c:BIT_reloadDStream_internal
huf_decompress.c:BIT_reloadDStream_internal
Line
Count
Source
387
10.9k
{
388
10.9k
    assert(bitD->bitsConsumed <= sizeof(bitD->bitContainer)*8);
389
10.9k
    bitD->ptr -= bitD->bitsConsumed >> 3;
390
    assert(bitD->ptr >= bitD->start);
391
10.9k
    bitD->bitsConsumed &= 7;
392
10.9k
    bitD->bitContainer = MEM_readLEST(bitD->ptr);
393
10.9k
    return BIT_DStream_unfinished;
394
10.9k
}
Unexecuted instantiation: zstd_ddict.c:BIT_reloadDStream_internal
zstd_decompress_block.c:BIT_reloadDStream_internal
Line
Count
Source
387
44.3k
{
388
44.3k
    assert(bitD->bitsConsumed <= sizeof(bitD->bitContainer)*8);
389
44.3k
    bitD->ptr -= bitD->bitsConsumed >> 3;
390
    assert(bitD->ptr >= bitD->start);
391
44.3k
    bitD->bitsConsumed &= 7;
392
44.3k
    bitD->bitContainer = MEM_readLEST(bitD->ptr);
393
44.3k
    return BIT_DStream_unfinished;
394
44.3k
}
395
396
/*! BIT_reloadDStreamFast() :
397
 *  Similar to BIT_reloadDStream(), but with two differences:
398
 *  1. bitsConsumed <= sizeof(bitD->bitContainer)*8 must hold!
399
 *  2. Returns BIT_DStream_overflow when bitD->ptr < bitD->limitPtr, at this
400
 *     point you must use BIT_reloadDStream() to reload.
401
 */
402
MEM_STATIC BIT_DStream_status BIT_reloadDStreamFast(BIT_DStream_t* bitD)
403
984
{
404
984
    if (UNLIKELY(bitD->ptr < bitD->limitPtr))
405
634
        return BIT_DStream_overflow;
406
350
    return BIT_reloadDStream_internal(bitD);
407
984
}
Unexecuted instantiation: zstd_common.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_compress.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_compress_literals.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_compress_sequences.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_compress_superblock.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_double_fast.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_fast.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_lazy.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_ldm.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstdmt_compress.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_opt.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_preSplit.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_decompress.c:BIT_reloadDStreamFast
Unexecuted instantiation: entropy_common.c:BIT_reloadDStreamFast
Unexecuted instantiation: fse_decompress.c:BIT_reloadDStreamFast
Unexecuted instantiation: fse_compress.c:BIT_reloadDStreamFast
Unexecuted instantiation: huf_compress.c:BIT_reloadDStreamFast
huf_decompress.c:BIT_reloadDStreamFast
Line
Count
Source
403
984
{
404
984
    if (UNLIKELY(bitD->ptr < bitD->limitPtr))
405
634
        return BIT_DStream_overflow;
406
350
    return BIT_reloadDStream_internal(bitD);
407
984
}
Unexecuted instantiation: zstd_ddict.c:BIT_reloadDStreamFast
Unexecuted instantiation: zstd_decompress_block.c:BIT_reloadDStreamFast
408
409
/*! BIT_reloadDStream() :
410
 *  Refill `bitD` from buffer previously set in BIT_initDStream() .
411
 *  This function is safe, it guarantees it will not never beyond src buffer.
412
 * @return : status of `BIT_DStream_t` internal register.
413
 *           when status == BIT_DStream_unfinished, internal register is filled with at least 25 or 57 bits */
414
FORCE_INLINE_TEMPLATE BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD)
415
2.85M
{
416
    /* note : once in overflow mode, a bitstream remains in this mode until it's reset */
417
2.85M
    if (UNLIKELY(bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8))) {
418
2.65M
        static const BitContainerType zeroFilled = 0;
419
2.65M
        bitD->ptr = (const char*)&zeroFilled; /* aliasing is allowed for char */
420
        /* overflow detected, erroneous scenario or end of stream: no update */
421
2.65M
        return BIT_DStream_overflow;
422
2.65M
    }
423
424
2.85M
    assert(bitD->ptr >= bitD->start);
425
426
198k
    if (bitD->ptr >= bitD->limitPtr) {
427
57.4k
        return BIT_reloadDStream_internal(bitD);
428
57.4k
    }
429
140k
    if (bitD->ptr == bitD->start) {
430
        /* reached end of bitStream => no update */
431
83.5k
        if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer;
432
630
        return BIT_DStream_completed;
433
83.5k
    }
434
    /* start < ptr < limitPtr => cautious update */
435
57.1k
    {   U32 nbBytes = bitD->bitsConsumed >> 3;
436
57.1k
        BIT_DStream_status result = BIT_DStream_unfinished;
437
57.1k
        if (bitD->ptr - nbBytes < bitD->start) {
438
528
            nbBytes = (U32)(bitD->ptr - bitD->start);  /* ptr > start */
439
528
            result = BIT_DStream_endOfBuffer;
440
528
        }
441
57.1k
        bitD->ptr -= nbBytes;
442
57.1k
        bitD->bitsConsumed -= nbBytes*8;
443
57.1k
        bitD->bitContainer = MEM_readLEST(bitD->ptr);   /* reminder : srcSize > sizeof(bitD->bitContainer), otherwise bitD->ptr == bitD->start */
444
57.1k
        return result;
445
140k
    }
446
140k
}
Unexecuted instantiation: zstd_common.c:BIT_reloadDStream
Unexecuted instantiation: zstd_compress.c:BIT_reloadDStream
Unexecuted instantiation: zstd_compress_literals.c:BIT_reloadDStream
Unexecuted instantiation: zstd_compress_sequences.c:BIT_reloadDStream
Unexecuted instantiation: zstd_compress_superblock.c:BIT_reloadDStream
Unexecuted instantiation: zstd_double_fast.c:BIT_reloadDStream
Unexecuted instantiation: zstd_fast.c:BIT_reloadDStream
Unexecuted instantiation: zstd_lazy.c:BIT_reloadDStream
Unexecuted instantiation: zstd_ldm.c:BIT_reloadDStream
Unexecuted instantiation: zstdmt_compress.c:BIT_reloadDStream
Unexecuted instantiation: zstd_opt.c:BIT_reloadDStream
Unexecuted instantiation: zstd_preSplit.c:BIT_reloadDStream
Unexecuted instantiation: zstd_decompress.c:BIT_reloadDStream
Unexecuted instantiation: entropy_common.c:BIT_reloadDStream
fse_decompress.c:BIT_reloadDStream
Line
Count
Source
415
34.3k
{
416
    /* note : once in overflow mode, a bitstream remains in this mode until it's reset */
417
34.3k
    if (UNLIKELY(bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8))) {
418
794
        static const BitContainerType zeroFilled = 0;
419
794
        bitD->ptr = (const char*)&zeroFilled; /* aliasing is allowed for char */
420
        /* overflow detected, erroneous scenario or end of stream: no update */
421
794
        return BIT_DStream_overflow;
422
794
    }
423
424
34.3k
    assert(bitD->ptr >= bitD->start);
425
426
33.5k
    if (bitD->ptr >= bitD->limitPtr) {
427
2.43k
        return BIT_reloadDStream_internal(bitD);
428
2.43k
    }
429
31.1k
    if (bitD->ptr == bitD->start) {
430
        /* reached end of bitStream => no update */
431
29.1k
        if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer;
432
482
        return BIT_DStream_completed;
433
29.1k
    }
434
    /* start < ptr < limitPtr => cautious update */
435
1.96k
    {   U32 nbBytes = bitD->bitsConsumed >> 3;
436
1.96k
        BIT_DStream_status result = BIT_DStream_unfinished;
437
1.96k
        if (bitD->ptr - nbBytes < bitD->start) {
438
28
            nbBytes = (U32)(bitD->ptr - bitD->start);  /* ptr > start */
439
28
            result = BIT_DStream_endOfBuffer;
440
28
        }
441
1.96k
        bitD->ptr -= nbBytes;
442
1.96k
        bitD->bitsConsumed -= nbBytes*8;
443
1.96k
        bitD->bitContainer = MEM_readLEST(bitD->ptr);   /* reminder : srcSize > sizeof(bitD->bitContainer), otherwise bitD->ptr == bitD->start */
444
1.96k
        return result;
445
31.1k
    }
446
31.1k
}
Unexecuted instantiation: fse_compress.c:BIT_reloadDStream
Unexecuted instantiation: huf_compress.c:BIT_reloadDStream
huf_decompress.c:BIT_reloadDStream
Line
Count
Source
415
14.2k
{
416
    /* note : once in overflow mode, a bitstream remains in this mode until it's reset */
417
14.2k
    if (UNLIKELY(bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8))) {
418
160
        static const BitContainerType zeroFilled = 0;
419
160
        bitD->ptr = (const char*)&zeroFilled; /* aliasing is allowed for char */
420
        /* overflow detected, erroneous scenario or end of stream: no update */
421
160
        return BIT_DStream_overflow;
422
160
    }
423
424
14.2k
    assert(bitD->ptr >= bitD->start);
425
426
14.0k
    if (bitD->ptr >= bitD->limitPtr) {
427
10.6k
        return BIT_reloadDStream_internal(bitD);
428
10.6k
    }
429
3.41k
    if (bitD->ptr == bitD->start) {
430
        /* reached end of bitStream => no update */
431
1.51k
        if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer;
432
58
        return BIT_DStream_completed;
433
1.51k
    }
434
    /* start < ptr < limitPtr => cautious update */
435
1.90k
    {   U32 nbBytes = bitD->bitsConsumed >> 3;
436
1.90k
        BIT_DStream_status result = BIT_DStream_unfinished;
437
1.90k
        if (bitD->ptr - nbBytes < bitD->start) {
438
342
            nbBytes = (U32)(bitD->ptr - bitD->start);  /* ptr > start */
439
342
            result = BIT_DStream_endOfBuffer;
440
342
        }
441
1.90k
        bitD->ptr -= nbBytes;
442
1.90k
        bitD->bitsConsumed -= nbBytes*8;
443
1.90k
        bitD->bitContainer = MEM_readLEST(bitD->ptr);   /* reminder : srcSize > sizeof(bitD->bitContainer), otherwise bitD->ptr == bitD->start */
444
1.90k
        return result;
445
3.41k
    }
446
3.41k
}
Unexecuted instantiation: zstd_ddict.c:BIT_reloadDStream
zstd_decompress_block.c:BIT_reloadDStream
Line
Count
Source
415
2.80M
{
416
    /* note : once in overflow mode, a bitstream remains in this mode until it's reset */
417
2.80M
    if (UNLIKELY(bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8))) {
418
2.65M
        static const BitContainerType zeroFilled = 0;
419
2.65M
        bitD->ptr = (const char*)&zeroFilled; /* aliasing is allowed for char */
420
        /* overflow detected, erroneous scenario or end of stream: no update */
421
2.65M
        return BIT_DStream_overflow;
422
2.65M
    }
423
424
2.80M
    assert(bitD->ptr >= bitD->start);
425
426
150k
    if (bitD->ptr >= bitD->limitPtr) {
427
44.3k
        return BIT_reloadDStream_internal(bitD);
428
44.3k
    }
429
106k
    if (bitD->ptr == bitD->start) {
430
        /* reached end of bitStream => no update */
431
52.8k
        if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer;
432
90
        return BIT_DStream_completed;
433
52.8k
    }
434
    /* start < ptr < limitPtr => cautious update */
435
53.2k
    {   U32 nbBytes = bitD->bitsConsumed >> 3;
436
53.2k
        BIT_DStream_status result = BIT_DStream_unfinished;
437
53.2k
        if (bitD->ptr - nbBytes < bitD->start) {
438
158
            nbBytes = (U32)(bitD->ptr - bitD->start);  /* ptr > start */
439
158
            result = BIT_DStream_endOfBuffer;
440
158
        }
441
53.2k
        bitD->ptr -= nbBytes;
442
53.2k
        bitD->bitsConsumed -= nbBytes*8;
443
53.2k
        bitD->bitContainer = MEM_readLEST(bitD->ptr);   /* reminder : srcSize > sizeof(bitD->bitContainer), otherwise bitD->ptr == bitD->start */
444
53.2k
        return result;
445
106k
    }
446
106k
}
447
448
/*! BIT_endOfDStream() :
449
 * @return : 1 if DStream has _exactly_ reached its end (all bits consumed).
450
 */
451
MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* DStream)
452
1.41k
{
453
1.41k
    return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8));
454
1.41k
}
Unexecuted instantiation: zstd_common.c:BIT_endOfDStream
Unexecuted instantiation: zstd_compress.c:BIT_endOfDStream
Unexecuted instantiation: zstd_compress_literals.c:BIT_endOfDStream
Unexecuted instantiation: zstd_compress_sequences.c:BIT_endOfDStream
Unexecuted instantiation: zstd_compress_superblock.c:BIT_endOfDStream
Unexecuted instantiation: zstd_double_fast.c:BIT_endOfDStream
Unexecuted instantiation: zstd_fast.c:BIT_endOfDStream
Unexecuted instantiation: zstd_lazy.c:BIT_endOfDStream
Unexecuted instantiation: zstd_ldm.c:BIT_endOfDStream
Unexecuted instantiation: zstdmt_compress.c:BIT_endOfDStream
Unexecuted instantiation: zstd_opt.c:BIT_endOfDStream
Unexecuted instantiation: zstd_preSplit.c:BIT_endOfDStream
Unexecuted instantiation: zstd_decompress.c:BIT_endOfDStream
Unexecuted instantiation: entropy_common.c:BIT_endOfDStream
Unexecuted instantiation: fse_decompress.c:BIT_endOfDStream
Unexecuted instantiation: fse_compress.c:BIT_endOfDStream
Unexecuted instantiation: huf_compress.c:BIT_endOfDStream
huf_decompress.c:BIT_endOfDStream
Line
Count
Source
452
1.14k
{
453
1.14k
    return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8));
454
1.14k
}
Unexecuted instantiation: zstd_ddict.c:BIT_endOfDStream
zstd_decompress_block.c:BIT_endOfDStream
Line
Count
Source
452
262
{
453
262
    return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8));
454
262
}
455
456
#endif /* BITSTREAM_H_MODULE */