flate.a
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:15k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. ; Not copyrighted by Paul Kienitz, 20 June 94.  Last modified 21 Feb 96.
  2. ;
  3. ; 68000 assembly language version of inflate_codes(), for Amiga.  Prototype:
  4. ;
  5. ;   int inflate_codes(__GPRO__ struct huft *tl, struct huft *td,
  6. ;                     int bl, int bd);
  7. ;
  8. ; Where __GPRO__ expands to "Uz_Globs *G," if REENTRANT is defined,
  9. ; otherwise to nothing.  In the latter case G is a global variable.
  10. ;
  11. ; Define the symbol FUNZIP if this is for fUnZip.  It overrides REENTRANT.
  12. ;
  13. ; Define AZTEC to use the Aztec C macro version of getc() instead of the
  14. ; library getc() with FUNZIP.  AZTEC is ignored if FUNZIP is not defined.
  15. ;
  16. ; Define NO_CHECK_EOF to not use the fancy paranoid version of NEEDBITS --
  17. ; this is equivalent to removing the #define CHECK_EOF from inflate.c.
  18. ;
  19. ; Define INT16 if ints are short, otherwise it assumes ints are long.
  20. ;
  21. ; *DO NOT* define WSIZE -- this only works with the default value of 32K.
  22.                 IFD     INT16
  23. MOVINT           MACRO
  24.         move.w          1,2
  25.                  ENDM
  26. INTSIZE equ     2
  27.                 ELSE    ; !INT16
  28. MOVINT           MACRO
  29.         move.l          1,2
  30.                  ENDM
  31. INTSIZE equ     4
  32.                 ENDC
  33.                 IFD     REENTRANT
  34.                  IFND   FUNZIP
  35. REENT_G equ     1
  36.                  ENDC
  37.                 ENDC
  38. ; struct huft is defined as follows:
  39. ;
  40. ;   struct huft {
  41. ;     uch e;                /* number of extra bits or operation */
  42. ;     uch b;                /* number of bits in this code or subcode */
  43. ;     union {
  44. ;       ush n;              /* literal, length base, or distance base */
  45. ;       struct huft *t;     /* pointer to next level of table */
  46. ;     } v;
  47. ;   };                      /* sizeof(struct huft) == 6 */
  48. ;
  49. ; so here we define the offsets of the various members of this struct:
  50. h_e             equ     0
  51. h_b             equ     1
  52. h_n             equ     2
  53. h_t             equ     2
  54. SIZEOF_HUFT     equ     6
  55. ; The following include file is generated from globals.h, and gives us equates
  56. ; that give the offsets in Uz_Globs of the fields we use, which are:
  57. ;       ulg bb
  58. ;       unsigned int bk, wp
  59. ;       (either array of or pointer to unsigned char) slide
  60. ; For fUnZip:
  61. ;       FILE *in
  62. ; For regular UnZip but not fUnZip:
  63. ;       int incnt, mem_mode
  64. ;       long csize
  65. ;       uch *inptr
  66. ; It also defines a value SIZEOF_slide, which tells us whether the appropriate
  67. ; slide field in G (either area.Slide or redirect_pointer) is a pointer or an
  68. ; array instance.  It is 4 in the former case and a large value in the latter.
  69. ; Lastly, this include will define CRYPT as 1 if appropriate.
  70.                 IFD     FUNZIP
  71.         INCLUDE "amiga/G_offs.fa"
  72.                 ELSE
  73.         INCLUDE "amiga/G_offs.a"
  74.                 ENDC
  75. ; G.bb is the global buffer that holds bits from the huffman code stream, which
  76. ; we cache in the register variable b.  G.bk is the number of valid bits in it,
  77. ; which we cache in k.  The macros NEEDBITS(n) and DUMPBITS(n) have side effects
  78. ; on b and k.
  79.                 IFD     REENT_G
  80. G_SIZE  equ     4
  81. G_PUSH           MACRO          ; this macro passes "__G__" to functions
  82.         move.l          G,-(sp)
  83.                  ENDM
  84.                 ELSE
  85.         xref    _G              ; Uz_Globs
  86. G_SIZE  equ     0
  87. G_PUSH           MACRO
  88.         ds.b            0       ; does nothing; the assembler dislikes MACRO ENDM
  89.                  ENDM
  90.                 ENDC    ; REENT_G
  91.         xref    _mask_bits      ; const ush near mask_bits[17];
  92.                 IFD     FUNZIP
  93.                  IF     CRYPT
  94.         xref    _encrypted      ; int -- boolean flag
  95.         xref    _update_keys    ; int update_keys(__GPRO__ int)
  96.         xref    _decrypt_byte   ; int decrypt_byte(__GPRO)
  97.                  ENDC   ; CRYPT
  98.                 ELSE    ; !FUNZIP
  99.         xref    _memflush       ; int memflush(__GPRO__ uch *, ulg)
  100.         xref    _readbyte       ; int readbyte(__GPRO)
  101.                 ENDC    ; FUNZIP
  102.         xref    _getc           ; int getc(FILE *)
  103.         xref    _flush          ; if FUNZIP:  int flush(__GPRO__ ulg)
  104.                                 ; else:  int flush(__GPRO__ uch *, ulg *, int)
  105. ; Here are our register variables.
  106. b       equr    d2              ; ulg
  107. k       equr    d3              ; ush <= 32
  108. e       equr    d4              ; ush < 256 for most use
  109. w       equr    d5              ; unsigned int
  110. n       equr    d6              ; ush
  111. d       equr    d7              ; unsigned int
  112. ; We always maintain w and d as valid unsigned longs, though they may be short.
  113. t       equr    a2              ; struct huft *
  114. mask    equr    a3              ; ush *
  115. G       equr    a6              ; Uz_Globs *
  116. ; Couple other items we need:
  117. savregs reg     d2-d7/a2/a3/a6
  118. WSIZE   equ     $8000           ; 32k... be careful not to treat as negative!
  119. EOF     equ     -1
  120.                 IFD     FUNZIP
  121. ; This does getc(in).  Aztec version is based on #define getc(fp) in stdio.h
  122.                  IFD    AZTEC
  123.         xref    __filbuf
  124. GETC              MACRO
  125.         move.l          in(G),a0
  126.         move.l          (a0),a1         ; in->_bp
  127.         cmp.l           4(a0),a1        ; in->_bend
  128.         blo.s           gci@
  129.         move.l          a0,-(sp)
  130.         jsr             __filbuf
  131.         addq            #4,sp
  132.         bra.s           gce@
  133. gci@:  moveq           #0,d0           ; must be valid as longword
  134.         move.b          (a1)+,d0
  135.         move.l          a1,(a0)
  136. gce@:
  137.                   ENDM
  138.                  ELSE   ; !AZTEC
  139. GETC              MACRO
  140.         move.l          in(G),-(sp)
  141.         jsr             _getc
  142.         addq            #4,sp
  143.                   ENDM
  144.                  ENDC   ; AZTEC
  145.                 ENDC    ; FUNZIP
  146. ; Input depends on the NEXTBYTE macro.  This exists in three different forms.
  147. ; The first two are for fUnZip, with and without decryption.  The last is for
  148. ; regular UnZip with or without decryption.  The resulting byte is returned
  149. ; in d0 as a longword, and d1, a0, and a1 are clobbered.
  150. ; FLUSH also has different forms for UnZip and fUnZip.  Arg must be a longword.
  151. ; The same scratch registers are trashed.
  152.                 IFD     FUNZIP
  153. NEXTBYTE         MACRO
  154.         GETC
  155.                   IF    CRYPT
  156.         tst.w           _encrypted+INTSIZE-2    ; test low word if long
  157.         beq.s           nbe@
  158.         MOVINT          d0,-(sp)                ; save thru next call
  159.         G_PUSH
  160.         jsr             _decrypt_byte
  161.         eor.w           d0,G_SIZE+INTSIZE-2(sp) ; becomes arg to update_keys
  162.         jsr             _update_keys
  163.         addq            #INTSIZE+G_SIZE,sp
  164. nbe@:
  165.                    IFEQ INTSIZE-2
  166.         ext.l           d0              ; assert -1 <= d0 <= 255
  167.                    ENDC
  168.                   ENDC  ; !CRYPT
  169.                  ENDM
  170. FLUSH            MACRO
  171.         move.l          1,-(sp)
  172.         G_PUSH
  173.         jsr             _flush
  174.         addq            #4+G_SIZE,sp
  175.                  ENDM
  176.                 ELSE    ; !FUNZIP
  177. NEXTBYTE         MACRO
  178. ;;        subq.l          #1,csize(G)
  179. ;;        bge.s           nbg@
  180. ;;        moveq           #EOF,d0
  181. ;;        bra.s           nbe@
  182. nbg@:  subq.w          #1,incnt+INTSIZE-2(G)   ; treat as short
  183.         bge.s           nbs@
  184.         G_PUSH
  185.         jsr             _readbyte
  186.                 IFNE    G_SIZE
  187.         addq            #G_SIZE,sp
  188.                 ENDC
  189.         bra.s           nbe@
  190. nbs@:  moveq           #0,d0
  191.         move.l          inptr(G),a0
  192.         move.b          (a0)+,d0
  193.         move.l          a0,inptr(G)
  194. nbe@:
  195.                  ENDM
  196. FLUSH            MACRO
  197.         MOVINT          #0,-(sp)                ; unshrink flag: always false
  198.         move.l          1,-(sp)                ; length
  199.                   IFGT  SIZEOF_slide-4
  200.         pea             slide(G)                ; buffer to flush
  201.                   ELSE
  202.         move.l          slide(G),-(sp)
  203.                   ENDC
  204.         G_PUSH
  205.         tst.w           mem_mode+INTSIZE-2(G)   ; test lower word if long
  206.         beq.s           fm@
  207.         jsr             _memflush               ; ignores the unshrink flag
  208.         bra.s           fe@
  209. fm@:   jsr             _flush
  210. fe@:   lea             8+INTSIZE+G_SIZE(sp),sp
  211.                  ENDM
  212.                 ENDC    ; ?FUNZIP
  213. ; Here are the two bit-grabbing macros, defined in their NO_CHECK_EOF form:
  214. ;
  215. ;   #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE)<<k;k+=8;}}
  216. ;   #define DUMPBITS(n) {b>>=(n);k-=(n);}
  217. ;
  218. ; Without NO_CHECK_EOF, NEEDBITS reads like this:
  219. ;
  220. ;   {while(k<(n)){int c=NEXTBYTE;if(c==EOF)return 1;b|=((ulg)c)<<k;k+=8;}}
  221. ;
  222. ; NEEDBITS clobbers d0, d1, a0, and a1, none of which can be used as the arg
  223. ; to the macro specifying the number of bits.  The arg can be a shortword memory
  224. ; address, or d2-d7.  The result is copied into d1 as a word ready for masking.
  225. ; DUMPBITS has no side effects; the arg must be a d-register (or immediate in the
  226. ; range 1-8?) and only the lower byte is significant.
  227. NEEDBITS        MACRO
  228. nb@:   cmp.w           1,k            ; assert 0 < k <= 32 ... arg may be 0
  229.         bhs.s           ne@
  230.         NEXTBYTE                        ; returns in d0.l
  231.                  IFND   NO_CHECK_EOF
  232.         cmp.w           #EOF,d0
  233.         bne.s           nok@
  234.         moveq           #1,d0           ; PK_WARN?
  235.         bra             return
  236.                  ENDC   ; !NO_CHECK_EOF
  237. nok@:  lsl.l           k,d0
  238.         or.l            d0,b
  239.         addq.w          #8,k
  240.         bra.s           nb@
  241. ne@:   move.w          b,d1
  242.                 ENDM
  243. DUMPBITS        MACRO
  244.         lsr.l           1,b            ; upper bits of 1 are ignored??
  245.         sub.b           1,k
  246.                 ENDM
  247. ; ******************************************************************************
  248. ; Here we go, finally:
  249.         xdef    _inflate_codes
  250. _inflate_codes:
  251.         link            a5,#-4
  252.         movem.l         savregs,-(sp)
  253. ; 8(a5) = tl, 12(a5) = td, 16(a5) = bl, 18|20(a5) = bd... add 4 for REENT_G
  254. ; -2(a5) = ml, -4(a5) = md.  Here we cache some globals and args:
  255.                 IFD     REENT_G
  256.         move.l          8(a5),G
  257.                 ELSE
  258. ;;      move.l          _G,G            ; old global pointer version
  259.         lea             _G,G            ; G is now a global instance
  260.                 ENDC
  261.         lea             _mask_bits,mask
  262.         move.l          bb(G),b
  263.         MOVINT          bk(G),k
  264.                 IFD     INT16
  265.         moveq           #0,w            ; keep this usable as longword
  266.                 ENDC
  267.         MOVINT          wp(G),w
  268.         moveq           #0,e            ; keep this usable as longword too
  269.         MOVINT          16+G_SIZE(a5),d0
  270.         add.w           d0,d0
  271.         move.w          (mask,d0.w),-2(a5)      ; ml = mask_bits[bl]
  272.         MOVINT          16+INTSIZE+G_SIZE(a5),d0
  273.         add.w           d0,d0
  274.         move.w          (mask,d0.w),-4(a5)      ; md = mask_bits[bd]
  275. main_loop:
  276.         NEEDBITS        14+INTSIZE+G_SIZE(a5)   ; bl, lower word if long
  277.         and.w           -2(a5),d1               ; ml
  278.         mulu            #SIZEOF_HUFT,d1
  279.         move.l          8+G_SIZE(a5),a0         ; tl
  280.         lea             (a0,d1.l),t
  281.         move.b          h_e(t),e
  282.         cmp.w           #16,e
  283.         bls.s           topdmp
  284. intop:   moveq          #1,d0
  285.          cmp.w          #99,e
  286.          beq            return          ; error in zipfile
  287.          move.b         h_b(t),d0
  288.          DUMPBITS       d0
  289.          sub.w          #16,e
  290.          NEEDBITS       e
  291.          move.w         e,d0
  292.          add.w          d0,d0
  293.          and.w          (mask,d0.w),d1
  294.          mulu           #SIZEOF_HUFT,d1
  295.          move.l         h_t(t),a0
  296.          lea            (a0,d1.l),t
  297.          move.b         h_e(t),e
  298.          cmp.w          #16,e
  299.          bgt.s          intop
  300. topdmp: move.b          h_b(t),d0
  301.         DUMPBITS        d0
  302.         cmp.w           #16,e           ; is this huffman code a literal?
  303.         bne             lenchk          ; no
  304.         move.w          h_n(t),d0       ; yes
  305.                 IFGT    SIZEOF_slide-4
  306.         lea             slide(G),a0
  307.                 ELSE
  308.         move.l          slide(G),a0
  309.                 ENDC
  310.         move.b          d0,(a0,w.l)     ; stick in the decoded byte
  311.         addq.w          #1,w
  312.         cmp.w           #WSIZE,w
  313.         blo             main_loop
  314.         FLUSH           w
  315.         moveq           #0,w
  316.         bra             main_loop       ; do some more
  317. lenchk: cmp.w           #15,e           ; is it an end-of-block code?
  318.         beq             finish          ; if yes, we're done
  319.         NEEDBITS        e               ; no: we have a duplicate string
  320.         move.w          e,d0
  321.         add.w           d0,d0
  322.         and.w           (mask,d0.w),d1
  323.         move.w          h_n(t),n
  324.         add.w           d1,n            ; length of block to copy
  325.         DUMPBITS        e
  326.         NEEDBITS        14+(2*INTSIZE)+G_SIZE(a5)       ; bd, lower word if long
  327.         and.w           -4(a5),d1                       ; md
  328.         mulu            #SIZEOF_HUFT,d1
  329.         move.l          12+G_SIZE(a5),a0                ; td
  330.         lea             (a0,d1.l),t
  331.         move.b          h_e(t),e
  332.         cmp.w           #16,e
  333.         bls.s           middmp
  334. inmid:   moveq          #1,d0
  335.          cmp.w          #99,e
  336.          beq            return          ; error in zipfile
  337.          move.b         h_b(t),d0
  338.          DUMPBITS       d0
  339.          sub.w          #16,e
  340.          NEEDBITS       e
  341.          move.w         e,d0
  342.          add.w          d0,d0
  343.          and.w          (mask,d0.w),d1
  344.          mulu           #SIZEOF_HUFT,d1
  345.          move.l         h_t(t),a0
  346.          lea            (a0,d1.l),t
  347.          move.b         h_e(t),e
  348.          cmp.w          #16,e
  349.          bgt.s          inmid
  350. middmp: move.b          h_b(t),d0
  351.         DUMPBITS        d0
  352.         NEEDBITS        e
  353.         move.w          e,d0
  354.         add.w           d0,d0
  355.         and.w           (mask,d0.w),d1
  356.         move.l          w,d
  357.         sub.w           h_n(t),d
  358.         sub.w           d1,d            ; distance back to block to copy
  359.         DUMPBITS        e
  360. indup:   move.w         #WSIZE,e        ; violate the e < 256 rule
  361.          and.w          #WSIZE-1,d
  362.          cmp.w          d,w
  363.          blo.s          ddgw
  364.           sub.w         w,e
  365.          bra.s          dadw
  366. ddgw:     sub.w         d,e
  367. dadw:    cmp.w          n,e
  368.          bls.s          delen
  369.           move.w        n,e
  370. delen:   sub.w          e,n             ; size of sub-block to copy
  371.                 IFGT    SIZEOF_slide-4
  372.          lea            slide(G),a0
  373.                 ELSE
  374.          move.l         slide(G),a0
  375.                 ENDC
  376.          move.l         a0,a1
  377.          add.l          w,a0            ; w and d are valid longwords
  378.          add.l          d,a1
  379.          move.w         e,d0
  380.          subq           #1,d0           ; assert >= 0 if sign extended
  381. dspin:    move.b        (a1)+,(a0)+     ; string is probably short, so
  382.           dbra          d0,dspin        ; don't use any fancier copy method
  383.          add.w          e,w
  384.          add.w          e,d
  385.          cmp.w          #WSIZE,w
  386.          blo.s          dnfl
  387.          FLUSH          w
  388.          moveq          #0,w
  389. dnfl:    tst.w          n               ; need to do more sub-blocks?
  390.          bne            indup           ; yes
  391.         moveq           #0,e            ; restore zeroness in upper bytes
  392.         bra             main_loop       ; do some more
  393. finish: MOVINT          w,wp(G)         ; restore cached globals
  394.         MOVINT          k,bk(G)
  395.         move.l          b,bb(G)
  396.         moveq           #0,d0           ; return "no error"
  397. return: movem.l         (sp)+,savregs
  398.         unlk            a5
  399.         rts