<br><br><div class="gmail_quote">On Thu, Feb 2, 2012 at 9:23 PM, Eliot Miranda <span dir="ltr">&lt;<a href="mailto:eliot.miranda@gmail.com">eliot.miranda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
 <br><br><br><div class="gmail_quote">On Wed, Feb 1, 2012 at 8:19 AM, Mariano Martinez Peck <span dir="ltr">&lt;<a href="mailto:marianopeck@gmail.com" target="_blank">marianopeck@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


 <br><br><br><div class="gmail_quote">On Wed, Feb 1, 2012 at 12:28 AM, Eliot Miranda <span dir="ltr">&lt;<a href="mailto:eliot.miranda@gmail.com" target="_blank">eliot.miranda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">






 <br><br><br><div class="gmail_quote">On Tue, Jan 31, 2012 at 3:13 PM, Mariano Martinez Peck <span dir="ltr">&lt;<a href="mailto:marianopeck@gmail.com" target="_blank">marianopeck@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">







 <br><br><br><div class="gmail_quote">On Tue, Jan 31, 2012 at 11:42 PM, Eliot Miranda <span dir="ltr">&lt;<a href="mailto:eliot.miranda@gmail.com" target="_blank">eliot.miranda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">








 <br><br><br><div class="gmail_quote">On Tue, Jan 31, 2012 at 12:41 PM, Mariano Martinez Peck <span dir="ltr">&lt;<a href="mailto:marianopeck@gmail.com" target="_blank">marianopeck@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">









 <br><br><br><div class="gmail_quote">On Tue, Jan 31, 2012 at 9:28 PM, Eliot Miranda <span dir="ltr">&lt;<a href="mailto:eliot.miranda@gmail.com" target="_blank">eliot.miranda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">










 <br><br><br><div class="gmail_quote">On Tue, Jan 31, 2012 at 12:19 PM, Igor Stasenko <span dir="ltr">&lt;<a href="mailto:siguctua@gmail.com" target="_blank">siguctua@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">











<div><br>
On 31 January 2012 20:50, Eliot Miranda &lt;<a href="mailto:eliot.miranda@gmail.com" target="_blank">eliot.miranda@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Jan 31, 2012 at 11:22 AM, Mariano Martinez Peck &lt;<a href="mailto:marianopeck@gmail.com" target="_blank">marianopeck@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 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>












&gt;&gt;<br>
&gt;&gt; 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>
&gt;<br>
&gt;<br>
&gt; Yes, almost certainly.  You&#39;d want to do a flushCache on both methods.<br>
&gt;<br>
</div>are there other object types which we need to be careful with?<br></blockquote><div><br></div><div>There are a few.  e.g. the Array literals in named primitives (because they hold target function pointers).  CompiledMethods (because they may have associated machine code).  Contexts (because they may have associated stack frames).</div>











<div> </div></div></blockquote><div><br>Eliot, I don&#39;t understand why we have these problems with the &quot;fast become&quot; but not with the normal one. What happens wich each of your examples with the normal become? how are they solved?<br>









</div></div></blockquote><div><br></div><div>The &quot;slow&quot; become is implemented in terms of the GC&#39;s pointer-forwarding mechanism, which is used in normal garbage collection, not just become.  This machinery is the ObjectMemory&gt;remap: machinery.  The JIT implements the same mapping machinery for literal objects embedded in machine code.  These include not just literals but also classes in inline-caches.  So it would seem that implementing markObject: and remap: for literals in jitted methods is all one needs to support GC and become:.  In fact, life is more complex because there is an optimization in the JIT to avoid scanning all of machine code on incremental GC.  The jit maintains a list of those methods that contain references to young objects and only scans this list on an incremental GC, and this list must be maintained correctly.  Hence there are three different remap routines in the jit, </div>









<div><br></div><div><div>Cogit&gt;mapObjectReferencesInMachineCodeForIncrementalGC</div><div><span style="white-space:pre-wrap">        </span>&quot;Update all references to objects in machine code for an incremental gc.</div>
<div><span style="white-space:pre-wrap">        </span> Avoid scanning all code by using the youngReferrers list.  In an incremental</div><div><span style="white-space:pre-wrap">        </span> GC a method referring to young may no longer refer to young, but a method</div>









<div><span style="white-space:pre-wrap">        </span> not referring to young cannot and will not refer to young afterwards.&quot;</div></div><div><br></div><div>Cogit&gt;mapObjectReferencesInMachineCodeForFullGC</div>
<div><span style="white-space:pre-wrap">        </span>&quot;Update all references to objects in machine code for a full gc.  Since</div><div><span style="white-space:pre-wrap">        </span> the current (New)ObjectMemory GC makes everything old in a full GC</div>









<div><span style="white-space:pre-wrap">        </span> a method not referring to young will not refer to young afterwards&quot;</div><div><br></div><div><br></div><div>Cogit&gt;mapObjectReferencesInMachineCodeForBecome</div>
<div><span style="white-space:pre-wrap">        </span>&quot;Update all references to objects in machine code for a become.</div><div><span style="white-space:pre-wrap">        </span> Unlike incrementalGC or fullGC a method that does not refer to young</div>









<div><span style="white-space:pre-wrap">        </span> may refer to young as a result of the become operation.&quot;</div></div></blockquote><div><br><br><br>Aha. Ok. Now I see. So, let me see if I understand. So the problem of CompiledMethod gets fixed if we flush its cache. Right?<br>







</div></div></blockquote><div><br></div><div>I hope so.  The current implementation reads</div><div><br></div><div>CoInterpreterPrimitives&gt;primitiveFlushCacheByMethod</div><div><span style="white-space:pre-wrap">        </span>&quot;The receiver is a compiledMethod.  Clear all entries in the method lookup cache that</div>







<div><span style="white-space:pre-wrap">        </span> refer to this method, presumably because it has been redefined, overridden or removed.</div><div><span style="white-space:pre-wrap">        </span> Override to flush appropriate machine code caches also.&quot;</div>







<div><span style="white-space:pre-wrap">        </span>super primitiveFlushCacheByMethod.</div><div><span style="white-space:pre-wrap">        </span>cogit unlinkSendsTo: self stackTop<br> <br></div></div></blockquote><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">






<div class="gmail_quote"><div>
</div><div>That may not be enough.  The VM may have to throw the method away.  Tests will show whether merely unlinking is sufficient.  </div></div></blockquote><div><br><br>Eliot, I have to admit that the discussion is going further than my understandings :(<br>


</div></div></blockquote><div><br></div><div>So you need to write tests that verify that the VM can cope with fast becomming a jitted method, and perhaps can cope with fast becomming a jitted method with activations.  So the tests need to check that they are operating on at least one jitted method and perhaps a jitted method with an activation.  Just assuming that running code will cause the jit to compile and that activatiosn exist isn&#39;t really good enough for tests.  The VM discards methods to make room for new ones, so IMO to know that one is actually testing what one wants to test the tests need to use something like an xray primitive to know.</div>
</div></blockquote><div><br>Ok, I understand. <br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote">

<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>



<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><div>The issue is that if the method is being used then throwing it away may involve flushing the stack activations of the method, and that makes the implementation much more complex.</div>







<div><br></div></div></blockquote><div><br>Ok, I understand that, but again I don&#39;t understand why<br>a) this does not happen with the &quot;slow become&quot;. Is it again because of the forwarding table?<br></div></div>


</blockquote><div><br></div><div>I think that an attempt to become an active context will probably cause the VM to crash.  I&#39;d be interested in seeing a test that becommes contexts that worked on the interpreter VM.  I doubt it&#39;ll work in current Cog.  While the remap machinery (forwarding table) does update stack frames a become on a married context, between a single and a married context or become between married contexts will almost certainly break the two-way mapping between the married context(s) and its/their stack frame(s).</div>
</div></blockquote><div><br>I see. So I won&#39;t become contexts :)<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote">


<div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>b) it doesn&#39;t happen when we flush methods. For example, when using TestCoverage that we put objects as methods and we use the #run:with:in: we flush the method cache... why that doens&#39;t need to flush stack activations?  just becuase in that case we are sure that the method is not being used?<br>


</div></div></blockquote><div><br></div><div>Flushing the method cache doesn&#39;t throw away jitted methods, it merely clears the method lookup cache and unlinks all linked sends so that any subsequent look-up is redone.  But the VM assumes one doesn&#39;t change the contents of a compiled method after it is created, and hence the machine code is valid.  The VM plays fast and loose with CompiledMethod&gt;&gt;#objectAt:put:, not redoing any compilation or activation flushing when one does obejctAt:put: on a jitted method because I&#39;ve got away with it so far.  I think in your case I can still get away with it since the method isn&#39;t used after it is becommed into a proxy, but you may need to use the SmalltalkImage&gt;&gt;voidCogVMState primitive (#214) after faulting out code to ensure that any faulted out methods are really gone.</div>


<div><br></div></div></blockquote><div><br>Ahhh ok, that&#39;s what I didn&#39;t know. I thought that the flush not only flushes but also it discards the jitted versions. Now if I send #voidCogVMState after each become, I can become CompiledMethod without problems :)  <br>
 </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><div></div><div>The bottom line here is that uses of become on objects that the VM is aggressively optimising (contexts &amp; methods) needs to be done with care</div>
</div></blockquote><div><br>Indeed. <br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><div> and the engineering of this needs to find a compromise between generality and optimisation.  Again good tests that stress the system are essential in our being able to understand the trade-offs and implement correctly.</div>


<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>



<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><div></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">






<div class="gmail_quote"><div>
Now...if we always send #mapObjectReferencesInMachineCodeForBecome   after the &quot;fast become&quot; we will be updating all literals from machine code methods. <br></div></div></blockquote><div><br></div><div>Um, will it? The mapping is done only to references to objects that are forwarded.  If that&#39;s going to do the trick then great.  But I don&#39;t know enough about your fast become to know.</div>






</div></blockquote><div><br>I think I was wrong. Obviously, #mapObjectReferencesInMachineCodeForBecome  is based in the forwarding table. Igor&#39;s solution just swaps contents... it does nothing regarding forwarding table. <br>


</div></div></blockquote><div><br></div><div>OK, that was what I assumed.  So fast become on contexts is only safe if the neither context is married, and only safe on methods if neither method is jitted.</div><div> </div>
</div></blockquote><div><br>Exactly.  But even with that limitations it may be worth it.  <br><br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote">

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>



<br>Here I attach a slighly modified version of Igor code so that you can take a look, at leat to get an idea of what we are talking about. I attach the VMMaker changs and the image side. Personally, I think that performing the become with arrays is just becuause the become is slow. If become were fast, we would do the loop in image side, right?  Because of that, I think it is nice to have it in a separate primitive which fallbacks in the array.<br>


</div></div></blockquote><div><br></div><div>I&#39;ll take a look.  Swapping become is fast right? </div></div></blockquote><div>yes <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote"><div> The loop in the normal forwarding become is in the VM because forwarding become is indeed slow.  </div></div></blockquote><div><br>yes <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote"><div>So IMO you don&#39;t need a bulk slow become, just a pair-wise slow become.</div>

<div><br></div></div></blockquote><div><br>I didn&#39;t catch this one. <br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote">
<div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>



<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote">
<div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>I didn&#39;t understand this one &quot;  e.g. the Array literals in named primitives (because they hold target function pointers)&quot;<br>







</div></div></blockquote><div><br></div><div>Look at a method containing a named primitive that&#39;s in use and look at its first literal.  e.g.</div><div><br></div><div>(StandardFileStream &gt;&gt; #primRead:into:startingAt:count:) literalAt: 1 #(#FilePlugin #primitiveFileRead 0 12)</div>







<div><br></div><div>That 12 is meaningful to the VM.  See primitiveExternalCall:</div><div><br></div><div><div><span style="white-space:pre-wrap">        </span>External primitive methods first literals are an array of</div>
<div><span style="white-space:pre-wrap">                </span>* The module name (String | Symbol) </div><div><span style="white-space:pre-wrap">                </span>* The function name (String | Symbol) </div><div>
<span style="white-space:pre-wrap">                </span>* The session ID (SmallInteger) [OBSOLETE] </div><div><span style="white-space:pre-wrap">                </span>* The function index (Integer) in the externalPrimitiveTable</div></div></div>






</blockquote><div><br><br>Yes, I know that, what I don&#39;t understand is what that can be affected by the fast become. The external primitive table doesn&#39;t have a pointer to the method, but to the function address. So even if I become a named prmitive, wouldn&#39;t the table still be correct?<br>


</div></div></blockquote><div><br></div><div>If you become the first literal of a linked named primitive into something else it could potentially f**k up the VM.  You can&#39;t become that literal into anything you want and expect the VM to keep running.  For example if you become it to an Array with an invalid index in it it&#39;ll cause the VM to fetch a bogus function pointer and cal it.  The last element of the Array (if non-zero) is the index into a table of external functions (the named primitive functions), so changing its value can cause an out-of-bounds access or fetch an invalid entry etc.  Chances are the VM will crash if the named primitive is invoked.</div>

<div><br></div></div></blockquote><div><br>Ok, I can imagine, and it makes sense. In my use-case at least, this doesn&#39;t happen luckily.<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote"><div></div><div><br></div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>


In any case, I guess we can do a #flushExternalPrimitives or #flushExternalPrimitives  to avoid possible problems.  Would that help?<br></div></div></blockquote><div><br></div><div>If done right.  But that&#39;s not the point.  The point is that certain objects contain sensitive state that one can&#39;t just become and expect the VM to continue running.  For example, if you were to become class Message into something not class-like then the next time the system tried to do a doesNotUnderstand: it would construct an invalid instance and boom.  So in these cases you need to &quot;not do that&quot;.  As I&#39;ve said the set of objects includes the literals at the start of named primitive methods.</div>

<div><br></div></div></blockquote><div><br>I understanad. <br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><div>
</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div><br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">





<div class="gmail_quote"><div>
</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div>
What happens with &quot;Contexts (because they may have associated stack frames).&quot;  ?  should we need to flush somehow or update stack frames?<br></div></div></blockquote><div><br></div><div>Yes.  If you smash the state of a context that has an associated stack frame then the VM will likely crash.  See senders of externalDivorceFrame:andContext: to see where the VM disassociates contexts and their stack frames when an access to a context (e.g. changing its stack pointer or pc) necessitates it.</div>







<div> </div></div></blockquote><div><br>ok, and so that can happens if we become contexts?<br></div></div></blockquote><div><br></div><div>I&#39;m not sure I understand what you mean.  Of course becomming contexts can f**k things up.  Try thisContext sender become: Point new.  But the above is about how the VM optimizes contexts by mapping them to stack frames. The VM maintains a complex and delicate bi-directional mapping between stack frames and contexts so that most of the time it is able to use stack frames for execution.  It intercepts inst var accesses to contexts that are married to stack frames to &quot;do the right thing&quot; (e.g. alter the stack frame, or discard the stack frame, remember my blog post on the scheme?).  If you become contexts carelessly then this bidirectional mapping can become corrupted and the VM will likely crash.  Right now I&#39;ve got away with not checking for married contexts in become operations, presumably because no-one has tried becomming contexts.  If you&#39;re about to start becomming contents then the become operation(s) will need additional checks to prevent this corruption.</div>
</div></blockquote><div><br>I understand. I think that for the moment I will just &quot;avoid&quot; becoming contexts. <br><br>Thanks Eliot for your help.<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote">
<div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div><br>Thanks Eliot. <br><br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">



<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="gmail_quote"><div><br>Thanks!<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">


<div class="gmail_quote"><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="gmail_quote"><div>
Sorry for the noob question.<br></div></div></blockquote><div><br></div><div>It&#39;s a good question :)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">









<div class="gmail_quote"><div><br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">











because i was thinking to just put a check in fast-become prim and<br>
simply fail the prim if object type(s) to be swapped are not<br>
supported, so user will be forced to use slow good-old #become:<br></blockquote><div><br></div><div>I agree.  But you can do even better, by checking that the compiled method has a machine-code version, and/or checking that a context is &quot;single&quot; (has no associated stack state).  It doesn&#39;t need to fail if there isn&#39;t any special state.  Identifying the named primitive linking literals is more difficult...</div>











<div><br></div></div></blockquote><div><br>Ideally, I would love to be able to do the fast become for all of them, even if that implies doing something extra for special cass (like flushing method cache).<br></div></div>









</blockquote><div><br></div><div>As they say, don&#39;t get caught.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="gmail_quote"><div><br>









 </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="gmail_quote"><div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<font color="#888888"><br>
--<br>
Best regards,<br>
Igor Stasenko.<br>
</font></blockquote></div><br><br clear="all"><div><br></div>-- <br>best,<div>Eliot</div><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>best,<div>Eliot</div><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>best,<div>Eliot</div><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>best,<div>Eliot</div><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>