<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Unite op_get_by_id_with_this with op_get_by_id"
   href="https://bugs.webkit.org/show_bug.cgi?id=162124#c28">Comment # 28</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Unite op_get_by_id_with_this with op_get_by_id"
   href="https://bugs.webkit.org/show_bug.cgi?id=162124">bug 162124</a>
              from <span class="vcard"><a class="email" href="mailto:fpizlo&#64;apple.com" title="Filip Pizlo &lt;fpizlo&#64;apple.com&gt;"> <span class="fn">Filip Pizlo</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=162124#c20">comment #20</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=162124#c19">comment #19</a>)
&gt; &gt; Why would we do this?
&gt; 
&gt; If I didn't miss any context *_with_this were created to solve the bug on
&gt; (<a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - Getter and setter on super are called with wrong &quot;this&quot; object"
   href="show_bug.cgi?id=147064">https://bugs.webkit.org/show_bug.cgi?id=147064</a>). The current
&gt; implementationis just a call to slow paths &quot;operation*WithThis&quot;, meaning
&gt; that we don't use IC or PIC on &quot;super.foo&quot; for example.
&gt; Merging get_by_id_with_this with op_get_by_id we enable its optimization
&gt; including IC and PIC. In terms of performance, now it means 20% faster over
&gt; op_get_by_id_with_this version.</span >

Then you should make get_by_id_with_this use inline caches. 

You shouldn't change get_by_id. 

<span class="quote">&gt; 
&gt; &gt; It's definitely good for lower tiers that get_by_id does not take an extra
&gt; &gt; this operand.  It's also easier to parse.  I don't understand why we would
&gt; &gt; remove this optimization.
&gt; 
&gt; I didn't understand why it is easier to parse.
&gt; Also, About good parts of get_by_id does not take an extra this operand, do
&gt; you mind explain me why? I can think that we use extra memory to store the
&gt; this operand, which has a big impact because get_by_id is one of the most
&gt; used op_codes.</span >

Compiler analyses always have an O(E) component, where E is the number of data flow edges. One such analysis is the OSR likeness analysis in the DFG and FTL. It's a very expensive analysis and we don't want to make it worse. You're adding a useless &quot;this&quot; data flow edge to every property access. I don't think we want that. 

I just want to be very clear: I'm strongly against uniting get_by_id with get_by_id_with_this. Please change your approach to making the unification happen at the PolymorphicAxcess/StructureStubInfo level and please keep these opcodes sepaate.</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>