annotate src/zlib-1.2.7/contrib/masmx86/match686.asm @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
parents 8a15ff55d9af
children
rev   line source
cannam@89 1 ; match686.asm -- Asm portion of the optimized longest_match for 32 bits x86
cannam@89 2 ; Copyright (C) 1995-1996 Jean-loup Gailly, Brian Raiter and Gilles Vollant.
cannam@89 3 ; File written by Gilles Vollant, by converting match686.S from Brian Raiter
cannam@89 4 ; for MASM. This is as assembly version of longest_match
cannam@89 5 ; from Jean-loup Gailly in deflate.c
cannam@89 6 ;
cannam@89 7 ; http://www.zlib.net
cannam@89 8 ; http://www.winimage.com/zLibDll
cannam@89 9 ; http://www.muppetlabs.com/~breadbox/software/assembly.html
cannam@89 10 ;
cannam@89 11 ; For Visual C++ 4.x and higher and ML 6.x and higher
cannam@89 12 ; ml.exe is distributed in
cannam@89 13 ; http://www.microsoft.com/downloads/details.aspx?FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64
cannam@89 14 ;
cannam@89 15 ; this file contain two implementation of longest_match
cannam@89 16 ;
cannam@89 17 ; this longest_match was written by Brian raiter (1998), optimized for Pentium Pro
cannam@89 18 ; (and the faster known version of match_init on modern Core 2 Duo and AMD Phenom)
cannam@89 19 ;
cannam@89 20 ; for using an assembly version of longest_match, you need define ASMV in project
cannam@89 21 ;
cannam@89 22 ; compile the asm file running
cannam@89 23 ; ml /coff /Zi /c /Flmatch686.lst match686.asm
cannam@89 24 ; and do not include match686.obj in your project
cannam@89 25 ;
cannam@89 26 ; note: contrib of zLib 1.2.3 and earlier contained both a deprecated version for
cannam@89 27 ; Pentium (prior Pentium Pro) and this version for Pentium Pro and modern processor
cannam@89 28 ; with autoselect (with cpu detection code)
cannam@89 29 ; if you want support the old pentium optimization, you can still use these version
cannam@89 30 ;
cannam@89 31 ; this file is not optimized for old pentium, but it compatible with all x86 32 bits
cannam@89 32 ; processor (starting 80386)
cannam@89 33 ;
cannam@89 34 ;
cannam@89 35 ; see below : zlib1222add must be adjuster if you use a zlib version < 1.2.2.2
cannam@89 36
cannam@89 37 ;uInt longest_match(s, cur_match)
cannam@89 38 ; deflate_state *s;
cannam@89 39 ; IPos cur_match; /* current match */
cannam@89 40
cannam@89 41 NbStack equ 76
cannam@89 42 cur_match equ dword ptr[esp+NbStack-0]
cannam@89 43 str_s equ dword ptr[esp+NbStack-4]
cannam@89 44 ; 5 dword on top (ret,ebp,esi,edi,ebx)
cannam@89 45 adrret equ dword ptr[esp+NbStack-8]
cannam@89 46 pushebp equ dword ptr[esp+NbStack-12]
cannam@89 47 pushedi equ dword ptr[esp+NbStack-16]
cannam@89 48 pushesi equ dword ptr[esp+NbStack-20]
cannam@89 49 pushebx equ dword ptr[esp+NbStack-24]
cannam@89 50
cannam@89 51 chain_length equ dword ptr [esp+NbStack-28]
cannam@89 52 limit equ dword ptr [esp+NbStack-32]
cannam@89 53 best_len equ dword ptr [esp+NbStack-36]
cannam@89 54 window equ dword ptr [esp+NbStack-40]
cannam@89 55 prev equ dword ptr [esp+NbStack-44]
cannam@89 56 scan_start equ word ptr [esp+NbStack-48]
cannam@89 57 wmask equ dword ptr [esp+NbStack-52]
cannam@89 58 match_start_ptr equ dword ptr [esp+NbStack-56]
cannam@89 59 nice_match equ dword ptr [esp+NbStack-60]
cannam@89 60 scan equ dword ptr [esp+NbStack-64]
cannam@89 61
cannam@89 62 windowlen equ dword ptr [esp+NbStack-68]
cannam@89 63 match_start equ dword ptr [esp+NbStack-72]
cannam@89 64 strend equ dword ptr [esp+NbStack-76]
cannam@89 65 NbStackAdd equ (NbStack-24)
cannam@89 66
cannam@89 67 .386p
cannam@89 68
cannam@89 69 name gvmatch
cannam@89 70 .MODEL FLAT
cannam@89 71
cannam@89 72
cannam@89 73
cannam@89 74 ; all the +zlib1222add offsets are due to the addition of fields
cannam@89 75 ; in zlib in the deflate_state structure since the asm code was first written
cannam@89 76 ; (if you compile with zlib 1.0.4 or older, use "zlib1222add equ (-4)").
cannam@89 77 ; (if you compile with zlib between 1.0.5 and 1.2.2.1, use "zlib1222add equ 0").
cannam@89 78 ; if you compile with zlib 1.2.2.2 or later , use "zlib1222add equ 8").
cannam@89 79
cannam@89 80 zlib1222add equ 8
cannam@89 81
cannam@89 82 ; Note : these value are good with a 8 bytes boundary pack structure
cannam@89 83 dep_chain_length equ 74h+zlib1222add
cannam@89 84 dep_window equ 30h+zlib1222add
cannam@89 85 dep_strstart equ 64h+zlib1222add
cannam@89 86 dep_prev_length equ 70h+zlib1222add
cannam@89 87 dep_nice_match equ 88h+zlib1222add
cannam@89 88 dep_w_size equ 24h+zlib1222add
cannam@89 89 dep_prev equ 38h+zlib1222add
cannam@89 90 dep_w_mask equ 2ch+zlib1222add
cannam@89 91 dep_good_match equ 84h+zlib1222add
cannam@89 92 dep_match_start equ 68h+zlib1222add
cannam@89 93 dep_lookahead equ 6ch+zlib1222add
cannam@89 94
cannam@89 95
cannam@89 96 _TEXT segment
cannam@89 97
cannam@89 98 IFDEF NOUNDERLINE
cannam@89 99 public longest_match
cannam@89 100 public match_init
cannam@89 101 ELSE
cannam@89 102 public _longest_match
cannam@89 103 public _match_init
cannam@89 104 ENDIF
cannam@89 105
cannam@89 106 MAX_MATCH equ 258
cannam@89 107 MIN_MATCH equ 3
cannam@89 108 MIN_LOOKAHEAD equ (MAX_MATCH+MIN_MATCH+1)
cannam@89 109
cannam@89 110
cannam@89 111
cannam@89 112 MAX_MATCH equ 258
cannam@89 113 MIN_MATCH equ 3
cannam@89 114 MIN_LOOKAHEAD equ (MAX_MATCH + MIN_MATCH + 1)
cannam@89 115 MAX_MATCH_8_ equ ((MAX_MATCH + 7) AND 0FFF0h)
cannam@89 116
cannam@89 117
cannam@89 118 ;;; stack frame offsets
cannam@89 119
cannam@89 120 chainlenwmask equ esp + 0 ; high word: current chain len
cannam@89 121 ; low word: s->wmask
cannam@89 122 window equ esp + 4 ; local copy of s->window
cannam@89 123 windowbestlen equ esp + 8 ; s->window + bestlen
cannam@89 124 scanstart equ esp + 16 ; first two bytes of string
cannam@89 125 scanend equ esp + 12 ; last two bytes of string
cannam@89 126 scanalign equ esp + 20 ; dword-misalignment of string
cannam@89 127 nicematch equ esp + 24 ; a good enough match size
cannam@89 128 bestlen equ esp + 28 ; size of best match so far
cannam@89 129 scan equ esp + 32 ; ptr to string wanting match
cannam@89 130
cannam@89 131 LocalVarsSize equ 36
cannam@89 132 ; saved ebx byte esp + 36
cannam@89 133 ; saved edi byte esp + 40
cannam@89 134 ; saved esi byte esp + 44
cannam@89 135 ; saved ebp byte esp + 48
cannam@89 136 ; return address byte esp + 52
cannam@89 137 deflatestate equ esp + 56 ; the function arguments
cannam@89 138 curmatch equ esp + 60
cannam@89 139
cannam@89 140 ;;; Offsets for fields in the deflate_state structure. These numbers
cannam@89 141 ;;; are calculated from the definition of deflate_state, with the
cannam@89 142 ;;; assumption that the compiler will dword-align the fields. (Thus,
cannam@89 143 ;;; changing the definition of deflate_state could easily cause this
cannam@89 144 ;;; program to crash horribly, without so much as a warning at
cannam@89 145 ;;; compile time. Sigh.)
cannam@89 146
cannam@89 147 dsWSize equ 36+zlib1222add
cannam@89 148 dsWMask equ 44+zlib1222add
cannam@89 149 dsWindow equ 48+zlib1222add
cannam@89 150 dsPrev equ 56+zlib1222add
cannam@89 151 dsMatchLen equ 88+zlib1222add
cannam@89 152 dsPrevMatch equ 92+zlib1222add
cannam@89 153 dsStrStart equ 100+zlib1222add
cannam@89 154 dsMatchStart equ 104+zlib1222add
cannam@89 155 dsLookahead equ 108+zlib1222add
cannam@89 156 dsPrevLen equ 112+zlib1222add
cannam@89 157 dsMaxChainLen equ 116+zlib1222add
cannam@89 158 dsGoodMatch equ 132+zlib1222add
cannam@89 159 dsNiceMatch equ 136+zlib1222add
cannam@89 160
cannam@89 161
cannam@89 162 ;;; match686.asm -- Pentium-Pro-optimized version of longest_match()
cannam@89 163 ;;; Written for zlib 1.1.2
cannam@89 164 ;;; Copyright (C) 1998 Brian Raiter <breadbox@muppetlabs.com>
cannam@89 165 ;;; You can look at http://www.muppetlabs.com/~breadbox/software/assembly.html
cannam@89 166 ;;;
cannam@89 167 ;;
cannam@89 168 ;; This software is provided 'as-is', without any express or implied
cannam@89 169 ;; warranty. In no event will the authors be held liable for any damages
cannam@89 170 ;; arising from the use of this software.
cannam@89 171 ;;
cannam@89 172 ;; Permission is granted to anyone to use this software for any purpose,
cannam@89 173 ;; including commercial applications, and to alter it and redistribute it
cannam@89 174 ;; freely, subject to the following restrictions:
cannam@89 175 ;;
cannam@89 176 ;; 1. The origin of this software must not be misrepresented; you must not
cannam@89 177 ;; claim that you wrote the original software. If you use this software
cannam@89 178 ;; in a product, an acknowledgment in the product documentation would be
cannam@89 179 ;; appreciated but is not required.
cannam@89 180 ;; 2. Altered source versions must be plainly marked as such, and must not be
cannam@89 181 ;; misrepresented as being the original software
cannam@89 182 ;; 3. This notice may not be removed or altered from any source distribution.
cannam@89 183 ;;
cannam@89 184
cannam@89 185 ;GLOBAL _longest_match, _match_init
cannam@89 186
cannam@89 187
cannam@89 188 ;SECTION .text
cannam@89 189
cannam@89 190 ;;; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
cannam@89 191
cannam@89 192 ;_longest_match:
cannam@89 193 IFDEF NOUNDERLINE
cannam@89 194 longest_match proc near
cannam@89 195 ELSE
cannam@89 196 _longest_match proc near
cannam@89 197 ENDIF
cannam@89 198 .FPO (9, 4, 0, 0, 1, 0)
cannam@89 199
cannam@89 200 ;;; Save registers that the compiler may be using, and adjust esp to
cannam@89 201 ;;; make room for our stack frame.
cannam@89 202
cannam@89 203 push ebp
cannam@89 204 push edi
cannam@89 205 push esi
cannam@89 206 push ebx
cannam@89 207 sub esp, LocalVarsSize
cannam@89 208
cannam@89 209 ;;; Retrieve the function arguments. ecx will hold cur_match
cannam@89 210 ;;; throughout the entire function. edx will hold the pointer to the
cannam@89 211 ;;; deflate_state structure during the function's setup (before
cannam@89 212 ;;; entering the main loop.
cannam@89 213
cannam@89 214 mov edx, [deflatestate]
cannam@89 215 mov ecx, [curmatch]
cannam@89 216
cannam@89 217 ;;; uInt wmask = s->w_mask;
cannam@89 218 ;;; unsigned chain_length = s->max_chain_length;
cannam@89 219 ;;; if (s->prev_length >= s->good_match) {
cannam@89 220 ;;; chain_length >>= 2;
cannam@89 221 ;;; }
cannam@89 222
cannam@89 223 mov eax, [edx + dsPrevLen]
cannam@89 224 mov ebx, [edx + dsGoodMatch]
cannam@89 225 cmp eax, ebx
cannam@89 226 mov eax, [edx + dsWMask]
cannam@89 227 mov ebx, [edx + dsMaxChainLen]
cannam@89 228 jl LastMatchGood
cannam@89 229 shr ebx, 2
cannam@89 230 LastMatchGood:
cannam@89 231
cannam@89 232 ;;; chainlen is decremented once beforehand so that the function can
cannam@89 233 ;;; use the sign flag instead of the zero flag for the exit test.
cannam@89 234 ;;; It is then shifted into the high word, to make room for the wmask
cannam@89 235 ;;; value, which it will always accompany.
cannam@89 236
cannam@89 237 dec ebx
cannam@89 238 shl ebx, 16
cannam@89 239 or ebx, eax
cannam@89 240 mov [chainlenwmask], ebx
cannam@89 241
cannam@89 242 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
cannam@89 243
cannam@89 244 mov eax, [edx + dsNiceMatch]
cannam@89 245 mov ebx, [edx + dsLookahead]
cannam@89 246 cmp ebx, eax
cannam@89 247 jl LookaheadLess
cannam@89 248 mov ebx, eax
cannam@89 249 LookaheadLess: mov [nicematch], ebx
cannam@89 250
cannam@89 251 ;;; register Bytef *scan = s->window + s->strstart;
cannam@89 252
cannam@89 253 mov esi, [edx + dsWindow]
cannam@89 254 mov [window], esi
cannam@89 255 mov ebp, [edx + dsStrStart]
cannam@89 256 lea edi, [esi + ebp]
cannam@89 257 mov [scan], edi
cannam@89 258
cannam@89 259 ;;; Determine how many bytes the scan ptr is off from being
cannam@89 260 ;;; dword-aligned.
cannam@89 261
cannam@89 262 mov eax, edi
cannam@89 263 neg eax
cannam@89 264 and eax, 3
cannam@89 265 mov [scanalign], eax
cannam@89 266
cannam@89 267 ;;; IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
cannam@89 268 ;;; s->strstart - (IPos)MAX_DIST(s) : NIL;
cannam@89 269
cannam@89 270 mov eax, [edx + dsWSize]
cannam@89 271 sub eax, MIN_LOOKAHEAD
cannam@89 272 sub ebp, eax
cannam@89 273 jg LimitPositive
cannam@89 274 xor ebp, ebp
cannam@89 275 LimitPositive:
cannam@89 276
cannam@89 277 ;;; int best_len = s->prev_length;
cannam@89 278
cannam@89 279 mov eax, [edx + dsPrevLen]
cannam@89 280 mov [bestlen], eax
cannam@89 281
cannam@89 282 ;;; Store the sum of s->window + best_len in esi locally, and in esi.
cannam@89 283
cannam@89 284 add esi, eax
cannam@89 285 mov [windowbestlen], esi
cannam@89 286
cannam@89 287 ;;; register ush scan_start = *(ushf*)scan;
cannam@89 288 ;;; register ush scan_end = *(ushf*)(scan+best_len-1);
cannam@89 289 ;;; Posf *prev = s->prev;
cannam@89 290
cannam@89 291 movzx ebx, word ptr [edi]
cannam@89 292 mov [scanstart], ebx
cannam@89 293 movzx ebx, word ptr [edi + eax - 1]
cannam@89 294 mov [scanend], ebx
cannam@89 295 mov edi, [edx + dsPrev]
cannam@89 296
cannam@89 297 ;;; Jump into the main loop.
cannam@89 298
cannam@89 299 mov edx, [chainlenwmask]
cannam@89 300 jmp short LoopEntry
cannam@89 301
cannam@89 302 align 4
cannam@89 303
cannam@89 304 ;;; do {
cannam@89 305 ;;; match = s->window + cur_match;
cannam@89 306 ;;; if (*(ushf*)(match+best_len-1) != scan_end ||
cannam@89 307 ;;; *(ushf*)match != scan_start) continue;
cannam@89 308 ;;; [...]
cannam@89 309 ;;; } while ((cur_match = prev[cur_match & wmask]) > limit
cannam@89 310 ;;; && --chain_length != 0);
cannam@89 311 ;;;
cannam@89 312 ;;; Here is the inner loop of the function. The function will spend the
cannam@89 313 ;;; majority of its time in this loop, and majority of that time will
cannam@89 314 ;;; be spent in the first ten instructions.
cannam@89 315 ;;;
cannam@89 316 ;;; Within this loop:
cannam@89 317 ;;; ebx = scanend
cannam@89 318 ;;; ecx = curmatch
cannam@89 319 ;;; edx = chainlenwmask - i.e., ((chainlen << 16) | wmask)
cannam@89 320 ;;; esi = windowbestlen - i.e., (window + bestlen)
cannam@89 321 ;;; edi = prev
cannam@89 322 ;;; ebp = limit
cannam@89 323
cannam@89 324 LookupLoop:
cannam@89 325 and ecx, edx
cannam@89 326 movzx ecx, word ptr [edi + ecx*2]
cannam@89 327 cmp ecx, ebp
cannam@89 328 jbe LeaveNow
cannam@89 329 sub edx, 00010000h
cannam@89 330 js LeaveNow
cannam@89 331 LoopEntry: movzx eax, word ptr [esi + ecx - 1]
cannam@89 332 cmp eax, ebx
cannam@89 333 jnz LookupLoop
cannam@89 334 mov eax, [window]
cannam@89 335 movzx eax, word ptr [eax + ecx]
cannam@89 336 cmp eax, [scanstart]
cannam@89 337 jnz LookupLoop
cannam@89 338
cannam@89 339 ;;; Store the current value of chainlen.
cannam@89 340
cannam@89 341 mov [chainlenwmask], edx
cannam@89 342
cannam@89 343 ;;; Point edi to the string under scrutiny, and esi to the string we
cannam@89 344 ;;; are hoping to match it up with. In actuality, esi and edi are
cannam@89 345 ;;; both pointed (MAX_MATCH_8 - scanalign) bytes ahead, and edx is
cannam@89 346 ;;; initialized to -(MAX_MATCH_8 - scanalign).
cannam@89 347
cannam@89 348 mov esi, [window]
cannam@89 349 mov edi, [scan]
cannam@89 350 add esi, ecx
cannam@89 351 mov eax, [scanalign]
cannam@89 352 mov edx, 0fffffef8h; -(MAX_MATCH_8)
cannam@89 353 lea edi, [edi + eax + 0108h] ;MAX_MATCH_8]
cannam@89 354 lea esi, [esi + eax + 0108h] ;MAX_MATCH_8]
cannam@89 355
cannam@89 356 ;;; Test the strings for equality, 8 bytes at a time. At the end,
cannam@89 357 ;;; adjust edx so that it is offset to the exact byte that mismatched.
cannam@89 358 ;;;
cannam@89 359 ;;; We already know at this point that the first three bytes of the
cannam@89 360 ;;; strings match each other, and they can be safely passed over before
cannam@89 361 ;;; starting the compare loop. So what this code does is skip over 0-3
cannam@89 362 ;;; bytes, as much as necessary in order to dword-align the edi
cannam@89 363 ;;; pointer. (esi will still be misaligned three times out of four.)
cannam@89 364 ;;;
cannam@89 365 ;;; It should be confessed that this loop usually does not represent
cannam@89 366 ;;; much of the total running time. Replacing it with a more
cannam@89 367 ;;; straightforward "rep cmpsb" would not drastically degrade
cannam@89 368 ;;; performance.
cannam@89 369
cannam@89 370 LoopCmps:
cannam@89 371 mov eax, [esi + edx]
cannam@89 372 xor eax, [edi + edx]
cannam@89 373 jnz LeaveLoopCmps
cannam@89 374 mov eax, [esi + edx + 4]
cannam@89 375 xor eax, [edi + edx + 4]
cannam@89 376 jnz LeaveLoopCmps4
cannam@89 377 add edx, 8
cannam@89 378 jnz LoopCmps
cannam@89 379 jmp short LenMaximum
cannam@89 380 LeaveLoopCmps4: add edx, 4
cannam@89 381 LeaveLoopCmps: test eax, 0000FFFFh
cannam@89 382 jnz LenLower
cannam@89 383 add edx, 2
cannam@89 384 shr eax, 16
cannam@89 385 LenLower: sub al, 1
cannam@89 386 adc edx, 0
cannam@89 387
cannam@89 388 ;;; Calculate the length of the match. If it is longer than MAX_MATCH,
cannam@89 389 ;;; then automatically accept it as the best possible match and leave.
cannam@89 390
cannam@89 391 lea eax, [edi + edx]
cannam@89 392 mov edi, [scan]
cannam@89 393 sub eax, edi
cannam@89 394 cmp eax, MAX_MATCH
cannam@89 395 jge LenMaximum
cannam@89 396
cannam@89 397 ;;; If the length of the match is not longer than the best match we
cannam@89 398 ;;; have so far, then forget it and return to the lookup loop.
cannam@89 399
cannam@89 400 mov edx, [deflatestate]
cannam@89 401 mov ebx, [bestlen]
cannam@89 402 cmp eax, ebx
cannam@89 403 jg LongerMatch
cannam@89 404 mov esi, [windowbestlen]
cannam@89 405 mov edi, [edx + dsPrev]
cannam@89 406 mov ebx, [scanend]
cannam@89 407 mov edx, [chainlenwmask]
cannam@89 408 jmp LookupLoop
cannam@89 409
cannam@89 410 ;;; s->match_start = cur_match;
cannam@89 411 ;;; best_len = len;
cannam@89 412 ;;; if (len >= nice_match) break;
cannam@89 413 ;;; scan_end = *(ushf*)(scan+best_len-1);
cannam@89 414
cannam@89 415 LongerMatch: mov ebx, [nicematch]
cannam@89 416 mov [bestlen], eax
cannam@89 417 mov [edx + dsMatchStart], ecx
cannam@89 418 cmp eax, ebx
cannam@89 419 jge LeaveNow
cannam@89 420 mov esi, [window]
cannam@89 421 add esi, eax
cannam@89 422 mov [windowbestlen], esi
cannam@89 423 movzx ebx, word ptr [edi + eax - 1]
cannam@89 424 mov edi, [edx + dsPrev]
cannam@89 425 mov [scanend], ebx
cannam@89 426 mov edx, [chainlenwmask]
cannam@89 427 jmp LookupLoop
cannam@89 428
cannam@89 429 ;;; Accept the current string, with the maximum possible length.
cannam@89 430
cannam@89 431 LenMaximum: mov edx, [deflatestate]
cannam@89 432 mov dword ptr [bestlen], MAX_MATCH
cannam@89 433 mov [edx + dsMatchStart], ecx
cannam@89 434
cannam@89 435 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
cannam@89 436 ;;; return s->lookahead;
cannam@89 437
cannam@89 438 LeaveNow:
cannam@89 439 mov edx, [deflatestate]
cannam@89 440 mov ebx, [bestlen]
cannam@89 441 mov eax, [edx + dsLookahead]
cannam@89 442 cmp ebx, eax
cannam@89 443 jg LookaheadRet
cannam@89 444 mov eax, ebx
cannam@89 445 LookaheadRet:
cannam@89 446
cannam@89 447 ;;; Restore the stack and return from whence we came.
cannam@89 448
cannam@89 449 add esp, LocalVarsSize
cannam@89 450 pop ebx
cannam@89 451 pop esi
cannam@89 452 pop edi
cannam@89 453 pop ebp
cannam@89 454
cannam@89 455 ret
cannam@89 456 ; please don't remove this string !
cannam@89 457 ; Your can freely use match686 in any free or commercial app if you don't remove the string in the binary!
cannam@89 458 db 0dh,0ah,"asm686 with masm, optimised assembly code from Brian Raiter, written 1998",0dh,0ah
cannam@89 459
cannam@89 460
cannam@89 461 IFDEF NOUNDERLINE
cannam@89 462 longest_match endp
cannam@89 463 ELSE
cannam@89 464 _longest_match endp
cannam@89 465 ENDIF
cannam@89 466
cannam@89 467 IFDEF NOUNDERLINE
cannam@89 468 match_init proc near
cannam@89 469 ret
cannam@89 470 match_init endp
cannam@89 471 ELSE
cannam@89 472 _match_init proc near
cannam@89 473 ret
cannam@89 474 _match_init endp
cannam@89 475 ENDIF
cannam@89 476
cannam@89 477
cannam@89 478 _TEXT ends
cannam@89 479 end