about summary refs log tree commit diff stats
path: root/html/034address.cc.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/034address.cc.html')
-rw-r--r--html/034address.cc.html153
1 files changed, 77 insertions, 76 deletions
diff --git a/html/034address.cc.html b/html/034address.cc.html
index b5f95be7..dda865a4 100644
--- a/html/034address.cc.html
+++ b/html/034address.cc.html
@@ -357,7 +357,7 @@ if ('onhashchange' in window) {
 <span id="L293" class="LineNr">293 </span><span class="Normal">extern</span> <span class="Normal">const</span> <span class="Normal">int</span> Reserved_for_tests = <span class="Constant">1000</span><span class="Delimiter">;</span>
 <span id="L294" class="LineNr">294 </span><span class="Normal">int</span> Memory_allocated_until = Reserved_for_tests<span class="Delimiter">;</span>
 <span id="L295" class="LineNr">295 </span><span class="Normal">int</span> Initial_memory_per_routine = <span class="Constant">100000</span><span class="Delimiter">;</span>
-<span id="L296" class="LineNr">296 </span><span class="Delimiter">:(before &quot;End Setup&quot;)</span>
+<span id="L296" class="LineNr">296 </span><span class="Delimiter">:(before &quot;End Reset&quot;)</span>
 <span id="L297" class="LineNr">297 </span>Memory_allocated_until = Reserved_for_tests<span class="Delimiter">;</span>
 <span id="L298" class="LineNr">298 </span>Initial_memory_per_routine = <span class="Constant">100000</span><span class="Delimiter">;</span>
 <span id="L299" class="LineNr">299 </span><span class="Delimiter">:(before &quot;End routine Fields&quot;)</span>
@@ -421,81 +421,82 @@ if ('onhashchange' in window) {
 <span id="L357" class="LineNr">357 </span><span class="CommentedCode">//? int Num_alloc = 0;</span>
 <span id="L358" class="LineNr">358 </span><span class="CommentedCode">//? int Total_free = 0;</span>
 <span id="L359" class="LineNr">359 </span><span class="CommentedCode">//? int Num_free = 0;</span>
-<span id="L360" class="LineNr">360 </span><span class="CommentedCode">//? :(before &quot;End Setup&quot;)</span>
-<span id="L361" class="LineNr">361 </span><span class="CommentedCode">//? Total_alloc = Num_alloc = Total_free = Num_free = 0;</span>
-<span id="L362" class="LineNr">362 </span><span class="CommentedCode">//? :(before &quot;End Teardown&quot;)</span>
-<span id="L363" class="LineNr">363 </span><span class="CommentedCode">//? cerr &lt;&lt; Total_alloc &lt;&lt; &quot;/&quot; &lt;&lt; Num_alloc</span>
-<span id="L364" class="LineNr">364 </span><span class="CommentedCode">//?      &lt;&lt; &quot; vs &quot; &lt;&lt; Total_free &lt;&lt; &quot;/&quot; &lt;&lt; Num_free &lt;&lt; '\n';</span>
-<span id="L365" class="LineNr">365 </span><span class="CommentedCode">//? cerr &lt;&lt; SIZE(Memory) &lt;&lt; '\n';</span>
-<span id="L366" class="LineNr">366 </span>
-<span id="L367" class="LineNr">367 </span><span class="Delimiter">:(code)</span>
-<span id="L368" class="LineNr">368 </span><span class="Normal">void</span> ensure_space<span class="Delimiter">(</span><span class="Normal">int</span> size<span class="Delimiter">)</span> <span class="Delimiter">{</span>
-<span id="L369" class="LineNr">369 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>size &gt; Initial_memory_per_routine<span class="Delimiter">)</span> <span class="Delimiter">{</span>
-<span id="L370" class="LineNr">370 </span>  <span class="Conceal">¦</span> cerr &lt;&lt; <span class="Constant">&quot;can't allocate &quot;</span> &lt;&lt; size &lt;&lt; <span class="Constant">&quot; locations, that's too much compared to &quot;</span> &lt;&lt; Initial_memory_per_routine &lt;&lt; <span class="Constant">&quot;.</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span><span class="Delimiter">;</span>
-<span id="L371" class="LineNr">371 </span>  <span class="Conceal">¦</span> exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
-<span id="L372" class="LineNr">372 </span>  <span class="Delimiter">}</span>
-<span id="L373" class="LineNr">373 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>alloc + size &gt; Current_routine<span class="Delimiter">-&gt;</span>alloc_max<span class="Delimiter">)</span> <span class="Delimiter">{</span>
-<span id="L374" class="LineNr">374 </span>  <span class="Conceal">¦</span> <span class="Comment">// waste the remaining space and create a new chunk</span>
-<span id="L375" class="LineNr">375 </span>  <span class="Conceal">¦</span> Current_routine<span class="Delimiter">-&gt;</span>alloc = Memory_allocated_until<span class="Delimiter">;</span>
-<span id="L376" class="LineNr">376 </span>  <span class="Conceal">¦</span> Memory_allocated_until += Initial_memory_per_routine<span class="Delimiter">;</span>
-<span id="L377" class="LineNr">377 </span>  <span class="Conceal">¦</span> Current_routine<span class="Delimiter">-&gt;</span>alloc_max = Memory_allocated_until<span class="Delimiter">;</span>
-<span id="L378" class="LineNr">378 </span>  <span class="Conceal">¦</span> <a href='003trace.cc.html#L161'>trace</a><span class="Delimiter">(</span><span class="Constant">9999</span><span class="Delimiter">,</span> <span class="Constant">&quot;new&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;routine allocated memory from &quot;</span> &lt;&lt; Current_routine<span class="Delimiter">-&gt;</span>alloc &lt;&lt; <span class="Constant">&quot; to &quot;</span> &lt;&lt; Current_routine<span class="Delimiter">-&gt;</span>alloc_max &lt;&lt; <a href='003trace.cc.html#L197'>end</a><span class="Delimiter">();</span>
-<span id="L379" class="LineNr">379 </span>  <span class="Delimiter">}</span>
-<span id="L380" class="LineNr">380 </span><span class="Delimiter">}</span>
-<span id="L381" class="LineNr">381 </span>
-<span id="L382" class="LineNr">382 </span><span class="Delimiter">:(scenario new_initializes)</span>
-<span id="L383" class="LineNr">383 </span><span class="Special">% Memory_allocated_until = 10;</span>
-<span id="L384" class="LineNr">384 </span><span class="Special">% put(Memory, Memory_allocated_until, 1);</span>
-<span id="L385" class="LineNr">385 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L386" class="LineNr">386 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:num<span class="Special"> &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L387" class="LineNr">387 </span>]
-<span id="L388" class="LineNr">388 </span><span class="traceContains">+mem: storing 0 in location 10</span>
-<span id="L389" class="LineNr">389 </span>
-<span id="L390" class="LineNr">390 </span><span class="Delimiter">:(scenario new_size)</span>
-<span id="L391" class="LineNr">391 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L392" class="LineNr">392 </span>  <span class="Constant">11</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L393" class="LineNr">393 </span>  <span class="Constant">12</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L394" class="LineNr">394 </span>  <span class="Constant">13</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">12</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">11</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span>
-<span id="L395" class="LineNr">395 </span>]
-<span id="L396" class="LineNr">396 </span><span class="Comment"># size of number + refcount</span>
-<span id="L397" class="LineNr">397 </span><span class="traceContains">+mem: storing 2 in location 13</span>
-<span id="L398" class="LineNr">398 </span>
-<span id="L399" class="LineNr">399 </span><span class="Delimiter">:(scenario new_array_size)</span>
-<span id="L400" class="LineNr">400 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L401" class="LineNr">401 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span><span class="Delimiter">,</span> <span class="Constant">5</span>
-<span id="L402" class="LineNr">402 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L403" class="LineNr">403 </span>  <span class="Constant">3</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw</span>
-<span id="L404" class="LineNr">404 </span>]
-<span id="L405" class="LineNr">405 </span><span class="Comment"># 5 locations for array contents + array length + refcount</span>
-<span id="L406" class="LineNr">406 </span><span class="traceContains">+mem: storing 7 in location 3</span>
-<span id="L407" class="LineNr">407 </span>
-<span id="L408" class="LineNr">408 </span><span class="Delimiter">:(scenario new_empty_array)</span>
-<span id="L409" class="LineNr">409 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L410" class="LineNr">410 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span><span class="Delimiter">,</span> <span class="Constant">0</span>
-<span id="L411" class="LineNr">411 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L412" class="LineNr">412 </span>  <span class="Constant">3</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw</span>
-<span id="L413" class="LineNr">413 </span>]
-<span id="L414" class="LineNr">414 </span><span class="traceContains">+run: {1: (&quot;address&quot; &quot;array&quot; &quot;number&quot;), &quot;raw&quot;: ()} &lt;- new {number: &quot;type&quot;}, {0: &quot;literal&quot;}</span>
-<span id="L415" class="LineNr">415 </span><span class="traceContains">+mem: array length is 0</span>
-<span id="L416" class="LineNr">416 </span><span class="Comment"># one location for array length, and one for the refcount</span>
-<span id="L417" class="LineNr">417 </span><span class="traceContains">+mem: storing 2 in location 3</span>
-<span id="L418" class="LineNr">418 </span>
-<span id="L419" class="LineNr">419 </span><span class="Comment">//: If a routine runs out of its initial allocation, it should allocate more.</span>
-<span id="L420" class="LineNr">420 </span><span class="Delimiter">:(scenario new_overflow)</span>
-<span id="L421" class="LineNr">421 </span><span class="Special">% Initial_memory_per_routine = 3;  // barely enough room for point allocation below</span>
-<span id="L422" class="LineNr">422 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L423" class="LineNr">423 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
-<span id="L424" class="LineNr">424 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:point/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">point:type</span>  <span class="Comment"># not enough room in initial page</span>
-<span id="L425" class="LineNr">425 </span>]
-<span id="L426" class="LineNr">426 </span><span class="traceContains">+new: routine allocated memory from 1000 to 1003</span>
-<span id="L427" class="LineNr">427 </span><span class="traceContains">+new: routine allocated memory from 1003 to 1006</span>
-<span id="L428" class="LineNr">428 </span>
-<span id="L429" class="LineNr">429 </span><span class="Delimiter">:(scenario new_without_ingredient)</span>
-<span id="L430" class="LineNr">430 </span><span class="Special">% Hide_errors = true;</span>
-<span id="L431" class="LineNr">431 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
-<span id="L432" class="LineNr">432 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:number<span class="Special"> &lt;- </span><span class="Normal">new</span>  <span class="Comment"># missing ingredient</span>
-<span id="L433" class="LineNr">433 </span>]
-<span id="L434" class="LineNr">434 </span><span class="traceContains">+error: <a href='000organization.cc.html#L113'>main</a>: 'new' requires one or two ingredients, but got '1:address:number &lt;- new'</span>
+<span id="L360" class="LineNr">360 </span><span class="CommentedCode">//? :(before &quot;End Reset&quot;)</span>
+<span id="L361" class="LineNr">361 </span><span class="CommentedCode">//? if (!Memory.empty()) {</span>
+<span id="L362" class="LineNr">362 </span><span class="CommentedCode">//?   cerr &lt;&lt; Total_alloc &lt;&lt; &quot;/&quot; &lt;&lt; Num_alloc</span>
+<span id="L363" class="LineNr">363 </span><span class="CommentedCode">//?        &lt;&lt; &quot; vs &quot; &lt;&lt; Total_free &lt;&lt; &quot;/&quot; &lt;&lt; Num_free &lt;&lt; '\n';</span>
+<span id="L364" class="LineNr">364 </span><span class="CommentedCode">//?   cerr &lt;&lt; SIZE(Memory) &lt;&lt; '\n';</span>
+<span id="L365" class="LineNr">365 </span><span class="CommentedCode">//? }</span>
+<span id="L366" class="LineNr">366 </span><span class="CommentedCode">//? Total_alloc = Num_alloc = Total_free = Num_free = 0;</span>
+<span id="L367" class="LineNr">367 </span>
+<span id="L368" class="LineNr">368 </span><span class="Delimiter">:(code)</span>
+<span id="L369" class="LineNr">369 </span><span class="Normal">void</span> ensure_space<span class="Delimiter">(</span><span class="Normal">int</span> size<span class="Delimiter">)</span> <span class="Delimiter">{</span>
+<span id="L370" class="LineNr">370 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>size &gt; Initial_memory_per_routine<span class="Delimiter">)</span> <span class="Delimiter">{</span>
+<span id="L371" class="LineNr">371 </span>  <span class="Conceal">¦</span> cerr &lt;&lt; <span class="Constant">&quot;can't allocate &quot;</span> &lt;&lt; size &lt;&lt; <span class="Constant">&quot; locations, that's too much compared to &quot;</span> &lt;&lt; Initial_memory_per_routine &lt;&lt; <span class="Constant">&quot;.</span><span class="cSpecial">\n</span><span class="Constant">&quot;</span><span class="Delimiter">;</span>
+<span id="L372" class="LineNr">372 </span>  <span class="Conceal">¦</span> exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span>
+<span id="L373" class="LineNr">373 </span>  <span class="Delimiter">}</span>
+<span id="L374" class="LineNr">374 </span>  <span class="Normal">if</span> <span class="Delimiter">(</span>Current_routine<span class="Delimiter">-&gt;</span>alloc + size &gt; Current_routine<span class="Delimiter">-&gt;</span>alloc_max<span class="Delimiter">)</span> <span class="Delimiter">{</span>
+<span id="L375" class="LineNr">375 </span>  <span class="Conceal">¦</span> <span class="Comment">// waste the remaining space and create a new chunk</span>
+<span id="L376" class="LineNr">376 </span>  <span class="Conceal">¦</span> Current_routine<span class="Delimiter">-&gt;</span>alloc = Memory_allocated_until<span class="Delimiter">;</span>
+<span id="L377" class="LineNr">377 </span>  <span class="Conceal">¦</span> Memory_allocated_until += Initial_memory_per_routine<span class="Delimiter">;</span>
+<span id="L378" class="LineNr">378 </span>  <span class="Conceal">¦</span> Current_routine<span class="Delimiter">-&gt;</span>alloc_max = Memory_allocated_until<span class="Delimiter">;</span>
+<span id="L379" class="LineNr">379 </span>  <span class="Conceal">¦</span> <a href='003trace.cc.html#L161'>trace</a><span class="Delimiter">(</span><span class="Constant">9999</span><span class="Delimiter">,</span> <span class="Constant">&quot;new&quot;</span><span class="Delimiter">)</span> &lt;&lt; <span class="Constant">&quot;routine allocated memory from &quot;</span> &lt;&lt; Current_routine<span class="Delimiter">-&gt;</span>alloc &lt;&lt; <span class="Constant">&quot; to &quot;</span> &lt;&lt; Current_routine<span class="Delimiter">-&gt;</span>alloc_max &lt;&lt; <a href='003trace.cc.html#L197'>end</a><span class="Delimiter">();</span>
+<span id="L380" class="LineNr">380 </span>  <span class="Delimiter">}</span>
+<span id="L381" class="LineNr">381 </span><span class="Delimiter">}</span>
+<span id="L382" class="LineNr">382 </span>
+<span id="L383" class="LineNr">383 </span><span class="Delimiter">:(scenario new_initializes)</span>
+<span id="L384" class="LineNr">384 </span><span class="Special">% Memory_allocated_until = 10;</span>
+<span id="L385" class="LineNr">385 </span><span class="Special">% put(Memory, Memory_allocated_until, 1);</span>
+<span id="L386" class="LineNr">386 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L387" class="LineNr">387 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:num<span class="Special"> &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L388" class="LineNr">388 </span>]
+<span id="L389" class="LineNr">389 </span><span class="traceContains">+mem: storing 0 in location 10</span>
+<span id="L390" class="LineNr">390 </span>
+<span id="L391" class="LineNr">391 </span><span class="Delimiter">:(scenario new_size)</span>
+<span id="L392" class="LineNr">392 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L393" class="LineNr">393 </span>  <span class="Constant">11</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L394" class="LineNr">394 </span>  <span class="Constant">12</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L395" class="LineNr">395 </span>  <span class="Constant">13</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">12</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">11</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span>
+<span id="L396" class="LineNr">396 </span>]
+<span id="L397" class="LineNr">397 </span><span class="Comment"># size of number + refcount</span>
+<span id="L398" class="LineNr">398 </span><span class="traceContains">+mem: storing 2 in location 13</span>
+<span id="L399" class="LineNr">399 </span>
+<span id="L400" class="LineNr">400 </span><span class="Delimiter">:(scenario new_array_size)</span>
+<span id="L401" class="LineNr">401 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L402" class="LineNr">402 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span><span class="Delimiter">,</span> <span class="Constant">5</span>
+<span id="L403" class="LineNr">403 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L404" class="LineNr">404 </span>  <span class="Constant">3</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw</span>
+<span id="L405" class="LineNr">405 </span>]
+<span id="L406" class="LineNr">406 </span><span class="Comment"># 5 locations for array contents + array length + refcount</span>
+<span id="L407" class="LineNr">407 </span><span class="traceContains">+mem: storing 7 in location 3</span>
+<span id="L408" class="LineNr">408 </span>
+<span id="L409" class="LineNr">409 </span><span class="Delimiter">:(scenario new_empty_array)</span>
+<span id="L410" class="LineNr">410 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L411" class="LineNr">411 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span><span class="Delimiter">,</span> <span class="Constant">0</span>
+<span id="L412" class="LineNr">412 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L413" class="LineNr">413 </span>  <span class="Constant">3</span>:num/<span class="Special">raw &lt;- </span>subtract <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw</span><span class="Delimiter">,</span> <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:array:num/<span class="Special">raw</span>
+<span id="L414" class="LineNr">414 </span>]
+<span id="L415" class="LineNr">415 </span><span class="traceContains">+run: {1: (&quot;address&quot; &quot;array&quot; &quot;number&quot;), &quot;raw&quot;: ()} &lt;- new {number: &quot;type&quot;}, {0: &quot;literal&quot;}</span>
+<span id="L416" class="LineNr">416 </span><span class="traceContains">+mem: array length is 0</span>
+<span id="L417" class="LineNr">417 </span><span class="Comment"># one location for array length, and one for the refcount</span>
+<span id="L418" class="LineNr">418 </span><span class="traceContains">+mem: storing 2 in location 3</span>
+<span id="L419" class="LineNr">419 </span>
+<span id="L420" class="LineNr">420 </span><span class="Comment">//: If a routine runs out of its initial allocation, it should allocate more.</span>
+<span id="L421" class="LineNr">421 </span><span class="Delimiter">:(scenario new_overflow)</span>
+<span id="L422" class="LineNr">422 </span><span class="Special">% Initial_memory_per_routine = 3;  // barely enough room for point allocation below</span>
+<span id="L423" class="LineNr">423 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L424" class="LineNr">424 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:num/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">number:type</span>
+<span id="L425" class="LineNr">425 </span>  <span class="Constant">2</span>:<a href='043space.cc.html#L76'>address</a>:point/<span class="Special">raw &lt;- </span><span class="Normal">new</span> <span class="Constant">point:type</span>  <span class="Comment"># not enough room in initial page</span>
+<span id="L426" class="LineNr">426 </span>]
+<span id="L427" class="LineNr">427 </span><span class="traceContains">+new: routine allocated memory from 1000 to 1003</span>
+<span id="L428" class="LineNr">428 </span><span class="traceContains">+new: routine allocated memory from 1003 to 1006</span>
+<span id="L429" class="LineNr">429 </span>
+<span id="L430" class="LineNr">430 </span><span class="Delimiter">:(scenario new_without_ingredient)</span>
+<span id="L431" class="LineNr">431 </span><span class="Special">% Hide_errors = true;</span>
+<span id="L432" class="LineNr">432 </span><span class="muRecipe">def</span> <a href='000organization.cc.html#L113'>main</a> [
+<span id="L433" class="LineNr">433 </span>  <span class="Constant">1</span>:<a href='043space.cc.html#L76'>address</a>:number<span class="Special"> &lt;- </span><span class="Normal">new</span>  <span class="Comment"># missing ingredient</span>
+<span id="L434" class="LineNr">434 </span>]
+<span id="L435" class="LineNr">435 </span><span class="traceContains">+error: <a href='000organization.cc.html#L113'>main</a>: 'new' requires one or two ingredients, but got '1:address:number &lt;- new'</span>
 </pre>
 </body>
 </html>