<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - LLInt should support other types of prototype GetById caching."
   href="https://bugs.webkit.org/show_bug.cgi?id=158083#c108">Comment # 108</a>
              on <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - LLInt should support other types of prototype GetById caching."
   href="https://bugs.webkit.org/show_bug.cgi?id=158083">bug 158083</a>
              from <span class="vcard"><a class="email" href="mailto:keith_miller&#64;apple.com" title="Keith Miller &lt;keith_miller&#64;apple.com&gt;"> <span class="fn">Keith Miller</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=283306&amp;action=diff" name="attach_283306" title="Patch">attachment 283306</a> <a href="attachment.cgi?id=283306&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=283306&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=283306&amp;action=review</a>

<span class="quote">&gt; Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm:1478
&gt; +        loadEncodedThisValue(t3, a1)
&gt; +        push t5, cfr
&gt; +        loadp 20[PC], t5
&gt; +        # Inlining the GetValueFunc call
&gt; +        move t2, a3 # Load arg2 PropertyName
&gt; +        if BIG_ENDIAN
&gt; +            move a1, a2 # Load arg1 Payload of EncodedJSValue
&gt; +            move CellTag, a1 # Load arg1 Tag of EncodedJSValue
&gt; +        else
&gt; +            move CellTag, a2 # Load arg1 Tag of EncodedJSValue
&gt; +        end
&gt; +        move cfr, a0 # Loading exec
&gt; +        cCall4(t5)</span >

Looks good. Although I still think you need to handle the EABI. For the EABI you'll need to push the PropertyName onto the stack put the EncodedJSValue into r2-r3. r1 should be empty.

<span class="quote">&gt; Source/JavaScriptCore/llint/LowLevelInterpreter64.asm:1322
&gt; +macro loadEncodedThisValue(baseValue, dest)
&gt; +   loadpFromInstruction(6, dest)
&gt; +   bineq 0, dest, .loadEncodedThisValueDone
&gt; +   move baseValue, dest
&gt; +   .loadEncodedThisValueDone:
&gt; +end</span >

I think this should be bpneq. bineq only compares the low 32 bits. Also, You could move it to LowLevelInterpreter.asm</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>