Changeset 156003 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Sep 17, 2013, 2:57:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r155729 r156003 3113 3113 Node* base = cellConstantWithStructureCheck(globalObject, status.oldStructure()); 3114 3114 handlePutByOffset(base, identifierNumber, static_cast<PropertyOffset>(operand), get(value)); 3115 // Keep scope alive until after put. 3116 addToGraph(Phantom, get(scope)); 3115 3117 break; 3116 3118 } … … 3120 3122 ASSERT(!entry.couldBeWatched() || !m_graph.watchpoints().isStillValid(entry.watchpointSet())); 3121 3123 addToGraph(PutGlobalVar, OpInfo(operand), get(value)); 3124 // Keep scope alive until after put. 3125 addToGraph(Phantom, get(scope)); 3122 3126 break; 3123 3127 }
Note:
See TracChangeset
for help on using the changeset viewer.