<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">2014-07-02 13:27 GMT+02:00 David T. Lewis <span dir="ltr">&lt;<a href="mailto:lewis@mail.msen.com" target="_blank">lewis@mail.msen.com</a>&gt;</span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div><br>
On Wed, Jul 02, 2014 at 07:44:26AM +0200, Nicolas Cellier wrote:<br>
&gt;<br>
&gt; 2014-07-02 0:28 GMT+02:00 David T. Lewis &lt;<a href="mailto:lewis@mail.msen.com">lewis@mail.msen.com</a>&gt;:<br>
&gt;<br>
&gt; &gt;<br>
&gt; &gt; On Tue, Jul 01, 2014 at 09:21:00PM +0200, Nicolas Cellier wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; 2014-07-01 4:22 GMT+02:00 &lt;<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>&gt;:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; Item was changed:<br>
&gt; &gt; &gt; &gt;   ----- Method: LargeIntegersPlugin&gt;&gt;cDigitSub:len:with:len:into: (in<br>
&gt; &gt; &gt; &gt; category &#39;C core&#39;) -----<br>
&gt; &gt; &gt; &gt; + cDigitSub: pByteSmall len: smallLen with: pByteLarge len: largeLen<br>
&gt; &gt; into:<br>
&gt; &gt; &gt; &gt; pByteRes<br>
&gt; &gt; &gt; &gt; +       | z |<br>
&gt; &gt; &gt; &gt; - cDigitSub: pByteSmall<br>
&gt; &gt; &gt; &gt; -               len: smallLen<br>
&gt; &gt; &gt; &gt; -               with: pByteLarge<br>
&gt; &gt; &gt; &gt; -               len: largeLen<br>
&gt; &gt; &gt; &gt; -               into: pByteRes<br>
&gt; &gt; &gt; &gt; -       | z limit |<br>
&gt; &gt; &gt; &gt;         &lt;var: #pByteSmall type: &#39;unsigned char * &#39;&gt;<br>
&gt; &gt; &gt; &gt;         &lt;var: #pByteLarge type: &#39;unsigned char * &#39;&gt;<br>
&gt; &gt; &gt; &gt;         &lt;var: #pByteRes type: &#39;unsigned char * &#39;&gt;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt; &gt; +       z := 0. &quot;Loop invariant is -1&lt;=z&lt;=1&quot;<br>
&gt; &gt; &gt; &gt; +       0 to: smallLen - 1 do:<br>
&gt; &gt; &gt; &gt; -       z := 0.<br>
&gt; &gt; &gt; &gt; -       &quot;Loop invariant is -1&lt;=z&lt;=1&quot;<br>
&gt; &gt; &gt; &gt; -       limit := smallLen - 1.<br>
&gt; &gt; &gt; &gt; -       0 to: limit do:<br>
&gt; &gt; &gt; &gt;                 [:i |<br>
&gt; &gt; &gt; &gt;                 z := z + (pByteLarge at: i) - (pByteSmall at: i).<br>
&gt; &gt; &gt; &gt; +               pByteRes at: i put: z - (z // 256 * 256).<br>
&gt; &gt; &quot;sign-tolerant<br>
&gt; &gt; &gt; &gt; form of (z bitAnd: 255)&quot;<br>
&gt; &gt; &gt; &gt;<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Frankly, having z declared unsigned int and just doing  pByteRes at: i<br>
&gt; &gt; put:<br>
&gt; &gt; &gt; (z bitAnd: 16rFF) as I suggested would be way way simpler and will ALWAYS<br>
&gt; &gt; &gt; work.<br>
&gt; &gt; &gt; Why the hell invoke the complications of signed arithmetic when the<br>
&gt; &gt; content<br>
&gt; &gt; &gt; pByteRes is unsigned???<br>
&gt; &gt;<br>
&gt; &gt; Nicolas,<br>
&gt; &gt;<br>
&gt; &gt; This sounds right to me.<br>
&gt; &gt;<br>
&gt; &gt; Do you have a final version of #cDigitSub:len:with:len:into: that you can<br>
&gt; &gt; recommend? The version in VMMaker-nice.342 produces failures in the<br>
&gt; &gt; KernelTests-Numbers tests when compiled in 64-bit mode, but I think that<br>
&gt; &gt; you have since suggested some other improvements in this email thread.<br>
&gt; &gt;<br>
&gt; &gt; Dave<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; Hi David,<br>
&gt; that&#39;s interesting. VMMaker-nice.342 contains all the 32bits LargeInteger<br>
&gt; modifications, not just the #cDigitSub:len:with:len:into:.<br>
&gt; I tried to declare everything as &lt;unsigned int&gt; rather than &lt;usqInt&gt; with<br>
&gt; the assumption that sizeof(unsigned int)*2==sizeof(unsigned long long).<br>
&gt; But I never tried to compile a 64 bits VM, I think I lost the recipe for<br>
&gt; brewing such a flavour.<br>
&gt; I&#39;m on MacOSX, could you provide a link to the shortest way to do it?<br>
&gt; Once I can check it, I&#39;ll publish a corrected version.<br>
&gt; Thanks<br> 
<br></div></div></blockquote><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">
</div></div>Hi Nicolas,<br>
<br>
Starting with an up to date VMMaker (trunk), I loaded #cDigitSub:len:with:len:into:<br>
from VMMaker-nice.342, then compiled the VM on 64-bit Linux and ran the unit tests.<br>
<br></blockquote><div><br></div><div>Ah, but you can&#39;t pick this single method from LargeIntegerPlugin v2.0...<br>It tries to access/process by 32-bits digits instead of 8-bits digits.<br></div><div>So it would be necessary to also change the send site for providing the right number of digits...<br>
</div><div>I&#39;ll do a rewrite for 8 bits this evening...<br></div><div> <br></div><div>Nicolas<br><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I also ran tests on the 64-bit image with 64-bit VM, and this did *not* show<br>
any problem.<br>
<br>
Sorry I did not look into it further, I will try to do so as soon as I get<br>
some time.<br>
<br>
Dave<br>
<br>
</blockquote></div><br></div></div>