RESOLVED FIXED 195234
[JSC] Store bits for JSRopeString in 3 stores
https://bugs.webkit.org/show_bug.cgi?id=195234
Summary [JSC] Store bits for JSRopeString in 3 stores
Yusuke Suzuki
Reported 2019-03-01 16:53:38 PST
Calculate bits before storing.
Attachments
Patch (24.46 KB, patch)
2019-03-01 21:01 PST, Yusuke Suzuki
no flags
Patch (24.75 KB, patch)
2019-03-01 21:04 PST, Yusuke Suzuki
no flags
Patch (27.23 KB, patch)
2019-03-02 00:16 PST, Yusuke Suzuki
no flags
Patch (32.66 KB, patch)
2019-03-02 00:32 PST, Yusuke Suzuki
no flags
Patch (32.66 KB, patch)
2019-03-02 00:36 PST, Yusuke Suzuki
saam: review+
Yusuke Suzuki
Comment 1 2019-03-01 21:01:47 PST
Yusuke Suzuki
Comment 2 2019-03-01 21:04:53 PST
Yusuke Suzuki
Comment 3 2019-03-02 00:16:38 PST
Yusuke Suzuki
Comment 4 2019-03-02 00:32:54 PST
Yusuke Suzuki
Comment 5 2019-03-02 00:36:20 PST
Saam Barati
Comment 6 2019-03-04 11:57:50 PST
Comment on attachment 363418 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363418&action=review r=me > Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:6537 > + // This puts nullptr for the first fiber. It makes visitChildren safe even if this JSRopeString is discarded due to the speculation failure in the following path. > + m_out.storePtr(m_out.constIntPtr(JSString::isRopeInPointer), result, m_heaps.JSRopeString_fiber0); This is somewhat scary, please make sure we have tests.
Yusuke Suzuki
Comment 7 2019-03-04 14:37:26 PST
Comment on attachment 363418 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363418&action=review >> Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:6537 >> + m_out.storePtr(m_out.constIntPtr(JSString::isRopeInPointer), result, m_heaps.JSRopeString_fiber0); > > This is somewhat scary, please make sure we have tests. I'm not sure this is reliably testable. The |result| won't be in the stack. So, the only way this happens is, 1. We create JSRopeString 0x0010 2. We do not use 0x0010 because the overflow happens 3. But conservative stack scan accidentally finds 0x0010, (but it is not the pointer to the above JSRopeString) 4. Scan it We can test JSRopeString(nullptr) case if we add a special function to JSRopeString just for testing (of course, for that JSRopeString, all the operations are broken. This is used just for GC scan test). I'll add this instead.
Yusuke Suzuki
Comment 8 2019-03-04 14:42:39 PST
Comment on attachment 363418 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363418&action=review > Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:6597 > + m_out.storePtr( > + m_out.bitOr(m_out.zeroExtPtr(flagsAndLength.length), m_out.shl(kids[1], m_out.constInt32(32))), > + result, m_heaps.JSRopeString_fiber1); > + if (numKids == 2) > + m_out.storePtr(m_out.lShr(kids[1], m_out.constInt32(32)), result, m_heaps.JSRopeString_fiber2); > + else > + m_out.storePtr(m_out.bitOr(m_out.lShr(kids[1], m_out.constInt32(32)), m_out.shl(kids[2], m_out.constInt32(16))), result, m_heaps.JSRopeString_fiber2); I'll move this part to the prologue of this MakeRope since we would like to ensure that all the 3 fibers are filled before speculative add happens.
Yusuke Suzuki
Comment 9 2019-03-04 14:47:32 PST
Comment on attachment 363418 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=363418&action=review >> Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:6597 >> + m_out.storePtr(m_out.bitOr(m_out.lShr(kids[1], m_out.constInt32(32)), m_out.shl(kids[2], m_out.constInt32(16))), result, m_heaps.JSRopeString_fiber2); > > I'll move this part to the prologue of this MakeRope since we would like to ensure that all the 3 fibers are filled before speculative add happens. No. This is not necessary. When we fill fibers, we already have all the bits and speculation-add already pass.
Yusuke Suzuki
Comment 10 2019-03-04 15:27:58 PST
Radar WebKit Bug Importer
Comment 11 2019-03-04 15:30:09 PST
Note You need to log in before you can comment on or make changes to this bug.