This commit is contained in:
Kartik Agaram 2021-04-22 20:02:19 -07:00
parent 2ff86d9162
commit 5915104926
12 changed files with 41324 additions and 40737 deletions

View File

@ -268,6 +268,95 @@ if ('onhashchange' in window) {
<span id="L212" class="LineNr">212 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L213" class="LineNr">213 </span> 5d/pop-to-ebp
<span id="L214" class="LineNr">214 </span> c3/return
<span id="L215" class="LineNr">215 </span>
<span id="L216" class="LineNr">216 </span><span class="subxComment"># compare all the data in two streams (ignoring the read pointer)</span>
<span id="L217" class="LineNr">217 </span><span class="subxFunction">streams-data-equal?</span>: <span class="subxComment"># f: (addr stream byte), s: (addr array byte) -&gt; result/eax: boolean</span>
<span id="L218" class="LineNr">218 </span> <span class="subxComment"># pseudocode:</span>
<span id="L219" class="LineNr">219 </span> <span class="subxComment"># awrite = a-&gt;write</span>
<span id="L220" class="LineNr">220 </span> <span class="subxComment"># if (awrite != b-&gt;write) return false</span>
<span id="L221" class="LineNr">221 </span> <span class="subxComment"># i = 0</span>
<span id="L222" class="LineNr">222 </span> <span class="subxComment"># curra = a-&gt;data</span>
<span id="L223" class="LineNr">223 </span> <span class="subxComment"># currb = b-&gt;data</span>
<span id="L224" class="LineNr">224 </span> <span class="subxComment"># while i &lt; awrite</span>
<span id="L225" class="LineNr">225 </span> <span class="subxComment"># i1 = *curra</span>
<span id="L226" class="LineNr">226 </span> <span class="subxComment"># i2 = *currb</span>
<span id="L227" class="LineNr">227 </span> <span class="subxComment"># if (c1 != c2) return false</span>
<span id="L228" class="LineNr">228 </span> <span class="subxComment"># i+=4, curra+=4, currb+=4</span>
<span id="L229" class="LineNr">229 </span> <span class="subxComment"># return true</span>
<span id="L230" class="LineNr">230 </span> <span class="subxComment">#</span>
<span id="L231" class="LineNr">231 </span> <span class="subxComment"># registers:</span>
<span id="L232" class="LineNr">232 </span> <span class="subxComment"># i: ecx</span>
<span id="L233" class="LineNr">233 </span> <span class="subxComment"># awrite: edx</span>
<span id="L234" class="LineNr">234 </span> <span class="subxComment"># curra: esi</span>
<span id="L235" class="LineNr">235 </span> <span class="subxComment"># currb: edi</span>
<span id="L236" class="LineNr">236 </span> <span class="subxComment"># i1: eax</span>
<span id="L237" class="LineNr">237 </span> <span class="subxComment"># i2: ebx</span>
<span id="L238" class="LineNr">238 </span> <span class="subxComment">#</span>
<span id="L239" class="LineNr">239 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L240" class="LineNr">240 </span> 55/push-ebp
<span id="L241" class="LineNr">241 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L242" class="LineNr">242 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L243" class="LineNr">243 </span> 51/push-ecx
<span id="L244" class="LineNr">244 </span> 52/push-edx
<span id="L245" class="LineNr">245 </span> 53/push-ebx
<span id="L246" class="LineNr">246 </span> 56/push-esi
<span id="L247" class="LineNr">247 </span> 57/push-edi
<span id="L248" class="LineNr">248 </span> <span class="subxComment"># esi = a</span>
<span id="L249" class="LineNr">249 </span> 8b/-&gt; *(ebp+8) 6/r32/esi
<span id="L250" class="LineNr">250 </span> <span class="subxComment"># edi = b</span>
<span id="L251" class="LineNr">251 </span> 8b/-&gt; *(ebp+0xc) 7/r32/edi
<span id="L252" class="LineNr">252 </span> <span class="subxComment"># var awrite/edx: int = a-&gt;write</span>
<span id="L253" class="LineNr">253 </span> 8b/-&gt; *esi 2/r32/edx
<span id="L254" class="LineNr">254 </span><span class="Constant">$streams-data-equal?:sizes</span>:
<span id="L255" class="LineNr">255 </span> <span class="subxComment"># if (awrite != b-&gt;write) return false</span>
<span id="L256" class="LineNr">256 </span> 39/compare *edi 2/r32/edx
<span id="L257" class="LineNr">257 </span> 75/jump-if-!= $streams-data-equal?:false/disp8
<span id="L258" class="LineNr">258 </span> <span class="subxComment"># var curra/esi: (addr byte) = a-&gt;data</span>
<span id="L259" class="LineNr">259 </span> 81 0/subop/add %esi 0xc/imm32
<span id="L260" class="LineNr">260 </span> <span class="subxComment"># var currb/edi: (addr byte) = b-&gt;data</span>
<span id="L261" class="LineNr">261 </span> 81 0/subop/add %edi 0xc/imm32
<span id="L262" class="LineNr">262 </span> <span class="subxComment"># var i/ecx: int = 0</span>
<span id="L263" class="LineNr">263 </span> 31/xor-with %ecx 1/r32/ecx
<span id="L264" class="LineNr">264 </span> <span class="subxComment"># var vala/eax: int</span>
<span id="L265" class="LineNr">265 </span> 31/xor-with %eax 0/r32/eax
<span id="L266" class="LineNr">266 </span> <span class="subxComment"># var valb/ebx: int</span>
<span id="L267" class="LineNr">267 </span> 31/xor-with %ebx 3/r32/ebx
<span id="L268" class="LineNr">268 </span><span class="Constant">$streams-data-equal?:loop</span>:
<span id="L269" class="LineNr">269 </span> {
<span id="L270" class="LineNr">270 </span> <span class="subxComment"># if (i &gt;= awrite) return true</span>
<span id="L271" class="LineNr">271 </span> 39/compare %ecx 2/r32/edx
<span id="L272" class="LineNr">272 </span> 7d/jump-if-&gt;= $streams-data-equal?:true/disp8
<span id="L273" class="LineNr">273 </span> <span class="subxComment"># var vala/eax: int = *curra</span>
<span id="L274" class="LineNr">274 </span> 8a/byte-&gt; *esi 0/r32/eax
<span id="L275" class="LineNr">275 </span> <span class="subxComment"># var valb/ebx: int = *currb</span>
<span id="L276" class="LineNr">276 </span> 8a/byte-&gt; *edi 3/r32/ebx
<span id="L277" class="LineNr">277 </span> <span class="subxComment"># if (vala != valb) return false</span>
<span id="L278" class="LineNr">278 </span> 39/compare %eax 3/r32/ebx
<span id="L279" class="LineNr">279 </span> 75/jump-if-!= $streams-data-equal?:false/disp8
<span id="L280" class="LineNr">280 </span> <span class="subxComment"># i++</span>
<span id="L281" class="LineNr">281 </span> 41/increment-ecx
<span id="L282" class="LineNr">282 </span> <span class="subxComment"># curra++</span>
<span id="L283" class="LineNr">283 </span> 46/increment-esi
<span id="L284" class="LineNr">284 </span> <span class="subxComment"># currb++</span>
<span id="L285" class="LineNr">285 </span> 47/increment-edi
<span id="L286" class="LineNr">286 </span> eb/jump <span class="Constant">loop</span>/disp8
<span id="L287" class="LineNr">287 </span> }
<span id="L288" class="LineNr">288 </span><span class="Constant">$streams-data-equal?:true</span>:
<span id="L289" class="LineNr">289 </span> b8/copy-to-eax 1/imm32
<span id="L290" class="LineNr">290 </span> eb/jump $streams-data-equal?:end/disp8
<span id="L291" class="LineNr">291 </span><span class="Constant">$streams-data-equal?:false</span>:
<span id="L292" class="LineNr">292 </span> b8/copy-to-eax 0/imm32
<span id="L293" class="LineNr">293 </span><span class="Constant">$streams-data-equal?:end</span>:
<span id="L294" class="LineNr">294 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L295" class="LineNr">295 </span> 5f/pop-to-edi
<span id="L296" class="LineNr">296 </span> 5e/pop-to-esi
<span id="L297" class="LineNr">297 </span> 5b/pop-to-ebx
<span id="L298" class="LineNr">298 </span> 5a/pop-to-edx
<span id="L299" class="LineNr">299 </span> 59/pop-to-ecx
<span id="L300" class="LineNr">300 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L301" class="LineNr">301 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L302" class="LineNr">302 </span> 5d/pop-to-ebp
<span id="L303" class="LineNr">303 </span> c3/return
</pre>
</body>
</html>

View File

@ -20,6 +20,7 @@ a { color:inherit; }
.LineNr { }
.subxFunction { color: #af5f00; text-decoration: underline; }
.Constant { color: #008787; }
.CommentedCode { color: #8a8a8a; }
-->
</style>
@ -55,80 +56,129 @@ if ('onhashchange' in window) {
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/main/315stack-debug.subx'>https://github.com/akkartik/mu/blob/main/315stack-debug.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="subxComment"># The stack shouldn't grow into the code area.</span>
<span id="L2" class="LineNr"> 2 </span>
<span id="L3" class="LineNr"> 3 </span>== code
<span id="L4" class="LineNr"> 4 </span>
<span id="L5" class="LineNr"> 5 </span><span class="subxFunction">check-stack</span>:
<span id="L6" class="LineNr"> 6 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L7" class="LineNr"> 7 </span> 55/push-ebp
<span id="L8" class="LineNr"> 8 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L9" class="LineNr"> 9 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L10" class="LineNr">10 </span> 50/push-eax
<span id="L11" class="LineNr">11 </span> <span class="subxComment">#</span>
<span id="L12" class="LineNr">12 </span> 89/&lt;- %eax 4/r32/esp
<span id="L13" class="LineNr">13 </span> 81 7/subop/compare %eax 0x48600/imm32
<span id="L14" class="LineNr">14 </span> {
<span id="L15" class="LineNr">15 </span> 7f/jump-if-&gt; <span class="Constant">break</span>/disp8
<span id="L16" class="LineNr">16 </span> (<a href='501draw-text.mu.html#L481'>abort</a> <span class="Constant">&quot;stack overflow&quot;</span>)
<span id="L17" class="LineNr">17 </span> }
<span id="L18" class="LineNr">18 </span><span class="Constant">$check-stack:end</span>:
<span id="L19" class="LineNr">19 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L20" class="LineNr">20 </span> 58/pop-to-eax
<span id="L21" class="LineNr">21 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L22" class="LineNr">22 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L23" class="LineNr">23 </span> 5d/pop-to-ebp
<span id="L24" class="LineNr">24 </span> c3/return
<span id="L25" class="LineNr">25 </span>
<span id="L26" class="LineNr">26 </span><span class="subxFunction">show-stack-state</span>:
<span id="L27" class="LineNr">27 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L28" class="LineNr">28 </span> 55/push-ebp
<span id="L29" class="LineNr">29 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L30" class="LineNr">30 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L31" class="LineNr">31 </span> 50/push-eax
<span id="L32" class="LineNr">32 </span> 51/push-ecx
<span id="L33" class="LineNr">33 </span> 52/push-edx
<span id="L34" class="LineNr">34 </span> <span class="subxComment">#</span>
<span id="L35" class="LineNr">35 </span> 89/&lt;- %edx 4/r32/esp
<span id="L36" class="LineNr">36 </span> <span class="subxComment"># save old cursor position</span>
<span id="L37" class="LineNr">37 </span> (<a href='500fake-screen.mu.html#L153'>cursor-position</a> 0) <span class="subxComment"># =&gt; eax, ecx</span>
<span id="L38" class="LineNr">38 </span> <span class="subxComment"># print at top-right</span>
<span id="L39" class="LineNr">39 </span> (<a href='500fake-screen.mu.html#L169'>set-cursor-position</a> 0 0x70 0)
<span id="L40" class="LineNr">40 </span> (<a href='501draw-text.mu.html#L312'>draw-int32-hex-wrapping-right-then-down-from-cursor-over-full-screen</a> 0 %edx 0xf 0xc)
<span id="L41" class="LineNr">41 </span> <span class="subxComment"># restore cursor position</span>
<span id="L42" class="LineNr">42 </span> (<a href='500fake-screen.mu.html#L169'>set-cursor-position</a> %eax %ecx)
<span id="L43" class="LineNr">43 </span><span class="Constant">$check-stack:end</span>:
<span id="L44" class="LineNr">44 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L45" class="LineNr">45 </span> 5a/pop-to-edx
<span id="L46" class="LineNr">46 </span> 59/pop-to-ecx
<span id="L47" class="LineNr">47 </span> 58/pop-to-eax
<span id="L48" class="LineNr">48 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L49" class="LineNr">49 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L50" class="LineNr">50 </span> 5d/pop-to-ebp
<span id="L51" class="LineNr">51 </span> c3/return
<span id="L52" class="LineNr">52 </span>
<span id="L53" class="LineNr">53 </span><span class="subxComment"># Helper for debugging deeply recursive calls without logs or traces.</span>
<span id="L54" class="LineNr">54 </span><span class="subxComment"># Turn it on, insert calls in the right places, and you get a terse sense of</span>
<span id="L55" class="LineNr">55 </span><span class="subxComment"># important parts of the call stack. A poor sophont's stack trace.</span>
<span id="L56" class="LineNr">56 </span><span class="subxFunction">debug-print</span>: <span class="subxComment"># x: (addr array byte), fg: int, bg: int # x is very short; usually a single character</span>
<span id="L57" class="LineNr">57 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L58" class="LineNr">58 </span> 55/push-ebp
<span id="L59" class="LineNr">59 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L60" class="LineNr">60 </span> <span class="subxComment">#</span>
<span id="L61" class="LineNr">61 </span> {
<span id="L62" class="LineNr">62 </span> 81 7/subop/compare *<span class="SpecialChar"><a href='315stack-debug.subx.html#L73'>Really-debug-print</a></span> 0/imm32/false
<span id="L63" class="LineNr">63 </span> 74/jump-if-= <span class="Constant">break</span>/disp8
<span id="L64" class="LineNr">64 </span> (<a href='501draw-text.mu.html#L258'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> 0 *(ebp+8) *(ebp+0xc) *(ebp+0x10))
<span id="L65" class="LineNr">65 </span> }
<span id="L66" class="LineNr">66 </span><span class="Constant">$debug-print:end</span>:
<span id="L67" class="LineNr">67 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L68" class="LineNr">68 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L69" class="LineNr">69 </span> 5d/pop-to-ebp
<span id="L70" class="LineNr">70 </span> c3/return
<span id="L71" class="LineNr">71 </span>
<span id="L72" class="LineNr">72 </span>== data
<span id="L73" class="LineNr">73 </span><span class="SpecialChar">Really-debug-print</span>:
<span id="L74" class="LineNr">74 </span> 0/imm32/false
<span id="L1" class="LineNr"> 1 </span><span class="subxComment"># The stack shouldn't grow into the code area.</span>
<span id="L2" class="LineNr"> 2 </span>
<span id="L3" class="LineNr"> 3 </span>== code
<span id="L4" class="LineNr"> 4 </span>
<span id="L5" class="LineNr"> 5 </span><span class="subxFunction">check-stack</span>:
<span id="L6" class="LineNr"> 6 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L7" class="LineNr"> 7 </span> 55/push-ebp
<span id="L8" class="LineNr"> 8 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L9" class="LineNr"> 9 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L10" class="LineNr"> 10 </span> 50/push-eax
<span id="L11" class="LineNr"> 11 </span> <span class="subxComment">#</span>
<span id="L12" class="LineNr"> 12 </span> 89/&lt;- %eax 4/r32/esp
<span id="L13" class="LineNr"> 13 </span> 81 7/subop/compare %eax 0x48600/imm32
<span id="L14" class="LineNr"> 14 </span> {
<span id="L15" class="LineNr"> 15 </span> 7f/jump-if-&gt; <span class="Constant">break</span>/disp8
<span id="L16" class="LineNr"> 16 </span> (<a href='501draw-text.mu.html#L481'>abort</a> <span class="Constant">&quot;stack overflow&quot;</span>)
<span id="L17" class="LineNr"> 17 </span> }
<span id="L18" class="LineNr"> 18 </span><span class="Constant">$check-stack:end</span>:
<span id="L19" class="LineNr"> 19 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L20" class="LineNr"> 20 </span> 58/pop-to-eax
<span id="L21" class="LineNr"> 21 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L22" class="LineNr"> 22 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L23" class="LineNr"> 23 </span> 5d/pop-to-ebp
<span id="L24" class="LineNr"> 24 </span> c3/return
<span id="L25" class="LineNr"> 25 </span>
<span id="L26" class="LineNr"> 26 </span><span class="subxFunction">show-stack-state</span>:
<span id="L27" class="LineNr"> 27 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L28" class="LineNr"> 28 </span> 55/push-ebp
<span id="L29" class="LineNr"> 29 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L30" class="LineNr"> 30 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L31" class="LineNr"> 31 </span> 50/push-eax
<span id="L32" class="LineNr"> 32 </span> 51/push-ecx
<span id="L33" class="LineNr"> 33 </span> 52/push-edx
<span id="L34" class="LineNr"> 34 </span> <span class="subxComment">#</span>
<span id="L35" class="LineNr"> 35 </span> 89/&lt;- %edx 4/r32/esp
<span id="L36" class="LineNr"> 36 </span> <span class="subxComment"># save old cursor position</span>
<span id="L37" class="LineNr"> 37 </span> (<a href='500fake-screen.mu.html#L153'>cursor-position</a> 0) <span class="subxComment"># =&gt; eax, ecx</span>
<span id="L38" class="LineNr"> 38 </span> <span class="subxComment"># print at top-right</span>
<span id="L39" class="LineNr"> 39 </span> (<a href='500fake-screen.mu.html#L169'>set-cursor-position</a> 0 0x70 0)
<span id="L40" class="LineNr"> 40 </span> (<a href='501draw-text.mu.html#L312'>draw-int32-hex-wrapping-right-then-down-from-cursor-over-full-screen</a> 0 %edx 0xf 0xc)
<span id="L41" class="LineNr"> 41 </span> <span class="subxComment"># restore cursor position</span>
<span id="L42" class="LineNr"> 42 </span> (<a href='500fake-screen.mu.html#L169'>set-cursor-position</a> %eax %ecx)
<span id="L43" class="LineNr"> 43 </span><span class="Constant">$check-stack:end</span>:
<span id="L44" class="LineNr"> 44 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L45" class="LineNr"> 45 </span> 5a/pop-to-edx
<span id="L46" class="LineNr"> 46 </span> 59/pop-to-ecx
<span id="L47" class="LineNr"> 47 </span> 58/pop-to-eax
<span id="L48" class="LineNr"> 48 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L49" class="LineNr"> 49 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L50" class="LineNr"> 50 </span> 5d/pop-to-ebp
<span id="L51" class="LineNr"> 51 </span> c3/return
<span id="L52" class="LineNr"> 52 </span>
<span id="L53" class="LineNr"> 53 </span><span class="subxComment"># Helper for debugging deeply recursive calls without logs or traces.</span>
<span id="L54" class="LineNr"> 54 </span><span class="subxComment"># Turn it on, insert calls in the right places, and you get a terse sense of</span>
<span id="L55" class="LineNr"> 55 </span><span class="subxComment"># important parts of the call stack. A poor sophont's stack trace.</span>
<span id="L56" class="LineNr"> 56 </span><span class="subxFunction">debug-print</span>: <span class="subxComment"># x: (addr array byte), fg: int, bg: int # x is very short; usually a single character</span>
<span id="L57" class="LineNr"> 57 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L58" class="LineNr"> 58 </span> 55/push-ebp
<span id="L59" class="LineNr"> 59 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L60" class="LineNr"> 60 </span> <span class="subxS1Comment"># . save registers</span>
<span id="L61" class="LineNr"> 61 </span> 50/push-eax
<span id="L62" class="LineNr"> 62 </span> 51/push-ecx
<span id="L63" class="LineNr"> 63 </span> <span class="subxComment">#</span>
<span id="L64" class="LineNr"> 64 </span> {
<span id="L65" class="LineNr"> 65 </span> 81 7/subop/compare *<span class="SpecialChar"><a href='315stack-debug.subx.html#L121'>Really-debug-print</a></span> 0/imm32/false
<span id="L66" class="LineNr"> 66 </span> 74/jump-if-= <span class="Constant">break</span>/disp8
<span id="L67" class="LineNr"> 67 </span> (<a href='501draw-text.mu.html#L258'>draw-text-wrapping-right-then-down-from-cursor-over-full-screen</a> 0 *(ebp+8) *(ebp+0xc) *(ebp+0x10))
<span id="L68" class="LineNr"> 68 </span> <span class="subxComment"># clear the screen and continue if we got too close to the bottom</span>
<span id="L69" class="LineNr"> 69 </span> (<a href='500fake-screen.mu.html#L153'>cursor-position</a> 0) <span class="subxComment"># =&gt; eax, ecx</span>
<span id="L70" class="LineNr"> 70 </span> 81 7/subop/compare %ecx 0x28/imm32
<span id="L71" class="LineNr"> 71 </span> 75/jump-if-!= <span class="Constant">break</span>/disp8
<span id="L72" class="LineNr"> 72 </span> (<a href='500fake-screen.mu.html#L230'>clear-screen</a> 0)
<span id="L73" class="LineNr"> 73 </span> (<a href='500fake-screen.mu.html#L169'>set-cursor-position</a> 0 0 0)
<span id="L74" class="LineNr"> 74 </span> }
<span id="L75" class="LineNr"> 75 </span><span class="Constant">$debug-print:end</span>:
<span id="L76" class="LineNr"> 76 </span> <span class="subxS1Comment"># . restore registers</span>
<span id="L77" class="LineNr"> 77 </span> 59/pop-to-ecx
<span id="L78" class="LineNr"> 78 </span> 58/pop-to-eax
<span id="L79" class="LineNr"> 79 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L80" class="LineNr"> 80 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L81" class="LineNr"> 81 </span> 5d/pop-to-ebp
<span id="L82" class="LineNr"> 82 </span> c3/return
<span id="L83" class="LineNr"> 83 </span>
<span id="L84" class="LineNr"> 84 </span><span class="subxFunction">debug-print?</span>: <span class="subxComment"># -&gt; _/eax: boolean</span>
<span id="L85" class="LineNr"> 85 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L86" class="LineNr"> 86 </span> 55/push-ebp
<span id="L87" class="LineNr"> 87 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L88" class="LineNr"> 88 </span> <span class="subxComment">#</span>
<span id="L89" class="LineNr"> 89 </span> 8b/-&gt; *<span class="SpecialChar"><a href='315stack-debug.subx.html#L121'>Really-debug-print</a></span> 0/r32/eax
<span id="L90" class="LineNr"> 90 </span><span class="Constant">$debug-print?:end</span>:
<span id="L91" class="LineNr"> 91 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L92" class="LineNr"> 92 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L93" class="LineNr"> 93 </span> 5d/pop-to-ebp
<span id="L94" class="LineNr"> 94 </span> c3/return
<span id="L95" class="LineNr"> 95 </span>
<span id="L96" class="LineNr"> 96 </span><span class="subxFunction">turn-on-debug-print</span>:
<span id="L97" class="LineNr"> 97 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L98" class="LineNr"> 98 </span> 55/push-ebp
<span id="L99" class="LineNr"> 99 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L100" class="LineNr">100 </span> <span class="subxComment">#</span>
<span id="L101" class="LineNr">101 </span> c7 0/subop/copy *<span class="SpecialChar"><a href='315stack-debug.subx.html#L121'>Really-debug-print</a></span> 1/imm32/true
<span id="L102" class="LineNr">102 </span><span class="Constant">$turn-on-debug-print:end</span>:
<span id="L103" class="LineNr">103 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L104" class="LineNr">104 </span> 89/&lt;- %esp 5/r32/ebp
<span id="L105" class="LineNr">105 </span> 5d/pop-to-ebp
<span id="L106" class="LineNr">106 </span> c3/return
<span id="L107" class="LineNr">107 </span>
<span id="L108" class="LineNr">108 </span><span class="subxFunction">turn-off-debug-print</span>:
<span id="L109" class="LineNr">109 </span> <span class="subxS1Comment"># . prologue</span>
<span id="L110" class="LineNr">110 </span> 55/push-ebp
<span id="L111" class="LineNr">111 </span> 89/&lt;- %ebp 4/r32/esp
<span id="L112" class="LineNr">112 </span> <span class="subxComment">#</span>
<span id="L113" class="LineNr">113 </span> c7 0/subop/copy *<span class="SpecialChar"><a href='315stack-debug.subx.html#L121'>Really-debug-print</a></span> 0/imm32/false
<span id="L114" class="LineNr">114 </span><span class="Constant">$turn-off-debug-print:end</span>:
<span id="L115" class="LineNr">115 </span> <span class="subxS1Comment"># . epilogue</span>
<span id="L116" class="LineNr">116 </span> 89/&lt;- %esp 5/r32/ebp
<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>== data
<span id="L121" class="LineNr">121 </span><span class="SpecialChar">Really-debug-print</span>:
<span id="L122" class="LineNr">122 </span> 0/imm32/false
<span id="L123" class="LineNr">123 </span><span class="CommentedCode">#? 1/imm32/true</span>
</pre>
</body>
</html>

134
html/400.mu.html generated
View File

@ -82,71 +82,75 @@ if ('onhashchange' in window) {
<span id="L27" class="LineNr">27 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L5'>check-stack</a>
<span id="L28" class="LineNr">28 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L26'>show-stack-state</a>
<span id="L29" class="LineNr">29 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L56'>debug-print</a> x: (addr array byte), fg: int, bg: int
<span id="L30" class="LineNr">30 </span>
<span id="L31" class="LineNr">31 </span><span class="muComment"># streams</span>
<span id="L32" class="LineNr">32 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L20'>clear-stream</a> f: (addr stream _)
<span id="L33" class="LineNr">33 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L59'>rewind-stream</a> f: (addr stream _)
<span id="L34" class="LineNr">34 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L9'>stream-data-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L35" class="LineNr">35 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L194'>check-stream-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L36" class="LineNr">36 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L230'>next-stream-line-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L37" class="LineNr">37 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L565'>check-next-stream-line-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L38" class="LineNr">38 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L11'>write</a> f: (addr stream byte), s: (addr array byte)
<span id="L39" class="LineNr">39 </span><span class="PreProc">sig</span> <a href='113write-stream.subx.html#L8'>write-stream</a> f: (addr stream byte), s: (addr stream byte)
<span id="L40" class="LineNr">40 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L13'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L41" class="LineNr">41 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L12'>append-byte</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L42" class="LineNr">42 </span><span class="muComment">#sig to-hex-char in/eax: int -&gt; out/eax: int</span>
<span id="L43" class="LineNr">43 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L21'>append-byte-hex</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L44" class="LineNr">44 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L92'>write-int32-hex</a> f: (addr stream byte), n: int
<span id="L45" class="LineNr">45 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L123'>write-int32-hex-bits</a> f: (addr stream byte), n: int, bits: int
<span id="L46" class="LineNr">46 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L9'>hex-int?</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L47" class="LineNr">47 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L354'>parse-hex-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L48" class="LineNr">48 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L387'>parse-hex-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L49" class="LineNr">49 </span><span class="muComment">#sig parse-hex-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L50" class="LineNr">50 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L701'>hex-digit?</a> c: byte<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L51" class="LineNr">51 </span><span class="muComment">#sig from-hex-char in/eax: byte -&gt; out/eax: nibble</span>
<span id="L52" class="LineNr">52 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L23'>parse-decimal-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L53" class="LineNr">53 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L4'>parse-decimal-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L54" class="LineNr">54 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> in: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L55" class="LineNr">55 </span><span class="muComment">#sig parse-decimal-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L56" class="LineNr">56 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L57" class="LineNr">57 </span><span class="muComment">#sig allocate ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L58" class="LineNr">58 </span><span class="muComment">#sig allocate-raw ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L59" class="LineNr">59 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L226'>lookup</a> h: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: (addr _T)
<span id="L60" class="LineNr">60 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L424'>handle-equal?</a> a: (handle _T), b: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L61" class="LineNr">61 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L455'>copy-handle</a> src: (handle _T), dest: (addr handle _T)
<span id="L62" class="LineNr">62 </span><span class="muComment">#sig allocate-region ad: (addr allocation-descriptor), n: int, out: (addr handle allocation-descriptor)</span>
<span id="L63" class="LineNr">63 </span><span class="muComment">#sig allocate-array ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L64" class="LineNr">64 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L669'>copy-array</a> ad: (addr allocation-descriptor), src: (addr array _T), out: (addr handle array _T)
<span id="L65" class="LineNr">65 </span><span class="muComment">#sig zero-out start: (addr byte), size: int</span>
<span id="L66" class="LineNr">66 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L9'>slice-empty?</a> s: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L67" class="LineNr">67 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L120'>slice-equal?</a> s: (addr slice), p: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L68" class="LineNr">68 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L487'>slice-starts-with?</a> s: (addr slice), head: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L69" class="LineNr">69 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L793'>write-slice</a> out: (addr stream byte), s: (addr slice)
<span id="L70" class="LineNr">70 </span><span class="muComment"># bad name alert</span>
<span id="L71" class="LineNr">71 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L901'>slice-to-string</a> ad: (addr allocation-descriptor), in: (addr slice), out: (addr handle array byte)
<span id="L72" class="LineNr">72 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L8'>write-int32-decimal</a> out: (addr stream byte), n: int
<span id="L73" class="LineNr">73 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L299'>decimal-digit?</a> c: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L74" class="LineNr">74 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L398'>to-decimal-digit</a> in: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L75" class="LineNr">75 </span><span class="muComment"># bad name alert</span>
<span id="L76" class="LineNr">76 </span><span class="muComment"># next-word really tokenizes</span>
<span id="L77" class="LineNr">77 </span><span class="muComment"># next-raw-word really reads whitespace-separated words</span>
<span id="L78" class="LineNr">78 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L11'>next-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># skips '#' comments</span>
<span id="L79" class="LineNr">79 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L306'>next-raw-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># does not skip '#' comments</span>
<span id="L80" class="LineNr">80 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L81" class="LineNr">81 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L30'>stream-full?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L82" class="LineNr">82 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L60'>stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L83" class="LineNr">83 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L120'>unquote-stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L84" class="LineNr">84 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L160'>stream-first</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L85" class="LineNr">85 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L187'>stream-final</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L86" class="LineNr">86 </span>
<span id="L87" class="LineNr">87 </span><span class="muComment">#sig copy-bytes src: (addr byte), dest: (addr byte), n: int</span>
<span id="L88" class="LineNr">88 </span><span class="PreProc">sig</span> <a href='312copy.subx.html#L3'>copy-array-object</a> src: (addr array _), dest-ah: (addr handle array _)
<span id="L89" class="LineNr">89 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L5'>array-equal?</a> a: (addr array int), b: (addr array int)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L90" class="LineNr">90 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L368'>parse-array-of-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L91" class="LineNr">91 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L623'>parse-array-of-decimal-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L92" class="LineNr">92 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L382'>check-array-equal</a> a: (addr array int), expected: (addr string), msg: (addr string)
<span id="L93" class="LineNr">93 </span>
<span id="L94" class="LineNr">94 </span><span class="PreProc">sig</span> <a href='314divide.subx.html#L3'>integer-divide</a> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int, _/<span class="Constant">edx</span>: int
<span id="L30" class="LineNr">30 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L84'>debug-print?</a><span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L31" class="LineNr">31 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L96'>turn-on-debug-print</a>
<span id="L32" class="LineNr">32 </span><span class="PreProc">sig</span> <a href='315stack-debug.subx.html#L108'>turn-off-debug-print</a>
<span id="L33" class="LineNr">33 </span>
<span id="L34" class="LineNr">34 </span><span class="muComment"># streams</span>
<span id="L35" class="LineNr">35 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L20'>clear-stream</a> f: (addr stream _)
<span id="L36" class="LineNr">36 </span><span class="PreProc">sig</span> <a href='106stream.subx.html#L59'>rewind-stream</a> f: (addr stream _)
<span id="L37" class="LineNr">37 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L9'>stream-data-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L38" class="LineNr">38 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L217'>streams-data-equal?</a> f: (addr stream byte), s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L39" class="LineNr">39 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L194'>check-stream-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L40" class="LineNr">40 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L230'>next-stream-line-equal?</a> f: (addr stream byte), s: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L41" class="LineNr">41 </span><span class="PreProc">sig</span> <a href='109stream-equal.subx.html#L565'>check-next-stream-line-equal</a> f: (addr stream byte), s: (addr array byte), msg: (addr array byte)
<span id="L42" class="LineNr">42 </span><span class="PreProc">sig</span> <a href='108write.subx.html#L11'>write</a> f: (addr stream byte), s: (addr array byte)
<span id="L43" class="LineNr">43 </span><span class="PreProc">sig</span> <a href='113write-stream.subx.html#L8'>write-stream</a> f: (addr stream byte), s: (addr stream byte)
<span id="L44" class="LineNr">44 </span><span class="PreProc">sig</span> <a href='112read-byte.subx.html#L13'>read-byte</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L45" class="LineNr">45 </span><span class="PreProc">sig</span> <a href='115write-byte.subx.html#L12'>append-byte</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L46" class="LineNr">46 </span><span class="muComment">#sig to-hex-char in/eax: int -&gt; out/eax: int</span>
<span id="L47" class="LineNr">47 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L21'>append-byte-hex</a> f: (addr stream byte), n: int <span class="muComment"># really just a byte, but I want to pass in literal numbers</span>
<span id="L48" class="LineNr">48 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L92'>write-int32-hex</a> f: (addr stream byte), n: int
<span id="L49" class="LineNr">49 </span><span class="PreProc">sig</span> <a href='117write-int-hex.subx.html#L123'>write-int32-hex-bits</a> f: (addr stream byte), n: int, bits: int
<span id="L50" class="LineNr">50 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L9'>hex-int?</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L51" class="LineNr">51 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L354'>parse-hex-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L52" class="LineNr">52 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L387'>parse-hex-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L53" class="LineNr">53 </span><span class="muComment">#sig parse-hex-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L54" class="LineNr">54 </span><span class="PreProc">sig</span> <a href='118parse-hex-int.subx.html#L701'>hex-digit?</a> c: byte<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L55" class="LineNr">55 </span><span class="muComment">#sig from-hex-char in/eax: byte -&gt; out/eax: nibble</span>
<span id="L56" class="LineNr">56 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L23'>parse-decimal-int</a> in: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L57" class="LineNr">57 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L4'>parse-decimal-int-from-slice</a> in: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L58" class="LineNr">58 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L48'>parse-decimal-int-from-stream</a> in: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L59" class="LineNr">59 </span><span class="muComment">#sig parse-decimal-int-helper start: (addr byte), end: (addr byte) -&gt; _/eax: int</span>
<span id="L60" class="LineNr">60 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L61" class="LineNr">61 </span><span class="muComment">#sig allocate ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L62" class="LineNr">62 </span><span class="muComment">#sig allocate-raw ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L63" class="LineNr">63 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L226'>lookup</a> h: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: (addr _T)
<span id="L64" class="LineNr">64 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L424'>handle-equal?</a> a: (handle _T), b: (handle _T)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L65" class="LineNr">65 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L455'>copy-handle</a> src: (handle _T), dest: (addr handle _T)
<span id="L66" class="LineNr">66 </span><span class="muComment">#sig allocate-region ad: (addr allocation-descriptor), n: int, out: (addr handle allocation-descriptor)</span>
<span id="L67" class="LineNr">67 </span><span class="muComment">#sig allocate-array ad: (addr allocation-descriptor), n: int, out: (addr handle _)</span>
<span id="L68" class="LineNr">68 </span><span class="PreProc">sig</span> <a href='120allocate.subx.html#L669'>copy-array</a> ad: (addr allocation-descriptor), src: (addr array _T), out: (addr handle array _T)
<span id="L69" class="LineNr">69 </span><span class="muComment">#sig zero-out start: (addr byte), size: int</span>
<span id="L70" class="LineNr">70 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L9'>slice-empty?</a> s: (addr slice)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L71" class="LineNr">71 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L120'>slice-equal?</a> s: (addr slice), p: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L72" class="LineNr">72 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L487'>slice-starts-with?</a> s: (addr slice), head: (addr array byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L73" class="LineNr">73 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L793'>write-slice</a> out: (addr stream byte), s: (addr slice)
<span id="L74" class="LineNr">74 </span><span class="muComment"># bad name alert</span>
<span id="L75" class="LineNr">75 </span><span class="PreProc">sig</span> <a href='123slice.subx.html#L901'>slice-to-string</a> ad: (addr allocation-descriptor), in: (addr slice), out: (addr handle array byte)
<span id="L76" class="LineNr">76 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L8'>write-int32-decimal</a> out: (addr stream byte), n: int
<span id="L77" class="LineNr">77 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L299'>decimal-digit?</a> c: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L78" class="LineNr">78 </span><span class="PreProc">sig</span> <a href='126write-int-decimal.subx.html#L398'>to-decimal-digit</a> in: grapheme<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int
<span id="L79" class="LineNr">79 </span><span class="muComment"># bad name alert</span>
<span id="L80" class="LineNr">80 </span><span class="muComment"># next-word really tokenizes</span>
<span id="L81" class="LineNr">81 </span><span class="muComment"># next-raw-word really reads whitespace-separated words</span>
<span id="L82" class="LineNr">82 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L11'>next-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># skips '#' comments</span>
<span id="L83" class="LineNr">83 </span><span class="PreProc">sig</span> <a href='127next-word.subx.html#L306'>next-raw-word</a> line: (addr stream byte), out: (addr slice) <span class="muComment"># does not skip '#' comments</span>
<span id="L84" class="LineNr">84 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L6'>stream-empty?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L85" class="LineNr">85 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L30'>stream-full?</a> s: (addr stream _)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L86" class="LineNr">86 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L60'>stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L87" class="LineNr">87 </span><span class="PreProc">sig</span> <a href='310copy-bytes.subx.html#L120'>unquote-stream-to-array</a> in: (addr stream _), out: (addr handle array _)
<span id="L88" class="LineNr">88 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L160'>stream-first</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L89" class="LineNr">89 </span><span class="PreProc">sig</span> <a href='309stream.subx.html#L187'>stream-final</a> s: (addr stream byte)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: byte
<span id="L90" class="LineNr">90 </span>
<span id="L91" class="LineNr">91 </span><span class="muComment">#sig copy-bytes src: (addr byte), dest: (addr byte), n: int</span>
<span id="L92" class="LineNr">92 </span><span class="PreProc">sig</span> <a href='312copy.subx.html#L3'>copy-array-object</a> src: (addr array _), dest-ah: (addr handle array _)
<span id="L93" class="LineNr">93 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L5'>array-equal?</a> a: (addr array int), b: (addr array int)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean
<span id="L94" class="LineNr">94 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L368'>parse-array-of-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L95" class="LineNr">95 </span><span class="PreProc">sig</span> <a href='311decimal-int.subx.html#L623'>parse-array-of-decimal-ints</a> s: (addr array byte), out: (addr handle array int)
<span id="L96" class="LineNr">96 </span><span class="PreProc">sig</span> <a href='301array-equal.subx.html#L382'>check-array-equal</a> a: (addr array int), expected: (addr string), msg: (addr string)
<span id="L97" class="LineNr">97 </span>
<span id="L98" class="LineNr">98 </span><span class="PreProc">sig</span> <a href='314divide.subx.html#L3'>integer-divide</a> a: int, b: int<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: int, _/<span class="Constant">edx</span>: int
</pre>
</body>
</html>

71179
html/linux/mu.subx.html generated

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

2961
html/shell/global.mu.html generated

File diff suppressed because it is too large Load Diff

View File

@ -70,7 +70,7 @@ if ('onhashchange' in window) {
<span id="L11" class="LineNr"> 11 </span> <a href='main.mu.html#L73'>load-state</a> data-disk, <a href='sandbox.mu.html#L1'>sandbox</a>, globals
<span id="L12" class="LineNr"> 12 </span> $main:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L13" class="LineNr"> 13 </span> <a href='global.mu.html#L116'>render-globals</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, globals, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x40</span>/xmax, <span class="Constant">0x2f</span>/screen-height-without-menu
<span id="L14" class="LineNr"> 14 </span> <a href='sandbox.mu.html#L73'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x40</span>/x, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/screen-width, <span class="Constant">0x2f</span>/screen-height-without-menu, globals
<span id="L14" class="LineNr"> 14 </span> <a href='sandbox.mu.html#L73'>render-sandbox</a> <a href='../500fake-screen.mu.html#L14'>screen</a>, <a href='sandbox.mu.html#L1'>sandbox</a>, <span class="Constant">0x40</span>/sandbox-left-margin, <span class="Constant">0</span>/y, <span class="Constant">0x80</span>/screen-width, <span class="Constant">0x2f</span>/screen-height-without-menu
<span id="L15" class="LineNr"> 15 </span> <span class="Delimiter">{</span>
<span id="L16" class="LineNr"> 16 </span> <span class="PreProc">var</span> key/<span class="Constant">eax</span>: byte <span class="Special">&lt;-</span> <a href='../102keyboard.subx.html#L21'>read-key</a> keyboard
<span id="L17" class="LineNr"> 17 </span> compare key, <span class="Constant">0</span>
@ -122,7 +122,7 @@ if ('onhashchange' in window) {
<span id="L63" class="LineNr"> 63 </span> <span class="PreProc">loop</span> $main:<span class="PreProc">loop</span>
<span id="L64" class="LineNr"> 64 </span> <span class="Delimiter">}</span>
<span id="L65" class="LineNr"> 65 </span> <span class="muComment"># no way to quit right now; just reboot</span>
<span id="L66" class="LineNr"> 66 </span> <a href='sandbox.mu.html#L534'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, key, globals, <a href='../500fake-screen.mu.html#L14'>screen</a>, keyboard, data-disk
<span id="L66" class="LineNr"> 66 </span> <a href='sandbox.mu.html#L550'>edit-sandbox</a> <a href='sandbox.mu.html#L1'>sandbox</a>, key, globals, data-disk, <a href='../500fake-screen.mu.html#L14'>screen</a>, <span class="Constant">1</span>/tweak-real-screen
<span id="L67" class="LineNr"> 67 </span> <span class="Delimiter">}</span>
<span id="L68" class="LineNr"> 68 </span> <span class="PreProc">loop</span>
<span id="L69" class="LineNr"> 69 </span> <span class="Delimiter">}</span>
@ -161,7 +161,7 @@ if ('onhashchange' in window) {
<span id="L102" class="LineNr">102 </span> <span class="PreProc">var</span> globals-literal/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *globals-literal-ah
<span id="L103" class="LineNr">103 </span> <span class="PreProc">var</span> globals-cell-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L104" class="LineNr">104 </span> <span class="PreProc">var</span> globals-cell-ah/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address globals-cell-storage
<span id="L105" class="LineNr">105 </span> <a href='evaluate.mu.html#L463'>lookup-symbol</a> globals-literal, globals-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L105" class="LineNr">105 </span> <a href='evaluate.mu.html#L558'>lookup-symbol</a> globals-literal, globals-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L106" class="LineNr">106 </span> <span class="PreProc">var</span> globals-cell/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *globals-cell-ah
<span id="L107" class="LineNr">107 </span> <span class="Delimiter">{</span>
<span id="L108" class="LineNr">108 </span> compare globals-cell, <span class="Constant">0</span>
@ -175,7 +175,7 @@ if ('onhashchange' in window) {
<span id="L116" class="LineNr">116 </span> <span class="PreProc">var</span> sandbox-literal/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *sandbox-literal-ah
<span id="L117" class="LineNr">117 </span> <span class="PreProc">var</span> sandbox-cell-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L118" class="LineNr">118 </span> <span class="PreProc">var</span> sandbox-cell-ah/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address sandbox-cell-storage
<span id="L119" class="LineNr">119 </span> <a href='evaluate.mu.html#L463'>lookup-symbol</a> sandbox-literal, sandbox-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L119" class="LineNr">119 </span> <a href='evaluate.mu.html#L558'>lookup-symbol</a> sandbox-literal, sandbox-cell-ah, *initial-root, <span class="Constant">0</span>/no-globals, <span class="Constant">0</span>/no-trace, <span class="Constant">0</span>/no-screen, <span class="Constant">0</span>/no-keyboard
<span id="L120" class="LineNr">120 </span> <span class="PreProc">var</span> sandbox-cell/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *sandbox-cell-ah
<span id="L121" class="LineNr">121 </span> <span class="Delimiter">{</span>
<span id="L122" class="LineNr">122 </span> compare sandbox-cell, <span class="Constant">0</span>

View File

@ -62,7 +62,7 @@ if ('onhashchange' in window) {
<span id="L4" class="LineNr"> 4 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L5" class="LineNr"> 5 </span> <span class="Delimiter">{</span>
<span id="L6" class="LineNr"> 6 </span> <span class="PreProc">break-if-=</span>
<span id="L7" class="LineNr"> 7 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;nothing to parse&quot;</span>
<span id="L7" class="LineNr"> 7 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;nothing to parse&quot;</span>
<span id="L8" class="LineNr"> 8 </span> <span class="PreProc">return</span>
<span id="L9" class="LineNr"> 9 </span> <span class="Delimiter">}</span>
<span id="L10" class="LineNr"> 10 </span> <span class="PreProc">var</span> close-paren?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> copy <span class="Constant">0</span>/false
@ -71,14 +71,14 @@ if ('onhashchange' in window) {
<span id="L13" class="LineNr"> 13 </span> <span class="Delimiter">{</span>
<span id="L14" class="LineNr"> 14 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L15" class="LineNr"> 15 </span> <span class="PreProc">break-if-=</span>
<span id="L16" class="LineNr"> 16 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;')' is not a valid expression&quot;</span>
<span id="L16" class="LineNr"> 16 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;')' is not a valid expression&quot;</span>
<span id="L17" class="LineNr"> 17 </span> <span class="PreProc">return</span>
<span id="L18" class="LineNr"> 18 </span> <span class="Delimiter">}</span>
<span id="L19" class="LineNr"> 19 </span> <span class="Delimiter">{</span>
<span id="L20" class="LineNr"> 20 </span> <span class="PreProc">var</span> empty?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L21" class="LineNr"> 21 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L22" class="LineNr"> 22 </span> <span class="PreProc">break-if-!=</span>
<span id="L23" class="LineNr"> 23 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;unexpected tokens at end; only type in a single expression at a time&quot;</span>
<span id="L23" class="LineNr"> 23 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;unexpected tokens at end; only type in a single expression at a time&quot;</span>
<span id="L24" class="LineNr"> 24 </span> <span class="Delimiter">}</span>
<span id="L25" class="LineNr"> 25 </span><span class="Delimiter">}</span>
<span id="L26" class="LineNr"> 26 </span>
@ -86,15 +86,15 @@ if ('onhashchange' in window) {
<span id="L28" class="LineNr"> 28 </span><span class="muComment"># unmatched close-paren encountered?</span>
<span id="L29" class="LineNr"> 29 </span><span class="muComment"># dot encountered? (only used internally by recursive calls)</span>
<span id="L30" class="LineNr"> 30 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L30'>parse-sexpression</a></span> tokens: (addr stream <a href='cell.mu.html#L1'>cell</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean, _/<span class="Constant">ecx</span>: boolean <span class="Delimiter">{</span>
<span id="L31" class="LineNr"> 31 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;parse&quot;</span>
<span id="L32" class="LineNr"> 32 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L31" class="LineNr"> 31 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;parse&quot;</span>
<span id="L32" class="LineNr"> 32 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L33" class="LineNr"> 33 </span> <span class="PreProc">var</span> curr-token-storage: <a href='cell.mu.html#L1'>cell</a>
<span id="L34" class="LineNr"> 34 </span> <span class="PreProc">var</span> curr-token/<span class="Constant">ecx</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address curr-token-storage
<span id="L35" class="LineNr"> 35 </span> <span class="PreProc">var</span> empty?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../309stream.subx.html#L6'>stream-empty?</a> tokens
<span id="L36" class="LineNr"> 36 </span> compare empty?, <span class="Constant">0</span>/false
<span id="L37" class="LineNr"> 37 </span> <span class="Delimiter">{</span>
<span id="L38" class="LineNr"> 38 </span> <span class="PreProc">break-if-=</span>
<span id="L39" class="LineNr"> 39 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;end of stream; never found a balancing ')'&quot;</span>
<span id="L39" class="LineNr"> 39 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;end of stream; never found a balancing ')'&quot;</span>
<span id="L40" class="LineNr"> 40 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L41" class="LineNr"> 41 </span> <span class="Delimiter">}</span>
<span id="L42" class="LineNr"> 42 </span> <a href='../309stream.subx.html#L107'>read-from-stream</a> tokens, curr-token
@ -120,7 +120,7 @@ if ('onhashchange' in window) {
<span id="L62" class="LineNr"> 62 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L63" class="LineNr"> 63 </span> <span class="Delimiter">{</span>
<span id="L64" class="LineNr"> 64 </span> <span class="PreProc">break-if-=</span>
<span id="L65" class="LineNr"> 65 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L65" class="LineNr"> 65 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L66" class="LineNr"> 66 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">1</span>/true
<span id="L67" class="LineNr"> 67 </span> <span class="Delimiter">}</span>
<span id="L68" class="LineNr"> 68 </span> <span class="muComment"># not bracket -&gt; parse atom</span>
@ -147,7 +147,7 @@ if ('onhashchange' in window) {
<span id="L89" class="LineNr"> 89 </span> <span class="Delimiter">{</span>
<span id="L90" class="LineNr"> 90 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L91" class="LineNr"> 91 </span> <span class="PreProc">break-if-=</span>
<span id="L92" class="LineNr"> 92 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;'.' cannot be at the start of a list&quot;</span>
<span id="L92" class="LineNr"> 92 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;'.' cannot be at the start of a list&quot;</span>
<span id="L93" class="LineNr"> 93 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, dot?
<span id="L94" class="LineNr"> 94 </span> <span class="Delimiter">}</span>
<span id="L95" class="LineNr"> 95 </span> compare close-paren?, <span class="Constant">0</span>/false
@ -186,7 +186,7 @@ if ('onhashchange' in window) {
<span id="L128" class="LineNr">128 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L129" class="LineNr">129 </span> <span class="Delimiter">{</span>
<span id="L130" class="LineNr">130 </span> <span class="PreProc">break-if-=</span>
<span id="L131" class="LineNr">131 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L131" class="LineNr">131 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L132" class="LineNr">132 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true, <span class="Constant">0</span>/false
<span id="L133" class="LineNr">133 </span> <span class="Delimiter">}</span>
<span id="L134" class="LineNr">134 </span> <span class="muComment"># otherwise abort</span>
@ -199,12 +199,12 @@ if ('onhashchange' in window) {
<span id="L141" class="LineNr">141 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, curr-token-data
<span id="L142" class="LineNr">142 </span> trace trace, <span class="Constant">&quot;error&quot;</span>, stream
<span id="L143" class="LineNr">143 </span> <span class="Delimiter">}</span>
<span id="L144" class="LineNr">144 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L144" class="LineNr">144 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L145" class="LineNr">145 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false, <span class="Constant">0</span>/false
<span id="L146" class="LineNr">146 </span><span class="Delimiter">}</span>
<span id="L147" class="LineNr">147 </span>
<span id="L148" class="LineNr">148 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='parse.mu.html#L148'>parse-atom</a></span> _curr-token: (addr <a href='cell.mu.html#L1'>cell</a>), _out: (addr handle <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L149" class="LineNr">149 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;parse atom&quot;</span>
<span id="L149" class="LineNr">149 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;parse atom&quot;</span>
<span id="L150" class="LineNr">150 </span> <span class="PreProc">var</span> curr-token/<span class="Constant">ecx</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _curr-token
<span id="L151" class="LineNr">151 </span> <span class="PreProc">var</span> curr-token-data-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get curr-token, text-data
<span id="L152" class="LineNr">152 </span> <span class="PreProc">var</span> _curr-token-data/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *curr-token-data-ah
@ -228,7 +228,7 @@ if ('onhashchange' in window) {
<span id="L170" class="LineNr">170 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L171" class="LineNr">171 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L172" class="LineNr">172 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L173" class="LineNr">173 </span> <a href='print.mu.html#L134'>print-number</a> out-addr, stream, <span class="Constant">0</span>/no-trace
<span id="L173" class="LineNr">173 </span> <a href='print.mu.html#L141'>print-number</a> out-addr, stream, <span class="Constant">0</span>/no-trace
<span id="L174" class="LineNr">174 </span> trace trace, <span class="Constant">&quot;read&quot;</span>, stream
<span id="L175" class="LineNr">175 </span> <span class="Delimiter">}</span>
<span id="L176" class="LineNr">176 </span> <span class="PreProc">return</span>
@ -245,7 +245,7 @@ if ('onhashchange' in window) {
<span id="L187" class="LineNr">187 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L188" class="LineNr">188 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L189" class="LineNr">189 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; symbol &quot;</span>
<span id="L190" class="LineNr">190 </span> <a href='print.mu.html#L94'>print-symbol</a> out-addr, stream, <span class="Constant">0</span>/no-trace
<span id="L190" class="LineNr">190 </span> <a href='print.mu.html#L101'>print-symbol</a> out-addr, stream, <span class="Constant">0</span>/no-trace
<span id="L191" class="LineNr">191 </span> trace trace, <span class="Constant">&quot;read&quot;</span>, stream
<span id="L192" class="LineNr">192 </span> <span class="Delimiter">}</span>
<span id="L193" class="LineNr">193 </span><span class="Delimiter">}</span>
@ -258,13 +258,13 @@ if ('onhashchange' in window) {
<span id="L200" class="LineNr">200 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L201" class="LineNr">201 </span> <span class="Delimiter">{</span>
<span id="L202" class="LineNr">202 </span> <span class="PreProc">break-if-=</span>
<span id="L203" class="LineNr">203 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;'. )' makes no sense&quot;</span>
<span id="L203" class="LineNr">203 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;'. )' makes no sense&quot;</span>
<span id="L204" class="LineNr">204 </span> <span class="PreProc">return</span>
<span id="L205" class="LineNr">205 </span> <span class="Delimiter">}</span>
<span id="L206" class="LineNr">206 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L207" class="LineNr">207 </span> <span class="Delimiter">{</span>
<span id="L208" class="LineNr">208 </span> <span class="PreProc">break-if-=</span>
<span id="L209" class="LineNr">209 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;'. .' makes no sense&quot;</span>
<span id="L209" class="LineNr">209 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;'. .' makes no sense&quot;</span>
<span id="L210" class="LineNr">210 </span> <span class="PreProc">return</span>
<span id="L211" class="LineNr">211 </span> <span class="Delimiter">}</span>
<span id="L212" class="LineNr">212 </span> <span class="muComment">#</span>
@ -274,13 +274,13 @@ if ('onhashchange' in window) {
<span id="L216" class="LineNr">216 </span> compare close-paren?, <span class="Constant">0</span>/false
<span id="L217" class="LineNr">217 </span> <span class="Delimiter">{</span>
<span id="L218" class="LineNr">218 </span> <span class="PreProc">break-if-!=</span>
<span id="L219" class="LineNr">219 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;cannot have multiple expressions between '.' and ')'&quot;</span>
<span id="L219" class="LineNr">219 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;cannot have multiple expressions between '.' and ')'&quot;</span>
<span id="L220" class="LineNr">220 </span> <span class="PreProc">return</span>
<span id="L221" class="LineNr">221 </span> <span class="Delimiter">}</span>
<span id="L222" class="LineNr">222 </span> compare dot?, <span class="Constant">0</span>/false
<span id="L223" class="LineNr">223 </span> <span class="Delimiter">{</span>
<span id="L224" class="LineNr">224 </span> <span class="PreProc">break-if-=</span>
<span id="L225" class="LineNr">225 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;cannot have two dots in a single list&quot;</span>
<span id="L225" class="LineNr">225 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;cannot have two dots in a single list&quot;</span>
<span id="L226" class="LineNr">226 </span> <span class="PreProc">return</span>
<span id="L227" class="LineNr">227 </span> <span class="Delimiter">}</span>
<span id="L228" class="LineNr">228 </span><span class="Delimiter">}</span>

561
html/shell/print.mu.html generated
View File

@ -59,59 +59,59 @@ if ('onhashchange' in window) {
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L1'>print-cell</a></span> _in: (addr handle <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L2" class="LineNr"> 2 </span> <a href='../315stack-debug.subx.html#L5'>check-stack</a>
<span id="L3" class="LineNr"> 3 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;print&quot;</span>
<span id="L4" class="LineNr"> 4 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L3" class="LineNr"> 3 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;print&quot;</span>
<span id="L4" class="LineNr"> 4 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L5" class="LineNr"> 5 </span> <span class="PreProc">var</span> in/<span class="Constant">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L6" class="LineNr"> 6 </span> <span class="PreProc">var</span> in-addr/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *in
<span id="L7" class="LineNr"> 7 </span> <span class="Delimiter">{</span>
<span id="L8" class="LineNr"> 8 </span> compare in-addr, <span class="Constant">0</span>
<span id="L9" class="LineNr"> 9 </span> <span class="PreProc">break-if-!=</span>
<span id="L10" class="LineNr"> 10 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;NULL&quot;</span>
<span id="L11" class="LineNr"> 11 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L11" class="LineNr"> 11 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L12" class="LineNr"> 12 </span> <span class="PreProc">return</span>
<span id="L13" class="LineNr"> 13 </span> <span class="Delimiter">}</span>
<span id="L14" class="LineNr"> 14 </span> <span class="Delimiter">{</span>
<span id="L15" class="LineNr"> 15 </span> <span class="PreProc">var</span> <a href='print.mu.html#L187'>nil?</a>/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L187'>nil?</a> in-addr
<span id="L16" class="LineNr"> 16 </span> compare <a href='print.mu.html#L187'>nil?</a>, <span class="Constant">0</span>/false
<span id="L15" class="LineNr"> 15 </span> <span class="PreProc">var</span> <a href='print.mu.html#L194'>nil?</a>/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L194'>nil?</a> in-addr
<span id="L16" class="LineNr"> 16 </span> compare <a href='print.mu.html#L194'>nil?</a>, <span class="Constant">0</span>/false
<span id="L17" class="LineNr"> 17 </span> <span class="PreProc">break-if-=</span>
<span id="L18" class="LineNr"> 18 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;()&quot;</span>
<span id="L19" class="LineNr"> 19 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L19" class="LineNr"> 19 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L20" class="LineNr"> 20 </span> <span class="PreProc">return</span>
<span id="L21" class="LineNr"> 21 </span> <span class="Delimiter">}</span>
<span id="L22" class="LineNr"> 22 </span> <span class="PreProc">var</span> in-type/<span class="Constant">ecx</span>: (addr int) <span class="Special">&lt;-</span> get in-addr, <span class="PreProc">type</span>
<span id="L23" class="LineNr"> 23 </span> compare *in-type, <span class="Constant">0</span>/pair
<span id="L24" class="LineNr"> 24 </span> <span class="Delimiter">{</span>
<span id="L25" class="LineNr"> 25 </span> <span class="PreProc">break-if-!=</span>
<span id="L26" class="LineNr"> 26 </span> <a href='print.mu.html#L148'>print-list</a> in-addr, out, trace
<span id="L27" class="LineNr"> 27 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L26" class="LineNr"> 26 </span> <a href='print.mu.html#L155'>print-list</a> in-addr, out, trace
<span id="L27" class="LineNr"> 27 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L28" class="LineNr"> 28 </span> <span class="PreProc">return</span>
<span id="L29" class="LineNr"> 29 </span> <span class="Delimiter">}</span>
<span id="L30" class="LineNr"> 30 </span> compare *in-type, <span class="Constant">1</span>/number
<span id="L31" class="LineNr"> 31 </span> <span class="Delimiter">{</span>
<span id="L32" class="LineNr"> 32 </span> <span class="PreProc">break-if-!=</span>
<span id="L33" class="LineNr"> 33 </span> <a href='print.mu.html#L134'>print-number</a> in-addr, out, trace
<span id="L34" class="LineNr"> 34 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L33" class="LineNr"> 33 </span> <a href='print.mu.html#L141'>print-number</a> in-addr, out, trace
<span id="L34" class="LineNr"> 34 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L35" class="LineNr"> 35 </span> <span class="PreProc">return</span>
<span id="L36" class="LineNr"> 36 </span> <span class="Delimiter">}</span>
<span id="L37" class="LineNr"> 37 </span> compare *in-type, <span class="Constant">2</span>/symbol
<span id="L38" class="LineNr"> 38 </span> <span class="Delimiter">{</span>
<span id="L39" class="LineNr"> 39 </span> <span class="PreProc">break-if-!=</span>
<span id="L40" class="LineNr"> 40 </span> <a href='print.mu.html#L94'>print-symbol</a> in-addr, out, trace
<span id="L41" class="LineNr"> 41 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L40" class="LineNr"> 40 </span> <a href='print.mu.html#L101'>print-symbol</a> in-addr, out, trace
<span id="L41" class="LineNr"> 41 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L42" class="LineNr"> 42 </span> <span class="PreProc">return</span>
<span id="L43" class="LineNr"> 43 </span> <span class="Delimiter">}</span>
<span id="L44" class="LineNr"> 44 </span> compare *in-type, <span class="Constant">3</span>/stream
<span id="L45" class="LineNr"> 45 </span> <span class="Delimiter">{</span>
<span id="L46" class="LineNr"> 46 </span> <span class="PreProc">break-if-!=</span>
<span id="L47" class="LineNr"> 47 </span> <a href='print.mu.html#L113'>print-stream</a> in-addr, out, trace
<span id="L48" class="LineNr"> 48 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L47" class="LineNr"> 47 </span> <a href='print.mu.html#L120'>print-stream</a> in-addr, out, trace
<span id="L48" class="LineNr"> 48 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L49" class="LineNr"> 49 </span> <span class="PreProc">return</span>
<span id="L50" class="LineNr"> 50 </span> <span class="Delimiter">}</span>
<span id="L51" class="LineNr"> 51 </span> compare *in-type, <span class="Constant">4</span>/primitive
<span id="L52" class="LineNr"> 52 </span> <span class="Delimiter">{</span>
<span id="L53" class="LineNr"> 53 </span> <span class="PreProc">break-if-!=</span>
<span id="L54" class="LineNr"> 54 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;[primitive]&quot;</span>
<span id="L55" class="LineNr"> 55 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L55" class="LineNr"> 55 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L56" class="LineNr"> 56 </span> <span class="PreProc">return</span>
<span id="L57" class="LineNr"> 57 </span> <span class="Delimiter">}</span>
<span id="L58" class="LineNr"> 58 </span> compare *in-type, <span class="Constant">5</span>/screen
@ -123,7 +123,7 @@ if ('onhashchange' in window) {
<span id="L64" class="LineNr"> 64 </span> <span class="PreProc">var</span> screen-addr/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy <a href='../500fake-screen.mu.html#L14'>screen</a>
<span id="L65" class="LineNr"> 65 </span> <a href='../117write-int-hex.subx.html#L92'>write-int32-hex</a> out, screen-addr
<span id="L66" class="LineNr"> 66 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;]&quot;</span>
<span id="L67" class="LineNr"> 67 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L67" class="LineNr"> 67 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L68" class="LineNr"> 68 </span> <span class="PreProc">return</span>
<span id="L69" class="LineNr"> 69 </span> <span class="Delimiter">}</span>
<span id="L70" class="LineNr"> 70 </span> compare *in-type, <span class="Constant">6</span>/keyboard
@ -135,14 +135,14 @@ if ('onhashchange' in window) {
<span id="L76" class="LineNr"> 76 </span> <span class="PreProc">var</span> keyboard-addr/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy keyboard
<span id="L77" class="LineNr"> 77 </span> <a href='../117write-int-hex.subx.html#L92'>write-int32-hex</a> out, keyboard-addr
<span id="L78" class="LineNr"> 78 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;]&quot;</span>
<span id="L79" class="LineNr"> 79 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L79" class="LineNr"> 79 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L80" class="LineNr"> 80 </span> <span class="PreProc">return</span>
<span id="L81" class="LineNr"> 81 </span> <span class="Delimiter">}</span>
<span id="L82" class="LineNr"> 82 </span><span class="Delimiter">}</span>
<span id="L83" class="LineNr"> 83 </span>
<span id="L84" class="LineNr"> 84 </span><span class="muComment"># debug helper</span>
<span id="L85" class="LineNr"> 85 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L85'>dump-cell</a></span> in-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Delimiter">{</span>
<span id="L86" class="LineNr"> 86 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L85" class="LineNr"> 85 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L85'>dump-cell-at-top-right</a></span> in-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Delimiter">{</span>
<span id="L86" class="LineNr"> 86 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x200</span>)
<span id="L87" class="LineNr"> 87 </span> <span class="PreProc">var</span> stream/<span class="Constant">edx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L88" class="LineNr"> 88 </span> <a href='print.mu.html#L1'>print-cell</a> in-ah, stream, <span class="Constant">0</span>/no-trace
<span id="L89" class="LineNr"> 89 </span> <span class="PreProc">var</span> d1/<span class="Constant">eax</span>: int <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
@ -150,265 +150,272 @@ if ('onhashchange' in window) {
<span id="L91" class="LineNr"> 91 </span> d1, d2 <span class="Special">&lt;-</span> <a href='../501draw-text.mu.html#L181'>draw-stream-wrapping-right-then-down</a> <span class="Constant">0</span>/screen, stream, <span class="Constant">0</span>/xmin, <span class="Constant">0</span>/ymin, <span class="Constant">0x80</span>/xmax, <span class="Constant">0x30</span>/ymax, <span class="Constant">0</span>/x, <span class="Constant">0</span>/y, <span class="Constant">7</span>/fg, <span class="Constant">0</span>/bg
<span id="L92" class="LineNr"> 92 </span><span class="Delimiter">}</span>
<span id="L93" class="LineNr"> 93 </span>
<span id="L94" class="LineNr"> 94 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L94'>print-symbol</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L95" class="LineNr"> 95 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;symbol&quot;</span>
<span id="L96" class="LineNr"> 96 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L97" class="LineNr"> 97 </span> <span class="PreProc">var</span> data-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get in, text-data
<span id="L98" class="LineNr"> 98 </span> <span class="PreProc">var</span> _data/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *data-ah
<span id="L99" class="LineNr"> 99 </span> <span class="PreProc">var</span> data/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _data
<span id="L100" class="LineNr">100 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L101" class="LineNr">101 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> out, data
<span id="L102" class="LineNr">102 </span> <span class="muComment"># trace</span>
<span id="L103" class="LineNr">103 </span> compare trace, <span class="Constant">0</span>
<span id="L104" class="LineNr">104 </span> <span class="PreProc">break-if-=</span>
<span id="L105" class="LineNr">105 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L106" class="LineNr">106 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L107" class="LineNr">107 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L108" class="LineNr">108 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; symbol &quot;</span>
<span id="L109" class="LineNr">109 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, data
<span id="L110" class="LineNr">110 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L111" class="LineNr">111 </span><span class="Delimiter">}</span>
<span id="L112" class="LineNr">112 </span>
<span id="L113" class="LineNr">113 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L113'>print-stream</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L114" class="LineNr">114 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;stream&quot;</span>
<span id="L115" class="LineNr">115 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L116" class="LineNr">116 </span> <span class="PreProc">var</span> data-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get in, text-data
<span id="L117" class="LineNr">117 </span> <span class="PreProc">var</span> _data/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *data-ah
<span id="L118" class="LineNr">118 </span> <span class="PreProc">var</span> data/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _data
<span id="L119" class="LineNr">119 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L120" class="LineNr">120 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;[&quot;</span>
<span id="L121" class="LineNr">121 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> out, data
<span id="L122" class="LineNr">122 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;]&quot;</span>
<span id="L123" class="LineNr">123 </span> <span class="muComment"># trace</span>
<span id="L124" class="LineNr">124 </span> compare trace, <span class="Constant">0</span>
<span id="L125" class="LineNr">125 </span> <span class="PreProc">break-if-=</span>
<span id="L94" class="LineNr"> 94 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L94'>dump-cell-from-cursor-over-full-screen</a></span> in-ah: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Delimiter">{</span>
<span id="L95" class="LineNr"> 95 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x200</span>)
<span id="L96" class="LineNr"> 96 </span> <span class="PreProc">var</span> stream/<span class="Constant">edx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L97" class="LineNr"> 97 </span> <a href='print.mu.html#L1'>print-cell</a> in-ah, stream, <span class="Constant">0</span>/no-trace
<span id="L98" class="LineNr"> 98 </span> <a href='../501draw-text.mu.html#L214'>draw-stream-wrapping-right-then-down-from-cursor-over-full-screen</a> <span class="Constant">0</span>/screen, stream, <span class="Constant">7</span>/fg, <span class="Constant">0</span>/bg
<span id="L99" class="LineNr"> 99 </span><span class="Delimiter">}</span>
<span id="L100" class="LineNr">100 </span>
<span id="L101" class="LineNr">101 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L101'>print-symbol</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L102" class="LineNr">102 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;symbol&quot;</span>
<span id="L103" class="LineNr">103 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L104" class="LineNr">104 </span> <span class="PreProc">var</span> data-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get in, text-data
<span id="L105" class="LineNr">105 </span> <span class="PreProc">var</span> _data/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *data-ah
<span id="L106" class="LineNr">106 </span> <span class="PreProc">var</span> data/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _data
<span id="L107" class="LineNr">107 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L108" class="LineNr">108 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> out, data
<span id="L109" class="LineNr">109 </span> <span class="muComment"># trace</span>
<span id="L110" class="LineNr">110 </span> compare trace, <span class="Constant">0</span>
<span id="L111" class="LineNr">111 </span> <span class="PreProc">break-if-=</span>
<span id="L112" class="LineNr">112 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L113" class="LineNr">113 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L114" class="LineNr">114 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L115" class="LineNr">115 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; symbol &quot;</span>
<span id="L116" class="LineNr">116 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, data
<span id="L117" class="LineNr">117 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L118" class="LineNr">118 </span><span class="Delimiter">}</span>
<span id="L119" class="LineNr">119 </span>
<span id="L120" class="LineNr">120 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L120'>print-stream</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L121" class="LineNr">121 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;stream&quot;</span>
<span id="L122" class="LineNr">122 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L123" class="LineNr">123 </span> <span class="PreProc">var</span> data-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get in, text-data
<span id="L124" class="LineNr">124 </span> <span class="PreProc">var</span> _data/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *data-ah
<span id="L125" class="LineNr">125 </span> <span class="PreProc">var</span> data/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> copy _data
<span id="L126" class="LineNr">126 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L127" class="LineNr">127 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L128" class="LineNr">128 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L129" class="LineNr">129 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; stream &quot;</span>
<span id="L130" class="LineNr">130 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, data
<span id="L131" class="LineNr">131 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L132" class="LineNr">132 </span><span class="Delimiter">}</span>
<span id="L133" class="LineNr">133 </span>
<span id="L134" class="LineNr">134 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L134'>print-number</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L135" class="LineNr">135 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L136" class="LineNr">136 </span> <span class="PreProc">var</span> val/<span class="Constant">eax</span>: (addr float) <span class="Special">&lt;-</span> get in, number-data
<span id="L137" class="LineNr">137 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> out, *val, <span class="Constant">3</span>/precision
<span id="L138" class="LineNr">138 </span> <span class="muComment"># trace</span>
<span id="L139" class="LineNr">139 </span> compare trace, <span class="Constant">0</span>
<span id="L140" class="LineNr">140 </span> <span class="PreProc">break-if-=</span>
<span id="L141" class="LineNr">141 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L142" class="LineNr">142 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L143" class="LineNr">143 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L144" class="LineNr">144 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> stream, *val, <span class="Constant">3</span>/precision
<span id="L145" class="LineNr">145 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L146" class="LineNr">146 </span><span class="Delimiter">}</span>
<span id="L147" class="LineNr">147 </span>
<span id="L148" class="LineNr">148 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L148'>print-list</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L149" class="LineNr">149 </span> <span class="PreProc">var</span> curr/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L150" class="LineNr">150 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;(&quot;</span>
<span id="L151" class="LineNr">151 </span> $print-list:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L152" class="LineNr">152 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr, left
<span id="L153" class="LineNr">153 </span> <a href='print.mu.html#L1'>print-cell</a> left, out, trace
<span id="L154" class="LineNr">154 </span> <span class="PreProc">var</span> right/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr, right
<span id="L155" class="LineNr">155 </span> <span class="PreProc">var</span> right-addr/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *right
<span id="L156" class="LineNr">156 </span> <span class="Delimiter">{</span>
<span id="L157" class="LineNr">157 </span> compare right-addr, <span class="Constant">0</span>
<span id="L158" class="LineNr">158 </span> <span class="PreProc">break-if-!=</span>
<span id="L159" class="LineNr">159 </span> <a href='../501draw-text.mu.html#L481'>abort</a> <span class="Constant">&quot;null encountered&quot;</span>
<span id="L160" class="LineNr">160 </span> <span class="Delimiter">}</span>
<span id="L161" class="LineNr">161 </span> <span class="Delimiter">{</span>
<span id="L162" class="LineNr">162 </span> <span class="PreProc">var</span> right-nil?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L187'>nil?</a> right-addr
<span id="L163" class="LineNr">163 </span> compare right-nil?, <span class="Constant">0</span>/false
<span id="L164" class="LineNr">164 </span> <span class="Delimiter">{</span>
<span id="L165" class="LineNr">165 </span> <span class="PreProc">break-if-=</span>
<span id="L166" class="LineNr">166 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;right is nil&quot;</span>
<span id="L167" class="LineNr">167 </span> <span class="PreProc">break</span> $print-list:<span class="PreProc">loop</span>
<span id="L168" class="LineNr">168 </span> <span class="Delimiter">}</span>
<span id="L169" class="LineNr">169 </span> <span class="Delimiter">}</span>
<span id="L170" class="LineNr">170 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot; &quot;</span>
<span id="L171" class="LineNr">171 </span> <span class="PreProc">var</span> right-type-addr/<span class="Constant">edx</span>: (addr int) <span class="Special">&lt;-</span> get right-addr, <span class="PreProc">type</span>
<span id="L172" class="LineNr">172 </span> <span class="Delimiter">{</span>
<span id="L173" class="LineNr">173 </span> compare *right-type-addr, <span class="Constant">0</span>/pair
<span id="L174" class="LineNr">174 </span> <span class="PreProc">break-if-=</span>
<span id="L175" class="LineNr">175 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;. &quot;</span>
<span id="L176" class="LineNr">176 </span> <a href='print.mu.html#L1'>print-cell</a> right, out, trace
<span id="L177" class="LineNr">177 </span> <span class="PreProc">break</span> $print-list:<span class="PreProc">loop</span>
<span id="L178" class="LineNr">178 </span> <span class="Delimiter">}</span>
<span id="L179" class="LineNr">179 </span> curr <span class="Special">&lt;-</span> copy right-addr
<span id="L180" class="LineNr">180 </span> <span class="PreProc">loop</span>
<span id="L181" class="LineNr">181 </span> <span class="Delimiter">}</span>
<span id="L182" class="LineNr">182 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;)&quot;</span>
<span id="L183" class="LineNr">183 </span><span class="Delimiter">}</span>
<span id="L184" class="LineNr">184 </span>
<span id="L185" class="LineNr">185 </span><span class="muComment"># Most lisps intern nil, but we don't really have globals yet, so we'll be</span>
<span id="L186" class="LineNr">186 </span><span class="muComment"># less efficient for now.</span>
<span id="L187" class="LineNr">187 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L187'>nil?</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L188" class="LineNr">188 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L189" class="LineNr">189 </span> <span class="muComment"># if type != pair, return false</span>
<span id="L190" class="LineNr">190 </span> <span class="PreProc">var</span> <span class="PreProc">type</span>/<span class="Constant">eax</span>: (addr int) <span class="Special">&lt;-</span> get in, <span class="PreProc">type</span>
<span id="L191" class="LineNr">191 </span> compare *<span class="PreProc">type</span>, <span class="Constant">0</span>/pair
<span id="L192" class="LineNr">192 </span> <span class="Delimiter">{</span>
<span id="L193" class="LineNr">193 </span> <span class="PreProc">break-if-=</span>
<span id="L194" class="LineNr">194 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L195" class="LineNr">195 </span> <span class="Delimiter">}</span>
<span id="L196" class="LineNr">196 </span> <span class="muComment"># if left != null, return false</span>
<span id="L197" class="LineNr">197 </span> <span class="PreProc">var</span> left-ah/<span class="Constant">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get in, left
<span id="L198" class="LineNr">198 </span> <span class="PreProc">var</span> left/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *left-ah
<span id="L199" class="LineNr">199 </span> compare left, <span class="Constant">0</span>
<span id="L200" class="LineNr">200 </span> <span class="Delimiter">{</span>
<span id="L201" class="LineNr">201 </span> <span class="PreProc">break-if-=</span>
<span id="L202" class="LineNr">202 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L203" class="LineNr">203 </span> <span class="Delimiter">}</span>
<span id="L204" class="LineNr">204 </span> <span class="muComment"># if right != null, return false</span>
<span id="L205" class="LineNr">205 </span> <span class="PreProc">var</span> right-ah/<span class="Constant">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get in, right
<span id="L206" class="LineNr">206 </span> <span class="PreProc">var</span> right/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *right-ah
<span id="L207" class="LineNr">207 </span> compare right, <span class="Constant">0</span>
<span id="L208" class="LineNr">208 </span> <span class="Delimiter">{</span>
<span id="L209" class="LineNr">209 </span> <span class="PreProc">break-if-=</span>
<span id="L210" class="LineNr">210 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L211" class="LineNr">211 </span> <span class="Delimiter">}</span>
<span id="L212" class="LineNr">212 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L213" class="LineNr">213 </span><span class="Delimiter">}</span>
<span id="L214" class="LineNr">214 </span>
<span id="L215" class="LineNr">215 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L215'>test-print-cell-zero</a></span> <span class="Delimiter">{</span>
<span id="L216" class="LineNr">216 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L217" class="LineNr">217 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L218" class="LineNr">218 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">0</span>
<span id="L219" class="LineNr">219 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L220" class="LineNr">220 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L221" class="LineNr">221 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L222" class="LineNr">222 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;0&quot;</span>, <span class="Constant">&quot;F - test-print-cell-zero&quot;</span>
<span id="L223" class="LineNr">223 </span><span class="Delimiter">}</span>
<span id="L224" class="LineNr">224 </span>
<span id="L225" class="LineNr">225 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L225'>test-print-cell-integer</a></span> <span class="Delimiter">{</span>
<span id="L226" class="LineNr">226 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L227" class="LineNr">227 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L228" class="LineNr">228 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">1</span>
<span id="L229" class="LineNr">229 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L230" class="LineNr">230 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L231" class="LineNr">231 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L232" class="LineNr">232 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;1&quot;</span>, <span class="Constant">&quot;F - test-print-cell-integer&quot;</span>
<span id="L233" class="LineNr">233 </span><span class="Delimiter">}</span>
<span id="L234" class="LineNr">234 </span>
<span id="L235" class="LineNr">235 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L235'>test-print-cell-integer-2</a></span> <span class="Delimiter">{</span>
<span id="L236" class="LineNr">236 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L237" class="LineNr">237 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L238" class="LineNr">238 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">0x30</span>
<span id="L239" class="LineNr">239 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L240" class="LineNr">240 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L241" class="LineNr">241 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L242" class="LineNr">242 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;48&quot;</span>, <span class="Constant">&quot;F - test-print-cell-integer-2&quot;</span>
<span id="L243" class="LineNr">243 </span><span class="Delimiter">}</span>
<span id="L244" class="LineNr">244 </span>
<span id="L245" class="LineNr">245 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L245'>test-print-cell-fraction</a></span> <span class="Delimiter">{</span>
<span id="L246" class="LineNr">246 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L247" class="LineNr">247 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L248" class="LineNr">248 </span> <span class="PreProc">var</span> val/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> <a href='../408float.mu.html#L18'>rational</a> <span class="Constant">1</span>, <span class="Constant">2</span>
<span id="L249" class="LineNr">249 </span> <a href='cell.mu.html#L82'>new-float</a> num, val
<span id="L250" class="LineNr">250 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L251" class="LineNr">251 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L252" class="LineNr">252 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L253" class="LineNr">253 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;0.5&quot;</span>, <span class="Constant">&quot;F - test-print-cell-fraction&quot;</span>
<span id="L254" class="LineNr">254 </span><span class="Delimiter">}</span>
<span id="L255" class="LineNr">255 </span>
<span id="L256" class="LineNr">256 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L256'>test-print-cell-symbol</a></span> <span class="Delimiter">{</span>
<span id="L257" class="LineNr">257 </span> <span class="PreProc">var</span> sym-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L258" class="LineNr">258 </span> <span class="PreProc">var</span> sym/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address sym-storage
<span id="L259" class="LineNr">259 </span> <a href='cell.mu.html#L38'>new-symbol</a> sym, <span class="Constant">&quot;abc&quot;</span>
<span id="L260" class="LineNr">260 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L261" class="LineNr">261 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L262" class="LineNr">262 </span> <a href='print.mu.html#L1'>print-cell</a> sym, out, <span class="Constant">0</span>/no-trace
<span id="L263" class="LineNr">263 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;abc&quot;</span>, <span class="Constant">&quot;F - test-print-cell-symbol&quot;</span>
<span id="L264" class="LineNr">264 </span><span class="Delimiter">}</span>
<span id="L265" class="LineNr">265 </span>
<span id="L266" class="LineNr">266 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L266'>test-print-cell-nil-list</a></span> <span class="Delimiter">{</span>
<span id="L267" class="LineNr">267 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L268" class="LineNr">268 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L269" class="LineNr">269 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L270" class="LineNr">270 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L271" class="LineNr">271 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L272" class="LineNr">272 </span> <a href='print.mu.html#L1'>print-cell</a> <a href='cell.mu.html#L106'>nil</a>, out, <span class="Constant">0</span>/no-trace
<span id="L273" class="LineNr">273 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;()&quot;</span>, <span class="Constant">&quot;F - test-print-cell-nil-list&quot;</span>
<span id="L274" class="LineNr">274 </span><span class="Delimiter">}</span>
<span id="L275" class="LineNr">275 </span>
<span id="L276" class="LineNr">276 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L276'>test-print-cell-singleton-list</a></span> <span class="Delimiter">{</span>
<span id="L277" class="LineNr">277 </span> <span class="muComment"># list</span>
<span id="L278" class="LineNr">278 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L279" class="LineNr">279 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L280" class="LineNr">280 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L281" class="LineNr">281 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L282" class="LineNr">282 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L283" class="LineNr">283 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L284" class="LineNr">284 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L285" class="LineNr">285 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L286" class="LineNr">286 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L287" class="LineNr">287 </span> <span class="muComment">#</span>
<span id="L288" class="LineNr">288 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L289" class="LineNr">289 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L290" class="LineNr">290 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L291" class="LineNr">291 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(abc)&quot;</span>, <span class="Constant">&quot;F - test-print-cell-singleton-list&quot;</span>
<span id="L292" class="LineNr">292 </span><span class="Delimiter">}</span>
<span id="L293" class="LineNr">293 </span>
<span id="L294" class="LineNr">294 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L294'>test-print-cell-list</a></span> <span class="Delimiter">{</span>
<span id="L295" class="LineNr">295 </span> <span class="muComment"># list = cons &quot;abc&quot;, nil</span>
<span id="L296" class="LineNr">296 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L297" class="LineNr">297 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L298" class="LineNr">298 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L299" class="LineNr">299 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L300" class="LineNr">300 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L301" class="LineNr">301 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L302" class="LineNr">302 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L303" class="LineNr">303 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L304" class="LineNr">304 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L305" class="LineNr">305 </span> <span class="muComment"># list = cons 64, list</span>
<span id="L306" class="LineNr">306 </span> <a href='cell.mu.html#L69'>new-integer</a> left, <span class="Constant">0x40</span>
<span id="L307" class="LineNr">307 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *list
<span id="L308" class="LineNr">308 </span> <span class="muComment">#</span>
<span id="L309" class="LineNr">309 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L310" class="LineNr">310 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L311" class="LineNr">311 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L312" class="LineNr">312 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(64 abc)&quot;</span>, <span class="Constant">&quot;F - test-print-cell-list&quot;</span>
<span id="L313" class="LineNr">313 </span><span class="Delimiter">}</span>
<span id="L314" class="LineNr">314 </span>
<span id="L315" class="LineNr">315 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L315'>test-print-cell-list-of-nil</a></span> <span class="Delimiter">{</span>
<span id="L316" class="LineNr">316 </span> <span class="muComment"># list = cons &quot;abc&quot;, nil</span>
<span id="L317" class="LineNr">317 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L318" class="LineNr">318 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L319" class="LineNr">319 </span> <a href='cell.mu.html#L87'>allocate-pair</a> left
<span id="L320" class="LineNr">320 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L321" class="LineNr">321 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L322" class="LineNr">322 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L323" class="LineNr">323 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L324" class="LineNr">324 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L325" class="LineNr">325 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L326" class="LineNr">326 </span> <span class="muComment"># list = cons 64, list</span>
<span id="L327" class="LineNr">327 </span> <a href='cell.mu.html#L69'>new-integer</a> left, <span class="Constant">0x40</span>
<span id="L328" class="LineNr">328 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *list
<span id="L329" class="LineNr">329 </span> <span class="muComment">#</span>
<span id="L330" class="LineNr">330 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L331" class="LineNr">331 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L332" class="LineNr">332 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L333" class="LineNr">333 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(64 ())&quot;</span>, <span class="Constant">&quot;F - test-print-cell-list-nil&quot;</span>
<span id="L334" class="LineNr">334 </span><span class="Delimiter">}</span>
<span id="L335" class="LineNr">335 </span>
<span id="L336" class="LineNr">336 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L336'>test-print-dotted-list</a></span> <span class="Delimiter">{</span>
<span id="L337" class="LineNr">337 </span> <span class="muComment"># list = cons 64, &quot;abc&quot;</span>
<span id="L338" class="LineNr">338 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L339" class="LineNr">339 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L340" class="LineNr">340 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L341" class="LineNr">341 </span> <span class="PreProc">var</span> right-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L342" class="LineNr">342 </span> <span class="PreProc">var</span> right/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address right-storage
<span id="L343" class="LineNr">343 </span> <a href='cell.mu.html#L69'>new-integer</a> right, <span class="Constant">0x40</span>
<span id="L344" class="LineNr">344 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L345" class="LineNr">345 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L346" class="LineNr">346 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *right
<span id="L347" class="LineNr">347 </span> <span class="muComment">#</span>
<span id="L348" class="LineNr">348 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L349" class="LineNr">349 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L350" class="LineNr">350 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L351" class="LineNr">351 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(abc . 64)&quot;</span>, <span class="Constant">&quot;F - test-print-dotted-list&quot;</span>
<span id="L352" class="LineNr">352 </span><span class="Delimiter">}</span>
<span id="L127" class="LineNr">127 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;[&quot;</span>
<span id="L128" class="LineNr">128 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> out, data
<span id="L129" class="LineNr">129 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;]&quot;</span>
<span id="L130" class="LineNr">130 </span> <span class="muComment"># trace</span>
<span id="L131" class="LineNr">131 </span> compare trace, <span class="Constant">0</span>
<span id="L132" class="LineNr">132 </span> <span class="PreProc">break-if-=</span>
<span id="L133" class="LineNr">133 </span> <a href='../106stream.subx.html#L59'>rewind-stream</a> data
<span id="L134" class="LineNr">134 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L135" class="LineNr">135 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L136" class="LineNr">136 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; stream &quot;</span>
<span id="L137" class="LineNr">137 </span> <a href='../113write-stream.subx.html#L8'>write-stream</a> stream, data
<span id="L138" class="LineNr">138 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L139" class="LineNr">139 </span><span class="Delimiter">}</span>
<span id="L140" class="LineNr">140 </span>
<span id="L141" class="LineNr">141 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L141'>print-number</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L142" class="LineNr">142 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L143" class="LineNr">143 </span> <span class="PreProc">var</span> val/<span class="Constant">eax</span>: (addr float) <span class="Special">&lt;-</span> get in, number-data
<span id="L144" class="LineNr">144 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> out, *val, <span class="Constant">3</span>/precision
<span id="L145" class="LineNr">145 </span> <span class="muComment"># trace</span>
<span id="L146" class="LineNr">146 </span> compare trace, <span class="Constant">0</span>
<span id="L147" class="LineNr">147 </span> <span class="PreProc">break-if-=</span>
<span id="L148" class="LineNr">148 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L149" class="LineNr">149 </span> <span class="PreProc">var</span> stream/<span class="Constant">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L150" class="LineNr">150 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; number &quot;</span>
<span id="L151" class="LineNr">151 </span> <a href='../412render-float-decimal.mu.html#L163'>write-float-decimal-approximate</a> stream, *val, <span class="Constant">3</span>/precision
<span id="L152" class="LineNr">152 </span> trace trace, <span class="Constant">&quot;print&quot;</span>, stream
<span id="L153" class="LineNr">153 </span><span class="Delimiter">}</span>
<span id="L154" class="LineNr">154 </span>
<span id="L155" class="LineNr">155 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L155'>print-list</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L156" class="LineNr">156 </span> <span class="PreProc">var</span> curr/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L157" class="LineNr">157 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;(&quot;</span>
<span id="L158" class="LineNr">158 </span> $print-list:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L159" class="LineNr">159 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr, left
<span id="L160" class="LineNr">160 </span> <a href='print.mu.html#L1'>print-cell</a> left, out, trace
<span id="L161" class="LineNr">161 </span> <span class="PreProc">var</span> right/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get curr, right
<span id="L162" class="LineNr">162 </span> <span class="PreProc">var</span> right-addr/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *right
<span id="L163" class="LineNr">163 </span> <span class="Delimiter">{</span>
<span id="L164" class="LineNr">164 </span> compare right-addr, <span class="Constant">0</span>
<span id="L165" class="LineNr">165 </span> <span class="PreProc">break-if-!=</span>
<span id="L166" class="LineNr">166 </span> <a href='../501draw-text.mu.html#L481'>abort</a> <span class="Constant">&quot;null encountered&quot;</span>
<span id="L167" class="LineNr">167 </span> <span class="Delimiter">}</span>
<span id="L168" class="LineNr">168 </span> <span class="Delimiter">{</span>
<span id="L169" class="LineNr">169 </span> <span class="PreProc">var</span> right-nil?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='print.mu.html#L194'>nil?</a> right-addr
<span id="L170" class="LineNr">170 </span> compare right-nil?, <span class="Constant">0</span>/false
<span id="L171" class="LineNr">171 </span> <span class="Delimiter">{</span>
<span id="L172" class="LineNr">172 </span> <span class="PreProc">break-if-=</span>
<span id="L173" class="LineNr">173 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;print&quot;</span>, <span class="Constant">&quot;right is nil&quot;</span>
<span id="L174" class="LineNr">174 </span> <span class="PreProc">break</span> $print-list:<span class="PreProc">loop</span>
<span id="L175" class="LineNr">175 </span> <span class="Delimiter">}</span>
<span id="L176" class="LineNr">176 </span> <span class="Delimiter">}</span>
<span id="L177" class="LineNr">177 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot; &quot;</span>
<span id="L178" class="LineNr">178 </span> <span class="PreProc">var</span> right-type-addr/<span class="Constant">edx</span>: (addr int) <span class="Special">&lt;-</span> get right-addr, <span class="PreProc">type</span>
<span id="L179" class="LineNr">179 </span> <span class="Delimiter">{</span>
<span id="L180" class="LineNr">180 </span> compare *right-type-addr, <span class="Constant">0</span>/pair
<span id="L181" class="LineNr">181 </span> <span class="PreProc">break-if-=</span>
<span id="L182" class="LineNr">182 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;. &quot;</span>
<span id="L183" class="LineNr">183 </span> <a href='print.mu.html#L1'>print-cell</a> right, out, trace
<span id="L184" class="LineNr">184 </span> <span class="PreProc">break</span> $print-list:<span class="PreProc">loop</span>
<span id="L185" class="LineNr">185 </span> <span class="Delimiter">}</span>
<span id="L186" class="LineNr">186 </span> curr <span class="Special">&lt;-</span> copy right-addr
<span id="L187" class="LineNr">187 </span> <span class="PreProc">loop</span>
<span id="L188" class="LineNr">188 </span> <span class="Delimiter">}</span>
<span id="L189" class="LineNr">189 </span> <a href='../108write.subx.html#L11'>write</a> out, <span class="Constant">&quot;)&quot;</span>
<span id="L190" class="LineNr">190 </span><span class="Delimiter">}</span>
<span id="L191" class="LineNr">191 </span>
<span id="L192" class="LineNr">192 </span><span class="muComment"># Most lisps intern nil, but we don't really have globals yet, so we'll be</span>
<span id="L193" class="LineNr">193 </span><span class="muComment"># less efficient for now.</span>
<span id="L194" class="LineNr">194 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='print.mu.html#L194'>nil?</a></span> _in: (addr <a href='cell.mu.html#L1'>cell</a>)<span class="PreProc"> -&gt; </span>_/<span class="Constant">eax</span>: boolean <span class="Delimiter">{</span>
<span id="L195" class="LineNr">195 </span> <span class="PreProc">var</span> in/<span class="Constant">esi</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _in
<span id="L196" class="LineNr">196 </span> <span class="muComment"># if type != pair, return false</span>
<span id="L197" class="LineNr">197 </span> <span class="PreProc">var</span> <span class="PreProc">type</span>/<span class="Constant">eax</span>: (addr int) <span class="Special">&lt;-</span> get in, <span class="PreProc">type</span>
<span id="L198" class="LineNr">198 </span> compare *<span class="PreProc">type</span>, <span class="Constant">0</span>/pair
<span id="L199" class="LineNr">199 </span> <span class="Delimiter">{</span>
<span id="L200" class="LineNr">200 </span> <span class="PreProc">break-if-=</span>
<span id="L201" class="LineNr">201 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L202" class="LineNr">202 </span> <span class="Delimiter">}</span>
<span id="L203" class="LineNr">203 </span> <span class="muComment"># if left != null, return false</span>
<span id="L204" class="LineNr">204 </span> <span class="PreProc">var</span> left-ah/<span class="Constant">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get in, left
<span id="L205" class="LineNr">205 </span> <span class="PreProc">var</span> left/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *left-ah
<span id="L206" class="LineNr">206 </span> compare left, <span class="Constant">0</span>
<span id="L207" class="LineNr">207 </span> <span class="Delimiter">{</span>
<span id="L208" class="LineNr">208 </span> <span class="PreProc">break-if-=</span>
<span id="L209" class="LineNr">209 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L210" class="LineNr">210 </span> <span class="Delimiter">}</span>
<span id="L211" class="LineNr">211 </span> <span class="muComment"># if right != null, return false</span>
<span id="L212" class="LineNr">212 </span> <span class="PreProc">var</span> right-ah/<span class="Constant">eax</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> get in, right
<span id="L213" class="LineNr">213 </span> <span class="PreProc">var</span> right/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *right-ah
<span id="L214" class="LineNr">214 </span> compare right, <span class="Constant">0</span>
<span id="L215" class="LineNr">215 </span> <span class="Delimiter">{</span>
<span id="L216" class="LineNr">216 </span> <span class="PreProc">break-if-=</span>
<span id="L217" class="LineNr">217 </span> <span class="PreProc">return</span> <span class="Constant">0</span>/false
<span id="L218" class="LineNr">218 </span> <span class="Delimiter">}</span>
<span id="L219" class="LineNr">219 </span> <span class="PreProc">return</span> <span class="Constant">1</span>/true
<span id="L220" class="LineNr">220 </span><span class="Delimiter">}</span>
<span id="L221" class="LineNr">221 </span>
<span id="L222" class="LineNr">222 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L222'>test-print-cell-zero</a></span> <span class="Delimiter">{</span>
<span id="L223" class="LineNr">223 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L224" class="LineNr">224 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L225" class="LineNr">225 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">0</span>
<span id="L226" class="LineNr">226 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L227" class="LineNr">227 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L228" class="LineNr">228 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L229" class="LineNr">229 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;0&quot;</span>, <span class="Constant">&quot;F - test-print-cell-zero&quot;</span>
<span id="L230" class="LineNr">230 </span><span class="Delimiter">}</span>
<span id="L231" class="LineNr">231 </span>
<span id="L232" class="LineNr">232 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L232'>test-print-cell-integer</a></span> <span class="Delimiter">{</span>
<span id="L233" class="LineNr">233 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L234" class="LineNr">234 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L235" class="LineNr">235 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">1</span>
<span id="L236" class="LineNr">236 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L237" class="LineNr">237 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L238" class="LineNr">238 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L239" class="LineNr">239 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;1&quot;</span>, <span class="Constant">&quot;F - test-print-cell-integer&quot;</span>
<span id="L240" class="LineNr">240 </span><span class="Delimiter">}</span>
<span id="L241" class="LineNr">241 </span>
<span id="L242" class="LineNr">242 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L242'>test-print-cell-integer-2</a></span> <span class="Delimiter">{</span>
<span id="L243" class="LineNr">243 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L244" class="LineNr">244 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L245" class="LineNr">245 </span> <a href='cell.mu.html#L69'>new-integer</a> num, <span class="Constant">0x30</span>
<span id="L246" class="LineNr">246 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L247" class="LineNr">247 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L248" class="LineNr">248 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L249" class="LineNr">249 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;48&quot;</span>, <span class="Constant">&quot;F - test-print-cell-integer-2&quot;</span>
<span id="L250" class="LineNr">250 </span><span class="Delimiter">}</span>
<span id="L251" class="LineNr">251 </span>
<span id="L252" class="LineNr">252 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L252'>test-print-cell-fraction</a></span> <span class="Delimiter">{</span>
<span id="L253" class="LineNr">253 </span> <span class="PreProc">var</span> num-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L254" class="LineNr">254 </span> <span class="PreProc">var</span> num/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address num-storage
<span id="L255" class="LineNr">255 </span> <span class="PreProc">var</span> val/<span class="Constant">xmm0</span>: float <span class="Special">&lt;-</span> <a href='../408float.mu.html#L18'>rational</a> <span class="Constant">1</span>, <span class="Constant">2</span>
<span id="L256" class="LineNr">256 </span> <a href='cell.mu.html#L82'>new-float</a> num, val
<span id="L257" class="LineNr">257 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L258" class="LineNr">258 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L259" class="LineNr">259 </span> <a href='print.mu.html#L1'>print-cell</a> num, out, <span class="Constant">0</span>/no-trace
<span id="L260" class="LineNr">260 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;0.5&quot;</span>, <span class="Constant">&quot;F - test-print-cell-fraction&quot;</span>
<span id="L261" class="LineNr">261 </span><span class="Delimiter">}</span>
<span id="L262" class="LineNr">262 </span>
<span id="L263" class="LineNr">263 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L263'>test-print-cell-symbol</a></span> <span class="Delimiter">{</span>
<span id="L264" class="LineNr">264 </span> <span class="PreProc">var</span> sym-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L265" class="LineNr">265 </span> <span class="PreProc">var</span> sym/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address sym-storage
<span id="L266" class="LineNr">266 </span> <a href='cell.mu.html#L38'>new-symbol</a> sym, <span class="Constant">&quot;abc&quot;</span>
<span id="L267" class="LineNr">267 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L268" class="LineNr">268 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L269" class="LineNr">269 </span> <a href='print.mu.html#L1'>print-cell</a> sym, out, <span class="Constant">0</span>/no-trace
<span id="L270" class="LineNr">270 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;abc&quot;</span>, <span class="Constant">&quot;F - test-print-cell-symbol&quot;</span>
<span id="L271" class="LineNr">271 </span><span class="Delimiter">}</span>
<span id="L272" class="LineNr">272 </span>
<span id="L273" class="LineNr">273 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L273'>test-print-cell-nil-list</a></span> <span class="Delimiter">{</span>
<span id="L274" class="LineNr">274 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L275" class="LineNr">275 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L276" class="LineNr">276 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L277" class="LineNr">277 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L278" class="LineNr">278 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L279" class="LineNr">279 </span> <a href='print.mu.html#L1'>print-cell</a> <a href='cell.mu.html#L106'>nil</a>, out, <span class="Constant">0</span>/no-trace
<span id="L280" class="LineNr">280 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;()&quot;</span>, <span class="Constant">&quot;F - test-print-cell-nil-list&quot;</span>
<span id="L281" class="LineNr">281 </span><span class="Delimiter">}</span>
<span id="L282" class="LineNr">282 </span>
<span id="L283" class="LineNr">283 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L283'>test-print-cell-singleton-list</a></span> <span class="Delimiter">{</span>
<span id="L284" class="LineNr">284 </span> <span class="muComment"># list</span>
<span id="L285" class="LineNr">285 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L286" class="LineNr">286 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L287" class="LineNr">287 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L288" class="LineNr">288 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L289" class="LineNr">289 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L290" class="LineNr">290 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L291" class="LineNr">291 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L292" class="LineNr">292 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L293" class="LineNr">293 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L294" class="LineNr">294 </span> <span class="muComment">#</span>
<span id="L295" class="LineNr">295 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L296" class="LineNr">296 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L297" class="LineNr">297 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L298" class="LineNr">298 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(abc)&quot;</span>, <span class="Constant">&quot;F - test-print-cell-singleton-list&quot;</span>
<span id="L299" class="LineNr">299 </span><span class="Delimiter">}</span>
<span id="L300" class="LineNr">300 </span>
<span id="L301" class="LineNr">301 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L301'>test-print-cell-list</a></span> <span class="Delimiter">{</span>
<span id="L302" class="LineNr">302 </span> <span class="muComment"># list = cons &quot;abc&quot;, nil</span>
<span id="L303" class="LineNr">303 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L304" class="LineNr">304 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L305" class="LineNr">305 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L306" class="LineNr">306 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L307" class="LineNr">307 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L308" class="LineNr">308 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L309" class="LineNr">309 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L310" class="LineNr">310 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L311" class="LineNr">311 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L312" class="LineNr">312 </span> <span class="muComment"># list = cons 64, list</span>
<span id="L313" class="LineNr">313 </span> <a href='cell.mu.html#L69'>new-integer</a> left, <span class="Constant">0x40</span>
<span id="L314" class="LineNr">314 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *list
<span id="L315" class="LineNr">315 </span> <span class="muComment">#</span>
<span id="L316" class="LineNr">316 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L317" class="LineNr">317 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L318" class="LineNr">318 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L319" class="LineNr">319 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(64 abc)&quot;</span>, <span class="Constant">&quot;F - test-print-cell-list&quot;</span>
<span id="L320" class="LineNr">320 </span><span class="Delimiter">}</span>
<span id="L321" class="LineNr">321 </span>
<span id="L322" class="LineNr">322 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L322'>test-print-cell-list-of-nil</a></span> <span class="Delimiter">{</span>
<span id="L323" class="LineNr">323 </span> <span class="muComment"># list = cons &quot;abc&quot;, nil</span>
<span id="L324" class="LineNr">324 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L325" class="LineNr">325 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L326" class="LineNr">326 </span> <a href='cell.mu.html#L87'>allocate-pair</a> left
<span id="L327" class="LineNr">327 </span> <span class="PreProc">var</span> nil-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L328" class="LineNr">328 </span> <span class="PreProc">var</span> <a href='cell.mu.html#L106'>nil</a>/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address nil-storage
<span id="L329" class="LineNr">329 </span> <a href='cell.mu.html#L87'>allocate-pair</a> <a href='cell.mu.html#L106'>nil</a>
<span id="L330" class="LineNr">330 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L331" class="LineNr">331 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L332" class="LineNr">332 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *nil
<span id="L333" class="LineNr">333 </span> <span class="muComment"># list = cons 64, list</span>
<span id="L334" class="LineNr">334 </span> <a href='cell.mu.html#L69'>new-integer</a> left, <span class="Constant">0x40</span>
<span id="L335" class="LineNr">335 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *list
<span id="L336" class="LineNr">336 </span> <span class="muComment">#</span>
<span id="L337" class="LineNr">337 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L338" class="LineNr">338 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L339" class="LineNr">339 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L340" class="LineNr">340 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(64 ())&quot;</span>, <span class="Constant">&quot;F - test-print-cell-list-nil&quot;</span>
<span id="L341" class="LineNr">341 </span><span class="Delimiter">}</span>
<span id="L342" class="LineNr">342 </span>
<span id="L343" class="LineNr">343 </span><span class="PreProc">fn</span> <span class="muTest"><a href='print.mu.html#L343'>test-print-dotted-list</a></span> <span class="Delimiter">{</span>
<span id="L344" class="LineNr">344 </span> <span class="muComment"># list = cons 64, &quot;abc&quot;</span>
<span id="L345" class="LineNr">345 </span> <span class="PreProc">var</span> left-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L346" class="LineNr">346 </span> <span class="PreProc">var</span> left/<span class="Constant">ecx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address left-storage
<span id="L347" class="LineNr">347 </span> <a href='cell.mu.html#L38'>new-symbol</a> left, <span class="Constant">&quot;abc&quot;</span>
<span id="L348" class="LineNr">348 </span> <span class="PreProc">var</span> right-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L349" class="LineNr">349 </span> <span class="PreProc">var</span> right/<span class="Constant">edx</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address right-storage
<span id="L350" class="LineNr">350 </span> <a href='cell.mu.html#L69'>new-integer</a> right, <span class="Constant">0x40</span>
<span id="L351" class="LineNr">351 </span> <span class="PreProc">var</span> list-storage: (handle <a href='cell.mu.html#L1'>cell</a>)
<span id="L352" class="LineNr">352 </span> <span class="PreProc">var</span> list/<span class="Constant">esi</span>: (addr handle <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address list-storage
<span id="L353" class="LineNr">353 </span> <a href='cell.mu.html#L101'>new-pair</a> list, *left, *right
<span id="L354" class="LineNr">354 </span> <span class="muComment">#</span>
<span id="L355" class="LineNr">355 </span> <span class="PreProc">var</span> out-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L356" class="LineNr">356 </span> <span class="PreProc">var</span> out/<span class="Constant">edi</span>: (addr stream byte) <span class="Special">&lt;-</span> address out-storage
<span id="L357" class="LineNr">357 </span> <a href='print.mu.html#L1'>print-cell</a> list, out, <span class="Constant">0</span>/no-trace
<span id="L358" class="LineNr">358 </span> <a href='../109stream-equal.subx.html#L194'>check-stream-equal</a> out, <span class="Constant">&quot;(abc . 64)&quot;</span>, <span class="Constant">&quot;F - test-print-dotted-list&quot;</span>
<span id="L359" class="LineNr">359 </span><span class="Delimiter">}</span>
</pre>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -62,8 +62,8 @@ if ('onhashchange' in window) {
<span id="L3" class="LineNr"> 3 </span><span class="muComment"># they always have text-data.</span>
<span id="L4" class="LineNr"> 4 </span>
<span id="L5" class="LineNr"> 5 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L5'>tokenize</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L6" class="LineNr"> 6 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;tokenize&quot;</span>
<span id="L7" class="LineNr"> 7 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L6" class="LineNr"> 6 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;tokenize&quot;</span>
<span id="L7" class="LineNr"> 7 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L8" class="LineNr"> 8 </span> <a href='gap-buffer.mu.html#L740'>rewind-gap-buffer</a> in
<span id="L9" class="LineNr"> 9 </span> <span class="PreProc">var</span> token-storage: <a href='cell.mu.html#L1'>cell</a>
<span id="L10" class="LineNr"> 10 </span> <span class="PreProc">var</span> token/<span class="Constant">edx</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> address token-storage
@ -86,7 +86,7 @@ if ('onhashchange' in window) {
<span id="L27" class="LineNr"> 27 </span> <a href='../309stream.subx.html#L54'>write-to-stream</a> out, token <span class="muComment"># shallow-copy text-data</span>
<span id="L28" class="LineNr"> 28 </span> <span class="PreProc">loop</span>
<span id="L29" class="LineNr"> 29 </span> <span class="Delimiter">}</span>
<span id="L30" class="LineNr"> 30 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L30" class="LineNr"> 30 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L31" class="LineNr"> 31 </span><span class="Delimiter">}</span>
<span id="L32" class="LineNr"> 32 </span>
<span id="L33" class="LineNr"> 33 </span><span class="PreProc">fn</span> <span class="muTest"><a href='tokenize.mu.html#L33'>test-tokenize-dotted-list</a></span> <span class="Delimiter">{</span>
@ -123,8 +123,8 @@ if ('onhashchange' in window) {
<span id="L64" class="LineNr"> 64 </span><span class="Delimiter">}</span>
<span id="L65" class="LineNr"> 65 </span>
<span id="L66" class="LineNr"> 66 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L66'>next-token</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), _out-cell: (addr <a href='cell.mu.html#L1'>cell</a>), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L67" class="LineNr"> 67 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;next-token&quot;</span>
<span id="L68" class="LineNr"> 68 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L67" class="LineNr"> 67 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;next-token&quot;</span>
<span id="L68" class="LineNr"> 68 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L69" class="LineNr"> 69 </span> <span class="PreProc">var</span> out-cell/<span class="Constant">eax</span>: (addr <a href='cell.mu.html#L1'>cell</a>) <span class="Special">&lt;-</span> copy _out-cell
<span id="L70" class="LineNr"> 70 </span> <span class="PreProc">var</span> out-ah/<span class="Constant">eax</span>: (addr handle stream byte) <span class="Special">&lt;-</span> get out-cell, text-data
<span id="L71" class="LineNr"> 71 </span> <span class="PreProc">var</span> _out/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L226'>lookup</a> *out-ah
@ -175,7 +175,7 @@ if ('onhashchange' in window) {
<span id="L116" class="LineNr">116 </span> <span class="PreProc">break</span> $next-token:body
<span id="L117" class="LineNr">117 </span> <span class="Delimiter">}</span>
<span id="L118" class="LineNr">118 </span> <span class="Delimiter">}</span>
<span id="L119" class="LineNr">119 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L119" class="LineNr">119 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L120" class="LineNr">120 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L121" class="LineNr">121 </span> <span class="PreProc">var</span> stream/<span class="Constant">eax</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L122" class="LineNr">122 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; &quot;</span>
@ -185,8 +185,8 @@ if ('onhashchange' in window) {
<span id="L126" class="LineNr">126 </span><span class="Delimiter">}</span>
<span id="L127" class="LineNr">127 </span>
<span id="L128" class="LineNr">128 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L128'>next-symbol-token</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L129" class="LineNr">129 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a symbol&quot;</span>
<span id="L130" class="LineNr">130 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L129" class="LineNr">129 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a symbol&quot;</span>
<span id="L130" class="LineNr">130 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L131" class="LineNr">131 </span> $next-symbol-token:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L132" class="LineNr">132 </span> <span class="PreProc">var</span> done?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L748'>gap-buffer-scan-done?</a> in
<span id="L133" class="LineNr">133 </span> compare done?, <span class="Constant">0</span>/false
@ -205,14 +205,14 @@ if ('onhashchange' in window) {
<span id="L146" class="LineNr">146 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L253'>symbol-grapheme?</a>/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L253'>symbol-grapheme?</a> g
<span id="L147" class="LineNr">147 </span> compare <a href='tokenize.mu.html#L253'>symbol-grapheme?</a>, <span class="Constant">0</span>/false
<span id="L148" class="LineNr">148 </span> <span class="PreProc">break-if-!=</span>
<span id="L149" class="LineNr">149 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L149" class="LineNr">149 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L150" class="LineNr">150 </span> <span class="PreProc">break</span> $next-symbol-token:<span class="PreProc">loop</span>
<span id="L151" class="LineNr">151 </span> <span class="Delimiter">}</span>
<span id="L152" class="LineNr">152 </span> <span class="PreProc">var</span> g/<span class="Constant">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L808'>read-from-gap-buffer</a> in
<span id="L153" class="LineNr">153 </span> <a href='../403unicode.mu.html#L176'>write-grapheme</a> out, g
<span id="L154" class="LineNr">154 </span> <span class="PreProc">loop</span>
<span id="L155" class="LineNr">155 </span> <span class="Delimiter">}</span>
<span id="L156" class="LineNr">156 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L156" class="LineNr">156 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L157" class="LineNr">157 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L158" class="LineNr">158 </span> <span class="PreProc">var</span> stream/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L159" class="LineNr">159 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; &quot;</span>
@ -222,8 +222,8 @@ if ('onhashchange' in window) {
<span id="L163" class="LineNr">163 </span><span class="Delimiter">}</span>
<span id="L164" class="LineNr">164 </span>
<span id="L165" class="LineNr">165 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L165'>next-operator-token</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L166" class="LineNr">166 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a operator&quot;</span>
<span id="L167" class="LineNr">167 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L166" class="LineNr">166 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a operator&quot;</span>
<span id="L167" class="LineNr">167 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L168" class="LineNr">168 </span> $next-operator-token:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L169" class="LineNr">169 </span> <span class="PreProc">var</span> done?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L748'>gap-buffer-scan-done?</a> in
<span id="L170" class="LineNr">170 </span> compare done?, <span class="Constant">0</span>/false
@ -242,14 +242,14 @@ if ('onhashchange' in window) {
<span id="L183" class="LineNr">183 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L454'>operator-grapheme?</a>/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L454'>operator-grapheme?</a> g
<span id="L184" class="LineNr">184 </span> compare <a href='tokenize.mu.html#L454'>operator-grapheme?</a>, <span class="Constant">0</span>/false
<span id="L185" class="LineNr">185 </span> <span class="PreProc">break-if-!=</span>
<span id="L186" class="LineNr">186 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L186" class="LineNr">186 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L187" class="LineNr">187 </span> <span class="PreProc">break</span> $next-operator-token:<span class="PreProc">loop</span>
<span id="L188" class="LineNr">188 </span> <span class="Delimiter">}</span>
<span id="L189" class="LineNr">189 </span> <span class="PreProc">var</span> g/<span class="Constant">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L808'>read-from-gap-buffer</a> in
<span id="L190" class="LineNr">190 </span> <a href='../403unicode.mu.html#L176'>write-grapheme</a> out, g
<span id="L191" class="LineNr">191 </span> <span class="PreProc">loop</span>
<span id="L192" class="LineNr">192 </span> <span class="Delimiter">}</span>
<span id="L193" class="LineNr">193 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L193" class="LineNr">193 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L194" class="LineNr">194 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L195" class="LineNr">195 </span> <span class="PreProc">var</span> stream/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
<span id="L196" class="LineNr">196 </span> <a href='../108write.subx.html#L11'>write</a> stream, <span class="Constant">&quot;=&gt; &quot;</span>
@ -259,8 +259,8 @@ if ('onhashchange' in window) {
<span id="L200" class="LineNr">200 </span><span class="Delimiter">}</span>
<span id="L201" class="LineNr">201 </span>
<span id="L202" class="LineNr">202 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L202'>next-number-token</a></span> in: (addr <a href='gap-buffer.mu.html#L3'>gap-buffer</a>), out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L203" class="LineNr">203 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a number&quot;</span>
<span id="L204" class="LineNr">204 </span> <a href='trace.mu.html#L140'>trace-lower</a> trace
<span id="L203" class="LineNr">203 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;looking for a number&quot;</span>
<span id="L204" class="LineNr">204 </span> <a href='trace.mu.html#L147'>trace-lower</a> trace
<span id="L205" class="LineNr">205 </span> $next-number-token:<span class="PreProc">loop</span>: <span class="Delimiter">{</span>
<span id="L206" class="LineNr">206 </span> <span class="PreProc">var</span> done?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L748'>gap-buffer-scan-done?</a> in
<span id="L207" class="LineNr">207 </span> compare done?, <span class="Constant">0</span>/false
@ -279,7 +279,7 @@ if ('onhashchange' in window) {
<span id="L220" class="LineNr">220 </span> <span class="PreProc">var</span> <a href='tokenize.mu.html#L253'>symbol-grapheme?</a>/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='tokenize.mu.html#L253'>symbol-grapheme?</a> g
<span id="L221" class="LineNr">221 </span> compare <a href='tokenize.mu.html#L253'>symbol-grapheme?</a>, <span class="Constant">0</span>/false
<span id="L222" class="LineNr">222 </span> <span class="PreProc">break-if-!=</span>
<span id="L223" class="LineNr">223 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L223" class="LineNr">223 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;stop&quot;</span>
<span id="L224" class="LineNr">224 </span> <span class="PreProc">break</span> $next-number-token:<span class="PreProc">loop</span>
<span id="L225" class="LineNr">225 </span> <span class="Delimiter">}</span>
<span id="L226" class="LineNr">226 </span> <span class="muComment"># if not digit grapheme, abort</span>
@ -287,19 +287,19 @@ if ('onhashchange' in window) {
<span id="L228" class="LineNr">228 </span> <span class="PreProc">var</span> digit?/<span class="Constant">eax</span>: boolean <span class="Special">&lt;-</span> <a href='../126write-int-decimal.subx.html#L299'>decimal-digit?</a> g
<span id="L229" class="LineNr">229 </span> compare digit?, <span class="Constant">0</span>/false
<span id="L230" class="LineNr">230 </span> <span class="PreProc">break-if-!=</span>
<span id="L231" class="LineNr">231 </span> <span class="Special"><a href='trace.mu.html#L122'>error</a></span> trace, <span class="Constant">&quot;invalid number&quot;</span>
<span id="L231" class="LineNr">231 </span> <span class="Special"><a href='trace.mu.html#L129'>error</a></span> trace, <span class="Constant">&quot;invalid number&quot;</span>
<span id="L232" class="LineNr">232 </span> <span class="PreProc">return</span>
<span id="L233" class="LineNr">233 </span> <span class="Delimiter">}</span>
<span id="L234" class="LineNr">234 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;append&quot;</span>
<span id="L234" class="LineNr">234 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;append&quot;</span>
<span id="L235" class="LineNr">235 </span> <span class="PreProc">var</span> g/<span class="Constant">eax</span>: grapheme <span class="Special">&lt;-</span> <a href='gap-buffer.mu.html#L808'>read-from-gap-buffer</a> in
<span id="L236" class="LineNr">236 </span> <a href='../403unicode.mu.html#L176'>write-grapheme</a> out, g
<span id="L237" class="LineNr">237 </span> <span class="PreProc">loop</span>
<span id="L238" class="LineNr">238 </span> <span class="Delimiter">}</span>
<span id="L239" class="LineNr">239 </span> <a href='trace.mu.html#L148'>trace-higher</a> trace
<span id="L239" class="LineNr">239 </span> <a href='trace.mu.html#L155'>trace-higher</a> trace
<span id="L240" class="LineNr">240 </span><span class="Delimiter">}</span>
<span id="L241" class="LineNr">241 </span>
<span id="L242" class="LineNr">242 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='tokenize.mu.html#L242'>next-bracket-token</a></span> g: grapheme, out: (addr stream byte), trace: (addr trace) <span class="Delimiter">{</span>
<span id="L243" class="LineNr">243 </span> <a href='trace.mu.html#L113'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;bracket&quot;</span>
<span id="L243" class="LineNr">243 </span> <a href='trace.mu.html#L120'>trace-text</a> trace, <span class="Constant">&quot;read&quot;</span>, <span class="Constant">&quot;bracket&quot;</span>
<span id="L244" class="LineNr">244 </span> <a href='../403unicode.mu.html#L176'>write-grapheme</a> out, g
<span id="L245" class="LineNr">245 </span> <span class="PreProc">var</span> stream-storage: (stream byte <span class="Constant">0x40</span>)
<span id="L246" class="LineNr">246 </span> <span class="PreProc">var</span> stream/<span class="Constant">esi</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage

2951
html/shell/trace.mu.html generated

File diff suppressed because it is too large Load Diff