<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:saambarati1&#64;gmail.com" title="Saam Barati &lt;saambarati1&#64;gmail.com&gt;"> <span class="fn">Saam Barati</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - Implement WebAssembly module parser"
   href="https://bugs.webkit.org/show_bug.cgi?id=147293">bug 147293</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
               &nbsp;
           </td>
           <td>saambarati1&#64;gmail.com
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - Implement WebAssembly module parser"
   href="https://bugs.webkit.org/show_bug.cgi?id=147293#c30">Comment # 30</a>
              on <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - Implement WebAssembly module parser"
   href="https://bugs.webkit.org/show_bug.cgi?id=147293">bug 147293</a>
              from <span class="vcard"><a class="email" href="mailto:saambarati1&#64;gmail.com" title="Saam Barati &lt;saambarati1&#64;gmail.com&gt;"> <span class="fn">Saam Barati</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=147293#c29">comment #29</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=147293#c28">comment #28</a>)
&gt; &gt; Comment on <span class=""><a href="attachment.cgi?id=257894&amp;action=diff" name="attach_257894" title="Patch">attachment 257894</a> <a href="attachment.cgi?id=257894&amp;action=edit" title="Patch">[details]</a></span>
&gt; &gt; Patch
&gt; &gt; 
&gt; &gt; View in context:
&gt; &gt; <a href="https://bugs.webkit.org/attachment.cgi?id=257894&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=257894&amp;action=review</a>
&gt; &gt; 
&gt; &gt; &gt; Source/JavaScriptCore/wasm/WASMReader.cpp:38
&gt; &gt; &gt; +    result = m_cursor[0] | m_cursor[1] &lt;&lt; 8 | m_cursor[2] &lt;&lt; 16 | m_cursor[3] &lt;&lt; 24;
&gt; &gt; 
&gt; &gt; Out of curiosity, why does byte order not matter here but matter below?
&gt; 
&gt; Because the shift operator takes care of that. Say, m_cursor[0] = A,
&gt; m_cursor[1] = B, m_cursor[2] = C, and m_cursor[3] = D.
&gt; 
&gt; On a little-endian machine,
&gt; A       = A 0 0 0
&gt; B &lt;&lt; 8  = 0 B 0 0
&gt; C &lt;&lt; 16 = 0 0 C 0
&gt; D &lt;&lt; 24 = 0 0 0 D
&gt; result  = A B C D
&gt; 
&gt; On a big-endian machine,
&gt; A       = 0 0 0 A
&gt; B &lt;&lt; 8  = 0 0 B 0
&gt; C &lt;&lt; 16 = 0 C 0 0
&gt; D &lt;&lt; 24 = D 0 0 0
&gt; result  = D C B A
&gt; 
&gt; which is as it should be.</span >
Makes sense. This is a cool illustration.
It's a little worrisome that this is wrong though
if it's decided that WASM binary format is big endian.
I'm not sure there is an alternative, though. 

<span class="quote">&gt; 
&gt; &gt; Also, does WASM follow network byte order?
&gt; 
&gt; The binary format hasn't been standardized yet. We are using the file format
&gt; of an experimental WebAssembly polyfill
&gt; &lt;<a href="https://github.com/WebAssembly/polyfill-prototype-1">https://github.com/WebAssembly/polyfill-prototype-1</a>&gt;, which uses the little
&gt; endian format.</span >
Do we think it is likely that WASM binary format will stay
little endian? Would a lot of parsing code have to change if it's
big endian? It seems like it wouldn't be a lot but I haven't read
all the WASM code you've been working on.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>