Changeset 252160 in webkit
- Timestamp:
- Nov 6, 2019, 4:29:19 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r252158 r252160 1 2019-11-06 Mark Lam <mark.lam@apple.com> 2 3 JSGlobalObject::fireWatchpointAndMakeAllArrayStructuresSlowPut() should fire its watchpoint as the last step. 4 https://bugs.webkit.org/show_bug.cgi?id=203867 5 <rdar://problem/56813514> 6 7 Reviewed by Saam Barati. 8 9 * stress/racy-slow-put-cloned-arguments-when-having-a-bad-time.js: Added. 10 1 11 2019-11-06 Commit Queue <commit-queue@webkit.org> 2 12 -
trunk/Source/JavaScriptCore/ChangeLog
r252158 r252160 1 2019-11-06 Mark Lam <mark.lam@apple.com> 2 3 JSGlobalObject::fireWatchpointAndMakeAllArrayStructuresSlowPut() should fire its watchpoint as the last step. 4 https://bugs.webkit.org/show_bug.cgi?id=203867 5 <rdar://problem/56813514> 6 7 Reviewed by Saam Barati. 8 9 JSGlobalObject::fireWatchpointAndMakeAllArrayStructuresSlowPut() should make all 10 the array structures SlowPut before firing the watchpoint. Otherwise, the 11 concurrent JIT may think it's grabbing the slow put version of the structure, but 12 is actually grabbing the non-SlowPut version because it happened to beat the 13 mutator in a race to read the structure before the mutator makes it SlowPut. 14 15 Also removed some assertions in DFGSpeculativeJIT.cpp that are vulnerable to races 16 between when the mutator makes all array structures SlowPut and when it fires the 17 HavingABadTime watchpoint. The FTL equivalent did not have these assertions. 18 19 * dfg/DFGSpeculativeJIT.cpp: 20 (JSC::DFG::SpeculativeJIT::compileCreateRest): 21 (JSC::DFG::SpeculativeJIT::compileNewArray): 22 (JSC::DFG::SpeculativeJIT::compileNewArrayWithSpread): 23 * runtime/JSGlobalObject.cpp: 24 (JSC::JSGlobalObject::fireWatchpointAndMakeAllArrayStructuresSlowPut): 25 1 26 2019-11-06 Commit Queue <commit-queue@webkit.org> 2 27 -
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp
r252021 r252160 7816 7816 // arguments to have arrayLength exceed MIN_ARRAY_STORAGE_CONSTRUCTION_LENGTH. 7817 7817 bool shouldAllowForArrayStorageStructureForLargeArrays = false; 7818 ASSERT(m_jit.graph().globalObjectFor(node->origin.semantic)->restParameterStructure()->indexingMode() == ArrayWithContiguous || m_jit.graph().globalObjectFor(node->origin.semantic)->isHavingABadTime());7819 7818 compileAllocateNewArrayWithSize(m_jit.graph().globalObjectFor(node->origin.semantic), arrayResultGPR, arrayLengthGPR, ArrayWithContiguous, shouldAllowForArrayStorageStructureForLargeArrays); 7820 7819 … … 7980 7979 RegisteredStructure structure = m_jit.graph().registerStructure(globalObject->arrayStructureForIndexingTypeDuringAllocation(node->indexingType())); 7981 7980 if (!globalObject->isHavingABadTime() && !hasAnyArrayStorage(node->indexingType())) { 7982 DFG_ASSERT(m_jit.graph(), node, structure->indexingType() == node->indexingType(), structure->indexingType(), node->indexingType());7983 7981 ASSERT( 7984 7982 hasUndecided(structure->indexingType()) … … 8174 8172 // non-ArrayStorage shaped array. 8175 8173 bool shouldAllowForArrayStorageStructureForLargeArrays = false; 8176 ASSERT(m_jit.graph().globalObjectFor(node->origin.semantic)->restParameterStructure()->indexingType() == ArrayWithContiguous || m_jit.graph().globalObjectFor(node->origin.semantic)->isHavingABadTime());8177 8174 compileAllocateNewArrayWithSize(m_jit.graph().globalObjectFor(node->origin.semantic), resultGPR, lengthGPR, ArrayWithContiguous, shouldAllowForArrayStorageStructureForLargeArrays); 8178 8175 } -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r252032 r252160 1566 1566 return; 1567 1567 1568 // Make sure that all allocations or indexed storage transitions that are inlining1569 // the assumption that it's safe to transition to a non-SlowPut array storage don't1570 // do so anymore.1571 m_havingABadTimeWatchpoint->fireAll(vm, "Having a bad time");1572 ASSERT(isHavingABadTime()); // The watchpoint is what tells us that we're having a bad time.1573 1574 1568 // Make sure that all JSArray allocations that load the appropriate structure from 1575 1569 // this object now load a structure that uses SlowPut. … … 1585 1579 slowPutStructure = ClonedArguments::createSlowPutStructure(vm, this, m_objectPrototype.get()); 1586 1580 m_clonedArgumentsStructure.set(vm, this, slowPutStructure); 1581 1582 // Make sure that all allocations or indexed storage transitions that are inlining 1583 // the assumption that it's safe to transition to a non-SlowPut array storage don't 1584 // do so anymore. 1585 // Note: we are deliberately firing the watchpoint here at the end only after 1586 // making all the array structures SlowPut. This ensures that the concurrent 1587 // JIT threads will always get the SlowPut versions of the structures if 1588 // isHavingABadTime() returns true. The concurrent JIT relies on this. 1589 m_havingABadTimeWatchpoint->fireAll(vm, "Having a bad time"); 1590 ASSERT(isHavingABadTime()); // The watchpoint is what tells us that we're having a bad time. 1587 1591 }; 1588 1592
Note:
See TracChangeset
for help on using the changeset viewer.