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

压缩解压

开发平台:

MultiPlatform

  1. ; crc_i386.asm, optimized CRC calculation function for Zip and UnZip, not
  2. ; copyrighted by Paul Kienitz and Christian Spieler.  Last revised 25 Mar 98.
  3. ;
  4. ; Revised 06-Oct-96, Scott Field (sfield@microsoft.com)
  5. ;   fixed to assemble with masm by not using .model directive which makes
  6. ;   assumptions about segment alignment.  Also,
  7. ;   avoid using loop, and j[e]cxz where possible.  Use mov + inc, rather
  8. ;   than lodsb, and other misc. changes resulting in the following performance
  9. ;   increases:
  10. ;
  11. ;      unrolled loops                NO_UNROLLED_LOOPS
  12. ;      *8    >8      <8              *8      >8      <8
  13. ;
  14. ;      +54%  +42%    +35%            +82%    +52%    +25%
  15. ;
  16. ;   first item in each table is input buffer length, even multiple of 8
  17. ;   second item in each table is input buffer length, > 8
  18. ;   third item in each table is input buffer length, < 8
  19. ;
  20. ; Revised 02-Apr-97, Chr. Spieler, based on Rodney Brown (rdb@cmutual.com.au)
  21. ;   Incorporated Rodney Brown's 32-bit-reads optimization as found in the
  22. ;   UNIX AS source crc_i386.S. This new code can be disabled by defining
  23. ;   the macro symbol NO_32_BIT_LOADS.
  24. ;
  25. ; Revised 12-Oct-97, Chr. Spieler, based on Rodney Brown (rdb@cmutual.com.au)
  26. ;   Incorporated Rodney Brown's additional tweaks for 32-bit-optimized CPUs
  27. ;   (like the Pentium Pro, Pentium II, and probably some Pentium clones).
  28. ;   This optimization is controlled by the macro symbol __686 and is disabled
  29. ;   by default. (This default is based on the assumption that most users
  30. ;   do not yet work on a Pentium Pro or Pentium II machine ...)
  31. ;
  32. ; FLAT memory model assumed.
  33. ;
  34. ; The loop unrolling can be disabled by defining the macro NO_UNROLLED_LOOPS.
  35. ; This results in shorter code at the expense of reduced performance.
  36. ;
  37. ; Revised 25-Mar-98, Cosmin Truta (cosmint@cs.ubbcluj.ro)
  38. ;   Working without .model directive caused tasm32 version 5.0 to produce
  39. ;   bad object code. The optimized alignments can be optionally disabled
  40. ;   by defining NO_ALIGN, thus allowing to use .model flat. There is no need
  41. ;   to define this macro if using other version of tasm.
  42. ;
  43. ;==============================================================================
  44. ;
  45. ; Do NOT assemble this source if external crc32 routine from zlib gets used.
  46. ;
  47.     IFNDEF USE_ZLIB
  48. ;
  49.         .386p
  50.         name    crc_i386
  51.     IFDEF NO_ALIGN
  52.         .model flat
  53.     ENDIF
  54. extrn   _get_crc_table:near    ; ZCONST ulg near *get_crc_table(void);
  55. ;
  56.     IFNDEF NO_STD_STACKFRAME
  57.         ; Use a `standard' stack frame setup on routine entry and exit.
  58.         ; Actually, this option is set as default, because it results
  59.         ; in smaller code !!
  60. STD_ENTRY       MACRO
  61.                 push    ebp
  62.                 mov     ebp,esp
  63.         ENDM
  64.         Arg1    EQU     08H[ebp]
  65.         Arg2    EQU     0CH[ebp]
  66.         Arg3    EQU     10H[ebp]
  67. STD_LEAVE       MACRO
  68.                 pop     ebp
  69.         ENDM
  70.     ELSE  ; NO_STD_STACKFRAME
  71. STD_ENTRY       MACRO
  72.         ENDM
  73.         Arg1    EQU     18H[esp]
  74.         Arg2    EQU     1CH[esp]
  75.         Arg3    EQU     20H[esp]
  76. STD_LEAVE       MACRO
  77.         ENDM
  78.     ENDIF ; ?NO_STD_STACKFRAME
  79. ; These two (three) macros make up the loop body of the CRC32 cruncher.
  80. ; registers modified:
  81. ;   eax  : crc value "c"
  82. ;   esi  : pointer to next data byte (or dword) "buf++"
  83. ; registers read:
  84. ;   edi  : pointer to base of crc_table array
  85. ; scratch registers:
  86. ;   ebx  : index into crc_table array
  87. ;          (requires upper three bytes = 0 when __686 is undefined)
  88.     IFNDEF  __686 ; optimize for 386, 486, Pentium
  89. Do_CRC  MACRO
  90.                 mov     bl,al                ; tmp = c & 0xFF
  91.                 shr     eax,8                ; c = (c >> 8)
  92.                 xor     eax,[edi+ebx*4]      ;  ^ table[tmp]
  93.         ENDM
  94.     ELSE ; __686 : optimize for Pentium Pro, Pentium II and compatible CPUs
  95. Do_CRC  MACRO
  96.                 movzx   ebx,al               ; tmp = c & 0xFF
  97.                 shr     eax,8                ; c = (c >> 8)
  98.                 xor     eax,[edi+ebx*4]      ;  ^ table[tmp]
  99.         ENDM
  100.     ENDIF ; ?__686
  101. Do_CRC_byte     MACRO
  102.                 xor     al, byte ptr [esi]   ; c ^= *buf
  103.                 inc     esi                  ; buf++
  104.                 Do_CRC                       ; c = (c >> 8) ^ table[c & 0xFF]
  105.         ENDM
  106.     IFNDEF  NO_32_BIT_LOADS
  107. Do_CRC_dword    MACRO
  108.                 xor     eax, dword ptr [esi] ; c ^= *(ulg *)buf
  109.                 add     esi, 4               ; ((ulg *)buf)++
  110.                 Do_CRC
  111.                 Do_CRC
  112.                 Do_CRC
  113.                 Do_CRC
  114.         ENDM
  115.     ENDIF ; !NO_32_BIT_LOADS
  116.     IFNDEF NO_ALIGN
  117. _TEXT   segment use32 para public 'CODE'
  118.     ELSE
  119. _TEXT   segment use32
  120.     ENDIF
  121.         assume  CS: _TEXT
  122.         public  _crc32
  123. _crc32          proc    near  ; ulg crc32(ulg crc, ZCONST uch *buf, extent len)
  124.                 STD_ENTRY
  125.                 push    edi
  126.                 push    esi
  127.                 push    ebx
  128.                 push    edx
  129.                 push    ecx
  130.                 mov     esi,Arg2             ; 2nd arg: uch *buf
  131.                 sub     eax,eax              ;> if (!buf)
  132.                 test    esi,esi              ;>   return 0;
  133.                 jz      fine                 ;> else {
  134.                 call    _get_crc_table
  135.                 mov     edi,eax
  136.                 mov     eax,Arg1             ; 1st arg: ulg crc
  137.     IFNDEF __686
  138.                 sub     ebx,ebx              ; ebx=0; make bl usable as a dword
  139.     ENDIF
  140.                 mov     ecx,Arg3             ; 3rd arg: extent len
  141.                 not     eax                  ;>   c = ~crc;
  142.     IFNDEF  NO_UNROLLED_LOOPS
  143.     IFNDEF  NO_32_BIT_LOADS
  144.                 test    ecx,ecx
  145.                 je      bail
  146. align_loop:
  147.                 test    esi,3                ; align buf pointer on next
  148.                 jz      SHORT aligned_now    ;  dword boundary
  149.                 Do_CRC_byte
  150.                 dec     ecx
  151.                 jnz     align_loop
  152. aligned_now:
  153.     ENDIF ; !NO_32_BIT_LOADS
  154.                 mov     edx,ecx              ; save len in edx
  155.                 and     edx,000000007H       ; edx = len % 8
  156.                 shr     ecx,3                ; ecx = len / 8
  157.                 jz      SHORT No_Eights
  158.     IFNDEF NO_ALIGN
  159. ; align loop head at start of 486 internal cache line !!
  160.                 align   16
  161.     ENDIF
  162. Next_Eight:
  163.     IFNDEF  NO_32_BIT_LOADS
  164.                 Do_CRC_dword
  165.                 Do_CRC_dword
  166.     ELSE ; NO_32_BIT_LOADS
  167.                 Do_CRC_byte
  168.                 Do_CRC_byte
  169.                 Do_CRC_byte
  170.                 Do_CRC_byte
  171.                 Do_CRC_byte
  172.                 Do_CRC_byte
  173.                 Do_CRC_byte
  174.                 Do_CRC_byte
  175.     ENDIF ; ?NO_32_BIT_LOADS
  176.                 dec     ecx
  177.                 jnz     Next_Eight
  178. No_Eights:
  179.                 mov     ecx,edx
  180.     ENDIF ; NO_UNROLLED_LOOPS
  181.     IFNDEF  NO_JECXZ_SUPPORT
  182.                 jecxz   bail                 ;>   if (len)
  183.     ELSE
  184.                 test    ecx,ecx              ;>   if (len)
  185.                 jz      SHORT bail
  186.     ENDIF
  187.     IFNDEF NO_ALIGN
  188. ; align loop head at start of 486 internal cache line !!
  189.                 align   16
  190.     ENDIF
  191. loupe:                                       ;>     do {
  192.                 Do_CRC_byte                  ;        c = CRC32(c, *buf++);
  193.                 dec     ecx                  ;>     } while (--len);
  194.                 jnz     loupe
  195. bail:                                        ;> }
  196.                 not     eax                  ;> return ~c;
  197. fine:
  198.                 pop     ecx
  199.                 pop     edx
  200.                 pop     ebx
  201.                 pop     esi
  202.                 pop     edi
  203.                 STD_LEAVE
  204.                 ret
  205. _crc32          endp
  206. _TEXT   ends
  207. ;
  208.     ENDIF ; !USE_ZLIB
  209. ;
  210. end