about summary refs log blame commit diff stats
path: root/lisp.tlv
blob: 92d23f816712dc56213dd85dc2115f83fb8b19a7 (plain) (tree)
6478e6
<!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 - 113write-stream.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; }
.subxTest { color: #5f8700; }
.subxFunction { color: #af5f00; text-decoration: underline; }
.LineNr { }
.subxS1Comment { color: #0000af; }
.CommentedCode { color: #8a8a8a; }
.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
.Constant { color: #008787; }
.subxMinorFunction { color: #875f5f; }
-->
</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/113write-stream.subx'>https://github.com/akkartik/mu/blob/master/113write-stream.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr">  1 </span><span class="subxComment"># write-stream: like write, but write streams rather than strings</span>
<span id="L2" class="LineNr">  2 </span>
<span id="L3" class="LineNr">  3 </span>== code
<span id="L4" class="LineNr">  4 </span><span class="subxComment">#   instruction                     effective address                                                   register    displacement    immediate</span>
<span id="L5" class="LineNr">  5 </span><span class="subxS1Comment"># . op          subop               mod             rm32          base        index         scale       r32</span>
<span id="L6" class="LineNr">  6 </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="L7" class="LineNr">  7 </span>
<span id="L8" class="LineNr">  8 </span><span class="CommentedCode">#? Entry:  # manual test</span>
<span id="L9" class="LineNr">  9 </span><span class="CommentedCode">#?     # write-stream(stdout, _test-stream2)</span>
<span id="L10" class="LineNr"> 10 </span><span class="CommentedCode">#?     68/push  _test-stream2/imm32</span>
<span id="L11" class="LineNr"> 11 </span><span class="CommentedCode">#?     68/push  1/imm32/stdout</span>
<span id="L12" class="LineNr"> 12 </span><span class="CommentedCode">#?     e8/call write-stream/disp32</span>
<span id="L13" class="LineNr"> 13 </span><span class="CommentedCode">#?     # syscall(exit, Num-test-failures)</span>
<span id="L14" class="LineNr"> 14 </span><span class="CommentedCode">#?     8b/copy                         0/mod/indirect  5/rm32/.disp32            .             .           3/r32/ebx   Num-test-failures/disp32          # copy *Num-test-failures to ebx</span>
<span id="L15" class="LineNr"> 15 </span><span class="CommentedCode">#?     e8/call  syscall_exit/disp32</span>
<span id="L16" class="LineNr"> 16 </span>
<span id="L17" class="LineNr"> 17 </span><span class="subxFunction">write-stream</span>:  <span class="subxComment"># f: fd or (addr stream byte), s: (addr stream byte)</span>
<span id="L18" class="LineNr"> 18 </span>    <span class="subxS1Comment"># . prologue</span>
<span id="L19" class="LineNr"> 19 </span>    55/push-ebp
<span id="L20" class="LineNr"> 20 </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 pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# .tlv file generated by https://github.com/akkartik/teliva
# You may edit it if you are careful; however, you may see cryptic errors if you
# violate Teliva's assumptions.
#
# .tlv files are representations of Teliva programs. Teliva programs consist of
# sequences of definitions. Each definition is a table of key/value pairs. Keys
# and values are both strings.
#
# Lines in .tlv files always follow exactly one of the following forms:
# - comment lines at the top of the file starting with '#' at column 0
# - beginnings of definitions starting with '- ' at column 0, followed by a
#   key/value pair
# - key/value pairs consisting of '  ' at column 0, containing either a
#   spaceless value on the same line, or a multi-line value
# - multiline values indented by more than 2 spaces, starting with a '>'
#
# If these constraints are violated, Teliva may unceremoniously crash. Please
# report bugs at http://akkartik.name/contact
- __teliva_timestamp: original
  str_helpers:
    >-- some string helpers from http://lua-users.org/wiki/StringIndexing
    >
    >-- index characters using []
    >getmetatable('').__index = function(str,i)
    >  if type(i) == 'number' then
    >    return string.sub(str,i,i)
    >  else
    >    return string[i]
    >  end
    >end
    >
    >-- ranges using (), selected bytes using {}
    >getmetatable('').__call = function(str,i,j)
    >  if type(i)~='table' then
    >    return string.sub(str,i,j)
    >  else
    >    local t={}
    >    for k,v in ipairs(i) do
    >      t[k]=string.sub(str,v,v)
    >    end
    >    return table.concat(t)
    >  end
    >end
    >
    >-- iterate over an ordered sequence
    >function q(x)
    >  if type(x) == 'string' then
    >    return x:gmatch('.')
    >  else
    >    return ipairs(x)
    >  end
    >end
    >
    >-- insert within string
    >function string.insert(str1, str2, pos)
    >  return str1:sub(1,pos)..str2..str1:sub(pos+1)
    >end
    >
    >function string.remove(s, pos)
    >  return s:sub(1,pos-1)..s:sub(pos+1)
    >end
    >
    >-- TODO: backport utf-8 support from Lua 5.3
- __teliva_timestamp: original
  debugy:
    >debugy = 5
- __teliva_timestamp: original
  dbg:
    >-- helper for debug by print; overlay debug information towards the right
    >-- reset debugy every time you refresh screen
    >function dbg(window, s)
    >  local oldy = 0
    >  local oldx = 0
    >  oldy, oldx = window:getyx()
    >  window:mvaddstr(debugy, 60, s)
    >  debugy = debugy+1
    >  window:mvaddstr(oldy, oldx, '')
    >end
- __teliva_timestamp: original
  check_eq:
    >function check_eq(x, expected, msg)
    >  if x == expected then
    >    Window:addch('.')
    >  else
    >    print('F - '..msg)
    >    print('  expected '..tostring(expected)..' but got '..x)
    >    teliva_num_test_failures = teliva_num_test_failures + 1
    >    -- overlay first test failure on editors
    >    if teliva_first_failure == nil then
    >      teliva_first_failure = msg
    >    end
    >  end
    >end
- __teliva_timestamp: original
  map:
    >-- only for arrays
    >function map(l, f)
    >  result = {}
    >  for _, x in ipairs(l) do
    >    table.insert(result, f(x))
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  reduce:
    >-- only for arrays
    >function reduce(l, f, init)
    >  result = init
    >  for _, x in ipairs(l) do
    >    result = f(result, x)
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  filter:
    >-- only for arrays
    >function filter(l, f)
    >  result = {}
    >  for _, x in ipairs(l) do
    >    if f(x) then
    >      table.insert(result, x)
    >    end
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  find_index:
    >function find_index(arr, x)
    >  for n, y in ipairs(arr) do
    >    if x == y then
    >      return n
    >    end
    >  end
    >end
- __teliva_timestamp: original
  trim:
    >function trim(s)
    >  return s:gsub('^%s*', ''):gsub('%s*$', '')
    >end
- __teliva_timestamp: original
  split:
    >function split(s, d)
    >  result = {}
    >  for match in (s..d):gmatch("(.-)"..d) do
    >    table.insert(result, match);
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  Window:
    >Window = curses.stdscr()
- __teliva_timestamp: original
  render:
    >function render(window)
    >  window:clear()
    >  -- draw stuff to screen here
    >  window:attron(curses.A_BOLD)
    >  window:mvaddstr(1, 5, "example app")
    >  window:attrset(curses.A_NORMAL)
    >  for i=0,15 do
    >    window:attrset(curses.color_pair(i))
    >    window:mvaddstr(3+i, 5, "========================")
    >  end
    >  window:refresh()
    >end
- __teliva_timestamp: original
  menu:
    >-- To show app-specific hotkeys in the menu bar, add hotkey/command
    >-- arrays of strings to the menu array.
    >menu = {}
- __teliva_timestamp: original
  update:
    >function update(window)
    >  local key = window:getch()
    >  -- process key here
    >end
- __teliva_timestamp: original
  init_colors:
    >function init_colors()
    >  for i=0,7 do
    >    curses.init_pair(i, i, -1)
    >  end
    >  curses.init_pair(8, 7, 0)
    >  curses.init_pair(9, 7, 1)
    >  curses.init_pair(10, 7, 2)
    >  curses.init_pair(11, 7, 3)
    >  curses.init_pair(12, 7, 4)
    >  curses.init_pair(13, 7, 5)
    >  curses.init_pair(14, 7, 6)
    >  curses.init_pair(15, -1, 15)
    >end
- __teliva_timestamp: original
  main:
    >function main()
    >  init_colors()
    >
    >  while true do
    >    render(Window)
    >    update(Window)
    >  end
    >end
- __teliva_timestamp: original
  eval:
    >function eval(x, env)
    >  function symeq(x, s)
    >    return x and x.sym == s
    >  end
    >  if x.sym then
    >    return lookup(env, x.sym)
    >  elseif atom(x) then
    >    return x
    >  -- otherwise x is a pair
    >  elseif symeq(x.car, 'quote') then
    >    return x.cdr
    >  elseif unary_functions[x.car.sym] then
    >    return eval_unary(x, env)
    >  elseif binary_functions[x.car.sym] then
    >    return eval_binary(x, env)
    >  -- special forms that don't always eval all their args
    >  elseif symeq(x.car, 'if') then
    >    return eval_if(x, env)
    >  elseif symeq(x.car.car, 'fn') then
    >    return eval_fn(x, env)
    >  elseif symeq(x.car.car, 'label') then
    >    return eval_label(x, env)
    >  end
    >end
- __teliva_timestamp: original
  eval_unary:
    >function eval_unary(x, env)
    >  return unary_functions[x.car.sym](eval(x.cdr.car, env))
    >end
- __teliva_timestamp: original
  eval_binary:
    >function eval_binary(x, env)
    >  return binary_functions[x.car.sym](eval(x.cdr.car, env))
    >end
- __teliva_timestamp: original
  unary_functions:
    >-- format: lisp name = lua function that implements it
    >unary_functions = {
    >  atom=atom,
    >  car=car,
    >  cdr=cdr,
    >}
- __teliva_timestamp: original
  binary_functions:
    >-- format: lisp name = lua function that implements it
    >binary_functions = {
    >  cons=cons,
    >  iso=iso,
    >}
- __teliva_timestamp: original
  lookup:
    >function lookup(env, s)
    >  if env[s] then return env[s] end
    >  if env.next then return lookup(env.next, s) end
    >end
- __teliva_timestamp: original
  eval_if:
    >function eval_if(x, env)
    >  -- syntax: (if check b1 b2)
    >  local check = x.cdr.car
    >  local b1    = x.cdr.cdr.car
    >  local b2    = x.cdr.cdr.cdr.car
    >  if eval(check, env) then
    >    return eval(b1, env)
    >  else
    >    return eval(b2, env)
    >  end
    >end
- __teliva_timestamp: original
  eval_fn:
    >function eval_fn(x, env)
    >  -- syntax: ((fn params body*) args*)
    >  local callee = x.car
    >  local args = x.cdr
    >  local params = callee.cdr.car
    >  local body = callee.cdr.cdr
    >  return eval_exprs(body,
    >                    bind_env(params, args, env))
    >end
- __teliva_timestamp: original
  bind_env:
    >function bind_env(params, args, env)
    >  if params == nil then return env end
    >  local result = {next=env}
    >  while true do
    >    result[params.car.sym] = eval(args.car, env)
    >    params = params.cdr
    >    args = args.cdr
    >    if params == nil then break end
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  eval_exprs:
    >function eval_exprs(xs, env)
    >  local result = nil
    >  while xs do
    >    result = eval(xs.car, env)
    >    xs = xs.cdr
    >  end
    >  return result
    >end
- __teliva_timestamp: original
  eval_label:
    >function eval_label(x, env)
    >  -- syntax: ((label f (fn params body*)) args*)
    >  local callee = x.car
    >  local args = x.cdr
    >  local f = callee.cdr.car
    >  local fn = callee.cdr.cdr.car
    >  return eval({car=fn, cdr=args},
    >              bind_env({f}, {callee}, env))
    >end
- __teliva_timestamp: original
  atom:
    >function atom(x)
    >  return x == nil or x.num or x.char or x.str or x.sym
    >end
- __teliva_timestamp: original
  car:
    >function car(x) return x.car end
- __teliva_timestamp: original
  cdr:
    >function cdr(x) return x.cdr end
- __teliva_timestamp: original
  cons:
    >function cons(x, y) return {car=x, cdr=y} end
- __teliva_timestamp: original
  doc:main:
    >John McCarthy's Lisp -- without the metacircularity
    >If you know Lua, this version might be easier to understand.
    >
    >Words highlighted like [[this]] are suggestions for places to jump to using ctrl-g (see the menu below).
    >You can always jump back here using ctrl-b (for 'big picture').
    >
    >Lisp is a programming language that manipulates objects of a few different types.
    >There are a few _atomic_ types, and one type that can combine them.
    >The atomic types are what you would expect: numbers, characters, strings, symbols (variables). You can add others.
    >
    >The way to combine them is the [[cons]] table which has just two keys: a [[car]] and a [[cdr]]. Both can hold objects, either atoms or other cons tables.
    >
    >We'll now build an interpreter that can run programs constructed out of cons tables.
    >
    >One thing we'll need for an interpreter is a symbol table (env) that maps symbols to values (objects).
    >We'll just use a Lua table for this purpose, but with one tweak: a _next_ pointer that allows us to combine tables together.
    >See [[lookup]] now to get a sense for how we'll use envs.
    >
    >Lisp programs are just cons tables and atoms nested to arbitrary depths, constructing trees. A Lisp interpreter walks the tree of code,
    >performing computations. Since cons tables can point to other cons tables, the tree-walker interpreter [[eval]] is recursive.
    >As the interpreter gets complex, we'll extract parts of it into their own helper functions: [[eval_unary]], [[eval_binary]], [[eval_if]], and so on.
    >The helper functions contain recursive calls to [[eval]], so that [[eval]] becomes indirectly recursive, and [[eval]] together with its helpers
    >is mutually recursive. I sometimes find it helpful to think of them all as just one big function.
    >
    >All these mutually recursive functions take the same arguments: a current expression 'x' and the symbol table 'env'.
    >But really, most of the interpreter is just walking the tree of expressions. Only two functions care about the internals of 'env':
    >  - [[lookup]] which reads within env as we saw before
    >  - [[bind_env]] which creates a new _scope_ of symbols for each new function call.
    >More complex Lisps add even more arguments to every. single. helper. Each arg will still only really matter to a couple of functions.
    >But we still have to pass them around all over the place.
    >
    >Hopefully this quick overview will help you get a sense for this codebase.
    >
    >Here's a reference list of eval helpers: [[eval_unary]], [[eval_binary]], [[eval_if]], [[eval_fn]], [[eval_exprs]], [[eval_label]]
    >More complex Lisps with more features will likely add helpers for lumpy bits of the language.
    >Here's a list of primitives implemented in Lua: [[atom]], [[car]], [[cdr]], [[cons]], [[iso]] (for 'isomorphic'; comparing trees all the way down to the leaves)
    >Here's a list of _constructors_ for creating objects of different types: [[num]], [[char]], [[str]], [[sym]] (and of course [[cons]])
    >I should probably add more primitives for operating on numbers, characters and strings..
- __teliva_timestamp: original
  iso:
    >function iso(x, y)
    >  if x == nil then return y == nil end
    >  local done={}
    >  -- watch out for the rare cyclical expression
    >  if done[x] then return done[x] == y end
    >  done[x] = y
    >  if atom(x) then
    >    if not atom(y) then return nil end
    >    for k, v in pairs(x) do
    >      if y[k] ~= v then return nil end
    >    end
    >    return true
    >  end
    >  for k, v in pairs(x) do
    >    if not iso(y[k], v) then return nil end
    >  end
    >  for k, v in pairs(y) do
    >    if not iso(x[k], v) then return nil end
    >  end
    >  return true
    >end
="na">class="subxComment"># eax = _append-4(&amp;f-&gt;data[f-&gt;write], &amp;f-&gt;data[f-&gt;size], &amp;s-&gt;data[s-&gt;read], &amp;s-&gt;data[s-&gt;write])</span> <span id="L43" class="LineNr"> 43 </span> <span class="subxS2Comment"># . . push &amp;s-&gt;data[s-&gt;write]</span> <span id="L44" class="LineNr"> 44 </span> 8b/copy 0/mod/indirect 6/rm32/esi <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"># copy *esi to eax</span> <span id="L45" class="LineNr"> 45 </span> 8d/copy-address 1/mod/*+disp8 4/rm32/sib 6/base/esi 0/index/eax <span class="Normal"> . </span> 0/r32/eax 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy esi+eax+12 to eax</span> <span id="L46" class="LineNr"> 46 </span> 50/push-eax <span id="L47" class="LineNr"> 47 </span> <span class="subxS2Comment"># . . push &amp;s-&gt;data[s-&gt;read]</span> <span id="L48" class="LineNr"> 48 </span> 8b/copy 1/mod/*+disp8 6/rm32/esi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 0/r32/eax 4/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(esi+4) to eax</span> <span id="L49" class="LineNr"> 49 </span> 8d/copy-address 1/mod/*+disp8 4/rm32/sib 6/base/esi 0/index/eax <span class="Normal"> . </span> 0/r32/eax 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy esi+eax+12 to eax</span> <span id="L50" class="LineNr"> 50 </span> 50/push-eax <span id="L51" class="LineNr"> 51 </span> <span class="subxS2Comment"># . . push &amp;f-&gt;data[f-&gt;size]</span> <span id="L52" class="LineNr"> 52 </span> 8b/copy 1/mod/*+disp8 7/rm32/edi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 0/r32/eax 8/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(edi+8) to eax</span> <span id="L53" class="LineNr"> 53 </span> 8d/copy-address 1/mod/*+disp8 4/rm32/sib 7/base/edi 0/index/eax <span class="Normal"> . </span> 0/r32/eax 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy edi+eax+12 to eax</span> <span id="L54" class="LineNr"> 54 </span> 50/push-eax <span id="L55" class="LineNr"> 55 </span> <span class="subxS2Comment"># . . push &amp;f-&gt;data[f-&gt;write]</span> <span id="L56" class="LineNr"> 56 </span> 8b/copy 0/mod/indirect 7/rm32/edi <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"># copy *edi to eax</span> <span id="L57" class="LineNr"> 57 </span> 8d/copy-address 1/mod/*+disp8 4/rm32/sib 7/base/edi 0/index/eax <span class="Normal"> . </span> 0/r32/eax 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy edi+eax+12 to eax</span> <span id="L58" class="LineNr"> 58 </span> 50/push-eax <span id="L59" class="LineNr"> 59 </span> <span class="subxS2Comment"># . . call</span> <span id="L60" class="LineNr"> 60 </span> e8/call <a href='107trace.subx.html#L897'>_append-4</a>/disp32 <span id="L61" class="LineNr"> 61 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L62" class="LineNr"> 62 </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> 0x10/imm32 <span class="subxComment"># add to esp</span> <span id="L63" class="LineNr"> 63 </span> <span class="subxComment"># f-&gt;write += eax</span> <span id="L64" class="LineNr"> 64 </span> 01/add 0/mod/indirect 7/rm32/edi <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"># add eax to *edi</span> <span id="L65" class="LineNr"> 65 </span> <span class="subxComment"># s-&gt;read += eax</span> <span id="L66" class="LineNr"> 66 </span> 01/add 1/mod/*+disp8 6/rm32/esi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 0/r32/eax 4/disp8 <span class="Normal"> . </span> <span class="subxComment"># add eax to *(esi+4)</span> <span id="L67" class="LineNr"> 67 </span> <span class="subxS1Comment"># . restore registers</span> <span id="L68" class="LineNr"> 68 </span> 5f/pop-to-edi <span id="L69" class="LineNr"> 69 </span> 5e/pop-to-esi <span id="L70" class="LineNr"> 70 </span> 58/pop-to-eax <span id="L71" class="LineNr"> 71 </span><span class="Constant">$write-stream:end</span>: <span id="L72" class="LineNr"> 72 </span> <span class="subxS1Comment"># . epilogue</span> <span id="L73" class="LineNr"> 73 </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="L74" class="LineNr"> 74 </span> 5d/pop-to-ebp <span id="L75" class="LineNr"> 75 </span> c3/return <span id="L76" class="LineNr"> 76 </span> <span id="L77" class="LineNr"> 77 </span><span class="subxMinorFunction">_write-stream</span>: <span class="subxComment"># fd: int, s: (addr stream byte)</span> <span id="L78" class="LineNr"> 78 </span> <span class="subxS1Comment"># . prologue</span> <span id="L79" class="LineNr"> 79 </span> 55/push-ebp <span id="L80" class="LineNr"> 80 </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="L81" class="LineNr"> 81 </span> <span class="subxS1Comment"># . save registers</span> <span id="L82" class="LineNr"> 82 </span> 50/push-eax <span id="L83" class="LineNr"> 83 </span> 51/push-ecx <span id="L84" class="LineNr"> 84 </span> 52/push-edx <span id="L85" class="LineNr"> 85 </span> 53/push-ebx <span id="L86" class="LineNr"> 86 </span> 56/push-esi <span id="L87" class="LineNr"> 87 </span> 57/push-edi <span id="L88" class="LineNr"> 88 </span> <span class="subxComment"># esi = s</span> <span id="L89" class="LineNr"> 89 </span> 8b/copy 1/mod/*+disp8 5/rm32/ebp <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 6/r32/esi 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(ebp+12) to esi</span> <span id="L90" class="LineNr"> 90 </span> <span class="subxComment"># edi = s-&gt;read</span> <span id="L91" class="LineNr"> 91 </span> 8b/copy 1/mod/*+disp8 6/rm32/esi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 7/r32/edi 4/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(esi+4) to edi</span> <span id="L92" class="LineNr"> 92 </span> <span class="subxComment"># edx = s-&gt;write</span> <span id="L93" class="LineNr"> 93 </span> 8b/copy 0/mod/indirect 6/rm32/esi <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 *esi to edx</span> <span id="L94" class="LineNr"> 94 </span> <span class="subxComment"># syscall(write, fd, &amp;s-&gt;data[s-&gt;read], s-&gt;write - s-&gt;read)</span> <span id="L95" class="LineNr"> 95 </span> <span class="subxS2Comment"># . . fd: ebx</span> <span id="L96" class="LineNr"> 96 </span> 8b/copy 1/mod/*+disp8 5/rm32/ebp <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 3/r32/ebx 8/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy *(ebp+8) to ebx</span> <span id="L97" class="LineNr"> 97 </span> <span class="subxS2Comment"># . . data: ecx = &amp;s-&gt;data[s-&gt;read]</span> <span id="L98" class="LineNr"> 98 </span> 8d/copy-address 1/mod/*+disp8 4/rm32/sib 6/base/esi 7/index/edi <span class="Normal"> . </span> 1/r32/ecx 0xc/disp8 <span class="Normal"> . </span> <span class="subxComment"># copy esi+edi+12 to ecx</span> <span id="L99" class="LineNr"> 99 </span> <span class="subxS2Comment"># . . size: edx = s-&gt;write - s-&gt;read</span> <span id="L100" class="LineNr">100 </span> 29/subtract 3/mod/direct 2/rm32/edx <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 7/r32/edi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="subxComment"># subtract edi from edx</span> <span id="L101" class="LineNr">101 </span> <span class="subxS2Comment"># . . syscall</span> <span id="L102" class="LineNr">102 </span> e8/call syscall_write/disp32 <span id="L103" class="LineNr">103 </span> <span class="subxComment"># if (eax &lt; 0) abort</span> <span id="L104" class="LineNr">104 </span> 3d/compare-eax-with 0/imm32 <span id="L105" class="LineNr">105 </span> 0f 8c/jump-if-&lt; $_write-stream:abort/disp32 <span id="L106" class="LineNr">106 </span> <span class="subxComment"># s-&gt;read += eax</span> <span id="L107" class="LineNr">107 </span> 01/add 1/mod/*+disp8 6/rm32/esi <span class="Normal"> . </span> <span class="Normal"> . </span> <span class="Normal"> . </span> 0/r32/eax 4/disp8 <span class="Normal"> . </span> <span class="subxComment"># add eax to *(esi+4)</span> <span id="L108" class="LineNr">108 </span> <span class="subxS1Comment"># . restore registers</span> <span id="L109" class="LineNr">109 </span> 5f/pop-to-edi <span id="L110" class="LineNr">110 </span> 5e/pop-to-esi <span id="L111" class="LineNr">111 </span> 5b/pop-to-ebx <span id="L112" class="LineNr">112 </span> 5a/pop-to-edx <span id="L113" class="LineNr">113 </span> 59/pop-to-ecx <span id="L114" class="LineNr">114 </span> 58/pop-to-eax <span id="L115" class="LineNr">115 </span> <span class="subxS1Comment"># . epilogue</span> <span id="L116" class="LineNr">116 </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="L117" class="LineNr">117 </span> 5d/pop-to-ebp <span id="L118" class="LineNr">118 </span> c3/return <span id="L119" class="LineNr">119 </span> <span id="L120" class="LineNr">120 </span><span class="Constant">$_write-stream:abort</span>: <span id="L121" class="LineNr">121 </span> <span class="subxS1Comment"># . _write(2/stderr, error)</span> <span id="L122" class="LineNr">122 </span> <span class="subxS2Comment"># . . push args</span> <span id="L123" class="LineNr">123 </span> 68/push <span class="Constant">&quot;_write-stream: failed to <a href='108write.subx.html#L24'>write</a> to file\n&quot;</span>/imm32 <span id="L124" class="LineNr">124 </span> 68/push 2/imm32/stderr <span id="L125" class="LineNr">125 </span> <span class="subxS2Comment"># . . call</span> <span id="L126" class="LineNr">126 </span> e8/call <a href='101_write.subx.html#L12'>_write</a>/disp32 <span id="L127" class="LineNr">127 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L128" class="LineNr">128 </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="L129" class="LineNr">129 </span> <span class="subxS1Comment"># . syscall(exit, 1)</span> <span id="L130" class="LineNr">130 </span> bb/copy-to-ebx 1/imm32 <span id="L131" class="LineNr">131 </span> e8/call syscall_exit/disp32 <span id="L132" class="LineNr">132 </span> <span class="subxComment"># never gets here</span> <span id="L133" class="LineNr">133 </span> <span id="L134" class="LineNr">134 </span><span class="subxTest">test-write-stream-single</span>: <span id="L135" class="LineNr">135 </span> <span class="subxComment"># setup</span> <span id="L136" class="LineNr">136 </span> <span class="subxS1Comment"># . clear-stream(_test-stream)</span> <span id="L137" class="LineNr">137 </span> <span class="subxS2Comment"># . . push args</span> <span id="L138" class="LineNr">138 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L139" class="LineNr">139 </span> <span class="subxS2Comment"># . . call</span> <span id="L140" class="LineNr">140 </span> e8/call <a href='106stream.subx.html#L17'>clear-stream</a>/disp32 <span id="L141" class="LineNr">141 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L142" class="LineNr">142 </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="L143" class="LineNr">143 </span> <span class="subxS1Comment"># . clear-stream(_test-stream2)</span> <span id="L144" class="LineNr">144 </span> <span class="subxS2Comment"># . . push args</span> <span id="L145" class="LineNr">145 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L146" class="LineNr">146 </span> <span class="subxS2Comment"># . . call</span> <span id="L147" class="LineNr">147 </span> e8/call <a href='106stream.subx.html#L17'>clear-stream</a>/disp32 <span id="L148" class="LineNr">148 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L149" class="LineNr">149 </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="L150" class="LineNr">150 </span> <span class="subxS1Comment"># . write(_test-stream2, &quot;Ab&quot;)</span> <span id="L151" class="LineNr">151 </span> <span class="subxS2Comment"># . . push args</span> <span id="L152" class="LineNr">152 </span> 68/push <span class="Constant">&quot;Ab&quot;</span>/imm32 <span id="L153" class="LineNr">153 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L154" class="LineNr">154 </span> <span class="subxS2Comment"># . . call</span> <span id="L155" class="LineNr">155 </span> e8/call <a href='108write.subx.html#L24'>write</a>/disp32 <span id="L156" class="LineNr">156 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L157" class="LineNr">157 </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="L158" class="LineNr">158 </span> <span class="subxComment"># write-stream(_test-stream, _test-stream2)</span> <span id="L159" class="LineNr">159 </span> <span class="subxS2Comment"># . . push args</span> <span id="L160" class="LineNr">160 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L161" class="LineNr">161 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L162" class="LineNr">162 </span> <span class="subxS2Comment"># . . call</span> <span id="L163" class="LineNr">163 </span> e8/call <a href='113write-stream.subx.html#L17'>write-stream</a>/disp32 <span id="L164" class="LineNr">164 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L165" class="LineNr">165 </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="L166" class="LineNr">166 </span> <span class="subxComment"># check-stream-equal(_test-stream, &quot;Ab&quot;, msg)</span> <span id="L167" class="LineNr">167 </span> <span class="subxS2Comment"># . . push args</span> <span id="L168" class="LineNr">168 </span> 68/push <span class="Constant">&quot;F - test-write-stream-single&quot;</span>/imm32 <span id="L169" class="LineNr">169 </span> 68/push <span class="Constant">&quot;Ab&quot;</span>/imm32 <span id="L170" class="LineNr">170 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L171" class="LineNr">171 </span> <span class="subxS2Comment"># . . call</span> <span id="L172" class="LineNr">172 </span> e8/call <a href='109stream-equal.subx.html#L194'>check-stream-equal</a>/disp32 <span id="L173" class="LineNr">173 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L174" class="LineNr">174 </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="L175" class="LineNr">175 </span> <span class="subxS1Comment"># . end</span> <span id="L176" class="LineNr">176 </span> c3/return <span id="L177" class="LineNr">177 </span> <span id="L178" class="LineNr">178 </span><span class="subxTest">test-write-stream-appends</span>: <span id="L179" class="LineNr">179 </span> <span class="subxComment"># setup</span> <span id="L180" class="LineNr">180 </span> <span class="subxS1Comment"># . clear-stream(_test-stream)</span> <span id="L181" class="LineNr">181 </span> <span class="subxS2Comment"># . . push args</span> <span id="L182" class="LineNr">182 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L183" class="LineNr">183 </span> <span class="subxS2Comment"># . . call</span> <span id="L184" class="LineNr">184 </span> e8/call <a href='106stream.subx.html#L17'>clear-stream</a>/disp32 <span id="L185" class="LineNr">185 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L186" class="LineNr">186 </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="L187" class="LineNr">187 </span> <span class="subxS1Comment"># . clear-stream(_test-stream2)</span> <span id="L188" class="LineNr">188 </span> <span class="subxS2Comment"># . . push args</span> <span id="L189" class="LineNr">189 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L190" class="LineNr">190 </span> <span class="subxS2Comment"># . . call</span> <span id="L191" class="LineNr">191 </span> e8/call <a href='106stream.subx.html#L17'>clear-stream</a>/disp32 <span id="L192" class="LineNr">192 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L193" class="LineNr">193 </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="L194" class="LineNr">194 </span> <span class="subxS1Comment"># . write(_test-stream2, &quot;C&quot;)</span> <span id="L195" class="LineNr">195 </span> <span class="subxS2Comment"># . . push args</span> <span id="L196" class="LineNr">196 </span> 68/push <span class="Constant">&quot;C&quot;</span>/imm32 <span id="L197" class="LineNr">197 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L198" class="LineNr">198 </span> <span class="subxS2Comment"># . . call</span> <span id="L199" class="LineNr">199 </span> e8/call <a href='108write.subx.html#L24'>write</a>/disp32 <span id="L200" class="LineNr">200 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L201" class="LineNr">201 </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="L202" class="LineNr">202 </span> <span class="subxComment"># first write</span> <span id="L203" class="LineNr">203 </span> <span class="subxS1Comment"># . write-stream(_test-stream, _test-stream2)</span> <span id="L204" class="LineNr">204 </span> <span class="subxS2Comment"># . . push args</span> <span id="L205" class="LineNr">205 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L206" class="LineNr">206 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L207" class="LineNr">207 </span> <span class="subxS2Comment"># . . call</span> <span id="L208" class="LineNr">208 </span> e8/call <a href='113write-stream.subx.html#L17'>write-stream</a>/disp32 <span id="L209" class="LineNr">209 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L210" class="LineNr">210 </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="L211" class="LineNr">211 </span> <span class="subxComment"># second write</span> <span id="L212" class="LineNr">212 </span> <span class="subxS1Comment"># . write(_test-stream2, &quot;D&quot;)</span> <span id="L213" class="LineNr">213 </span> <span class="subxS2Comment"># . . push args</span> <span id="L214" class="LineNr">214 </span> 68/push <span class="Constant">&quot;D&quot;</span>/imm32 <span id="L215" class="LineNr">215 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L216" class="LineNr">216 </span> <span class="subxS2Comment"># . . call</span> <span id="L217" class="LineNr">217 </span> e8/call <a href='108write.subx.html#L24'>write</a>/disp32 <span id="L218" class="LineNr">218 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L219" class="LineNr">219 </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="L220" class="LineNr">220 </span> <span class="subxS1Comment"># . write-stream(_test-stream, _test-stream2)</span> <span id="L221" class="LineNr">221 </span> <span class="subxS2Comment"># . . push args</span> <span id="L222" class="LineNr">222 </span> 68/push <a href='113write-stream.subx.html#L242'>_test-stream2</a>/imm32 <span id="L223" class="LineNr">223 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L224" class="LineNr">224 </span> <span class="subxS2Comment"># . . call</span> <span id="L225" class="LineNr">225 </span> e8/call <a href='113write-stream.subx.html#L17'>write-stream</a>/disp32 <span id="L226" class="LineNr">226 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L227" class="LineNr">227 </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="L228" class="LineNr">228 </span> <span class="subxComment"># check-stream-equal(_test-stream, &quot;CD&quot;, msg)</span> <span id="L229" class="LineNr">229 </span> <span class="subxS2Comment"># . . push args</span> <span id="L230" class="LineNr">230 </span> 68/push <span class="Constant">&quot;F - test-write-stream-appends&quot;</span>/imm32 <span id="L231" class="LineNr">231 </span> 68/push <span class="Constant">&quot;CD&quot;</span>/imm32 <span id="L232" class="LineNr">232 </span> 68/push <a href='108write.subx.html#L148'>_test-stream</a>/imm32 <span id="L233" class="LineNr">233 </span> <span class="subxS2Comment"># . . call</span> <span id="L234" class="LineNr">234 </span> e8/call <a href='109stream-equal.subx.html#L194'>check-stream-equal</a>/disp32 <span id="L235" class="LineNr">235 </span> <span class="subxS2Comment"># . . discard args</span> <span id="L236" class="LineNr">236 </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="L237" class="LineNr">237 </span> <span class="subxS1Comment"># . end</span> <span id="L238" class="LineNr">238 </span> c3/return <span id="L239" class="LineNr">239 </span> <span id="L240" class="LineNr">240 </span>== data <span id="L241" class="LineNr">241 </span> <span id="L242" class="LineNr">242 </span><span class="subxMinorFunction">_test-stream2</span>: <span class="subxComment"># (stream byte)</span> <span id="L243" class="LineNr">243 </span> <span class="subxComment"># current write index</span> <span id="L244" class="LineNr">244 </span> 4/imm32 <span id="L245" class="LineNr">245 </span> <span class="subxComment"># current read index</span> <span id="L246" class="LineNr">246 </span> 1/imm32 <span id="L247" class="LineNr">247 </span> <span class="subxComment"># size</span> <span id="L248" class="LineNr">248 </span> 8/imm32 <span id="L249" class="LineNr">249 </span> <span class="subxComment"># data</span> <span id="L250" class="LineNr">250 </span> 41/A 42/B 43/C 44/D 00 00 00 00 <span class="subxComment"># 8 bytes</span> <span id="L251" class="LineNr">251 </span> <span id="L252" class="LineNr">252 </span><span class="subxS2Comment"># . . vim&#0058;nowrap:textwidth=0</span> </pre> </body> </html> <!-- vim: set foldmethod=manual : -->