aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/libarchive/bz/compress.c25
1 files changed, 19 insertions, 6 deletions
diff --git a/archival/libarchive/bz/compress.c b/archival/libarchive/bz/compress.c
index 4d0f77592..fc6af6595 100644
--- a/archival/libarchive/bz/compress.c
+++ b/archival/libarchive/bz/compress.c
@@ -90,10 +90,23 @@ void bsW16(EState* s, uint32_t v)
90} 90}
91/* Same with n == 1: */ 91/* Same with n == 1: */
92static 92static
93ALWAYS_INLINE /* one callsite */
94void bsW1_1(EState* s)
95{
96 /* need space for only 1 bit, no need for loop freeing > 8 bits */
97 if (s->bsLive >= 8) {
98 *s->posZ++ = (uint8_t)(s->bsBuff >> 24);
99 s->bsBuff <<= 8;
100 s->bsLive -= 8;
101 }
102 s->bsBuff |= (1 << (31 - s->bsLive));
103 s->bsLive += 1;
104}
105static
93#if CONFIG_BZIP2_FAST >= 5 106#if CONFIG_BZIP2_FAST >= 5
94ALWAYS_INLINE 107ALWAYS_INLINE
95#endif 108#endif
96void bsW1(EState* s, uint32_t v) 109void bsW1_0(EState* s)
97{ 110{
98 /* need space for only 1 bit, no need for loop freeing > 8 bits */ 111 /* need space for only 1 bit, no need for loop freeing > 8 bits */
99 if (s->bsLive >= 8) { 112 if (s->bsLive >= 8) {
@@ -101,7 +114,7 @@ void bsW1(EState* s, uint32_t v)
101 s->bsBuff <<= 8; 114 s->bsBuff <<= 8;
102 s->bsLive -= 8; 115 s->bsLive -= 8;
103 } 116 }
104 s->bsBuff |= (v << (31 - s->bsLive)); 117 //s->bsBuff |= (0 << (31 - s->bsLive));
105 s->bsLive += 1; 118 s->bsLive += 1;
106} 119}
107 120
@@ -573,8 +586,8 @@ void sendMTFValues(EState* s)
573 for (i = 0; i < nSelectors; i++) { 586 for (i = 0; i < nSelectors; i++) {
574 unsigned j; 587 unsigned j;
575 for (j = 0; j < s->selectorMtf[i]; j++) 588 for (j = 0; j < s->selectorMtf[i]; j++)
576 bsW1(s, 1); 589 bsW1_1(s);
577 bsW1(s, 0); 590 bsW1_0(s);
578 } 591 }
579 592
580 /*--- Now the coding tables. ---*/ 593 /*--- Now the coding tables. ---*/
@@ -584,7 +597,7 @@ void sendMTFValues(EState* s)
584 for (i = 0; i < alphaSize; i++) { 597 for (i = 0; i < alphaSize; i++) {
585 while (curr < s->len[t][i]) { bsW(s, 2, 2); curr++; /* 10 */ }; 598 while (curr < s->len[t][i]) { bsW(s, 2, 2); curr++; /* 10 */ };
586 while (curr > s->len[t][i]) { bsW(s, 2, 3); curr--; /* 11 */ }; 599 while (curr > s->len[t][i]) { bsW(s, 2, 3); curr--; /* 11 */ };
587 bsW1(s, 0); 600 bsW1_0(s);
588 } 601 }
589 } 602 }
590 603
@@ -698,7 +711,7 @@ void BZ2_compressBlock(EState* s, int is_last_block)
698 * so as to maintain backwards compatibility with 711 * so as to maintain backwards compatibility with
699 * older versions of bzip2. 712 * older versions of bzip2.
700 */ 713 */
701 bsW1(s, 0); 714 bsW1_0(s);
702 715
703 bsW(s, 24, s->origPtr); 716 bsW(s, 24, s->origPtr);
704 generateMTFValues(s); 717 generateMTFValues(s);