Changeset 208367 in webkit for trunk/Source/JavaScriptCore/dfg/DFGInPlaceAbstractState.h
- Timestamp:
- Nov 3, 2016, 9:38:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGInPlaceAbstractState.h
r208364 r208367 30 30 #include "DFGAbstractValue.h" 31 31 #include "DFGBranchDirection.h" 32 #include "DFGFlowMap.h"33 32 #include "DFGGraph.h" 34 33 #include "DFGNode.h" … … 45 44 explicit operator bool() const { return true; } 46 45 47 void createValueForNode(Node FlowProjection) { }46 void createValueForNode(Node*) { } 48 47 49 AbstractValue& forNode(Node FlowProjectionnode)48 AbstractValue& forNode(Node* node) 50 49 { 51 return m_abstractValues .at(node);50 return m_abstractValues[node->index()]; 52 51 } 53 52 … … 134 133 Graph& m_graph; 135 134 136 FlowMap<AbstractValue>& m_abstractValues;135 Vector<AbstractValue, 0, UnsafeVectorOverflow>& m_abstractValues; 137 136 Operands<AbstractValue> m_variables; 138 137 BasicBlock* m_block;
Note:
See TracChangeset
for help on using the changeset viewer.