RESOLVED FIXED Bug 182783
[FTL] Support ArrayPop for ArrayStorage
https://bugs.webkit.org/show_bug.cgi?id=182783
Summary [FTL] Support ArrayPop for ArrayStorage
Yusuke Suzuki
Reported 2018-02-14 03:02:39 PST
[FTL] Support ArrayPop for ArrayStorage
Attachments
Patch (7.37 KB, patch)
2018-02-14 03:03 PST, Yusuke Suzuki
no flags
Patch (7.90 KB, patch)
2018-02-14 03:08 PST, Yusuke Suzuki
saam: review+
Yusuke Suzuki
Comment 1 2018-02-14 03:03:42 PST
Yusuke Suzuki
Comment 2 2018-02-14 03:08:29 PST
Saam Barati
Comment 3 2018-02-19 18:55:53 PST
Comment on attachment 333779 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=333779&action=review r=me > Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:4768 > + m_out.aboveOrEqual(newLength, m_out.load32(storage, m_heaps.Butterfly_vectorLength)), usually(slowCase), usually(popCheckCase)); You do 'usually' twice here. You probably want 'rarely(slowCase)'
Yusuke Suzuki
Comment 4 2018-02-19 20:02:14 PST
Comment on attachment 333779 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=333779&action=review Thanks! >> Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:4768 >> + m_out.aboveOrEqual(newLength, m_out.load32(storage, m_heaps.Butterfly_vectorLength)), usually(slowCase), usually(popCheckCase)); > > You do 'usually' twice here. You probably want 'rarely(slowCase)' Right, I'll change this to `rarely(slowCase)`.
Yusuke Suzuki
Comment 5 2018-02-19 20:33:39 PST
Radar WebKit Bug Importer
Comment 6 2018-02-19 20:34:25 PST
Note You need to log in before you can comment on or make changes to this bug.