Hi Eliot. Me again :)   I was checking the changes Igor did some time ago for the fast become where he basically swapped the bytes contents between the objects when they were the same size and same header type. He put such code in separate primtives and some changes in the image side to call them. I have just played with them and they seem to work. I have 2 questions for you:<br>
<br>1) Do you think that this new fast become can have problems when becoming CompiledMethods? I am asking because of the JIT/Pic. Maybe I need a flushCache or something? <br clear="all">So far, I tried for example the following:<br>
    | methods |<br>    methods := IdentitySet new.<br>    (PackageInfo allPackages select: [:each| <br>        (#( &#39;AST&#39; &#39;Autotest&#39; &#39;AutomaticMethodCategorizer&#39; &quot;&#39;Bogus&#39; &#39;CodeStats&#39;  &#39;Gofer&#39; &#39;Metacello&#39; &#39;FreeType&#39; &#39;HelpSystem&#39; &#39;ProfStef&#39; &#39;ScriptManager&#39; &#39;Zinc&#39; &#39;Sound&#39; &#39;Tests&#39; &#39;ConfigurationOf&#39; &#39;ImageForDevelopers&#39; &#39;LED&#39; &#39;MemoryMonitor&#39; &#39;SUnit&#39; &#39;TrueType&#39; &#39;Monticello&#39;  &#39;Network&#39; &#39;Refactoring&#39; &#39;Regex&#39; &#39;ToolBuilder&#39;&quot; ) anySatisfy:  [:aString  | (each packageName includesSubString: aString)]) <br>
        ] ) <br>    do: [:aPackage |<br>        aPackage classes do: [:each | methods addAll: each methods ].<br>        ].<br>    methods do: [:each |<br>    each become: each copy<br>    ]<br><br>and I run the tests of that package before and after... no crash. Is there something better I could test?<br>
<br>2) If I prepare a nice script with some small modifications to Igor&#39;s proposal  would you take a look and integrate it if it is ok?  Just to know whether I should spend time on that or not.<br><br>Thanks in advance,<br>
<br><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>