Changeset 172741 in webkit
- Timestamp:
- Aug 18, 2014, 7:48:00 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r172739 r172741 1 2014-08-18 Filip Pizlo <fpizlo@apple.com> 2 3 REGRESSION(r172401): for-in optimization no longer works at all 4 https://bugs.webkit.org/show_bug.cgi?id=136056 5 6 Reviewed by Mark Hahnenberg. 7 8 This is a partial roll-out of r172401. It turns out that the fix wasn't actually fixing a 9 real bug (since it's fine to use op_get_direct_pname on the wrong base because it has a 10 structure check) and it was actually breaking the entire for-in optimization (since there is 11 no way that we can statically prove that the base matches, because the base we see is a 12 newly created temporary, and anyway doing it right would be really hard in our bytecode 13 because it's 3AC form). 14 15 But, I added a new test for the problem, and kept the original test. Both the old test and 16 the new test prove that r172401 wasn't fixing what it thought it was fixing. To the extent 17 that it resolved crashes it was because it just disabled the for-in optimization entirely. 18 19 * bytecompiler/BytecodeGenerator.cpp: 20 (JSC::BytecodeGenerator::emitGetByVal): 21 (JSC::BytecodeGenerator::pushIndexedForInScope): 22 (JSC::BytecodeGenerator::pushStructureForInScope): 23 * bytecompiler/BytecodeGenerator.h: 24 (JSC::ForInContext::ForInContext): 25 (JSC::StructureForInContext::StructureForInContext): 26 (JSC::IndexedForInContext::IndexedForInContext): 27 (JSC::ForInContext::base): Deleted. 28 * bytecompiler/NodesCodegen.cpp: 29 (JSC::ForInNode::emitMultiLoopBytecode): 30 * tests/stress/for-in-base-reassigned.js: Added. 31 * tests/stress/for-in-base-reassigned-later.js: Added. 32 * tests/stress/for-in-base-reassigned-later-and-change-structure.js: Added. 33 1 34 2014-08-18 Mark Lam <mark.lam@apple.com> 2 35 -
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r172614 r172741 1423 1423 for (size_t i = m_forInContextStack.size(); i > 0; i--) { 1424 1424 ForInContext* context = m_forInContextStack[i - 1].get(); 1425 if (context->base() != base)1426 continue;1427 1428 1425 if (context->local() != property) 1429 1426 continue; … … 2587 2584 } 2588 2585 2589 void BytecodeGenerator::pushIndexedForInScope(RegisterID* baseRegister, RegisterID*localRegister, RegisterID* indexRegister)2586 void BytecodeGenerator::pushIndexedForInScope(RegisterID* localRegister, RegisterID* indexRegister) 2590 2587 { 2591 2588 if (!localRegister) 2592 2589 return; 2593 m_forInContextStack.append(std::make_unique<IndexedForInContext>( baseRegister,localRegister, indexRegister));2590 m_forInContextStack.append(std::make_unique<IndexedForInContext>(localRegister, indexRegister)); 2594 2591 } 2595 2592 … … 2601 2598 } 2602 2599 2603 void BytecodeGenerator::pushStructureForInScope(RegisterID* baseRegister, RegisterID*localRegister, RegisterID* indexRegister, RegisterID* propertyRegister, RegisterID* enumeratorRegister)2600 void BytecodeGenerator::pushStructureForInScope(RegisterID* localRegister, RegisterID* indexRegister, RegisterID* propertyRegister, RegisterID* enumeratorRegister) 2604 2601 { 2605 2602 if (!localRegister) 2606 2603 return; 2607 m_forInContextStack.append(std::make_unique<StructureForInContext>( baseRegister,localRegister, indexRegister, propertyRegister, enumeratorRegister));2604 m_forInContextStack.append(std::make_unique<StructureForInContext>(localRegister, indexRegister, propertyRegister, enumeratorRegister)); 2608 2605 } 2609 2606 -
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h
r172614 r172741 100 100 class ForInContext { 101 101 public: 102 ForInContext(RegisterID* baseRegister, RegisterID* localRegister) 103 : m_baseRegister(baseRegister) 104 , m_localRegister(localRegister) 102 ForInContext(RegisterID* localRegister) 103 : m_localRegister(localRegister) 105 104 , m_isValid(true) 106 105 { … … 120 119 virtual ForInContextType type() const = 0; 121 120 122 RegisterID* base() const { return m_baseRegister.get(); }123 121 RegisterID* local() const { return m_localRegister.get(); } 124 122 125 123 private: 126 RefPtr<RegisterID> m_baseRegister;127 124 RefPtr<RegisterID> m_localRegister; 128 125 bool m_isValid; … … 131 128 class StructureForInContext : public ForInContext { 132 129 public: 133 StructureForInContext(RegisterID* baseRegister, RegisterID*localRegister, RegisterID* indexRegister, RegisterID* propertyRegister, RegisterID* enumeratorRegister)134 : ForInContext( baseRegister,localRegister)130 StructureForInContext(RegisterID* localRegister, RegisterID* indexRegister, RegisterID* propertyRegister, RegisterID* enumeratorRegister) 131 : ForInContext(localRegister) 135 132 , m_indexRegister(indexRegister) 136 133 , m_propertyRegister(propertyRegister) … … 156 153 class IndexedForInContext : public ForInContext { 157 154 public: 158 IndexedForInContext(RegisterID* baseRegister, RegisterID*localRegister, RegisterID* indexRegister)159 : ForInContext( baseRegister,localRegister)155 IndexedForInContext(RegisterID* localRegister, RegisterID* indexRegister) 156 : ForInContext(localRegister) 160 157 , m_indexRegister(indexRegister) 161 158 { … … 528 525 void popFinallyContext(); 529 526 530 void pushIndexedForInScope(RegisterID* base, RegisterID*local, RegisterID* index);527 void pushIndexedForInScope(RegisterID* local, RegisterID* index); 531 528 void popIndexedForInScope(RegisterID* local); 532 void pushStructureForInScope(RegisterID* base, RegisterID*local, RegisterID* index, RegisterID* property, RegisterID* enumerator);529 void pushStructureForInScope(RegisterID* local, RegisterID* index, RegisterID* property, RegisterID* enumerator); 533 530 void popStructureForInScope(RegisterID* local); 534 531 void invalidateForInContextForLocal(RegisterID* local); -
trunk/Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r172717 r172741 2071 2071 this->emitLoopHeader(generator, propertyName.get()); 2072 2072 2073 generator.pushIndexedForInScope( base.get(),local.get(), i.get());2073 generator.pushIndexedForInScope(local.get(), i.get()); 2074 2074 generator.emitNode(dst, m_statement); 2075 2075 generator.popIndexedForInScope(local.get()); … … 2105 2105 this->emitLoopHeader(generator, propertyName.get()); 2106 2106 2107 generator.pushStructureForInScope( base.get(),local.get(), i.get(), propertyName.get(), structureEnumerator.get());2107 generator.pushStructureForInScope(local.get(), i.get(), propertyName.get(), structureEnumerator.get()); 2108 2108 generator.emitNode(dst, m_statement); 2109 2109 generator.popStructureForInScope(local.get());
Note:
See TracChangeset
for help on using the changeset viewer.