about summary refs log tree commit diff stats
path: root/src/js/regex.nim
blob: f24633d16a4bc010b819ef311e84c8915966ff4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# Interface for QuickJS libregexp.
import std/unicode

import bindings/libregexp
import types/opt
import utils/twtstr

export LREFlags

type
  Regex* = object
    bytecode: seq[uint8]
    buf: string

  RegexCapture* = tuple # start, end, index
    s, e: int
    i: int32

  RegexResult* = object
    success*: bool
    captures*: seq[RegexCapture]

  RegexReplace* = object
    regex: Regex
    rule: string
    global: bool

func `$`*(regex: Regex): string =
  regex.buf

# this is hardcoded into quickjs, so we must override it here.
proc lre_realloc(opaque, p: pointer; size: csize_t): pointer {.exportc.} =
  return realloc(p, size)

proc compileRegex*(buf: string; flags: LREFlags = {}): Result[Regex, string] =
  var errorMsg = newString(64)
  var plen: cint
  let bytecode = lre_compile(addr plen, cstring(errorMsg), cint(errorMsg.len),
    cstring(buf), csize_t(buf.len), flags.toCInt, nil)
  if bytecode == nil:
    return err(errorMsg.until('\0')) # Failed to compile.
  assert plen > 0
  var bcseq = newSeqUninitialized[uint8](plen)
  copyMem(addr bcseq[0], bytecode, plen)
  dealloc(bytecode)
  let regex = Regex(
    buf: buf,
    bytecode: bcseq
  )
  return ok(regex)

func countBackslashes(buf: string; i: int): int =
  var j = 0
  for i in countdown(i, 0):
    if buf[i] != '\\':
      break
    inc j
  return j

# ^abcd -> ^abcd
# efgh$ -> efgh$
# ^ijkl$ -> ^ijkl$
# mnop -> ^mnop$
proc compileMatchRegex*(buf: string): Result[Regex, string] =
  if buf.len == 0:
    return compileRegex(buf)
  if buf[0] == '^':
    return compileRegex(buf)
  if buf[^1] == '$':
    # Check whether the final dollar sign is escaped.
    if buf.len == 1 or buf[^2] != '\\':
      return compileRegex(buf)
    let j = buf.countBackslashes(buf.high - 2)
    if j mod 2 == 1: # odd, because we do not count the last backslash
      return compileRegex(buf)
    # escaped. proceed as if no dollar sign was at the end
  if buf[^1] == '\\':
    # Check if the regex contains an invalid trailing backslash.
    let j = buf.countBackslashes(buf.high - 1)
    if j mod 2 != 1: # odd, because we do not count the last backslash
      return err("unexpected end")
  var buf2 = "^"
  buf2 &= buf
  buf2 &= "$"
  return compileRegex(buf2)

proc compileSearchRegex*(str: string; defaultFlags: LREFlags):
    Result[Regex, string] =
  # Emulate vim's \c/\C: override defaultFlags if one is found, then remove it
  # from str.
  # Also, replace \< and \> with \b as (a bit sloppy) vi emulation.
  var flags = defaultFlags
  var s = newStringOfCap(str.len)
  var quot = false
  for c in str:
    if quot:
      quot = false
      case c
      of 'c': flags.incl(LRE_FLAG_IGNORECASE)
      of 'C': flags.excl(LRE_FLAG_IGNORECASE)
      of '<', '>': s &= "\\b"
      else: s &= '\\' & c
    elif c == '\\':
      quot = true
    else:
      s &= c
  if quot:
    s &= '\\'
  flags.incl(LRE_FLAG_GLOBAL) # for easy backwards matching
  return compileRegex(s, flags)

proc exec*(regex: Regex; str: string; start = 0; length = -1; nocaps = false):
    RegexResult =
  let length = if length == -1:
    str.len
  else:
    length
  assert start in 0 .. length
  let bytecode = unsafeAddr regex.bytecode[0]
  let captureCount = lre_get_capture_count(bytecode)
  var capture: ptr UncheckedArray[int] = nil
  if captureCount > 0:
    let size = sizeof(ptr uint8) * captureCount * 2
    capture = cast[ptr UncheckedArray[int]](alloc0(size))
  var cstr = cstring(str)
  let flags = lre_get_flags(bytecode).toLREFlags
  var start = start
  while true:
    let ret = lre_exec(cast[ptr ptr uint8](capture), bytecode,
      cast[ptr uint8](cstr), cint(start), cint(length), cint(3), nil)
    if ret != 1: #TODO error handling? (-1)
      break
    result.success = true
    if captureCount == 0 or nocaps:
      break
    let cstrAddress = cast[int](cstr)
    let ps = start
    start = capture[1] - cstrAddress
    for i in 0 ..< captureCount:
      let s = capture[i * 2] - cstrAddress
      let e = capture[i * 2 + 1] - cstrAddress
      result.captures.add((s, e, i))
    if LRE_FLAG_GLOBAL notin flags:
      break
    if start >= str.len:
      break
    if ps == start:
      start += runeLenAt(str, start)
  if captureCount > 0:
    dealloc(capture)

proc match*(regex: Regex; str: string; start = 0; length = str.len): bool =
  return regex.exec(str, start, length, nocaps = true).success
                                                                                                                       
                                                                                                                         
                                                                  



                                                                                                                                                                                                                                                                                                                                                                                             
                                                                                                                                 
                                                                                          
                                                                                                                        



                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                 
                                                                                          
                                                                                                            

                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                              



                                                                                                                                                              
                                                                                                                           
                                                                                           
                                                                                                                                       







                                                                                                                                                                                                                                                                                                                                                                                              



                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - 134emit-hex-array.subx</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-light">
<style type="text/css">
<!--
pre { font-family: monospace; color: #000000; background-color: #c6c6c6; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.subxComment { color: #005faf; }
.subxS2Comment { color: #8a8a8a; }
.LineNr { }
.subxTest { color: #5f8700; }
.subxS1Comment { color: #0000af; }
.subxFunction { color: #af5f00; text-decoration: underline; }
.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
.Folded { color: #080808; background-color: #949494; }
.Constant { color: #008787; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  var lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/master/134emit-hex-array.subx'>https://github.com/akkartik/mu/blob/master/134emit-hex-array.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr">  1 </span>== code
<span id="L2" class="LineNr">  2 </span><span class="subxComment">#   instruction                     effective address                                                   register    displacement    immediate</span>
<span id="L3" class="LineNr">  3 </span><span class="subxS1Comment"># . op          subop               mod             rm32          base        index         scale       r32</span>
<span id="L4" class="LineNr">  4 </span><span class="subxS1Comment"># . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes</span>
<span id="L5" class="LineNr">  5 </span>
<span id="L6" class="LineNr">  6 </span><span class="subxComment"># print 'arr' in hex with a space after every byte</span>
<span id="L7" class="LineNr">  7 </span><span class="subxFunction">emit-hex-array</span>:  <span class="subxComment"># out: (addr buffered-file), arr: (addr array byte)</span>
<span id="L8" class="LineNr">  8 </span>    <span class="subxS1Comment"># . prologue</span>
<span id="L9" class="LineNr">  9 </span>    55/push-ebp
<span id="L10" class="LineNr"> 10 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
<span id="L11" class="LineNr"> 11 </span>    <span class="subxS1Comment"># . save registers</span>
<span id="L12" class="LineNr"> 12 </span>    50/push-eax
<span id="L13" class="LineNr"> 13 </span>    51/push-ecx
<span id="L14" class="LineNr"> 14 </span>    52/push-edx
<span id="L15" class="LineNr"> 15 </span>    57/push-edi
<span id="L16" class="LineNr"> 16 </span>    <span class="subxComment"># edi = out</span>
<span id="L17" class="LineNr"> 17 </span>    8b/copy                         1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          7/r32/edi   8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy *(ebp+8) to edi</span>
<span id="L18" class="LineNr"> 18 </span>    <span class="subxComment"># edx = arr</span>
<span id="L19" class="LineNr"> 19 </span>    8b/copy                         1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          2/r32/edx   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy *(ebp+12) to edx</span>
<span id="L20" class="LineNr"> 20 </span>    <span class="subxComment"># var curr/ecx: (addr byte) = arr-&gt;data</span>
<span id="L21" class="LineNr"> 21 </span>    8d/copy-address                 1/mod/*+disp8   2/rm32/edx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          1/r32/ecx   4/disp8        <span class="Normal"> . </span>                <span class="subxComment"># copy edx+4 to ecx</span>
<span id="L22" class="LineNr"> 22 </span>    <span class="subxComment"># var max/edx: (addr byte) = &amp;arr-&gt;data[arr-&gt;size]</span>
<span id="L23" class="LineNr"> 23 </span>    8b/copy                         0/mod/indirect  2/rm32/edx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          2/r32/edx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy *edx to edx</span>
<span id="L24" class="LineNr"> 24 </span>    01/add                          3/mod/direct    2/rm32/edx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          1/r32/ecx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># add ecx to edx</span>
<span id="L25" class="LineNr"> 25 </span>    <span class="subxComment"># var c/eax: byte = 0</span>
<span id="L26" class="LineNr"> 26 </span>    31/xor                          3/mod/direct    0/rm32/eax   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/eax  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># clear eax</span>
<span id="L27" class="LineNr"> 27 </span><span class="Constant">$emit-hex-array:loop</span>:
<span id="L28" class="LineNr"> 28 </span>    <span class="subxComment"># if (curr &gt;= width) break</span>
<span id="L29" class="LineNr"> 29 </span>    39/compare                      3/mod/direct    1/rm32/ecx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          2/r32/edx  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># compare ecx with edx</span>
<span id="L30" class="LineNr"> 30 </span>    73/jump-if-addr&gt;=  $emit-hex-array:end/disp8
<span id="L31" class="LineNr"> 31 </span>    <span class="subxComment"># emit-hex(out, c = *curr, width=1)</span>
<span id="L32" class="LineNr"> 32 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L33" class="LineNr"> 33 </span>    68/push  1/imm32/width
<span id="L34" class="LineNr"> 34 </span>    8a/copy-byte                    0/mod/indirect  1/rm32/ecx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/AL   <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy byte at *ecx to AL</span>
<span id="L35" class="LineNr"> 35 </span>    50/push-eax
<span id="L36" class="LineNr"> 36 </span>    57/push-edi
<span id="L37" class="LineNr"> 37 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L38" class="LineNr"> 38 </span>    e8/call  <a href='129emit-hex.subx.html#L7'>emit-hex</a>/disp32
<span id="L39" class="LineNr"> 39 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L40" class="LineNr"> 40 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              0xc/imm32         <span class="subxComment"># add to esp</span>
<span id="L41" class="LineNr"> 41 </span>    <span class="subxComment"># ++curr</span>
<span id="L42" class="LineNr"> 42 </span>    41/increment-ecx
<span id="L43" class="LineNr"> 43 </span>    eb/jump  $emit-hex-array:<span class="Constant">loop</span>/disp8
<span id="L44" class="LineNr"> 44 </span><span class="Constant">$emit-hex-array:end</span>:
<span id="L45" class="LineNr"> 45 </span>    <span class="subxS1Comment"># . restore registers</span>
<span id="L46" class="LineNr"> 46 </span>    5f/pop-to-edi
<span id="L47" class="LineNr"> 47 </span>    5a/pop-to-edx
<span id="L48" class="LineNr"> 48 </span>    59/pop-to-ecx
<span id="L49" class="LineNr"> 49 </span>    58/pop-to-eax
<span id="L50" class="LineNr"> 50 </span>    <span class="subxS1Comment"># . epilogue</span>
<span id="L51" class="LineNr"> 51 </span>    89/copy                         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          5/r32/ebp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy ebp to esp</span>
<span id="L52" class="LineNr"> 52 </span>    5d/pop-to-ebp
<span id="L53" class="LineNr"> 53 </span>    c3/return
<span id="L54" class="LineNr"> 54 </span>
<span id="L55" class="LineNr"> 55 </span><span class="subxTest">test-emit-hex-array</span>:
<span id="L56" class="LineNr"> 56 </span>    <span class="subxS1Comment"># . prologue</span>
<span id="L57" class="LineNr"> 57 </span>    55/push-ebp
<span id="L58" class="LineNr"> 58 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
<span id="L59" class="LineNr"> 59 </span>    <span class="subxComment"># setup</span>
<span id="L60" class="LineNr"> 60 </span>    <span class="subxS1Comment"># . clear-stream(_test-output-stream)</span>
<span id="L61" class="LineNr"> 61 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L62" class="LineNr"> 62 </span>    68/push  <a href='115write-byte.subx.html#L285'>_test-output-stream</a>/imm32
<span id="L63" class="LineNr"> 63 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L64" class="LineNr"> 64 </span>    e8/call  <a href='106stream.subx.html#L17'>clear-stream</a>/disp32
<span id="L65" class="LineNr"> 65 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L66" class="LineNr"> 66 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L67" class="LineNr"> 67 </span>    <span class="subxS1Comment"># . clear-stream($_test-output-buffered-file-&gt;buffer)</span>
<span id="L68" class="LineNr"> 68 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L69" class="LineNr"> 69 </span>    68/push  $_test-output-buffered-file-&gt;buffer/imm32
<span id="L70" class="LineNr"> 70 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L71" class="LineNr"> 71 </span>    e8/call  <a href='106stream.subx.html#L17'>clear-stream</a>/disp32
<span id="L72" class="LineNr"> 72 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L73" class="LineNr"> 73 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L74" class="LineNr"> 74 </span>    <span class="subxComment"># var arr/ecx (array byte) = [01, 02, 03]</span>
<span id="L75" class="LineNr"> 75 </span>    68/push  0x00030201/imm32  <span class="subxComment"># bytes 01 02 03</span>
<span id="L76" class="LineNr"> 76 </span>    68/push  3/imm32/size
<span id="L77" class="LineNr"> 77 </span>    89/copy                         3/mod/direct    1/rm32/ecx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ecx</span>
<span id="L78" class="LineNr"> 78 </span>    <span class="subxComment"># emit-hex-array(_test-output-buffered-file, arr)</span>
<span id="L79" class="LineNr"> 79 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L80" class="LineNr"> 80 </span>    51/push-ecx
<span id="L81" class="LineNr"> 81 </span>    68/push  <a href='115write-byte.subx.html#L423'>_test-output-buffered-file</a>/imm32
<span id="L82" class="LineNr"> 82 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L83" class="LineNr"> 83 </span>    e8/call  <a href='134emit-hex-array.subx.html#L7'>emit-hex-array</a>/disp32
<span id="L84" class="LineNr"> 84 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L85" class="LineNr"> 85 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              8/imm32           <span class="subxComment"># add to esp</span>
<span id="L86" class="LineNr"> 86 </span>    <span class="subxS1Comment"># . flush(_test-output-buffered-file)</span>
<span id="L87" class="LineNr"> 87 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L88" class="LineNr"> 88 </span>    68/push  <a href='115write-byte.subx.html#L423'>_test-output-buffered-file</a>/imm32
<span id="L89" class="LineNr"> 89 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L90" class="LineNr"> 90 </span>    e8/call  <a href='115write-byte.subx.html#L81'>flush</a>/disp32
<span id="L91" class="LineNr"> 91 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L92" class="LineNr"> 92 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L93" class="Folded"> 93 </span><span class="Folded">+-- 33 lines: #?     # dump output ------------------------------------------------------------------------------------------------------------------------------------------------------</span>
<span id="L126" class="LineNr">126 </span>    <span class="subxComment"># check-next-stream-line-equal(_test-output-stream, &quot;01 02 03 &quot;, msg)</span>
<span id="L127" class="LineNr">127 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L128" class="LineNr">128 </span>    68/push  <span class="Constant">&quot;F - test-emit-hex-array&quot;</span>/imm32
<span id="L129" class="LineNr">129 </span>    68/push  <span class="Constant">&quot;01 02 03 &quot;</span>/imm32
<span id="L130" class="LineNr">130 </span>    68/push  <a href='115write-byte.subx.html#L285'>_test-output-stream</a>/imm32
<span id="L131" class="LineNr">131 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L132" class="LineNr">132 </span>    e8/call  <a href='109stream-equal.subx.html#L565'>check-next-stream-line-equal</a>/disp32
<span id="L133" class="LineNr">133 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L134" class="LineNr">134 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              0xc/imm32         <span class="subxComment"># add to esp</span>
<span id="L135" class="LineNr">135 </span>    <span class="subxS1Comment"># . epilogue</span>
<span id="L136" class="LineNr">136 </span>    89/copy                         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          5/r32/ebp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy ebp to esp</span>
<span id="L137" class="LineNr">137 </span>    5d/pop-to-ebp
<span id="L138" class="LineNr">138 </span>    c3/return
<span id="L139" class="LineNr">139 </span>
<span id="L140" class="LineNr">140 </span><span class="subxS2Comment"># . . vim&#0058;nowrap:textwidth=0</span>
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->