Changeset 254632 in webkit for trunk/Source/JavaScriptCore/dfg/DFGAvailabilityMap.cpp
- Timestamp:
- Jan 15, 2020, 1:30:57 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGAvailabilityMap.cpp
r253896 r254632 66 66 void AvailabilityMap::pruneByLiveness(Graph& graph, CodeOrigin where) 67 67 { 68 Operands<Availability> localsCopy( OperandsLike, m_locals, Availability::unavailable());68 Operands<Availability> localsCopy(m_locals.numberOfArguments(), m_locals.numberOfLocals(), Availability::unavailable()); 69 69 graph.forAllLiveInBytecode( 70 70 where, 71 [&] ( Operandreg) {71 [&] (VirtualRegister reg) { 72 72 localsCopy.operand(reg) = m_locals.operand(reg); 73 73 });
Note:
See TracChangeset
for help on using the changeset viewer.