<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#c40">Comment # 40</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: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>(In reply to <a href="show_bug.cgi?id=158083#c39">comment #39</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=158083#c38">comment #38</a>)
&gt; &gt; Comment on <span class=""><a href="attachment.cgi?id=280560&amp;action=diff" name="attach_280560" title="Patch">attachment 280560</a> <a href="attachment.cgi?id=280560&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=280560&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=280560&amp;action=review</a>
&gt; &gt; 
&gt; &gt; Looks good. I think it's almost ready to go. Saam and I have a few comments
&gt; &gt; before the patch is ready to land however.
&gt; &gt; 
&gt; &gt; &gt; Source/JavaScriptCore/llint/LLIntSlowPaths.cpp:659
&gt; &gt; &gt; +        if ((slot.isValue() || slot.isAccessor()) &amp;&amp; slot.slotBase() == baseValue) {
&gt; &gt; 
&gt; &gt; Why clear the cache if we have a self accessor? There is no cost to leaving
&gt; &gt; the old value cache in place.
&gt; 
&gt; I see your point. Actually, the main reason I implemented it was because I
&gt; though it was the case where handling a cache miss and clearing the old
&gt; cache. However, if I am not wrong, It is the case just to self accessors,
&gt; right?
&gt; 
&gt; In our implementation, we just cache the prototype once (when
&gt; pc[7].u.operand reaches 0) and after that, all cache misses are handled by
&gt; the _llint_get_by_id_proto_acessor opcode slowPath case. The advantage to
&gt; clear the cache is to avoid all these misses, however, the original
&gt; _llint_get_by_id_proto_acessor also check for misses and there is no real
&gt; improvement clearing the cache, right?
&gt; </span >

That's right. Unless we have something else to put in the cache or the cache becomes invalid there is no benefit to clearing it.

<span class="quote">&gt; I am going to change it.
&gt; 
&gt; BTW, I have already an first implementation of CustomAcessors. What I need
&gt; to finish is inline the CustomAcessor call to Assembly code. I think it is a
&gt; good idea send them in the same patch, since the files touched are the same.
&gt; As you pointed me instructions to try inline the Getter, I already have an
&gt; idea what I need to do to complete this implementation.</span >

Cool, sounds like a plan. Let me know if you have any other questions.</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>