<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - LLInt should support other types of prototype GetById caching."
   href="https://bugs.webkit.org/show_bug.cgi?id=158083#c23">Comment # 23</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - 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:ticaiolima&#64;gmail.com" title="Caio Lima &lt;ticaiolima&#64;gmail.com&gt;"> <span class="fn">Caio Lima</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=158083#c22">comment #22</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=158083#c21">comment #21</a>)
&gt; &gt; Per your request before on inlining the getter call, I think the simplest
&gt; &gt; way to implement it is to follow how we do it in
&gt; &gt; PolymorphicAccess/operationGetByIdOptimize. PolymorphicAccess has the inline
&gt; &gt; cache repatching code used in the JITs. The assembler in PolymorphicAccess
&gt; &gt; more or less models X86 so it shouldn't be too hard to follow and translate
&gt; &gt; to LLInt assembly. I'll also see if I can find some better information about
&gt; &gt; the calling convention too. Let me know if you have any other questions.
&gt; 
&gt; Also, it might be helpful to look at JSStack.h, in particular, the
&gt; CallFrameHeaderEntry enum since that represents the expected layout of a JS
&gt; frame at the end of the function prologue.</span >

Thank you for pointing where I can look. I think I am almost done because I understand and know hot to construct the JS Frame convention for 64bits architecture, however I am missing some very important information.

1) how to perform the call to the Getter function? I searched and found a makeJavascriptCall macro, however I am not sure if it is necessary use it.
Also I would like to understand the offlineassembly code &quot;call&quot;.

2) Another point is, How can I get the getter JSFunction, since the offset cached point to a &quot;GetterSetter&quot;? Is it possible use &quot;loadp GetterSetter::m_getter[t3], t4&quot;, for example? I noticed that the code in PolymorphicAccess uses GetterSetter::offsetGetter(). I suppose that this value should be placed in calle member of JS Frame Entry.

I didn't find information about the OfflineAssembly, could you point me some?</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>