<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [DOMJIT] Add DOMJITSignature"
   href="https://bugs.webkit.org/show_bug.cgi?id=162980">162980</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[DOMJIT] Add DOMJITSignature
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>WebKit Nightly Build
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>JavaScriptCore
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>utatane.tea&#64;gmail.com
          </td>
        </tr></table>
      <p>
        <div>
        <pre>We should have two type of DOMJIT functionality.

1. DOMJIT::GetterSetter based inlining system

We can define all the DOMJIT operations in DOMJIT::Patchpoint. It is great since we have a chance to inline it completely!
While it's quite good for performance, ASM is typically written by hand.
I explored the way to generate ASM automatically from IDL compiler, but the accessors we can do so is still limited.

For example, even in Node::firstChild, it has special check path for ContainerNode, while nextSibling, parentNode, and previousSibling do not have such a path.
And this fact is not exposed in IDL.

We manually write ASM in this case. It has scalability &amp; complexity (But CSS Selector JIT already does the similar things for parentNode, siblings) problem.
So we will write this for super hot accessors. Like parentNode, firstChild etc.

2. DOMJIT::Signature based type checking elimination

On the other hand, this can be applied to many bindings automatically.
We support DOMJIT::Signature. That is the way to express DOM function's signature to DFG/FTL.
DFG / FTL recognizes and emit Checks instead of binding code. And in the middle of code, we will invoke the thin binding code that does not have any checks.</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>