[Webkit-unassigned] [Bug 152668] FTL B3 should do binary snippets

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 3 12:28:29 PST 2016


https://bugs.webkit.org/show_bug.cgi?id=152668

--- Comment #1 from Filip Pizlo <fpizlo at apple.com> ---
My approach here will be to beef up B3 to the point where the FTL B3 binary snippet code generators don't have to do weird things with scratch registers and tag registers.

We can already use patchpoint constraints to force the tag registers to contain tag values.  We just would use ValueRep::reg(...).  This will actually do the Right Thing, since the tag values are already forced into registers.  So, this will probably just force B3 to use the JSC tag registers to hold the tag values.  Even if this doesn't quite happen and B3 emits some mov's to put the tag values into the tag registers, the ValueRep::reg() constraint will ensure that as far as the snippet knows, the tag registers will already have the tags and not anything else.

The scratch register is the only issue.  We currently have no way of requesting scratch registers from B3 patchpoints.  We should fix that!

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160103/c79db397/attachment.html>


More information about the webkit-unassigned mailing list