inffast.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:12k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /* inffast.c -- fast decoding
  2.  * Copyright (C) 1995-2003 Mark Adler
  3.  * For conditions of distribution and use, see copyright notice in zlib.h
  4.  */
  5. #include "zutil.h"
  6. #include "inftrees.h"
  7. #include "inflate.h"
  8. #include "inffast.h"
  9. #ifndef ASMINF
  10. /* Allow machine dependent optimization for post-increment or pre-increment.
  11.    Based on testing to date,
  12.    Pre-increment preferred for:
  13.    - PowerPC G3 (Adler)
  14.    - MIPS R5000 (Randers-Pehrson)
  15.    Post-increment preferred for:
  16.    - none
  17.    No measurable difference:
  18.    - Pentium III (Anderson)
  19.    - 68060 (Nikl)
  20.  */
  21. #ifdef POSTINC
  22. #  define OFF 0
  23. #  define PUP(a) *(a)++
  24. #else
  25. #  define OFF 1
  26. #  define PUP(a) *++(a)
  27. #endif
  28. /*
  29.    Decode literal, length, and distance codes and write out the resulting
  30.    literal and match bytes until either not enough input or output is
  31.    available, an end-of-block is encountered, or a data error is encountered.
  32.    When large enough input and output buffers are supplied to inflate(), for
  33.    example, a 16K input buffer and a 64K output buffer, more than 95% of the
  34.    inflate execution time is spent in this routine.
  35.    Entry assumptions:
  36.         state->mode == LEN
  37.         strm->avail_in >= 6
  38.         strm->avail_out >= 258
  39.         start >= strm->avail_out
  40.         state->bits < 8
  41.    On return, state->mode is one of:
  42.         LEN -- ran out of enough output space or enough available input
  43.         TYPE -- reached end of block code, inflate() to interpret next block
  44.         BAD -- error in block data
  45.    Notes:
  46.     - The maximum input bits used by a length/distance pair is 15 bits for the
  47.       length code, 5 bits for the length extra, 15 bits for the distance code,
  48.       and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
  49.       Therefore if strm->avail_in >= 6, then there is enough input to avoid
  50.       checking for available input while decoding.
  51.     - The maximum bytes that a single length/distance pair can output is 258
  52.       bytes, which is the maximum length that can be coded.  inflate_fast()
  53.       requires strm->avail_out >= 258 for each loop to avoid checking for
  54.       output space.
  55.  */
  56. void inflate_fast(strm, start)
  57. z_streamp strm;
  58. unsigned start;         /* inflate()'s starting value for strm->avail_out */
  59. {
  60.     struct inflate_state FAR *state;
  61.     unsigned char FAR *in;      /* local strm->next_in */
  62.     unsigned char FAR *last;    /* while in < last, enough input available */
  63.     unsigned char FAR *out;     /* local strm->next_out */
  64.     unsigned char FAR *beg;     /* inflate()'s initial strm->next_out */
  65.     unsigned char FAR *end;     /* while out < end, enough space available */
  66.     unsigned wsize;             /* window size or zero if not using window */
  67.     unsigned whave;             /* valid bytes in the window */
  68.     unsigned write;             /* window write index */
  69.     unsigned char FAR *window;  /* allocated sliding window, if wsize != 0 */
  70.     unsigned long hold;         /* local strm->hold */
  71.     unsigned bits;              /* local strm->bits */
  72.     code const FAR *lcode;      /* local strm->lencode */
  73.     code const FAR *dcode;      /* local strm->distcode */
  74.     unsigned lmask;             /* mask for first level of length codes */
  75.     unsigned dmask;             /* mask for first level of distance codes */
  76.     code this;                  /* retrieved table entry */
  77.     unsigned op;                /* code bits, operation, extra bits, or */
  78.                                 /*  window position, window bytes to copy */
  79.     unsigned len;               /* match length, unused bytes */
  80.     unsigned dist;              /* match distance */
  81.     unsigned char FAR *from;    /* where to copy match from */
  82.     /* copy state to local variables */
  83.     state = (struct inflate_state FAR *)strm->state;
  84.     in = strm->next_in - OFF;
  85.     last = in + (strm->avail_in - 5);
  86.     out = strm->next_out - OFF;
  87.     beg = out - (start - strm->avail_out);
  88.     end = out + (strm->avail_out - 257);
  89.     wsize = state->wsize;
  90.     whave = state->whave;
  91.     write = state->write;
  92.     window = state->window;
  93.     hold = state->hold;
  94.     bits = state->bits;
  95.     lcode = state->lencode;
  96.     dcode = state->distcode;
  97.     lmask = (1U << state->lenbits) - 1;
  98.     dmask = (1U << state->distbits) - 1;
  99.     /* decode literals and length/distances until end-of-block or not enough
  100.        input data or output space */
  101.     do {
  102.         if (bits < 15) {
  103.             hold += (unsigned long)(PUP(in)) << bits;
  104.             bits += 8;
  105.             hold += (unsigned long)(PUP(in)) << bits;
  106.             bits += 8;
  107.         }
  108.         this = lcode[hold & lmask];
  109.       dolen:
  110.         op = (unsigned)(this.bits);
  111.         hold >>= op;
  112.         bits -= op;
  113.         op = (unsigned)(this.op);
  114.         if (op == 0) {                          /* literal */
  115.             Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
  116.                     "inflate:         literal '%c'n" :
  117.                     "inflate:         literal 0x%02xn", this.val));
  118.             PUP(out) = (unsigned char)(this.val);
  119.         }
  120.         else if (op & 16) {                     /* length base */
  121.             len = (unsigned)(this.val);
  122.             op &= 15;                           /* number of extra bits */
  123.             if (op) {
  124.                 if (bits < op) {
  125.                     hold += (unsigned long)(PUP(in)) << bits;
  126.                     bits += 8;
  127.                 }
  128.                 len += (unsigned)hold & ((1U << op) - 1);
  129.                 hold >>= op;
  130.                 bits -= op;
  131.             }
  132.             Tracevv((stderr, "inflate:         length %un", len));
  133.             if (bits < 15) {
  134.                 hold += (unsigned long)(PUP(in)) << bits;
  135.                 bits += 8;
  136.                 hold += (unsigned long)(PUP(in)) << bits;
  137.                 bits += 8;
  138.             }
  139.             this = dcode[hold & dmask];
  140.           dodist:
  141.             op = (unsigned)(this.bits);
  142.             hold >>= op;
  143.             bits -= op;
  144.             op = (unsigned)(this.op);
  145.             if (op & 16) {                      /* distance base */
  146.                 dist = (unsigned)(this.val);
  147.                 op &= 15;                       /* number of extra bits */
  148.                 if (bits < op) {
  149.                     hold += (unsigned long)(PUP(in)) << bits;
  150.                     bits += 8;
  151.                     if (bits < op) {
  152.                         hold += (unsigned long)(PUP(in)) << bits;
  153.                         bits += 8;
  154.                     }
  155.                 }
  156.                 dist += (unsigned)hold & ((1U << op) - 1);
  157.                 hold >>= op;
  158.                 bits -= op;
  159.                 Tracevv((stderr, "inflate:         distance %un", dist));
  160.                 op = (unsigned)(out - beg);     /* max distance in output */
  161.                 if (dist > op) {                /* see if copy from window */
  162.                     op = dist - op;             /* distance back in window */
  163.                     if (op > whave) {
  164.                         strm->msg = (char *)"invalid distance too far back";
  165.                         state->mode = BAD;
  166.                         break;
  167.                     }
  168.                     from = window - OFF;
  169.                     if (write == 0) {           /* very common case */
  170.                         from += wsize - op;
  171.                         if (op < len) {         /* some from window */
  172.                             len -= op;
  173.                             do {
  174.                                 PUP(out) = PUP(from);
  175.                             } while (--op);
  176.                             from = out - dist;  /* rest from output */
  177.                         }
  178.                     }
  179.                     else if (write < op) {      /* wrap around window */
  180.                         from += wsize + write - op;
  181.                         op -= write;
  182.                         if (op < len) {         /* some from end of window */
  183.                             len -= op;
  184.                             do {
  185.                                 PUP(out) = PUP(from);
  186.                             } while (--op);
  187.                             from = window - OFF;
  188.                             if (write < len) {  /* some from start of window */
  189.                                 op = write;
  190.                                 len -= op;
  191.                                 do {
  192.                                     PUP(out) = PUP(from);
  193.                                 } while (--op);
  194.                                 from = out - dist;      /* rest from output */
  195.                             }
  196.                         }
  197.                     }
  198.                     else {                      /* contiguous in window */
  199.                         from += write - op;
  200.                         if (op < len) {         /* some from window */
  201.                             len -= op;
  202.                             do {
  203.                                 PUP(out) = PUP(from);
  204.                             } while (--op);
  205.                             from = out - dist;  /* rest from output */
  206.                         }
  207.                     }
  208.                     while (len > 2) {
  209.                         PUP(out) = PUP(from);
  210.                         PUP(out) = PUP(from);
  211.                         PUP(out) = PUP(from);
  212.                         len -= 3;
  213.                     }
  214.                     if (len) {
  215.                         PUP(out) = PUP(from);
  216.                         if (len > 1)
  217.                             PUP(out) = PUP(from);
  218.                     }
  219.                 }
  220.                 else {
  221.                     from = out - dist;          /* copy direct from output */
  222.                     do {                        /* minimum length is three */
  223.                         PUP(out) = PUP(from);
  224.                         PUP(out) = PUP(from);
  225.                         PUP(out) = PUP(from);
  226.                         len -= 3;
  227.                     } while (len > 2);
  228.                     if (len) {
  229.                         PUP(out) = PUP(from);
  230.                         if (len > 1)
  231.                             PUP(out) = PUP(from);
  232.                     }
  233.                 }
  234.             }
  235.             else if ((op & 64) == 0) {          /* 2nd level distance code */
  236.                 this = dcode[this.val + (hold & ((1U << op) - 1))];
  237.                 goto dodist;
  238.             }
  239.             else {
  240.                 strm->msg = (char *)"invalid distance code";
  241.                 state->mode = BAD;
  242.                 break;
  243.             }
  244.         }
  245.         else if ((op & 64) == 0) {              /* 2nd level length code */
  246.             this = lcode[this.val + (hold & ((1U << op) - 1))];
  247.             goto dolen;
  248.         }
  249.         else if (op & 32) {                     /* end-of-block */
  250.             Tracevv((stderr, "inflate:         end of blockn"));
  251.             state->mode = TYPE;
  252.             break;
  253.         }
  254.         else {
  255.             strm->msg = (char *)"invalid literal/length code";
  256.             state->mode = BAD;
  257.             break;
  258.         }
  259.     } while (in < last && out < end);
  260.     /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
  261.     len = bits >> 3;
  262.     in -= len;
  263.     bits -= len << 3;
  264.     hold &= (1U << bits) - 1;
  265.     /* update state and return */
  266.     strm->next_in = in + OFF;
  267.     strm->next_out = out + OFF;
  268.     strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
  269.     strm->avail_out = (unsigned)(out < end ?
  270.                                  257 + (end - out) : 257 - (out - end));
  271.     state->hold = hold;
  272.     state->bits = bits;
  273.     return;
  274. }
  275. /*
  276.    inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
  277.    - Using bit fields for code structure
  278.    - Different op definition to avoid & for extra bits (do & for table bits)
  279.    - Three separate decoding do-loops for direct, window, and write == 0
  280.    - Special case for distance > 1 copies to do overlapped load and store copy
  281.    - Explicit branch predictions (based on measured branch probabilities)
  282.    - Deferring match copy and interspersed it with decoding subsequent codes
  283.    - Swapping literal/length else
  284.    - Swapping window/direct else
  285.    - Larger unrolled copy loops (three is about right)
  286.    - Moving len -= 3 statement into middle of loop
  287.  */
  288. #endif /* !ASMINF */