aboutsummaryrefslogtreecommitdiff
path: root/archival/gzip.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-01-31 17:00:41 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-01-31 17:00:41 +0100
commitba63d70e2d3a24670813dc33fca4450a25b281b6 (patch)
treeaea19e6207eb634b4d8c4140ca10045333cc7f32 /archival/gzip.c
parent26eea71c87bb5b39fb77eb8b1a6c69ea82e8e879 (diff)
downloadbusybox-ba63d70e2d3a24670813dc33fca4450a25b281b6.tar.gz
gzip: make debugging of bits_sent less ugly, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/gzip.c')
-rw-r--r--archival/gzip.c21
1 files changed, 8 insertions, 13 deletions
diff --git a/archival/gzip.c b/archival/gzip.c
index c94fec48d..6083cde88 100644
--- a/archival/gzip.c
+++ b/archival/gzip.c
@@ -411,6 +411,9 @@ struct globals {
#ifdef DEBUG
ulg bits_sent; /* bit length of the compressed data */
+# define DEBUG_bits_sent(v) (void)(G1.bits_sent v)
+#else
+# define DEBUG_bits_sent(v) ((void)0)
#endif
};
@@ -540,7 +543,7 @@ static void send_bits(unsigned value, unsigned length)
#ifdef DEBUG
Tracev((stderr, " l %2d v %4x ", length, value));
Assert(length > 0 && length <= 15, "invalid length");
- G1.bits_sent += length;
+ DEBUG_bits_sent(+= length);
#endif
BUILD_BUG_ON(BUF_SIZE != 32 && BUF_SIZE != 16);
@@ -602,9 +605,7 @@ static void bi_windup(void)
}
G1.bi_buf = 0;
G1.bi_valid = 0;
-#ifdef DEBUG
- G1.bits_sent = (G1.bits_sent + 7) & ~7;
-#endif
+ DEBUG_bits_sent(= (G1.bits_sent + 7) & ~7);
}
@@ -619,13 +620,9 @@ static void copy_block(char *buf, unsigned len, int header)
if (header) {
unsigned v = ((uint16_t)len) | ((~len) << 16);
put_32bit(v);
-#ifdef DEBUG
- G1.bits_sent += 2 * 16;
-#endif
+ DEBUG_bits_sent(+= 2 * 16);
}
-#ifdef DEBUG
- G1.bits_sent += (ulg) len << 3;
-#endif
+ DEBUG_bits_sent(+= (ulg) len << 3);
while (len--) {
put_8bit(*buf++);
}
@@ -1942,9 +1939,7 @@ static void bi_init(void)
{
//G1.bi_buf = 0; // globals are zeroed in pack_gzip()
//G1.bi_valid = 0; // globals are zeroed in pack_gzip()
-#ifdef DEBUG
- //G1.bits_sent = 0L; // globals are zeroed in pack_gzip()
-#endif
+ //DEBUG_bits_sent(= 0L); // globals are zeroed in pack_gzip()
}