os/ossrv/compressionlibs/ziplib/test/oldezlib/EZLib/inffast.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* inffast.c -- process literals and length/distance pairs fast
sl@0
     2
 * Copyright (C) 1995-2002 Mark Adler
sl@0
     3
 * For conditions of distribution and use, see copyright notice in zlib.h 
sl@0
     4
 */
sl@0
     5
sl@0
     6
#include "zutil.h"
sl@0
     7
#include "inftrees.h"
sl@0
     8
#include "infblock.h"
sl@0
     9
#include "infcodes.h"
sl@0
    10
#include "infutil.h"
sl@0
    11
#include "inffast.h"
sl@0
    12
sl@0
    13
struct inflate_codes_state {int dummy;}; /* for buggy compilers */
sl@0
    14
sl@0
    15
/* simplify the use of the inflate_huft type with some defines */
sl@0
    16
#define exop word.what.Exop
sl@0
    17
#define bits word.what.Bits
sl@0
    18
sl@0
    19
/* macros for bit input with no checking and for returning unused bytes */
sl@0
    20
#define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
sl@0
    21
#define UNGRAB {c=z->avail_in-n;c=(k>>3)<c?k>>3:c;n+=c;p-=c;k-=c<<3;}
sl@0
    22
sl@0
    23
/* Called with number of bytes left to write in window at least 258
sl@0
    24
   (the maximum string length) and number of input bytes available
sl@0
    25
   at least ten.  The ten bytes are six bytes for the longest length/
sl@0
    26
   distance pair plus four bytes for overloading the bit buffer. */
sl@0
    27
sl@0
    28
int inflate_fast(
sl@0
    29
uInt bl, uInt bd,
sl@0
    30
const inflate_huft *tl,
sl@0
    31
const inflate_huft *td, /* need separate declaration for Borland C++ */
sl@0
    32
inflate_blocks_statef *s,
sl@0
    33
z_streamp z)
sl@0
    34
{
sl@0
    35
  const inflate_huft *t;      /* temporary pointer */
sl@0
    36
  uInt e;               /* extra bits or operation */
sl@0
    37
  uLong b;              /* bit buffer */
sl@0
    38
  uInt k;               /* bits in bit buffer */
sl@0
    39
  Bytef *p;             /* input data pointer */
sl@0
    40
  uInt n;               /* bytes available there */
sl@0
    41
  Bytef *q;             /* output window write pointer */
sl@0
    42
  uInt m;               /* bytes to end of window or read pointer */
sl@0
    43
  uInt ml;              /* mask for literal/length tree */
sl@0
    44
  uInt md;              /* mask for distance tree */
sl@0
    45
  uInt c;               /* bytes to copy */
sl@0
    46
  uInt d;               /* distance back to copy from */
sl@0
    47
  Bytef *r;             /* copy source pointer */
sl@0
    48
  int alwaysTrue = 1;   /* Added by Markr Symbian 9/11/99 to get rid of warnings */
sl@0
    49
  /* load input, output, bit values */
sl@0
    50
  LOAD
sl@0
    51
sl@0
    52
  /* initialize masks */
sl@0
    53
  ml = inflate_mask[bl];
sl@0
    54
  md = inflate_mask[bd];
sl@0
    55
sl@0
    56
  /* do until not enough input or output space for fast loop */
sl@0
    57
  do {                          /* assume called with m >= 258 && n >= 10 */
sl@0
    58
    /* get literal/length code */
sl@0
    59
    GRABBITS(20)                /* max bits for literal/length code */
sl@0
    60
    if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
sl@0
    61
    {
sl@0
    62
      DUMPBITS(t->bits)
sl@0
    63
      Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
sl@0
    64
                "inflate:         * literal '%c'\n" :
sl@0
    65
                "inflate:         * literal 0x%02x\n", t->base));
sl@0
    66
      *q++ = (Byte)t->base;
sl@0
    67
      m--;
sl@0
    68
      continue;
sl@0
    69
    }
sl@0
    70
    do {
sl@0
    71
      DUMPBITS(t->bits)
sl@0
    72
      if (e & 16)
sl@0
    73
      {
sl@0
    74
        /* get extra bits for length */
sl@0
    75
        e &= 15;
sl@0
    76
        c = t->base + ((uInt)b & inflate_mask[e]);
sl@0
    77
        DUMPBITS(e)
sl@0
    78
        Tracevv((stderr, "inflate:         * length %u\n", c));
sl@0
    79
sl@0
    80
        /* decode distance base of block to copy */
sl@0
    81
        GRABBITS(15);           /* max bits for distance code */
sl@0
    82
        e = (t = td + ((uInt)b & md))->exop;
sl@0
    83
        do {
sl@0
    84
          DUMPBITS(t->bits)
sl@0
    85
          if (e & 16)
sl@0
    86
          {
sl@0
    87
            /* get extra bits to add to distance base */
sl@0
    88
            e &= 15;
sl@0
    89
            GRABBITS(e)         /* get extra bits (up to 13) */
sl@0
    90
            d = t->base + ((uInt)b & inflate_mask[e]);
sl@0
    91
            DUMPBITS(e)
sl@0
    92
            Tracevv((stderr, "inflate:         * distance %u\n", d));
sl@0
    93
sl@0
    94
            /* do the copy */
sl@0
    95
            m -= c;
sl@0
    96
            r = q - d;
sl@0
    97
            if (r < s->window)                  /* wrap if needed */
sl@0
    98
            {
sl@0
    99
              do {
sl@0
   100
                r += s->end - s->window;        /* force pointer in window */
sl@0
   101
              } while (r < s->window);          /* covers invalid distances */
sl@0
   102
              e = s->end - r;
sl@0
   103
              if (c > e)
sl@0
   104
              {
sl@0
   105
                c -= e;                         /* wrapped copy */
sl@0
   106
                do {
sl@0
   107
                    *q++ = *r++;
sl@0
   108
                } while (--e);
sl@0
   109
                r = s->window;
sl@0
   110
                do {
sl@0
   111
                    *q++ = *r++;
sl@0
   112
                } while (--c);
sl@0
   113
              }
sl@0
   114
              else                              /* normal copy */
sl@0
   115
              {
sl@0
   116
                *q++ = *r++;  c--;
sl@0
   117
                *q++ = *r++;  c--;
sl@0
   118
                do {
sl@0
   119
                    *q++ = *r++;
sl@0
   120
                } while (--c);
sl@0
   121
              }
sl@0
   122
            }
sl@0
   123
            else                                /* normal copy */
sl@0
   124
            {
sl@0
   125
              *q++ = *r++;  c--;
sl@0
   126
              *q++ = *r++;  c--;
sl@0
   127
              do {
sl@0
   128
                *q++ = *r++;
sl@0
   129
              } while (--c);
sl@0
   130
            }
sl@0
   131
            break;
sl@0
   132
          }
sl@0
   133
          else if ((e & 64) == 0)
sl@0
   134
          {
sl@0
   135
            t += t->base;
sl@0
   136
            e = (t += ((uInt)b & inflate_mask[e]))->exop;
sl@0
   137
          }
sl@0
   138
          else
sl@0
   139
          {
sl@0
   140
            z->msg = (char*)"invalid distance code";
sl@0
   141
            UNGRAB
sl@0
   142
            UPDATE
sl@0
   143
            return Z_DATA_ERROR;
sl@0
   144
          }
sl@0
   145
        } while (alwaysTrue); // Changed by Markr to alleviate warning
sl@0
   146
        break;
sl@0
   147
      }
sl@0
   148
      if ((e & 64) == 0)
sl@0
   149
      {
sl@0
   150
        t += t->base;
sl@0
   151
        if ((e = (t += ((uInt)b & inflate_mask[e]))->exop) == 0)
sl@0
   152
        {
sl@0
   153
          DUMPBITS(t->bits)
sl@0
   154
          Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
sl@0
   155
                    "inflate:         * literal '%c'\n" :
sl@0
   156
                    "inflate:         * literal 0x%02x\n", t->base));
sl@0
   157
          *q++ = (Byte)t->base;
sl@0
   158
          m--;
sl@0
   159
          break;
sl@0
   160
        }
sl@0
   161
      }
sl@0
   162
      else if (e & 32)
sl@0
   163
      {
sl@0
   164
        Tracevv((stderr, "inflate:         * end of block\n"));
sl@0
   165
        UNGRAB
sl@0
   166
        UPDATE
sl@0
   167
        return Z_STREAM_END;
sl@0
   168
      }
sl@0
   169
      else
sl@0
   170
      {
sl@0
   171
        z->msg = (char*)"invalid literal/length code";
sl@0
   172
        UNGRAB
sl@0
   173
        UPDATE
sl@0
   174
        return Z_DATA_ERROR;
sl@0
   175
      }
sl@0
   176
    } while (alwaysTrue); // Changed by Markr to alleviate warning
sl@0
   177
  } while (m >= 258 && n >= 10);
sl@0
   178
sl@0
   179
  /* not enough input or output--restore pointers and return */
sl@0
   180
  UNGRAB
sl@0
   181
  UPDATE
sl@0
   182
  return Z_OK;
sl@0
   183
}