match.S
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

  1. /* match.s -- Pentium-Pro-optimized version of longest_match()
  2.  * Written for zlib 1.1.2
  3.  * Copyright (C) 1998 Brian Raiter <breadbox@muppetlabs.com>
  4.  *
  5.  * This is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License.
  7.  */
  8. #ifndef NO_UNDERLINE
  9. #define match_init _match_init
  10. #define longest_match _longest_match
  11. #endif
  12. #define MAX_MATCH (258)
  13. #define MIN_MATCH (3)
  14. #define MIN_LOOKAHEAD (MAX_MATCH + MIN_MATCH + 1)
  15. #define MAX_MATCH_8 ((MAX_MATCH + 7) & ~7)
  16. /* stack frame offsets */
  17. #define chainlenwmask 0 /* high word: current chain len */
  18. /* low word: s->wmask */
  19. #define window 4 /* local copy of s->window */
  20. #define windowbestlen 8 /* s->window + bestlen */
  21. #define scanstart 16 /* first two bytes of string */
  22. #define scanend 12 /* last two bytes of string */
  23. #define scanalign 20 /* dword-misalignment of string */
  24. #define nicematch 24 /* a good enough match size */
  25. #define bestlen 28 /* size of best match so far */
  26. #define scan 32 /* ptr to string wanting match */
  27. #define LocalVarsSize (36)
  28. /* saved ebx 36 */
  29. /* saved edi 40 */
  30. /* saved esi 44 */
  31. /* saved ebp 48 */
  32. /* return address 52 */
  33. #define deflatestate 56 /* the function arguments */
  34. #define curmatch 60
  35. /* Offsets for fields in the deflate_state structure. These numbers
  36.  * are calculated from the definition of deflate_state, with the
  37.  * assumption that the compiler will dword-align the fields. (Thus,
  38.  * changing the definition of deflate_state could easily cause this
  39.  * program to crash horribly, without so much as a warning at
  40.  * compile time. Sigh.)
  41.  */
  42. #define dsWSize 36
  43. #define dsWMask 44
  44. #define dsWindow 48
  45. #define dsPrev 56
  46. #define dsMatchLen 88
  47. #define dsPrevMatch 92
  48. #define dsStrStart 100
  49. #define dsMatchStart 104
  50. #define dsLookahead 108
  51. #define dsPrevLen 112
  52. #define dsMaxChainLen 116
  53. #define dsGoodMatch 132
  54. #define dsNiceMatch 136
  55. .file "match.S"
  56. .globl match_init, longest_match
  57. .text
  58. /* uInt longest_match(deflate_state *deflatestate, IPos curmatch) */
  59. longest_match:
  60. /* Save registers that the compiler may be using, and adjust %esp to */
  61. /* make room for our stack frame. */
  62. pushl %ebp
  63. pushl %edi
  64. pushl %esi
  65. pushl %ebx
  66. subl $LocalVarsSize, %esp
  67. /* Retrieve the function arguments. %ecx will hold cur_match */
  68. /* throughout the entire function. %edx will hold the pointer to the */
  69. /* deflate_state structure during the function's setup (before */
  70. /* entering the main loop). */
  71. movl deflatestate(%esp), %edx
  72. movl curmatch(%esp), %ecx
  73. /* uInt wmask = s->w_mask; */
  74. /* unsigned chain_length = s->max_chain_length; */
  75. /* if (s->prev_length >= s->good_match) { */
  76. /*     chain_length >>= 2; */
  77. /* } */
  78. movl dsPrevLen(%edx), %eax
  79. movl dsGoodMatch(%edx), %ebx
  80. cmpl %ebx, %eax
  81. movl dsWMask(%edx), %eax
  82. movl dsMaxChainLen(%edx), %ebx
  83. jl LastMatchGood
  84. shrl $2, %ebx
  85. LastMatchGood:
  86. /* chainlen is decremented once beforehand so that the function can */
  87. /* use the sign flag instead of the zero flag for the exit test. */
  88. /* It is then shifted into the high word, to make room for the wmask */
  89. /* value, which it will always accompany. */
  90. decl %ebx
  91. shll $16, %ebx
  92. orl %eax, %ebx
  93. movl %ebx, chainlenwmask(%esp)
  94. /* if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; */
  95. movl dsNiceMatch(%edx), %eax
  96. movl dsLookahead(%edx), %ebx
  97. cmpl %eax, %ebx
  98. jl LookaheadLess
  99. movl %eax, %ebx
  100. LookaheadLess: movl %ebx, nicematch(%esp)
  101. /* register Bytef *scan = s->window + s->strstart; */
  102. movl dsWindow(%edx), %esi
  103. movl %esi, window(%esp)
  104. movl dsStrStart(%edx), %ebp
  105. lea (%esi,%ebp), %edi
  106. movl %edi, scan(%esp)
  107. /* Determine how many bytes the scan ptr is off from being */
  108. /* dword-aligned. */
  109. movl %edi, %eax
  110. negl %eax
  111. andl $3, %eax
  112. movl %eax, scanalign(%esp)
  113. /* IPos limit = s->strstart > (IPos)MAX_DIST(s) ? */
  114. /*     s->strstart - (IPos)MAX_DIST(s) : NIL; */
  115. movl dsWSize(%edx), %eax
  116. subl $MIN_LOOKAHEAD, %eax
  117. subl %eax, %ebp
  118. jg LimitPositive
  119. xorl %ebp, %ebp
  120. LimitPositive:
  121. /* int best_len = s->prev_length; */
  122. movl dsPrevLen(%edx), %eax
  123. movl %eax, bestlen(%esp)
  124. /* Store the sum of s->window + best_len in %esi locally, and in %esi. */
  125. addl %eax, %esi
  126. movl %esi, windowbestlen(%esp)
  127. /* register ush scan_start = *(ushf*)scan; */
  128. /* register ush scan_end   = *(ushf*)(scan+best_len-1); */
  129. /* Posf *prev = s->prev; */
  130. movzwl (%edi), %ebx
  131. movl %ebx, scanstart(%esp)
  132. movzwl -1(%edi,%eax), %ebx
  133. movl %ebx, scanend(%esp)
  134. movl dsPrev(%edx), %edi
  135. /* Jump into the main loop. */
  136. movl chainlenwmask(%esp), %edx
  137. jmp LoopEntry
  138. .balign 16
  139. /* do {
  140.  *     match = s->window + cur_match;
  141.  *     if (*(ushf*)(match+best_len-1) != scan_end ||
  142.  *         *(ushf*)match != scan_start) continue;
  143.  *     [...]
  144.  * } while ((cur_match = prev[cur_match & wmask]) > limit
  145.  *          && --chain_length != 0);
  146.  *
  147.  * Here is the inner loop of the function. The function will spend the
  148.  * majority of its time in this loop, and majority of that time will
  149.  * be spent in the first ten instructions.
  150.  *
  151.  * Within this loop:
  152.  * %ebx = scanend
  153.  * %ecx = curmatch
  154.  * %edx = chainlenwmask - i.e., ((chainlen << 16) | wmask)
  155.  * %esi = windowbestlen - i.e., (window + bestlen)
  156.  * %edi = prev
  157.  * %ebp = limit
  158.  */
  159. LookupLoop:
  160. andl %edx, %ecx
  161. movzwl (%edi,%ecx,2), %ecx
  162. cmpl %ebp, %ecx
  163. jbe LeaveNow
  164. subl $0x00010000, %edx
  165. js LeaveNow
  166. LoopEntry: movzwl -1(%esi,%ecx), %eax
  167. cmpl %ebx, %eax
  168. jnz LookupLoop
  169. movl window(%esp), %eax
  170. movzwl (%eax,%ecx), %eax
  171. cmpl scanstart(%esp), %eax
  172. jnz LookupLoop
  173. /* Store the current value of chainlen. */
  174. movl %edx, chainlenwmask(%esp)
  175. /* Point %edi to the string under scrutiny, and %esi to the string we */
  176. /* are hoping to match it up with. In actuality, %esi and %edi are */
  177. /* both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and %edx is */
  178. /* initialized to -(MAX_MATCH_8 - scanalign). */
  179. movl window(%esp), %esi
  180. movl scan(%esp), %edi
  181. addl %ecx, %esi
  182. movl scanalign(%esp), %eax
  183. movl $(-MAX_MATCH_8), %edx
  184. lea MAX_MATCH_8(%edi,%eax), %edi
  185. lea MAX_MATCH_8(%esi,%eax), %esi
  186. /* Test the strings for equality, 8 bytes at a time. At the end,
  187.  * adjust %edx so that it is offset to the exact byte that mismatched.
  188.  *
  189.  * We already know at this point that the first three bytes of the
  190.  * strings match each other, and they can be safely passed over before
  191.  * starting the compare loop. So what this code does is skip over 0-3
  192.  * bytes, as much as necessary in order to dword-align the %edi
  193.  * pointer. (%esi will still be misaligned three times out of four.)
  194.  *
  195.  * It should be confessed that this loop usually does not represent
  196.  * much of the total running time. Replacing it with a more
  197.  * straightforward "rep cmpsb" would not drastically degrade
  198.  * performance.
  199.  */
  200. LoopCmps:
  201. movl (%esi,%edx), %eax
  202. xorl (%edi,%edx), %eax
  203. jnz LeaveLoopCmps
  204. movl 4(%esi,%edx), %eax
  205. xorl 4(%edi,%edx), %eax
  206. jnz LeaveLoopCmps4
  207. addl $8, %edx
  208. jnz LoopCmps
  209. jmp LenMaximum
  210. LeaveLoopCmps4: addl $4, %edx
  211. LeaveLoopCmps: testl $0x0000FFFF, %eax
  212. jnz LenLower
  213. addl $2, %edx
  214. shrl $16, %eax
  215. LenLower: subb $1, %al
  216. adcl $0, %edx
  217. /* Calculate the length of the match. If it is longer than MAX_MATCH, */
  218. /* then automatically accept it as the best possible match and leave. */
  219. lea (%edi,%edx), %eax
  220. movl scan(%esp), %edi
  221. subl %edi, %eax
  222. cmpl $MAX_MATCH, %eax
  223. jge LenMaximum
  224. /* If the length of the match is not longer than the best match we */
  225. /* have so far, then forget it and return to the lookup loop. */
  226. movl deflatestate(%esp), %edx
  227. movl bestlen(%esp), %ebx
  228. cmpl %ebx, %eax
  229. jg LongerMatch
  230. movl windowbestlen(%esp), %esi
  231. movl dsPrev(%edx), %edi
  232. movl scanend(%esp), %ebx
  233. movl chainlenwmask(%esp), %edx
  234. jmp LookupLoop
  235. /*         s->match_start = cur_match; */
  236. /*         best_len = len; */
  237. /*         if (len >= nice_match) break; */
  238. /*         scan_end = *(ushf*)(scan+best_len-1); */
  239. LongerMatch: movl nicematch(%esp), %ebx
  240. movl %eax, bestlen(%esp)
  241. movl %ecx, dsMatchStart(%edx)
  242. cmpl %ebx, %eax
  243. jge LeaveNow
  244. movl window(%esp), %esi
  245. addl %eax, %esi
  246. movl %esi, windowbestlen(%esp)
  247. movzwl -1(%edi,%eax), %ebx
  248. movl dsPrev(%edx), %edi
  249. movl %ebx, scanend(%esp)
  250. movl chainlenwmask(%esp), %edx
  251. jmp LookupLoop
  252. /* Accept the current string, with the maximum possible length. */
  253. LenMaximum: movl deflatestate(%esp), %edx
  254. movl $MAX_MATCH, bestlen(%esp)
  255. movl %ecx, dsMatchStart(%edx)
  256. /* if ((uInt)best_len <= s->lookahead) return (uInt)best_len; */
  257. /* return s->lookahead; */
  258. LeaveNow:
  259. movl deflatestate(%esp), %edx
  260. movl bestlen(%esp), %ebx
  261. movl dsLookahead(%edx), %eax
  262. cmpl %eax, %ebx
  263. jg LookaheadRet
  264. movl %ebx, %eax
  265. LookaheadRet:
  266. /* Restore the stack and return from whence we came. */
  267. addl $LocalVarsSize, %esp
  268. popl %ebx
  269. popl %esi
  270. popl %edi
  271. popl %ebp
  272. match_init: ret