Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
trees.c File Reference
#include "deflate.h"

Go to the source code of this file.

Classes

struct  static_tree_desc_s

Macros

#define MAX_BL_BITS   7
#define END_BLOCK   256
#define REP_3_6   16
#define REPZ_3_10   17
#define REPZ_11_138   18
#define DIST_CODE_LEN   512 /* see definition of array dist_code below */
#define TCONST   const
#define put_short(s, w)
#define send_code(s, c, tree)
#define send_bits(s, value, length)
#define SMALLEST   1
#define pqremove(s, tree, top)
#define smaller(tree, n, m, depth)

Functions

local unsigned bi_reverse (unsigned code, int len)
local void bi_flush (deflate_state *s)
local void bi_windup (deflate_state *s)
local void gen_codes (ct_data *tree, int max_code, ushf *bl_count)
local void tr_static_init (void)
local void init_block (deflate_state *s)
void ZLIB_INTERNAL _tr_init (deflate_state *s)
local void pqdownheap (deflate_state *s, ct_data *tree, int k)
local void gen_bitlen (deflate_state *s, tree_desc *desc)
local void build_tree (deflate_state *s, tree_desc *desc)
local void scan_tree (deflate_state *s, ct_data *tree, int max_code)
local void send_tree (deflate_state *s, ct_data *tree, int max_code)
local int build_bl_tree (deflate_state *s)
local void send_all_trees (deflate_state *s, int lcodes, int dcodes, int blcodes)
void ZLIB_INTERNAL _tr_stored_block (deflate_state *s, charf *buf, ulg stored_len, int last)
void ZLIB_INTERNAL _tr_flush_bits (deflate_state *s)
void ZLIB_INTERNAL _tr_align (deflate_state *s)
local void compress_block (deflate_state *s, const ct_data *ltree, const ct_data *dtree)
local int detect_data_type (deflate_state *s)
void ZLIB_INTERNAL _tr_flush_block (deflate_state *s, charf *buf, ulg stored_len, int last)
int ZLIB_INTERNAL _tr_tally (deflate_state *s, unsigned dist, unsigned lc)

Variables

local const int extra_lbits [LENGTH_CODES] = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0}
local const int extra_dbits [D_CODES] = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}
local const int extra_blbits [BL_CODES] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7}
local const uch bl_order [BL_CODES] = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15}
local ct_data static_ltree [L_CODES+2]
local ct_data static_dtree [D_CODES]
uch _dist_code [DIST_CODE_LEN]
uch _length_code [MAX_MATCH-MIN_MATCH+1]
local int base_length [LENGTH_CODES]
local int base_dist [D_CODES]
local TCONST static_tree_desc static_l_desc
local TCONST static_tree_desc static_d_desc
local TCONST static_tree_desc static_bl_desc

Macro Definition Documentation

◆ DIST_CODE_LEN

#define DIST_CODE_LEN   512 /* see definition of array dist_code below */

Definition at line 81 of file trees.c.

◆ END_BLOCK

#define END_BLOCK   256

Definition at line 50 of file trees.c.

Referenced by _tr_align(), compress_block(), and init_block().

◆ MAX_BL_BITS

#define MAX_BL_BITS   7

Definition at line 47 of file trees.c.

◆ pqremove

#define pqremove ( s,
tree,
top )
Value:
{\
top = s->heap[SMALLEST]; \
s->heap[SMALLEST] = s->heap[s->heap_len--]; \
pqdownheap(s, tree, SMALLEST); \
}
#define SMALLEST
Definition trees.c:478

Definition at line 486 of file trees.c.

486#define pqremove(s, tree, top) \
487{\
488 top = s->heap[SMALLEST]; \
489 s->heap[SMALLEST] = s->heap[s->heap_len--]; \
490 pqdownheap(s, tree, SMALLEST); \
491}

Referenced by build_tree().

◆ put_short

#define put_short ( s,
w )
Value:
{ \
put_byte(s, (uch)((w) & 0xff)); \
put_byte(s, (uch)((ush)(w) >> 8)); \
}
unsigned short ush
Definition zutil.h:41
unsigned char uch
Definition zutil.h:39

Definition at line 144 of file trees.c.

144#define put_short(s, w) { \
145 put_byte(s, (uch)((w) & 0xff)); \
146 put_byte(s, (uch)((ush)(w) >> 8)); \
147}

Referenced by _tr_stored_block(), bi_flush(), and bi_windup().

◆ REP_3_6

#define REP_3_6   16

Definition at line 53 of file trees.c.

Referenced by scan_tree(), and send_tree().

◆ REPZ_11_138

#define REPZ_11_138   18

Definition at line 59 of file trees.c.

Referenced by scan_tree(), and send_tree().

◆ REPZ_3_10

#define REPZ_3_10   17

Definition at line 56 of file trees.c.

Referenced by scan_tree(), and send_tree().

◆ send_bits

#define send_bits ( s,
value,
length )
Value:
{ int len = length;\
if (s->bi_valid > (int)Buf_size - len) {\
int val = (int)value;\
s->bi_buf |= (ush)val << s->bi_valid;\
put_short(s, s->bi_buf);\
s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
s->bi_valid += len - Buf_size;\
} else {\
s->bi_buf |= (ush)(value) << s->bi_valid;\
s->bi_valid += len;\
}\
}
#define Buf_size
Definition deflate.h:55

Definition at line 273 of file trees.c.

273#define send_bits(s, value, length) \
274{ int len = length;\
275 if (s->bi_valid > (int)Buf_size - len) {\
276 int val = (int)value;\
277 s->bi_buf |= (ush)val << s->bi_valid;\
278 put_short(s, s->bi_buf);\
279 s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
280 s->bi_valid += len - Buf_size;\
281 } else {\
282 s->bi_buf |= (ush)(value) << s->bi_valid;\
283 s->bi_valid += len;\
284 }\
285}

Referenced by _tr_align(), _tr_flush_block(), _tr_stored_block(), compress_block(), send_all_trees(), and send_tree().

◆ send_code

#define send_code ( s,
c,
tree )
Value:
send_bits(s, tree[c].Code, tree[c].Len)
#define Code
Definition deflate.h:84
#define Len
Definition deflate.h:86
#define send_bits(s, value, length)
Definition trees.c:273

Definition at line 238 of file trees.c.

Referenced by _tr_align(), compress_block(), and send_tree().

◆ smaller

#define smaller ( tree,
n,
m,
depth )
Value:
(tree[n].Freq < tree[m].Freq || \
(tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))

Definition at line 497 of file trees.c.

497#define smaller(tree, n, m, depth) \
498 (tree[n].Freq < tree[m].Freq || \
499 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))

Referenced by G4GeometryCellComp::operator()(), and pqdownheap().

◆ SMALLEST

#define SMALLEST   1

Definition at line 478 of file trees.c.

Referenced by build_tree().

◆ TCONST

#define TCONST   const

Definition at line 128 of file trees.c.

Function Documentation

◆ _tr_align()

void ZLIB_INTERNAL _tr_align ( deflate_state * s)

Definition at line 886 of file trees.c.

886 {
887 send_bits(s, STATIC_TREES<<1, 3);
889#ifdef ZLIB_DEBUG
890 s->compressed_len += 10L; /* 3 for block type, 7 for EOB */
891#endif
892 bi_flush(s);
893}
#define END_BLOCK
Definition trees.c:50
#define send_code(s, c, tree)
Definition trees.c:238
local void bi_flush(deflate_state *s)
Definition trees.c:166
local const ct_data static_ltree[L_CODES+2]
Definition trees.h:3
#define STATIC_TREES
Definition zutil.h:80

Referenced by deflate().

◆ _tr_flush_bits()

void ZLIB_INTERNAL _tr_flush_bits ( deflate_state * s)

Definition at line 878 of file trees.c.

878 {
879 bi_flush(s);
880}

Referenced by deflatePrime(), and flush_pending().

◆ _tr_flush_block()

void ZLIB_INTERNAL _tr_flush_block ( deflate_state * s,
charf * buf,
ulg stored_len,
int last )

Definition at line 995 of file trees.c.

996 {
997 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
998 int max_blindex = 0; /* index of last bit length code of non zero freq */
999
1000 /* Build the Huffman trees unless a stored block is forced */
1001 if (s->level > 0) {
1002
1003 /* Check if the file is binary or text */
1004 if (s->strm->data_type == Z_UNKNOWN)
1005 s->strm->data_type = detect_data_type(s);
1006
1007 /* Construct the literal and distance trees */
1008 build_tree(s, (tree_desc *)(&(s->l_desc)));
1009 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
1010 s->static_len));
1011
1012 build_tree(s, (tree_desc *)(&(s->d_desc)));
1013 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
1014 s->static_len));
1015 /* At this point, opt_len and static_len are the total bit lengths of
1016 * the compressed block data, excluding the tree representations.
1017 */
1018
1019 /* Build the bit length tree for the above two trees, and get the index
1020 * in bl_order of the last bit length code to send.
1021 */
1022 max_blindex = build_bl_tree(s);
1023
1024 /* Determine the best encoding. Compute the block lengths in bytes. */
1025 opt_lenb = (s->opt_len + 3 + 7) >> 3;
1026 static_lenb = (s->static_len + 3 + 7) >> 3;
1027
1028 Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
1029 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
1030 s->sym_next / 3));
1031
1032#ifndef FORCE_STATIC
1033 if (static_lenb <= opt_lenb || s->strategy == Z_FIXED)
1034#endif
1035 opt_lenb = static_lenb;
1036
1037 } else {
1038 Assert(buf != (char*)0, "lost buf");
1039 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
1040 }
1041
1042#ifdef FORCE_STORED
1043 if (buf != (char*)0) { /* force stored block */
1044#else
1045 if (stored_len + 4 <= opt_lenb && buf != (char*)0) {
1046 /* 4: two words for the lengths */
1047#endif
1048 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
1049 * Otherwise we can't have processed more than WSIZE input bytes since
1050 * the last block flush, because compression would have been
1051 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
1052 * transform a block into a stored block.
1053 */
1054 _tr_stored_block(s, buf, stored_len, last);
1055
1056 } else if (static_lenb == opt_lenb) {
1057 send_bits(s, (STATIC_TREES<<1) + last, 3);
1059 (const ct_data *)static_dtree);
1060#ifdef ZLIB_DEBUG
1061 s->compressed_len += 3 + s->static_len;
1062#endif
1063 } else {
1064 send_bits(s, (DYN_TREES<<1) + last, 3);
1065 send_all_trees(s, s->l_desc.max_code + 1, s->d_desc.max_code + 1,
1066 max_blindex + 1);
1067 compress_block(s, (const ct_data *)s->dyn_ltree,
1068 (const ct_data *)s->dyn_dtree);
1069#ifdef ZLIB_DEBUG
1070 s->compressed_len += 3 + s->opt_len;
1071#endif
1072 }
1073 Assert (s->compressed_len == s->bits_sent, "bad compressed size");
1074 /* The above check is made mod 2^32, for files larger than 512 MB
1075 * and uLong implemented on 32 bits.
1076 */
1077 init_block(s);
1078
1079 if (last) {
1080 bi_windup(s);
1081#ifdef ZLIB_DEBUG
1082 s->compressed_len += 7; /* align on byte boundary */
1083#endif
1084 }
1085 Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len >> 3,
1086 s->compressed_len - 7*last));
1087}
struct ct_data_s ct_data
struct tree_desc_s tree_desc
local void compress_block(deflate_state *s, const ct_data *ltree, const ct_data *dtree)
Definition trees.c:898
void ZLIB_INTERNAL _tr_stored_block(deflate_state *s, charf *buf, ulg stored_len, int last)
Definition trees.c:858
local void bi_windup(deflate_state *s)
Definition trees.c:181
local void send_all_trees(deflate_state *s, int lcodes, int dcodes, int blcodes)
Definition trees.c:831
local int detect_data_type(deflate_state *s)
Definition trees.c:964
local void init_block(deflate_state *s)
Definition trees.c:439
local void build_tree(deflate_state *s, tree_desc *desc)
Definition trees.c:625
local int build_bl_tree(deflate_state *s)
Definition trees.c:798
local const ct_data static_dtree[D_CODES]
Definition trees.h:64
#define Z_UNKNOWN
Definition zlib.h:206
#define Z_FIXED
Definition zlib.h:199
#define DYN_TREES
Definition zutil.h:81
#define Assert(cond, msg)
Definition zutil.h:227
#define Tracev(x)
Definition zutil.h:229
unsigned long ulg
Definition zutil.h:43

◆ _tr_init()

void ZLIB_INTERNAL _tr_init ( deflate_state * s)

Definition at line 455 of file trees.c.

455 {
457
458 s->l_desc.dyn_tree = s->dyn_ltree;
459 s->l_desc.stat_desc = &static_l_desc;
460
461 s->d_desc.dyn_tree = s->dyn_dtree;
462 s->d_desc.stat_desc = &static_d_desc;
463
464 s->bl_desc.dyn_tree = s->bl_tree;
465 s->bl_desc.stat_desc = &static_bl_desc;
466
467 s->bi_buf = 0;
468 s->bi_valid = 0;
469#ifdef ZLIB_DEBUG
470 s->compressed_len = 0L;
471 s->bits_sent = 0L;
472#endif
473
474 /* Initialize the first block of the first file: */
475 init_block(s);
476}
local TCONST static_tree_desc static_d_desc
Definition trees.c:134
local void tr_static_init(void)
Definition trees.c:294
local TCONST static_tree_desc static_l_desc
Definition trees.c:131
local TCONST static_tree_desc static_bl_desc
Definition trees.c:137

Referenced by deflateResetKeep().

◆ _tr_stored_block()

void ZLIB_INTERNAL _tr_stored_block ( deflate_state * s,
charf * buf,
ulg stored_len,
int last )

Definition at line 858 of file trees.c.

859 {
860 send_bits(s, (STORED_BLOCK<<1) + last, 3); /* send block type */
861 bi_windup(s); /* align on byte boundary */
862 put_short(s, (ush)stored_len);
863 put_short(s, (ush)~stored_len);
864 if (stored_len)
865 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
866 s->pending += stored_len;
867#ifdef ZLIB_DEBUG
868 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
869 s->compressed_len += (stored_len + 4) << 3;
870 s->bits_sent += 2*16;
871 s->bits_sent += stored_len << 3;
872#endif
873}
#define put_short(s, w)
Definition trees.c:144
#define STORED_BLOCK
Definition zutil.h:79
void ZLIB_INTERNAL zmemcpy(Bytef *dest, const Bytef *source, uInt len)
Definition zutil.c:145

Referenced by _tr_flush_block(), deflate(), and deflate_stored().

◆ _tr_tally()

int ZLIB_INTERNAL _tr_tally ( deflate_state * s,
unsigned dist,
unsigned lc )

Definition at line 1093 of file trees.c.

1093 {
1094#ifdef LIT_MEM
1095 s->d_buf[s->sym_next] = (ush)dist;
1096 s->l_buf[s->sym_next++] = (uch)lc;
1097#else
1098 s->sym_buf[s->sym_next++] = (uch)dist;
1099 s->sym_buf[s->sym_next++] = (uch)(dist >> 8);
1100 s->sym_buf[s->sym_next++] = (uch)lc;
1101#endif
1102 if (dist == 0) {
1103 /* lc is the unmatched char */
1104 s->dyn_ltree[lc].Freq++;
1105 } else {
1106 s->matches++;
1107 /* Here, lc is the match length - MIN_MATCH */
1108 dist--; /* dist = match distance - 1 */
1109 Assert((ush)dist < (ush)MAX_DIST(s) &&
1110 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
1111 (ush)d_code(dist) < (ush)D_CODES, "_tr_tally: bad match");
1112
1113 s->dyn_ltree[_length_code[lc] + LITERALS + 1].Freq++;
1114 s->dyn_dtree[d_code(dist)].Freq++;
1115 }
1116 return (s->sym_next == s->sym_end);
1117}
#define MAX_DIST(s)
Definition deflate.h:295
#define LITERALS
Definition deflate.h:37
#define d_code(dist)
Definition deflate.h:314
#define D_CODES
Definition deflate.h:43
uch ZLIB_INTERNAL _length_code[]
Definition trees.h:102
#define MIN_MATCH
Definition zutil.h:84
#define MAX_MATCH
Definition zutil.h:85

◆ bi_flush()

local void bi_flush ( deflate_state * s)

Definition at line 166 of file trees.c.

166 {
167 if (s->bi_valid == 16) {
168 put_short(s, s->bi_buf);
169 s->bi_buf = 0;
170 s->bi_valid = 0;
171 } else if (s->bi_valid >= 8) {
172 put_byte(s, (Byte)s->bi_buf);
173 s->bi_buf >>= 8;
174 s->bi_valid -= 8;
175 }
176}
#define put_byte(s, c)
Definition deflate.h:287

Referenced by _tr_align(), and _tr_flush_bits().

◆ bi_reverse()

local unsigned bi_reverse ( unsigned code,
int len )

Definition at line 154 of file trees.c.

154 {
155 register unsigned res = 0;
156 do {
157 res |= code & 1;
158 code >>= 1, res <<= 1;
159 } while (--len > 0);
160 return res >> 1;
161}

Referenced by gen_codes(), and tr_static_init().

◆ bi_windup()

local void bi_windup ( deflate_state * s)

Definition at line 181 of file trees.c.

181 {
182 if (s->bi_valid > 8) {
183 put_short(s, s->bi_buf);
184 } else if (s->bi_valid > 0) {
185 put_byte(s, (Byte)s->bi_buf);
186 }
187 s->bi_buf = 0;
188 s->bi_valid = 0;
189#ifdef ZLIB_DEBUG
190 s->bits_sent = (s->bits_sent + 7) & ~7;
191#endif
192}

Referenced by _tr_flush_block(), and _tr_stored_block().

◆ build_bl_tree()

local int build_bl_tree ( deflate_state * s)

Definition at line 798 of file trees.c.

798 {
799 int max_blindex; /* index of last bit length code of non zero freq */
800
801 /* Determine the bit length frequencies for literal and distance trees */
802 scan_tree(s, (ct_data *)s->dyn_ltree, s->l_desc.max_code);
803 scan_tree(s, (ct_data *)s->dyn_dtree, s->d_desc.max_code);
804
805 /* Build the bit length tree: */
806 build_tree(s, (tree_desc *)(&(s->bl_desc)));
807 /* opt_len now includes the length of the tree representations, except the
808 * lengths of the bit lengths codes and the 5 + 5 + 4 bits for the counts.
809 */
810
811 /* Determine the number of bit length codes to send. The pkzip format
812 * requires that at least 4 bit length codes be sent. (appnote.txt says
813 * 3 but the actual value used is 4.)
814 */
815 for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
816 if (s->bl_tree[bl_order[max_blindex]].Len != 0) break;
817 }
818 /* Update opt_len to include the bit length tree and counts */
819 s->opt_len += 3*((ulg)max_blindex + 1) + 5 + 5 + 4;
820 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
821 s->opt_len, s->static_len));
822
823 return max_blindex;
824}
#define BL_CODES
Definition deflate.h:46
local const uch bl_order[BL_CODES]
Definition trees.c:72
local void scan_tree(deflate_state *s, ct_data *tree, int max_code)
Definition trees.c:710

Referenced by _tr_flush_block().

◆ build_tree()

local void build_tree ( deflate_state * s,
tree_desc * desc )

Definition at line 625 of file trees.c.

625 {
626 ct_data *tree = desc->dyn_tree;
627 const ct_data *stree = desc->stat_desc->static_tree;
628 int elems = desc->stat_desc->elems;
629 int n, m; /* iterate over heap elements */
630 int max_code = -1; /* largest code with non zero frequency */
631 int node; /* new node being created */
632
633 /* Construct the initial heap, with least frequent element in
634 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n + 1].
635 * heap[0] is not used.
636 */
637 s->heap_len = 0, s->heap_max = HEAP_SIZE;
638
639 for (n = 0; n < elems; n++) {
640 if (tree[n].Freq != 0) {
641 s->heap[++(s->heap_len)] = max_code = n;
642 s->depth[n] = 0;
643 } else {
644 tree[n].Len = 0;
645 }
646 }
647
648 /* The pkzip format requires that at least one distance code exists,
649 * and that at least one bit should be sent even if there is only one
650 * possible code. So to avoid special checks later on we force at least
651 * two codes of non zero frequency.
652 */
653 while (s->heap_len < 2) {
654 node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
655 tree[node].Freq = 1;
656 s->depth[node] = 0;
657 s->opt_len--; if (stree) s->static_len -= stree[node].Len;
658 /* node is 0 or 1 so it does not have extra bits */
659 }
660 desc->max_code = max_code;
661
662 /* The elements heap[heap_len/2 + 1 .. heap_len] are leaves of the tree,
663 * establish sub-heaps of increasing lengths:
664 */
665 for (n = s->heap_len/2; n >= 1; n--) pqdownheap(s, tree, n);
666
667 /* Construct the Huffman tree by repeatedly combining the least two
668 * frequent nodes.
669 */
670 node = elems; /* next internal node of the tree */
671 do {
672 pqremove(s, tree, n); /* n = node of least frequency */
673 m = s->heap[SMALLEST]; /* m = node of next least frequency */
674
675 s->heap[--(s->heap_max)] = n; /* keep the nodes sorted by frequency */
676 s->heap[--(s->heap_max)] = m;
677
678 /* Create a new node father of n and m */
679 tree[node].Freq = tree[n].Freq + tree[m].Freq;
680 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
681 s->depth[n] : s->depth[m]) + 1);
682 tree[n].Dad = tree[m].Dad = (ush)node;
683#ifdef DUMP_BL_TREE
684 if (tree == s->bl_tree) {
685 fprintf(stderr,"\nnode %d(%d), sons %d(%d) %d(%d)",
686 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
687 }
688#endif
689 /* and insert the new node in the heap */
690 s->heap[SMALLEST] = node++;
691 pqdownheap(s, tree, SMALLEST);
692
693 } while (s->heap_len >= 2);
694
695 s->heap[--(s->heap_max)] = s->heap[SMALLEST];
696
697 /* At this point, the fields freq and dad are set. We can now
698 * generate the bit lengths.
699 */
700 gen_bitlen(s, (tree_desc *)desc);
701
702 /* The field len is now set, we can generate the bit codes */
703 gen_codes ((ct_data *)tree, max_code, s->bl_count);
704}
#define HEAP_SIZE
Definition deflate.h:49
#define Freq
Definition deflate.h:83
const ct_data * static_tree
Definition trees.c:118
int max_code
Definition deflate.h:92
ct_data * dyn_tree
Definition deflate.h:91
const static_tree_desc * stat_desc
Definition deflate.h:93
local void gen_bitlen(deflate_state *s, tree_desc *desc)
Definition trees.c:538
local void pqdownheap(deflate_state *s, ct_data *tree, int k)
Definition trees.c:507
local void gen_codes(ct_data *tree, int max_code, ushf *bl_count)
Definition trees.c:202
#define pqremove(s, tree, top)
Definition trees.c:486

Referenced by _tr_flush_block(), and build_bl_tree().

◆ compress_block()

local void compress_block ( deflate_state * s,
const ct_data * ltree,
const ct_data * dtree )

Definition at line 898 of file trees.c.

899 {
900 unsigned dist; /* distance of matched string */
901 int lc; /* match length or unmatched char (if dist == 0) */
902 unsigned sx = 0; /* running index in symbol buffers */
903 unsigned code; /* the code to send */
904 int extra; /* number of extra bits to send */
905
906 if (s->sym_next != 0) do {
907#ifdef LIT_MEM
908 dist = s->d_buf[sx];
909 lc = s->l_buf[sx++];
910#else
911 dist = s->sym_buf[sx++] & 0xff;
912 dist += (unsigned)(s->sym_buf[sx++] & 0xff) << 8;
913 lc = s->sym_buf[sx++];
914#endif
915 if (dist == 0) {
916 send_code(s, lc, ltree); /* send a literal byte */
917 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
918 } else {
919 /* Here, lc is the match length - MIN_MATCH */
920 code = _length_code[lc];
921 send_code(s, code + LITERALS + 1, ltree); /* send length code */
922 extra = extra_lbits[code];
923 if (extra != 0) {
924 lc -= base_length[code];
925 send_bits(s, lc, extra); /* send the extra length bits */
926 }
927 dist--; /* dist is now the match distance - 1 */
928 code = d_code(dist);
929 Assert (code < D_CODES, "bad d_code");
930
931 send_code(s, code, dtree); /* send the distance code */
932 extra = extra_dbits[code];
933 if (extra != 0) {
934 dist -= (unsigned)base_dist[code];
935 send_bits(s, dist, extra); /* send the extra distance bits */
936 }
937 } /* literal or match pair ? */
938
939 /* Check for no overlay of pending_buf on needed symbols */
940#ifdef LIT_MEM
941 Assert(s->pending < 2 * (s->lit_bufsize + sx), "pendingBuf overflow");
942#else
943 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
944#endif
945
946 } while (sx < s->sym_next);
947
948 send_code(s, END_BLOCK, ltree);
949}
local const int extra_dbits[D_CODES]
Definition trees.c:66
local const int extra_lbits[LENGTH_CODES]
Definition trees.c:63
local const int base_dist[D_CODES]
Definition trees.h:123
local const int base_length[LENGTH_CODES]
Definition trees.h:118
#define Tracecv(c, x)
Definition zutil.h:232

Referenced by _tr_flush_block().

◆ detect_data_type()

local int detect_data_type ( deflate_state * s)

Definition at line 964 of file trees.c.

964 {
965 /* block_mask is the bit mask of block-listed bytes
966 * set bits 0..6, 14..25, and 28..31
967 * 0xf3ffc07f = binary 11110011111111111100000001111111
968 */
969 unsigned long block_mask = 0xf3ffc07fUL;
970 int n;
971
972 /* Check for non-textual ("block-listed") bytes. */
973 for (n = 0; n <= 31; n++, block_mask >>= 1)
974 if ((block_mask & 1) && (s->dyn_ltree[n].Freq != 0))
975 return Z_BINARY;
976
977 /* Check for textual ("allow-listed") bytes. */
978 if (s->dyn_ltree[9].Freq != 0 || s->dyn_ltree[10].Freq != 0
979 || s->dyn_ltree[13].Freq != 0)
980 return Z_TEXT;
981 for (n = 32; n < LITERALS; n++)
982 if (s->dyn_ltree[n].Freq != 0)
983 return Z_TEXT;
984
985 /* There are no "block-listed" or "allow-listed" bytes:
986 * this stream either is empty or has tolerated ("gray-listed") bytes only.
987 */
988 return Z_BINARY;
989}
#define Z_BINARY
Definition zlib.h:203
#define Z_TEXT
Definition zlib.h:204

Referenced by _tr_flush_block().

◆ gen_bitlen()

local void gen_bitlen ( deflate_state * s,
tree_desc * desc )

Definition at line 538 of file trees.c.

538 {
539 ct_data *tree = desc->dyn_tree;
540 int max_code = desc->max_code;
541 const ct_data *stree = desc->stat_desc->static_tree;
542 const intf *extra = desc->stat_desc->extra_bits;
543 int base = desc->stat_desc->extra_base;
544 int max_length = desc->stat_desc->max_length;
545 int h; /* heap index */
546 int n, m; /* iterate over the tree elements */
547 int bits; /* bit length */
548 int xbits; /* extra bits */
549 ush f; /* frequency */
550 int overflow = 0; /* number of elements with bit length too large */
551
552 for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
553
554 /* In a first pass, compute the optimal bit lengths (which may
555 * overflow in the case of the bit length tree).
556 */
557 tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
558
559 for (h = s->heap_max + 1; h < HEAP_SIZE; h++) {
560 n = s->heap[h];
561 bits = tree[tree[n].Dad].Len + 1;
562 if (bits > max_length) bits = max_length, overflow++;
563 tree[n].Len = (ush)bits;
564 /* We overwrite tree[n].Dad which is no longer needed */
565
566 if (n > max_code) continue; /* not a leaf node */
567
568 s->bl_count[bits]++;
569 xbits = 0;
570 if (n >= base) xbits = extra[n - base];
571 f = tree[n].Freq;
572 s->opt_len += (ulg)f * (unsigned)(bits + xbits);
573 if (stree) s->static_len += (ulg)f * (unsigned)(stree[n].Len + xbits);
574 }
575 if (overflow == 0) return;
576
577 Tracev((stderr,"\nbit length overflow\n"));
578 /* This happens for example on obj2 and pic of the Calgary corpus */
579
580 /* Find the first bit length which could increase: */
581 do {
582 bits = max_length - 1;
583 while (s->bl_count[bits] == 0) bits--;
584 s->bl_count[bits]--; /* move one leaf down the tree */
585 s->bl_count[bits + 1] += 2; /* move one overflow item as its brother */
586 s->bl_count[max_length]--;
587 /* The brother of the overflow item also moves one step up,
588 * but this does not affect bl_count[max_length]
589 */
590 overflow -= 2;
591 } while (overflow > 0);
592
593 /* Now recompute all bit lengths, scanning in increasing frequency.
594 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
595 * lengths instead of fixing only the wrong ones. This idea is taken
596 * from 'ar' written by Haruhiko Okumura.)
597 */
598 for (bits = max_length; bits != 0; bits--) {
599 n = s->bl_count[bits];
600 while (n != 0) {
601 m = s->heap[--h];
602 if (m > max_code) continue;
603 if ((unsigned) tree[m].Len != (unsigned) bits) {
604 Tracev((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
605 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
606 tree[m].Len = (ush)bits;
607 }
608 n--;
609 }
610 }
611}
#define MAX_BITS
Definition deflate.h:52
const intf * extra_bits
Definition trees.c:119

Referenced by build_tree().

◆ gen_codes()

local void gen_codes ( ct_data * tree,
int max_code,
ushf * bl_count )

Definition at line 202 of file trees.c.

202 {
203 ush next_code[MAX_BITS+1]; /* next code value for each bit length */
204 unsigned code = 0; /* running code value */
205 int bits; /* bit index */
206 int n; /* code index */
207
208 /* The distribution counts are first used to generate the code values
209 * without bit reversal.
210 */
211 for (bits = 1; bits <= MAX_BITS; bits++) {
212 code = (code + bl_count[bits - 1]) << 1;
213 next_code[bits] = (ush)code;
214 }
215 /* Check that the bit counts in bl_count are consistent. The last code
216 * must be all ones.
217 */
218 Assert (code + bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1,
219 "inconsistent bit counts");
220 Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
221
222 for (n = 0; n <= max_code; n++) {
223 int len = tree[n].Len;
224 if (len == 0) continue;
225 /* Now reverse the bits */
226 tree[n].Code = (ush)bi_reverse(next_code[len]++, len);
227
228 Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
229 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len] - 1));
230 }
231}
local unsigned bi_reverse(unsigned code, int len)
Definition trees.c:154

Referenced by build_tree(), and tr_static_init().

◆ init_block()

local void init_block ( deflate_state * s)

Definition at line 439 of file trees.c.

439 {
440 int n; /* iterates over tree elements */
441
442 /* Initialize the trees. */
443 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0;
444 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0;
445 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
446
447 s->dyn_ltree[END_BLOCK].Freq = 1;
448 s->opt_len = s->static_len = 0L;
449 s->sym_next = s->matches = 0;
450}
#define L_CODES
Definition deflate.h:40

Referenced by _tr_flush_block(), and _tr_init().

◆ pqdownheap()

local void pqdownheap ( deflate_state * s,
ct_data * tree,
int k )

Definition at line 507 of file trees.c.

507 {
508 int v = s->heap[k];
509 int j = k << 1; /* left son of k */
510 while (j <= s->heap_len) {
511 /* Set j to the smallest of the two sons: */
512 if (j < s->heap_len &&
513 smaller(tree, s->heap[j + 1], s->heap[j], s->depth)) {
514 j++;
515 }
516 /* Exit if v is smaller than both sons */
517 if (smaller(tree, v, s->heap[j], s->depth)) break;
518
519 /* Exchange v with the smallest son */
520 s->heap[k] = s->heap[j]; k = j;
521
522 /* And continue down the tree, setting j to the left son of k */
523 j <<= 1;
524 }
525 s->heap[k] = v;
526}
#define smaller(tree, n, m, depth)
Definition trees.c:497

Referenced by build_tree().

◆ scan_tree()

local void scan_tree ( deflate_state * s,
ct_data * tree,
int max_code )

Definition at line 710 of file trees.c.

710 {
711 int n; /* iterates over all tree elements */
712 int prevlen = -1; /* last emitted length */
713 int curlen; /* length of current code */
714 int nextlen = tree[0].Len; /* length of next code */
715 int count = 0; /* repeat count of the current code */
716 int max_count = 7; /* max repeat count */
717 int min_count = 4; /* min repeat count */
718
719 if (nextlen == 0) max_count = 138, min_count = 3;
720 tree[max_code + 1].Len = (ush)0xffff; /* guard */
721
722 for (n = 0; n <= max_code; n++) {
723 curlen = nextlen; nextlen = tree[n + 1].Len;
724 if (++count < max_count && curlen == nextlen) {
725 continue;
726 } else if (count < min_count) {
727 s->bl_tree[curlen].Freq += count;
728 } else if (curlen != 0) {
729 if (curlen != prevlen) s->bl_tree[curlen].Freq++;
730 s->bl_tree[REP_3_6].Freq++;
731 } else if (count <= 10) {
732 s->bl_tree[REPZ_3_10].Freq++;
733 } else {
734 s->bl_tree[REPZ_11_138].Freq++;
735 }
736 count = 0; prevlen = curlen;
737 if (nextlen == 0) {
738 max_count = 138, min_count = 3;
739 } else if (curlen == nextlen) {
740 max_count = 6, min_count = 3;
741 } else {
742 max_count = 7, min_count = 4;
743 }
744 }
745}
#define REPZ_11_138
Definition trees.c:59
#define REPZ_3_10
Definition trees.c:56
#define REP_3_6
Definition trees.c:53

Referenced by build_bl_tree().

◆ send_all_trees()

local void send_all_trees ( deflate_state * s,
int lcodes,
int dcodes,
int blcodes )

Definition at line 831 of file trees.c.

832 {
833 int rank; /* index in bl_order */
834
835 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
836 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
837 "too many codes");
838 Tracev((stderr, "\nbl counts: "));
839 send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */
840 send_bits(s, dcodes - 1, 5);
841 send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */
842 for (rank = 0; rank < blcodes; rank++) {
843 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
844 send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
845 }
846 Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
847
848 send_tree(s, (ct_data *)s->dyn_ltree, lcodes - 1); /* literal tree */
849 Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
850
851 send_tree(s, (ct_data *)s->dyn_dtree, dcodes - 1); /* distance tree */
852 Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
853}
local void send_tree(deflate_state *s, ct_data *tree, int max_code)
Definition trees.c:751

Referenced by _tr_flush_block().

◆ send_tree()

local void send_tree ( deflate_state * s,
ct_data * tree,
int max_code )

Definition at line 751 of file trees.c.

751 {
752 int n; /* iterates over all tree elements */
753 int prevlen = -1; /* last emitted length */
754 int curlen; /* length of current code */
755 int nextlen = tree[0].Len; /* length of next code */
756 int count = 0; /* repeat count of the current code */
757 int max_count = 7; /* max repeat count */
758 int min_count = 4; /* min repeat count */
759
760 /* tree[max_code + 1].Len = -1; */ /* guard already set */
761 if (nextlen == 0) max_count = 138, min_count = 3;
762
763 for (n = 0; n <= max_code; n++) {
764 curlen = nextlen; nextlen = tree[n + 1].Len;
765 if (++count < max_count && curlen == nextlen) {
766 continue;
767 } else if (count < min_count) {
768 do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
769
770 } else if (curlen != 0) {
771 if (curlen != prevlen) {
772 send_code(s, curlen, s->bl_tree); count--;
773 }
774 Assert(count >= 3 && count <= 6, " 3_6?");
775 send_code(s, REP_3_6, s->bl_tree); send_bits(s, count - 3, 2);
776
777 } else if (count <= 10) {
778 send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count - 3, 3);
779
780 } else {
781 send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count - 11, 7);
782 }
783 count = 0; prevlen = curlen;
784 if (nextlen == 0) {
785 max_count = 138, min_count = 3;
786 } else if (curlen == nextlen) {
787 max_count = 6, min_count = 3;
788 } else {
789 max_count = 7, min_count = 4;
790 }
791 }
792}

Referenced by send_all_trees().

◆ tr_static_init()

local void tr_static_init ( void )

Definition at line 294 of file trees.c.

294 {
295#if defined(GEN_TREES_H) || !defined(STDC)
296 static int static_init_done = 0;
297 int n; /* iterates over tree elements */
298 int bits; /* bit counter */
299 int length; /* length value */
300 int code; /* code value */
301 int dist; /* distance index */
302 ush bl_count[MAX_BITS+1];
303 /* number of codes at each bit length for an optimal tree */
304
305 if (static_init_done) return;
306
307 /* For some embedded targets, global variables are not initialized: */
308#ifdef NO_INIT_GLOBAL_POINTERS
309 static_l_desc.static_tree = static_ltree;
310 static_l_desc.extra_bits = extra_lbits;
311 static_d_desc.static_tree = static_dtree;
312 static_d_desc.extra_bits = extra_dbits;
313 static_bl_desc.extra_bits = extra_blbits;
314#endif
315
316 /* Initialize the mapping length (0..255) -> length code (0..28) */
317 length = 0;
318 for (code = 0; code < LENGTH_CODES-1; code++) {
319 base_length[code] = length;
320 for (n = 0; n < (1 << extra_lbits[code]); n++) {
321 _length_code[length++] = (uch)code;
322 }
323 }
324 Assert (length == 256, "tr_static_init: length != 256");
325 /* Note that the length 255 (match length 258) can be represented
326 * in two different ways: code 284 + 5 bits or code 285, so we
327 * overwrite length_code[255] to use the best encoding:
328 */
329 _length_code[length - 1] = (uch)code;
330
331 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
332 dist = 0;
333 for (code = 0 ; code < 16; code++) {
334 base_dist[code] = dist;
335 for (n = 0; n < (1 << extra_dbits[code]); n++) {
336 _dist_code[dist++] = (uch)code;
337 }
338 }
339 Assert (dist == 256, "tr_static_init: dist != 256");
340 dist >>= 7; /* from now on, all distances are divided by 128 */
341 for ( ; code < D_CODES; code++) {
342 base_dist[code] = dist << 7;
343 for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
344 _dist_code[256 + dist++] = (uch)code;
345 }
346 }
347 Assert (dist == 256, "tr_static_init: 256 + dist != 512");
348
349 /* Construct the codes of the static literal tree */
350 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
351 n = 0;
352 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
353 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
354 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
355 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
356 /* Codes 286 and 287 do not exist, but we must include them in the
357 * tree construction to get a canonical Huffman tree (longest code
358 * all ones)
359 */
360 gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
361
362 /* The static distance tree is trivial: */
363 for (n = 0; n < D_CODES; n++) {
364 static_dtree[n].Len = 5;
365 static_dtree[n].Code = bi_reverse((unsigned)n, 5);
366 }
367 static_init_done = 1;
368
369# ifdef GEN_TREES_H
370 gen_trees_header();
371# endif
372#endif /* defined(GEN_TREES_H) || !defined(STDC) */
373}
#define LENGTH_CODES
Definition deflate.h:34
uch ZLIB_INTERNAL _dist_code[]
Definition trees.h:73
local const int extra_blbits[BL_CODES]
Definition trees.c:69

Referenced by _tr_init().

Variable Documentation

◆ _dist_code

uch _dist_code[DIST_CODE_LEN]

Definition at line 98 of file trees.c.

Referenced by tr_static_init().

◆ _length_code

uch _length_code[MAX_MATCH-MIN_MATCH+1]

Definition at line 104 of file trees.c.

Referenced by _tr_tally(), compress_block(), and tr_static_init().

◆ base_dist

local int base_dist[D_CODES]

Definition at line 110 of file trees.c.

◆ base_length

local int base_length[LENGTH_CODES]

Definition at line 107 of file trees.c.

◆ bl_order

local const uch bl_order[BL_CODES] = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15}

Definition at line 71 of file trees.c.

72{16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};

Referenced by build_bl_tree(), and send_all_trees().

◆ extra_blbits

local const int extra_blbits[BL_CODES] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7}

Definition at line 68 of file trees.c.

69{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};

Referenced by tr_static_init().

◆ extra_dbits

local const int extra_dbits[D_CODES] = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}

Definition at line 65 of file trees.c.

66{0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};

Referenced by compress_block(), and tr_static_init().

◆ extra_lbits

local const int extra_lbits[LENGTH_CODES] = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0}

Definition at line 62 of file trees.c.

63{0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0};

Referenced by compress_block(), and tr_static_init().

◆ static_bl_desc

local TCONST static_tree_desc static_bl_desc
Initial value:
=
#define MAX_BL_BITS
Definition trees.c:47

Definition at line 137 of file trees.c.

137 {(const ct_data *)0, extra_blbits, 0, BL_CODES, MAX_BL_BITS};

Referenced by _tr_init(), and tr_static_init().

◆ static_d_desc

local TCONST static_tree_desc static_d_desc
Initial value:

Definition at line 134 of file trees.c.

Referenced by _tr_init(), and tr_static_init().

◆ static_dtree

local ct_data static_dtree[D_CODES]

Definition at line 93 of file trees.c.

◆ static_l_desc

local TCONST static_tree_desc static_l_desc
Initial value:

Definition at line 131 of file trees.c.

Referenced by _tr_init(), and tr_static_init().

◆ static_ltree

local ct_data static_ltree[L_CODES+2]

Definition at line 86 of file trees.c.