<div dir="ltr"><div class="gmail_extra">Hi David,<br><br><div class="gmail_quote">On Sun, Jan 12, 2014 at 5:13 PM, David T. Lewis <span dir="ltr">&lt;<a href="mailto:lewis@mail.msen.com" target="_blank">lewis@mail.msen.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div class="im">On Sun, Jan 12, 2014 at 09:53:27PM +0100, Bert Freudenberg wrote:<br>

&gt;<br>
&gt; On 12.01.2014, at 20:42, David T. Lewis &lt;<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>&gt; wrote:<br>
&gt;<br>
</div><div class="im">&gt; &gt; It is worth noting that allObjectsDo: relies on assumptions about how<br>
&gt; &gt; the objects memory works internally. It requires that #someObject will<br>
&gt; &gt; always answer the object at the lowest address in the object memory, and<br>
&gt; &gt; also that a newly allocated object will always be placed at a higher<br>
&gt; &gt; address location than all other objects. Either of these assumptions is<br>
&gt; &gt; likely to be a problem as new and better object memories and garbage<br>
&gt; &gt; collectors are implemented.<br>
&gt; &gt;<br>
&gt; &gt; Dave<br>
&gt;<br>
&gt; Right (as Eliot&#39;s vm-dev post shows).<br>
&gt;<br>
&gt; So IMHO the only sensible semantics of allObjectsDo: is as in &quot;allObjects do:&quot; -<br>
&gt; which might be implemented as a primitive in some VMs soonish. It *should not*<br>
&gt; enumerate objects created after calling the method.<br>
&gt;<br>
<br>
<br>
</div>On Sun, Jan 12, 2014 at 12:01:00PM -0800, Eliot Miranda wrote:<br>
&gt;<br>
&gt; The bug is in implementing allObjects in terms of someObject and nextObject<br>
&gt; in the first place.  It&#39;s cheap and cheerful but horribly error-prone and<br>
&gt; restrictive.  It&#39;s cheap because the collection of objects doesn&#39;t have to<br>
&gt; be created, and on the original 16-bit Smalltalk machines that was really<br>
&gt; important.  It&#39;s horribly restrictive because it assumes much about the<br>
&gt; implementation.<br>
&gt;<br>
&gt; Before closures a sentinel wasn&#39;t even needed because enumerating the block<br>
&gt; didn&#39;t create a new object (the block context was reused).  So the code had<br>
&gt; to be rewritten just to support closures.<br>
&gt;<br>
&gt; Spur has a generation scavenger operating in a distinct new space and that<br>
&gt; doesn&#39;t jive well with a consistent ordering at all.  So far the system is<br>
&gt; limping along by tenuring all objects on someObject and someInstance (so<br>
&gt; that newSpace is either empty, or doesn&#39;t contain any instances of a<br>
&gt; specific class) and having nextObject enumerate only objects in oldSpace.<br>
&gt;<br>
&gt; But I think now we can afford a primitive that answers all the objects<br>
&gt; (remember that average object size means that such a collection will be ~<br>
&gt; 10% of the heap, average object size in Squeak V3 is about 10.6 words).  At<br>
&gt; least that&#39;s what Spur will do, along with an allInstancesOf: primitive.<br>
&gt;  And then the become example won&#39;t cause any problems at all.  Far more<br>
&gt; reliable.  I suppose there are circumstances when enumerating without a<br>
&gt; container is the only feasible approach, but VisualWorks has got along with<br>
&gt; only an allObjects primitive for a long time now.  I suspect we can too.<br>
&gt;<br>
<br>
Implementation attached. Works on interpreter VM, not yet tested on Cog but<br>
it should be ok there also. If no objections or better suggestions I will<br>
commit it to VMMaker tomorrow.<br>
<br>
InterpreterPrimitives&gt;&gt;primitiveAllObjects<br>
        &quot;Answer an array of all objects that exist when the primitive is called, excluding those<br>
        that may be garbage collected as a side effect of allocating the result array. Multiple<br>
        references to nil in the last slots of the array are an indication that garbage collection<br>
        occured, such that some of the unreferenced objects that existed at the time of calling<br>
        the primitive no longer exist. Sender is responsible for handling multiple references to<br>
        nil in the result array.&quot;<br></blockquote><div><br></div><div>Instead of filling the unused slots with nil or 0, I think you should shorten the object so that it contains each object only once, and contains only the objects.  Cog contains some code for shortening.  See [New]ObjectMemory&gt;&gt;shorten:toIndexableSize:. </div>
</div><br clear="all"><div>HTH</div>-- <br>best,<div>Eliot</div>
</div></div>